跳绳蓝牙连接修改

This commit is contained in:
qiaocl 2024-12-10 14:14:28 +08:00
parent be10525ffa
commit c16b56c205
131 changed files with 1495 additions and 284 deletions

490
pageTwo/devices/B20.vue Normal file
View File

@ -0,0 +1,490 @@
<template>
<view class="weightPages">
<view class="content ">
<view class="status">{{textLink}}</view>
<view class="quan">
<view>
<text class="weight">{{weight?weight:'0.00'}}</text>{{unit}}
</view>
<view class="typeInfo" v-if="typeInfo!=0">{{typeInfo==2?'稳定重量':'实时重量'}}</view>
</view>
<view class="btnGroup" v-if="isSave">
<view :class="[IsLing?'disabled':'btnClose']" @click="handleIsLing">清零</view>
<view class="baocun" @click="handleIsNum">锁定</view>
</view>
<view class="tips">
<text>提示</text>
<text>1.请确定设备是开机状态</text>
<text>2.请确定手机蓝牙位置信息已打开</text>
</view>
</view>
<!-- 手动记录 -->
<view class="wrapper" v-if="isHeight">
<view class="bg"></view>
<view class="Blue">
<view class="h4">测量结果提示</view>
<view class="Blue-box">
本次测量体重是<text>{{weight}}{{unit}}</text>
</view>
<view class="Blue-box">
上次测量身高是<input v-model="height" type="digit" placeholder="请输入身高" />cm
</view>
<view class="Blue-box" v-if="userInfo.stage=='婴儿'">
上次测量头围是<input v-model="head" type="digit" placeholder="请输入头围" />cm
</view>
<view class="Blue-btn Blue-close" @click="handleBack">重新测量</view>
<view class="Blue-btn" @click="handleGetMeasure">保存结果</view>
</view>
</view>
</view>
</template>
<script>
import {
mapState
} from "vuex";
let myTime;
export default {
data() {
return {
text: "",
typeInfo: 0,
head: "",
weight: "",
height: "",
unit: "kg",
Unload: false,
isHeight: false,
isSave: true, //
deviceId: "",
serviceId: "",
write: "",
notify: "",
islink: 0, //01-1
textLink: "",
isFinished: false, //
devicesList: [],
IsLing: false, //
IsNum: false, //
}
},
computed: {
...mapState(["user", "isConnected", "isBluetoothTyle"]),
userInfo() {
return this.user
}
},
onUnload: function() {
let that = this
if (!that.Unload) {
clearTimeout(myTime)
that.closeBLEConnection()
that.closeBluetoothAdapter()
console.log("页面返回onUnload")
}
},
onLoad(options) {
let that = this
that.typeInfo = 0
that.height = that.userInfo.height
that.head = that.userInfo.head_data
that.deviceId = options.deviceId
that.createBLEConnection()
that.$Bluetooth.onBLEConnectionStateChange()
uni.onBluetoothAdapterStateChange(function(res) {
that.$store.commit("changeBluetooth", res.available);
})
},
watch: {
isConnected: function() {
let that = this
if (!that.isConnected) {
let text = '测量过程中已与设备连接中断,请重新连接设备再开始测量'
that.$tools.showModal(text)
}
},
isBluetoothTyle: function() {
let that = this
if (!that.isBluetoothTyle) {
let text = '蓝牙已关闭,请重新打开蓝牙后再开始测量'
that.$tools.showModal(text)
}
},
isFinished: function() {
let that = this
if (that.isFinished) {
setTimeout(function() {
that.isHeight = true
}, 600)
}
}
},
methods: {
//
createBLEConnection() {
let that = this;
uni.createBLEConnection({
deviceId: that.deviceId,
success: res => {
that.textLink = "蓝牙连接中"
setTimeout(function() {
that.getBLEDeviceServices()
}, 1000)
},
fail: res => {
that.textLink = "设备连接失败,返回首页重新连接"
console.log("设备连接失败,请重新连接", res, that.deviceId);
}
});
},
/**
* 获取设备的UUID
*/
getBLEDeviceServices() {
let serviceList = [];
let that = this;
uni.getBLEDeviceServices({
deviceId: that.deviceId,
success: res => {
console.log("获取设备的UUID成功", res)
serviceList = res.services;
for (let i = 0; i < serviceList.length; i++) {
let service = serviceList[i];
if (service.uuid.indexOf("FFF0") != -1) {
that.serviceId = service.uuid;
that.getBLEDeviceCharacteristics();
console.log("设备的FFF0的serviceId " + that.serviceId);
break;
}
}
},
fail: res => {
that.textLink = "设备连接失败,返回首页重新连接"
console.log('获取设备的UUID失败:', res)
}
});
},
/**
* 获取指定服务的特征值
*/
getBLEDeviceCharacteristics() {
let that = this;
uni.getBLEDeviceCharacteristics({
deviceId: that.deviceId,
serviceId: that.serviceId,
success: res => {
// * read: true, //,write: true, //,notify: true
for (let i = 0; i < res.characteristics.length; i++) {
let item = res.characteristics[i];
if (item.uuid.indexOf('0000FFF1') != -1) {
that.notify = item.uuid
} else if (item.uuid.indexOf('0000FFF2') != -1) {
that.write = item.uuid
}
}
that.textLink = "蓝牙连接成功,请开始测量"
uni.notifyBLECharacteristicValueChange({
deviceId: that.deviceId,
serviceId: that.serviceId,
characteristicId: that.notify,
state: true,
})
uni.notifyBLECharacteristicValueChange({
deviceId: that.deviceId,
serviceId: that.serviceId,
characteristicId: that.write,
state: true,
})
let str = "A6020401076A"
that.writeBLECharacteristicValue(str)
that.notifyBLECharacteristicValue()
},
fail: res => {
console.log('获取特征值失败:', JSON.stringify(res))
}
})
},
/**
* 开启订阅特征值
* read: true, //,write: true, //,notify: true, //广
*/
notifyBLECharacteristicValue() {
let that = this;
uni.notifyBLECharacteristicValueChange({
state: true, // notify
deviceId: that.deviceId,
serviceId: that.serviceId,
characteristicId: that.notify,
success(res) {
that.isSave = true
uni.onBLECharacteristicValueChange(function(res) {
let value = that.$tools.ab2hex(res.value, "");
let type = value.substring(4, 6) //
let typeInfo = value.substring(6, 8) //
let weight = parseInt(value.substring(8, 14), 16) //
let digit = value.substring(18, 19) //
let unit = value.substring(19, 20) //
//
if (unit == "0") {
that.unit = "kg"
}
if (unit == "1") {
that.unit = "斤"
}
if (unit == "2") {
that.unit = "st:lb"
}
if (unit == "3") {
that.unit = "lb"
}
//
if (digit == "0") {
weight = weight
}
if (digit == "1") {
weight = weight / 10
}
if (digit == '2') {
weight = weight / 100
}
if (digit == "3") {
weight = weight / 1000
}
//
if (typeInfo == "01") {
that.typeInfo = 1
that.weight = weight
that.IsLing = false
}
if (typeInfo == "02") {
that.typeInfo = 2
that.weight = weight
that.isFinished = true
}
console.log("状态:", value, type, typeInfo, weight, that.unit, that.isFinished)
});
},
fail(res) {
console.log("测量失败", res.value);
}
});
},
//
handleIsLing() {
let that = this
let str = "A6020500076A"
if (!that.IsLing) {
that.writeBLECharacteristicValue(str)
that.IsLing = true
}
},
//
handleIsNum() {
let that = this
let str = "A6020400066A"
that.writeBLECharacteristicValue(str)
},
writeBLECharacteristicValue(str) {
var that = this;
let buf = new Uint8Array(str.match(/[\da-f]{2}/gi).map(function(h) {
return parseInt(h, 16)
}))
console.log("buffer", str, buf)
uni.writeBLECharacteristicValue({
deviceId: that.deviceId,
serviceId: that.serviceId,
characteristicId: that.write,
value: buf.buffer,
success: res => {
console.log('下发指令成功', res.errMsg)
},
fail: res => {
console.log("下发指令失败", res);
},
})
},
//
handleGetMeasure() {
let that = this
if (!that.height) {
this.$tools.msg("请输入身高")
return
}
that.$model.getmeasurefunit({
adc: 0,
weight: that.weight,
height: that.height,
aud_id: that.userInfo.id,
head_data: that.head ? that.head : 0
}).then(res => {
that.isHeight = false
that.isSave = false
if (res.code == 0) {
that.$store.dispatch("getResult", {
aud_id: uni.getStorageSync('userid')
})
that.$store.dispatch('getUserInfo', {
aud_id: uni.getStorageSync('userid')
})
that.$tools.msg("测量成功")
} else {
that.$tools.msg("测量失败")
}
that.Unload = true
uni.switchTab({
url: "/pages/home/home"
})
setTimeout(function() {
that.closeBLEConnection()
that.closeBluetoothAdapter()
}, 200)
})
},
//
handleBack() {
let that = this
let str = ""
that.typeInfo = 0
that.isFinished = false
str = "A6020500076A"
that.writeBLECharacteristicValue(str)
setTimeout(function() {
that.isHeight = false
}, 500)
},
/**
* 停止搜索蓝牙设备
*/
stopBluetoothDevicesDiscovery() {
uni.stopBluetoothDevicesDiscovery({
success: e => {
console.log("停止搜索蓝牙设备", e)
},
});
},
//
onBLEConnectionStateChange() {
let that = this
uni.onBLEConnectionStateChange(function(res) {
console.log("监听蓝牙连接状态", res.connected)
that.$store.commit("changeConnected", res.connected);
})
},
/**
* 断开蓝牙模块
*/
closeBluetoothAdapter() {
let that = this;
uni.closeBluetoothAdapter({
success: res => {
console.log('蓝牙模块关闭成功');
}
})
},
/**
* 断开蓝牙连接
*/
closeBLEConnection() {
var that = this;
uni.closeBLEConnection({
deviceId: that.deviceId,
success: res => {
console.log('断开蓝牙连接成功');
that.$store.commit("changeConnected", false);
}
});
},
},
}
</script>
<style scoped lang="scss">
.content {
background: #fff;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.btnClose {
color: #fff;
background: linear-gradient(-90deg, #fccf4f, #fba418 80%) !important;
}
.baocun {
color: #fff;
background: linear-gradient(-90deg, #feaa50, #e96b13 80%) !important;
}
.quan {
width: 400rpx;
height: 400rpx;
border: 8px solid #feaa50;
border-radius: 50%;
margin: 15px auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0px 0px 25px 10px #e96b13;
animation: pulse 1s infinite;
.weight {
font-size: 50px;
color: #000;
font-weight: bold;
}
.typeInfo {
width: 100%;
text-align: center;
font-size: 16px;
color: #f0ae43;
}
}
@keyframes pulse {
0% {
box-shadow: 0px 0px 25px 10px #e96b13;
}
50% {
box-shadow: 0px 0px 25px 10px #fba418;
}
100% {
box-shadow: 0px 0px 25px 10px #e96b13;
}
}
.status {
width: 70%;
font-size: 16px;
height: 35px;
line-height: 35px;
text-align: center;
border-radius: 15px;
margin: 15px auto;
background-color: #ffdda6;
}
.disabled {
width: 150px;
background-color: #DFDFDF;
border: 1px solid #f7f7f7;
color: #fff;
text-align: center;
padding: 7px;
border-radius: 10px;
margin: 15px auto;
}
.tips {
font-size: 14px !important;
margin-bottom: 20px;
}
</style>

View File

@ -65,7 +65,7 @@
import { import {
mapState mapState
} from "vuex"; } from "vuex";
const innerAudioContext = uni.createInnerAudioContext(); let innerAudioContext = null;
export default { export default {
data() { data() {
return { return {
@ -91,6 +91,7 @@
}, },
onLoad(options) { onLoad(options) {
let that = this let that = this
innerAudioContext = uni.createInnerAudioContext()
if (options && options.info) { if (options && options.info) {
let info = options.info let info = options.info
that.info = JSON.parse(info) that.info = JSON.parse(info)
@ -110,9 +111,10 @@
}, },
onUnload: function() { onUnload: function() {
let that = this let that = this
if (innerAudioContext) {
innerAudioContext.destroy(); //
}
that.handleEnd() that.handleEnd()
innerAudioContext.stop();
// innerAudioContext.destroy()
console.log("PCT01返回onUnload") console.log("PCT01返回onUnload")
}, },
watch: { watch: {
@ -467,7 +469,6 @@
handleEnd() { handleEnd() {
let that = this let that = this
that.handleStart('停止') that.handleStart('停止')
innerAudioContext.stop();
setTimeout(function() { setTimeout(function() {
that.handleStart('结束') that.handleStart('结束')
}, 400) }, 400)

View File

@ -5,8 +5,9 @@
<view class="lan border-bottom" v-for="(item,index) in ranklist"> <view class="lan border-bottom" v-for="(item,index) in ranklist">
<view class="left"> <view class="left">
<view class="view"> <view class="view">
<view class="t-icon" :class="'t-icon-'+item.key_name" v-if="item.key_name!='score'"></view> <view class="t-icon" :class="'t-icon-'+item.key_name" v-if="item.key_name!='score'&&item.key_name!='head_circumference'"></view>
<view class="score" v-else>A</view> <view class="score" v-if="item.key_name=='score'">A</view>
<image src="../../static/head.png" v-if="item.key_name=='head_circumference'"></image>
</view> </view>
{{item.name}} {{item.name}}
</view> </view>

View File

@ -40,16 +40,6 @@
</view> </view>
</view> </view>
</view> </view>
<view class="list" v-for="(ite,ind) in CooperationUrl" :key="ind">
<view class="item border-bottom" @click="navTo('/pageTwo/webview/webview?url=' + ite.url)">
<view class="left">
<view class="name">{{ite.title}}</view>
</view>
<view class="right">
<uni-icons type="right"></uni-icons>
</view>
</view>
</view>
<!-- #ifdef APP-PLUS --> <!-- #ifdef APP-PLUS -->
<view class="list" @click="navTo('/pageTwo/my/about')"> <view class="list" @click="navTo('/pageTwo/my/about')">
<view class="item border-bottom"> <view class="item border-bottom">
@ -62,6 +52,16 @@
</view> </view>
</view> </view>
<!-- #endif --> <!-- #endif -->
<view class="list" v-for="(ite,ind) in CooperationUrl" :key="ind">
<view class="item border-bottom" @click="navTo('/pageTwo/webview/webview?url=' + ite.url)">
<view class="left">
<view class="name">{{ite.title}}</view>
</view>
<view class="right">
<uni-icons type="right"></uni-icons>
</view>
</view>
</view>
</view> </view>
<view class="btn mb-15" v-if="token" @click="handleOutLogin">退出登录</view> <view class="btn mb-15" v-if="token" @click="handleOutLogin">退出登录</view>
</view> </view>

View File

@ -56,7 +56,7 @@
<uni-icons type="down" color="#999" size="20" class="down"></uni-icons> <uni-icons type="down" color="#999" size="20" class="down"></uni-icons>
</picker> </picker>
<uni-icons type="clear" color="#999" v-if="it.value &&it.type !='4'" <uni-icons type="clear" color="#999" v-if="it.value &&it.type !='4'"
@click="handleValue(it)" size="24"></uni-icons> @click="handleValue(it)" size="24" class="uni-icons"></uni-icons>
</view> </view>
<text :style="{'color':it.inputStyle}" @input="changeDisabled(it)">{{it.unit}}</text> <text :style="{'color':it.inputStyle}" @input="changeDisabled(it)">{{it.unit}}</text>
</view> </view>

View File

@ -119,7 +119,6 @@
import { import {
mapState mapState
} from "vuex"; } from "vuex";
const innerAudioContext = uni.createInnerAudioContext();
import record from '@/element/manuallyAdd/record.vue'; import record from '@/element/manuallyAdd/record.vue';
export default { export default {
data() { data() {
@ -160,8 +159,6 @@
}, },
onLoad(options) { onLoad(options) {
let that = this let that = this
console.log('options00000000000', options)
innerAudioContext.stop();
// //
if (options && options.deviceId) { if (options && options.deviceId) {
that.deviceId = options.deviceId that.deviceId = options.deviceId
@ -209,7 +206,6 @@
aud_id: uni.getStorageSync('userid') aud_id: uni.getStorageSync('userid')
}) })
} }
innerAudioContext.stop();
that.onBLEConnectionStateChange() that.onBLEConnectionStateChange()
uni.onBluetoothAdapterStateChange(function(res) { uni.onBluetoothAdapterStateChange(function(res) {
that.$store.commit("changeBluetooth", res.available); that.$store.commit("changeBluetooth", res.available);
@ -224,7 +220,6 @@
that.isConnection = false that.isConnection = false
that.closeBLEConnection() that.closeBLEConnection()
that.closeBluetoothAdapter() that.closeBluetoothAdapter()
innerAudioContext.stop();
uni.$off("updateData") uni.$off("updateData")
setTimeout(() => { setTimeout(() => {
uni.switchTab({ uni.switchTab({

View File

@ -206,18 +206,23 @@
.item2_data { .item2_data {
width: 33%; width: 33%;
.data { .data {
width: 100%; width: 100%;
text-align: center; text-align: center;
border-right: 1PX solid #f7f7f7; border-right: 1PX solid #f7f7f7;
box-sizing: border-box;
} }
text { text {
font-size: 40rpx !important; font-size: 40rpx !important;
font-weight: bold; font-weight: bold;
} }
} }
.item2_data:nth-last-child(2) {
.data {
border-right: none;
}
}
} }
} }

View File

@ -175,7 +175,7 @@
.uni-icons { .uni-icons {
position: absolute; position: absolute;
right: 10px; right: 10px;
bottom: 10px; bottom: 5px;
} }
/deep/input, /deep/input,

BIN
static/head.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -40,6 +40,7 @@
"devices/PCL", "devices/PCL",
"devices/PCV02", "devices/PCV02",
"devices/PCT01", "devices/PCT01",
"devices/B20",
"notepad/notepad", "notepad/notepad",
"notepad/addNotepad", "notepad/addNotepad",
"PublicCards/charts", "PublicCards/charts",

View File

@ -1 +1 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"0326":function(t,e,o){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o={data:function(){return{}},onLaunch:function(){this.handleCityList(),console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},methods:{checkForUpdates:function(){var e=this;plus.runtime.getProperty(plus.runtime.appid,(function(o){t.setStorageSync("VERSION",o.version),e.$store.commit("changePhoneInfo",{info:o}),console.log("当前应用版本号",o),e.handleCityList(),e.handleoginversion(o)}))},handleoginversion:function(t){var e=this;e.$model.getloginversion({}).then((function(t){console.log("是否登录及版本号",t),e.handleCancelUpdate(t.code)}))},handleCancelUpdate:function(e){0==e?t.reLaunch({url:"/pages/home/home?type=1"}):setTimeout((function(){t.reLaunch({url:"/pageTwo/login/login"})}),500)},handleCityList:function(){var t=this;t.$model.getGradeList({}).then((function(e){console.log("|全部地区",e.data),0==e.code&&(t.$store.commit("changeCityList",e.data.area_list),t.$store.commit("changeGradeList",e.data.grade_list),t.$store.commit("changeIdentityList",e.data.identity_list))}))}}};e.default=o}).call(this,o("df3c")["default"])},"25df":function(t,e,o){},"266f":function(t,e,o){"use strict";o.r(e);var n=o("0326"),a=o.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){o.d(e,t,(function(){return n[t]}))}(r);e["default"]=a.a},"467f":function(t,e,o){"use strict";o.r(e);var n=o("266f");for(var a in n)["default"].indexOf(a)<0&&function(t){o.d(e,t,(function(){return n[t]}))}(a);o("dad9");var r=o("828b"),i=Object(r["a"])(n["default"],void 0,void 0,!1,null,null,null,!1,void 0,void 0);e["default"]=i.exports},7580:function(t,e,o){"use strict";(function(t,e,n){var a=o("47a9"),r=a(o("7ca3"));o("30b7");var i=a(o("467f")),u=a(o("1160")),c=a(o("7d8e")),l=a(o("8d27")),d=a(o("b788")),f=a(o("455e")),s=a(o("a3d2")),p=a(o("b664")),h=a(o("3240")),g=a(o("4d79"));function m(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}t.__webpack_require_UNI_MP_PLUGIN__=o,h.default.prototype.$store=u.default,h.default.prototype.$tools=c.default,h.default.prototype.$Bluetooth=l.default,h.default.prototype.$http=d.default,h.default.prototype.$model=f.default,h.default.prototype.$video=p.default;var v={locale:e.getLocale(),messages:s.default};h.default.use(g.default);var y=new g.default(v);h.default.config.productionTip=!1,i.default.mpType="app";var b=new h.default(function(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?m(Object(o),!0).forEach((function(e){(0,r.default)(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):m(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}({i18n:y},i.default));n(b).$mount()}).call(this,o("3223")["default"],o("df3c")["default"],o("df3c")["createApp"])},dad9:function(t,e,o){"use strict";var n=o("25df"),a=o.n(n);a.a}},[["7580","common/runtime","common/vendor"]]]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["common/main"],{"0326":function(t,e,o){"use strict";(function(t){Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o={data:function(){return{}},onLaunch:function(){this.handleCityList(),this.handleCooperationUrl(),console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")},methods:{checkForUpdates:function(){var e=this;plus.runtime.getProperty(plus.runtime.appid,(function(o){t.setStorageSync("VERSION",o.version),e.$store.commit("changePhoneInfo",{info:o}),console.log("当前应用版本号",o),e.handleCityList(),e.handleCooperationUrl(),e.handleoginversion(o)}))},handleoginversion:function(t){var e=this;e.$model.getloginversion({}).then((function(t){console.log("是否登录及版本号",t),e.handleCancelUpdate(t.code)}))},handleCancelUpdate:function(e){0==e?t.reLaunch({url:"/pages/home/home?type=1"}):setTimeout((function(){t.reLaunch({url:"/pageTwo/login/login"})}),500)},handleCityList:function(){var t=this;t.$model.getGradeList({}).then((function(e){console.log("|全部地区",e.data),0==e.code&&(t.$store.commit("changeCityList",e.data.area_list),t.$store.commit("changeGradeList",e.data.grade_list),t.$store.commit("changeIdentityList",e.data.identity_list))}))},handleCooperationUrl:function(){var t=this;this.$model.getCooperationUrl({}).then((function(e){console.log("合作服务",e.data),0==e.code&&t.$store.commit("changeCooperationUrl",e.data)}))}}};e.default=o}).call(this,o("df3c")["default"])},"25df":function(t,e,o){},"266f":function(t,e,o){"use strict";o.r(e);var n=o("0326"),a=o.n(n);for(var r in n)["default"].indexOf(r)<0&&function(t){o.d(e,t,(function(){return n[t]}))}(r);e["default"]=a.a},"467f":function(t,e,o){"use strict";o.r(e);var n=o("266f");for(var a in n)["default"].indexOf(a)<0&&function(t){o.d(e,t,(function(){return n[t]}))}(a);o("dad9");var r=o("828b"),i=Object(r["a"])(n["default"],void 0,void 0,!1,null,null,null,!1,void 0,void 0);e["default"]=i.exports},7580:function(t,e,o){"use strict";(function(t,e,n){var a=o("47a9"),r=a(o("7ca3"));o("30b7");var i=a(o("467f")),l=a(o("1160")),c=a(o("7d8e")),u=a(o("8d27")),d=a(o("b788")),f=a(o("455e")),s=a(o("a3d2")),p=a(o("b664")),h=a(o("3240")),g=a(o("4d79"));function m(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}t.__webpack_require_UNI_MP_PLUGIN__=o,h.default.prototype.$store=l.default,h.default.prototype.$tools=c.default,h.default.prototype.$Bluetooth=u.default,h.default.prototype.$http=d.default,h.default.prototype.$model=f.default,h.default.prototype.$video=p.default;var v={locale:e.getLocale(),messages:s.default};h.default.use(g.default);var y=new g.default(v);h.default.config.productionTip=!1,i.default.mpType="app";var b=new h.default(function(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?m(Object(o),!0).forEach((function(e){(0,r.default)(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):m(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}({i18n:y},i.default));n(b).$mount()}).call(this,o("3223")["default"],o("df3c")["default"],o("df3c")["createApp"])},dad9:function(t,e,o){"use strict";var n=o("25df"),a=o.n(n);a.a}},[["7580","common/runtime","common/vendor"]]]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"component": true,
"usingComponents": { "usingComponents": {
"uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons" "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
}, }
"component": true
} }

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.btn.data-v-596d6a0d{width:40%;float:right;margin-top:15px;background:#37cc92!important}.close.data-v-596d6a0d{background:#dfdfdf!important;float:left} .btn.data-v-49b08bfe{width:40%;float:right;margin-top:15px;background:#37cc92!important}.close.data-v-49b08bfe{background:#dfdfdf!important;float:left}

View File

@ -1,6 +1,6 @@
{ {
"component": true,
"usingComponents": { "usingComponents": {
"uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons" "uni-icons": "/uni_modules/uni-icons/components/uni-icons/uni-icons"
}, }
"component": true
} }

View File

@ -1,4 +1,4 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["element/target/firstweight"],{"455c":function(t,e,r){"use strict";r.r(e);var n=r("5e38"),i=r.n(n);for(var o in n)["default"].indexOf(o)<0&&function(t){r.d(e,t,(function(){return n[t]}))}(o);e["default"]=i.a},4636:function(t,e,r){"use strict";r.r(e);var n=r("7553"),i=r("455c");for(var o in i)["default"].indexOf(o)<0&&function(t){r.d(e,t,(function(){return i[t]}))}(o);r("4b86");var c=r("828b"),u=Object(c["a"])(i["default"],n["b"],n["c"],!1,null,"68c6604d",null,!1,n["a"],void 0);e["default"]=u.exports},"4b86":function(t,e,r){"use strict";var n=r("d75d"),i=r.n(n);i.a},"5e38":function(t,e,r){"use strict";(function(t){var n=r("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n(r("7ca3")),o=r("8f59");function c(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function u(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?c(Object(r),!0).forEach((function(e){(0,i.default)(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):c(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var a={props:{type:{}},data:function(){return{regTime:"",weight:"",fields:""}},computed:u(u({},(0,o.mapState)(["user","isFirst"])),{},{endDate:function(){return this.$tools.getDate("start")}}),mounted:function(){this.fields="day"},methods:{handleTarget:function(){var t=this;1==t.type||t.regTime?t.weight?t.$model.getfirstweight({aud_id:t.user.id,time:1==t.type?"":t.regTime?t.regTime:t.user.firstresulttime,weight:t.weight,type:t.type}).then((function(e){console.log("目标,",e),t.$tools.msg(e.msg),0==e.code&&(t.$store.commit("changeFirst",!1),t.$store.commit("changeUser",{target_current:e.data}),t.regTime="",t.weight="")})):t.$tools.msg("请输入测量体重"):t.$tools.msg("请选择测量日期")},changeLog:function(t){this.regTime=t.detail.value},onTap:function(){this.weight="",this.regTime="",this.$store.commit("changeFirst",!1)},hideKeyboard:function(){t.hideKeyboard()}}};e.default=a}).call(this,r("df3c")["default"])},7553:function(t,e,r){"use strict";r.d(e,"b",(function(){return n})),r.d(e,"c",(function(){return i})),r.d(e,"a",(function(){}));var n=function(){var t=this.$createElement;this._self._c},i=[]},d75d:function(t,e,r){}}]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["element/target/firstweight"],{"108f":function(t,e,r){"use strict";r.d(e,"b",(function(){return n})),r.d(e,"c",(function(){return i})),r.d(e,"a",(function(){}));var n=function(){var t=this.$createElement;this._self._c},i=[]},"116f":function(t,e,r){},"455c":function(t,e,r){"use strict";r.r(e);var n=r("5e38"),i=r.n(n);for(var o in n)["default"].indexOf(o)<0&&function(t){r.d(e,t,(function(){return n[t]}))}(o);e["default"]=i.a},4636:function(t,e,r){"use strict";r.r(e);var n=r("108f"),i=r("455c");for(var o in i)["default"].indexOf(o)<0&&function(t){r.d(e,t,(function(){return i[t]}))}(o);r("5692");var c=r("828b"),a=Object(c["a"])(i["default"],n["b"],n["c"],!1,null,"c949a7ae",null,!1,n["a"],void 0);e["default"]=a.exports},5692:function(t,e,r){"use strict";var n=r("116f"),i=r.n(n);i.a},"5e38":function(t,e,r){"use strict";(function(t){var n=r("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n(r("7ca3")),o=r("8f59");function c(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function a(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?c(Object(r),!0).forEach((function(e){(0,i.default)(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):c(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}var u={props:{type:{}},data:function(){return{regTime:"",weight:"",fields:""}},computed:a(a({},(0,o.mapState)(["user","isFirst"])),{},{endDate:function(){return this.$tools.getDate("start")}}),mounted:function(){this.fields="day"},methods:{handleTarget:function(){var t=this;1==t.type||t.regTime?t.weight?t.$model.getfirstweight({aud_id:t.user.id,time:1==t.type?"":t.regTime?t.regTime:t.user.firstresulttime,weight:t.weight,type:t.type}).then((function(e){console.log("目标,",e),t.$tools.msg(e.msg),0==e.code&&(t.$store.commit("changeFirst",!1),t.$store.commit("changeMeasureResult",{target_current:e.data}),t.regTime="",t.weight="")})):t.$tools.msg("请输入测量体重"):t.$tools.msg("请选择测量日期")},changeLog:function(t){this.regTime=t.detail.value},onTap:function(){this.weight="",this.regTime="",this.$store.commit("changeFirst",!1)},hideKeyboard:function(){t.hideKeyboard()}}};e.default=u}).call(this,r("df3c")["default"])}}]);
;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([ ;(global["webpackJsonp"] = global["webpackJsonp"] || []).push([
'element/target/firstweight-create-component', 'element/target/firstweight-create-component',
{ {

View File

@ -1 +1 @@
<block wx:if="{{isFirst}}"><view class="wrapper wrapperbg data-v-68c6604d"><view data-event-opts="{{[['tap',[['onTap',['$event']]]]]}}" class="bg data-v-68c6604d" bindtap="__e"><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="edit data-v-68c6604d" catchtap="__e"><view class="title data-v-68c6604d">{{type==1?'目标体重':'初始体重'}}</view><block wx:if="{{type!=1}}"><view data-event-opts="{{[['tap',[['hideKeyboard',['$event']]]]]}}" class="editem data-v-68c6604d" bindtap="__e"><view class="name data-v-68c6604d">日期</view><view class="right data-v-68c6604d"><picker mode="date" end="{{endDate}}" fields="{{fields}}" data-event-opts="{{[['change',[['changeLog',['$event']]]]]}}" bindchange="__e" class="data-v-68c6604d"><view class="uni-input data-v-68c6604d">{{regTime?regTime:'请选择'}}</view><icon class="iconfont icon-arrow-down-bold data-v-68c6604d"></icon></picker></view></view></block><view class="editem data-v-68c6604d"><view class="name data-v-68c6604d">体重</view><view class="right data-v-68c6604d"><input type="digit" placeholder="请输入" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-68c6604d"/>kg</view></view><view data-event-opts="{{[['tap',[['onTap']]]]}}" class="btn close data-v-68c6604d" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-68c6604d" bindtap="__e">确定</view></view></view></view></block> <block wx:if="{{isFirst}}"><view class="wrapper wrapperbg data-v-c949a7ae"><view data-event-opts="{{[['tap',[['onTap',['$event']]]]]}}" class="bg data-v-c949a7ae" bindtap="__e"><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="edit data-v-c949a7ae" catchtap="__e"><view class="title data-v-c949a7ae">{{type==1?'目标体重':'初始体重'}}</view><block wx:if="{{type!=1}}"><view data-event-opts="{{[['tap',[['hideKeyboard',['$event']]]]]}}" class="editem data-v-c949a7ae" bindtap="__e"><view class="name data-v-c949a7ae">日期</view><view class="right data-v-c949a7ae"><picker mode="date" end="{{endDate}}" fields="{{fields}}" data-event-opts="{{[['change',[['changeLog',['$event']]]]]}}" bindchange="__e" class="data-v-c949a7ae"><view class="uni-input data-v-c949a7ae">{{regTime?regTime:'请选择'}}</view><icon class="iconfont icon-arrow-down-bold data-v-c949a7ae"></icon></picker></view></view></block><view class="editem data-v-c949a7ae"><view class="name data-v-c949a7ae">体重</view><view class="right data-v-c949a7ae"><input type="digit" placeholder="请输入" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-c949a7ae"/>kg</view></view><view data-event-opts="{{[['tap',[['onTap']]]]}}" class="btn close data-v-c949a7ae" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-c949a7ae" bindtap="__e">确定</view></view></view></view></block>

View File

@ -1 +1 @@
.btn.data-v-68c6604d{width:40%;float:right;margin-top:15px;background:#37cc92!important}.edit.data-v-68c6604d{top:20%}.close.data-v-68c6604d{background:#fff!important;float:left;color:#333} .btn.data-v-c949a7ae{width:40%;float:right;margin-top:15px;background:#37cc92!important}.edit.data-v-c949a7ae{top:20%}.close.data-v-c949a7ae{background:#fff!important;float:left;color:#333}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,5 @@
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"usingComponents": {}
}

View File

@ -0,0 +1 @@
<view class="weightPages data-v-4b742bda"><view class="content data-v-4b742bda"><view class="status data-v-4b742bda">{{textLink}}</view><view class="quan data-v-4b742bda"><view class="data-v-4b742bda"><text class="weight data-v-4b742bda">{{weight?weight:'0.00'}}</text>{{unit+''}}</view><block wx:if="{{typeInfo!=0}}"><view class="typeInfo data-v-4b742bda">{{typeInfo==2?'稳定重量':'实时重量'}}</view></block></view><block wx:if="{{isSave}}"><view class="btnGroup data-v-4b742bda"><view data-event-opts="{{[['tap',[['handleIsLing',['$event']]]]]}}" class="{{['data-v-4b742bda',IsLing?'disabled':'btnClose']}}" bindtap="__e">清零</view><view data-event-opts="{{[['tap',[['handleIsNum',['$event']]]]]}}" class="baocun data-v-4b742bda" bindtap="__e">锁定</view></view></block><view class="tips data-v-4b742bda"><text class="data-v-4b742bda">提示:</text><text class="data-v-4b742bda">1.请确定设备是开机状态</text><text class="data-v-4b742bda">2.请确定手机蓝牙、位置信息已打开</text></view></view><block wx:if="{{isHeight}}"><view class="wrapper data-v-4b742bda"><view class="bg data-v-4b742bda"></view><view class="Blue data-v-4b742bda"><view class="h4 data-v-4b742bda">测量结果提示</view><view class="Blue-box data-v-4b742bda">本次测量体重是:<text class="data-v-4b742bda">{{weight+unit}}</text></view><view class="Blue-box data-v-4b742bda">上次测量身高是:<input type="digit" placeholder="请输入身高" data-event-opts="{{[['input',[['__set_model',['','height','$event',[]]]]]]}}" value="{{height}}" bindinput="__e" class="data-v-4b742bda"/>cm</view><block wx:if="{{userInfo.stage=='婴儿'}}"><view class="Blue-box data-v-4b742bda">上次测量头围是:<input type="digit" placeholder="请输入头围" data-event-opts="{{[['input',[['__set_model',['','head','$event',[]]]]]]}}" value="{{head}}" bindinput="__e" class="data-v-4b742bda"/>cm</view></block><view data-event-opts="{{[['tap',[['handleBack',['$event']]]]]}}" class="Blue-btn Blue-close data-v-4b742bda" bindtap="__e">重新测量</view><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="Blue-btn data-v-4b742bda" bindtap="__e">保存结果</view></view></view></block></view>

View File

@ -0,0 +1 @@
.content.data-v-4b742bda{background:#fff;width:100%;height:100vh;display:flex;flex-direction:column;justify-content:space-between}.btnClose.data-v-4b742bda{color:#fff;background:linear-gradient(-90deg,#fccf4f,#fba418 80%)!important}.baocun.data-v-4b742bda{color:#fff;background:linear-gradient(-90deg,#feaa50,#e96b13 80%)!important}.quan.data-v-4b742bda{width:400rpx;height:400rpx;border:8px solid #feaa50;border-radius:50%;margin:15px auto;display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 0 25px 10px #e96b13;-webkit-animation:pulse-data-v-4b742bda 1s infinite;animation:pulse-data-v-4b742bda 1s infinite}.quan .weight.data-v-4b742bda{font-size:50px;color:#000;font-weight:700}.quan .typeInfo.data-v-4b742bda{width:100%;text-align:center;font-size:16px;color:#f0ae43}@-webkit-keyframes pulse-data-v-4b742bda{0%{box-shadow:0 0 25px 10px #e96b13}50%{box-shadow:0 0 25px 10px #fba418}100%{box-shadow:0 0 25px 10px #e96b13}}@keyframes pulse-data-v-4b742bda{0%{box-shadow:0 0 25px 10px #e96b13}50%{box-shadow:0 0 25px 10px #fba418}100%{box-shadow:0 0 25px 10px #e96b13}}.status.data-v-4b742bda{width:70%;font-size:16px;height:35px;line-height:35px;text-align:center;border-radius:15px;margin:15px auto;background-color:#ffdda6}.disabled.data-v-4b742bda{width:150px;background-color:#dfdfdf;border:1px solid #f7f7f7;color:#fff;text-align:center;padding:7px;border-radius:10px;margin:15px auto}.tips.data-v-4b742bda{font-size:14px!important;margin-bottom:20px}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
<view class="weightPages data-v-a138e1a6"><view class="content data-v-a138e1a6"><view class="title data-v-a138e1a6">连接成功,开始测量</view><view class="text data-v-a138e1a6">{{text}}</view><view class="image data-v-a138e1a6"><image class="image3 data-v-a138e1a6" src="/static/HC.png"></image></view><view class="tips data-v-a138e1a6"><view class="data-v-a138e1a6">提示:</view><text class="data-v-a138e1a6">1.请确定设备已开机</text><text class="data-v-a138e1a6">2.请确定手机蓝牙及位置信息已打开</text></view></view><block wx:if="{{isHeight}}"><view class="wrapper data-v-a138e1a6"><view class="bg data-v-a138e1a6"></view><view class="Blue data-v-a138e1a6"><view class="h4 data-v-a138e1a6">测量结果提示</view><view class="Blue-box data-v-a138e1a6">本次测量身高为:<text class="data-v-a138e1a6">{{height+unit}}</text></view><view class="Blue-box data-v-a138e1a6">上次测量体重为:<input type="digit" placeholder="请输入体重" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-a138e1a6"/>kg</view><view data-event-opts="{{[['tap',[['handleHeight',['$event']]]]]}}" class="Blue-btn Blue-close data-v-a138e1a6" bindtap="__e">重新测量</view><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="Blue-btn data-v-a138e1a6" bindtap="__e">保存测量结果</view></view></view></block></view> <view class="weightPages data-v-47279c26"><view class="content data-v-47279c26"><view class="status data-v-47279c26">{{textLink}}</view><view class="text data-v-47279c26">{{text}}</view><view class="image data-v-47279c26"><image class="image3 data-v-47279c26" src="/static/HC.png"></image></view><view class="tips data-v-47279c26"><view class="data-v-47279c26">提示:</view><text class="data-v-47279c26">1.请确定设备已开机</text><text class="data-v-47279c26">2.请确定手机蓝牙及位置信息已打开</text></view></view><block wx:if="{{isHeight}}"><view class="wrapper data-v-47279c26"><view class="bg data-v-47279c26"></view><view class="Blue data-v-47279c26"><view class="h4 data-v-47279c26">测量结果提示</view><view class="Blue-box data-v-47279c26">本次测量身高为:<text class="data-v-47279c26">{{height+unit}}</text></view><view class="Blue-box data-v-47279c26">上次测量体重为:<input type="digit" placeholder="请输入体重" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-47279c26"/>kg</view><view data-event-opts="{{[['tap',[['handleHeight',['$event']]]]]}}" class="Blue-btn Blue-close data-v-47279c26" bindtap="__e">重新测量</view><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="Blue-btn data-v-47279c26" bindtap="__e">保存测量结果</view></view></view></block></view>

View File

@ -1 +1 @@
.image3.data-v-a138e1a6{width:200px!important;height:340px!important} .image3.data-v-47279c26{width:200px!important;height:340px!important}.status.data-v-47279c26{width:70%;font-size:16px;height:35px;line-height:35px;text-align:center;border-radius:15px;margin:15px auto;background-color:#ffdda6}

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
<view class="content skipping data-v-c0eb7940"><view class="title data-v-c0eb7940">{{info.active==1?'自由跳':info.active==2?'倒计时':'倒计数'}}</view><view class="skiptop data-v-c0eb7940"><view class="item data-v-c0eb7940"><view class="item-ite data-v-c0eb7940">{{info.active==1?'自由次数':info.active==2?"个数":'目标次数'}}<text class="data-v-c0eb7940">{{weight}}</text></view><view class="item-ite data-v-c0eb7940">{{''+(info.active==2?'目标时长 分:秒':"分:秒")}}<text class="data-v-c0eb7940">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text></view><view class="item-ite data-v-c0eb7940">消耗/kcal<text class="data-v-c0eb7940">{{$root.g0}}</text></view></view></view><view class="image data-v-c0eb7940"><image src="../../static/t01.gif" class="data-v-c0eb7940"></image></view><view data-event-opts="{{[['longpress',[['onlongpress',['$event']]]]]}}" class="end data-v-c0eb7940" bindlongpress="__e">长按结束</view><block wx:if="{{iswrapper}}"><view class="wrapper data-v-c0eb7940"><view class="bg data-v-c0eb7940"><view class="edit data-v-c0eb7940"><view class="editem data-v-c0eb7940"><view class="data-v-c0eb7940">平均速度:<text class="cyello Blue size20 mr-5 data-v-c0eb7940">{{$root.g1}}</text>bpm</view><view class="size12 c999 data-v-c0eb7940">(bpm=个/分钟)</view></view><view class="center data-v-c0eb7940"><view class="left data-v-c0eb7940"><image src="../../static/duan.png" class="data-v-c0eb7940"></image><view class="name data-v-c0eb7940"><view class="data-v-c0eb7940">中断次数</view><view class="data-v-c0eb7940"><text class="cyello Blue size20 mr-5 data-v-c0eb7940">{{Bcount}}</text>次</view></view></view><view class="left data-v-c0eb7940"><image src="../../static/xu.png" class="data-v-c0eb7940"></image><view class="name data-v-c0eb7940"><view class="data-v-c0eb7940">最长连续</view><view class="data-v-c0eb7940"><text class="cyello Blue size20 mr-5 data-v-c0eb7940">{{continuous}}</text>个</view></view></view></view><view class="item data-v-c0eb7940"><view class="item-ite data-v-c0eb7940"><text class="data-v-c0eb7940">{{weight}}</text>训练个数</view><view class="item-ite data-v-c0eb7940"><text class="data-v-c0eb7940">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text>分:秒</view><view class="item-ite data-v-c0eb7940"><text class="data-v-c0eb7940">{{$root.g2}}</text>消耗/kcal</view></view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-c0eb7940" bindtap="__e">完成</view></view></view></view></block></view> <view class="content skipping data-v-115fd8c8"><view class="title data-v-115fd8c8">{{info.active==1?'自由跳':info.active==2?'倒计时':'倒计数'}}</view><view class="skiptop data-v-115fd8c8"><view class="item data-v-115fd8c8"><view class="item-ite data-v-115fd8c8">{{info.active==1?'自由次数':info.active==2?"个数":'目标次数'}}<text class="data-v-115fd8c8">{{weight}}</text></view><view class="item-ite data-v-115fd8c8">{{''+(info.active==2?'目标时长 分:秒':"分:秒")}}<text class="data-v-115fd8c8">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text></view><view class="item-ite data-v-115fd8c8">消耗/kcal<text class="data-v-115fd8c8">{{$root.g0}}</text></view></view></view><view class="image data-v-115fd8c8"><image src="../../static/t01.gif" class="data-v-115fd8c8"></image></view><view data-event-opts="{{[['longpress',[['onlongpress',['$event']]]]]}}" class="end data-v-115fd8c8" bindlongpress="__e">长按结束</view><block wx:if="{{iswrapper}}"><view class="wrapper data-v-115fd8c8"><view class="bg data-v-115fd8c8"><view class="edit data-v-115fd8c8"><view class="editem data-v-115fd8c8"><view class="data-v-115fd8c8">平均速度:<text class="cyello Blue size20 mr-5 data-v-115fd8c8">{{$root.g1}}</text>bpm</view><view class="size12 c999 data-v-115fd8c8">(bpm=个/分钟)</view></view><view class="center data-v-115fd8c8"><view class="left data-v-115fd8c8"><image src="../../static/duan.png" class="data-v-115fd8c8"></image><view class="name data-v-115fd8c8"><view class="data-v-115fd8c8">中断次数</view><view class="data-v-115fd8c8"><text class="cyello Blue size20 mr-5 data-v-115fd8c8">{{Bcount}}</text>次</view></view></view><view class="left data-v-115fd8c8"><image src="../../static/xu.png" class="data-v-115fd8c8"></image><view class="name data-v-115fd8c8"><view class="data-v-115fd8c8">最长连续</view><view class="data-v-115fd8c8"><text class="cyello Blue size20 mr-5 data-v-115fd8c8">{{continuous}}</text>个</view></view></view></view><view class="item data-v-115fd8c8"><view class="item-ite data-v-115fd8c8"><text class="data-v-115fd8c8">{{weight}}</text>训练个数</view><view class="item-ite data-v-115fd8c8"><text class="data-v-115fd8c8">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text>分:秒</view><view class="item-ite data-v-115fd8c8"><text class="data-v-115fd8c8">{{$root.g2}}</text>消耗/kcal</view></view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-115fd8c8" bindtap="__e">完成</view></view></view></view></block></view>

View File

@ -1 +1 @@
.content.data-v-c0eb7940{width:100%;min-height:100vh;background-color:#fff}.item-ite.data-v-c0eb7940{line-height:20PX;margin-bottom:15px}.title.data-v-c0eb7940{height:50px;line-height:50px;text-align:center;font-weight:700}.image.data-v-c0eb7940{width:100%;text-align:center;margin-top:30px}.image image.data-v-c0eb7940{width:200px;height:252px;margin:auto}.end.data-v-c0eb7940{color:#fff;position:absolute;bottom:80px;width:70px;height:70px;line-height:70px;background:#fea606;margin-left:calc(50% - 35px);border-radius:50px;text-align:center;box-shadow:0 1px 5px 2px rgba(223,226,225,.9882352941176471)}.wrapper.data-v-c0eb7940{background-color:rgba(0,0,0,.6)}.wrapper .edit.data-v-c0eb7940{width:80%!important;background-color:#fff}.wrapper .editem.data-v-c0eb7940{height:auto;display:flex;align-items:center;flex-direction:column}.wrapper .editem view.data-v-c0eb7940{width:100%;text-align:center;margin-bottom:5px}.wrapper .center.data-v-c0eb7940{background-color:#eee;padding:0 10px;display:flex;margin:45px 0;font-size:32rpx;border-radius:5px;height:65px;align-items:center;justify-content:space-between}.wrapper .center image.data-v-c0eb7940{width:35px;height:35px;margin-right:10px;margin-top:15px}.wrapper .center .left.data-v-c0eb7940{display:flex;align-content:center}.wrapper .center .name.data-v-c0eb7940{margin-top:15px}.wrapper .item.data-v-c0eb7940{display:flex;justify-content:space-between}.wrapper .item .item-ite.data-v-c0eb7940{line-height:20px;font-size:28rpx;color:#999;text-align:center}.wrapper .item .item-ite text.data-v-c0eb7940{display:block;width:100%;font-size:36rpx;color:#333;text-align:center;margin-bottom:10px}.wrapper .btn.data-v-c0eb7940{margin-top:25px;height:45px;line-height:45px;background:#fea606;margin-bottom:25px} .content.data-v-115fd8c8{width:100%;min-height:100vh;background-color:#fff}.item-ite.data-v-115fd8c8{line-height:20PX;margin-bottom:15px}.title.data-v-115fd8c8{height:50px;line-height:50px;text-align:center;font-weight:700}.image.data-v-115fd8c8{width:100%;text-align:center;margin-top:30px}.image image.data-v-115fd8c8{width:200px;height:252px;margin:auto}.end.data-v-115fd8c8{color:#fff;position:absolute;bottom:80px;width:70px;height:70px;line-height:70px;background:#fea606;margin-left:calc(50% - 35px);border-radius:50px;text-align:center;box-shadow:0 1px 5px 2px rgba(223,226,225,.9882352941176471)}.wrapper.data-v-115fd8c8{background-color:rgba(0,0,0,.6)}.wrapper .edit.data-v-115fd8c8{width:80%!important;background-color:#fff}.wrapper .editem.data-v-115fd8c8{height:auto;display:flex;align-items:center;flex-direction:column}.wrapper .editem view.data-v-115fd8c8{width:100%;text-align:center;margin-bottom:5px}.wrapper .center.data-v-115fd8c8{background-color:#eee;padding:0 10px;display:flex;margin:45px 0;font-size:32rpx;border-radius:5px;height:65px;align-items:center;justify-content:space-between}.wrapper .center image.data-v-115fd8c8{width:35px;height:35px;margin-right:10px;margin-top:15px}.wrapper .center .left.data-v-115fd8c8{display:flex;align-content:center}.wrapper .center .name.data-v-115fd8c8{margin-top:15px}.wrapper .item.data-v-115fd8c8{display:flex;justify-content:space-between}.wrapper .item .item-ite.data-v-115fd8c8{line-height:20px;font-size:28rpx;color:#999;text-align:center}.wrapper .item .item-ite text.data-v-115fd8c8{display:block;width:100%;font-size:36rpx;color:#333;text-align:center;margin-bottom:10px}.wrapper .btn.data-v-115fd8c8{margin-top:25px;height:45px;line-height:45px;background:#fea606;margin-bottom:25px}

View File

@ -1 +1 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/history/historyDetail"],{8162:function(t,e,n){"use strict";var r=n("dbf3"),i=n.n(r);i.a},"9edb":function(t,e,n){"use strict";n.r(e);var r=n("f4f6"),i=n.n(r);for(var c in r)["default"].indexOf(c)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(c);e["default"]=i.a},a7cc:function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var i=r(n("ce06"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(i.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},aff0:function(t,e,n){"use strict";n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){}));var r=function(){var t=this.$createElement;this._self._c},i=[]},ce06:function(t,e,n){"use strict";n.r(e);var r=n("aff0"),i=n("9edb");for(var c in i)["default"].indexOf(c)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(c);n("8162");var o=n("828b"),a=Object(o["a"])(i["default"],r["b"],r["c"],!1,null,"515c4b2b",null,!1,r["a"],void 0);e["default"]=a.exports},dbf3:function(t,e,n){},f4f6:function(t,e,n){"use strict";var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=r(n("7ca3")),c=n("8f59");function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}var a={data:function(){return{id:"",type:"",ranklist:[]}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach((function(e){(0,i.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},(0,c.mapState)([])),onLoad:function(t){this.id=t.id,this.type=t.type,this.getList()},methods:{getList:function(){var t=this;this.$model.gethistorydetail({id:this.id,type:this.type}).then((function(e){console.log("历史记录详情",e),t.ranklist=e.data}))}}};e.default=a}},[["a7cc","common/runtime","common/vendor"]]]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/history/historyDetail"],{"56ed":function(t,e,n){"use strict";var r=n("ffd7"),i=n.n(r);i.a},"9edb":function(t,e,n){"use strict";n.r(e);var r=n("f4f6"),i=n.n(r);for(var c in r)["default"].indexOf(c)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(c);e["default"]=i.a},a7cc:function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var i=r(n("ce06"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(i.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},ce06:function(t,e,n){"use strict";n.r(e);var r=n("d1d7"),i=n("9edb");for(var c in i)["default"].indexOf(c)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(c);n("56ed");var o=n("828b"),a=Object(o["a"])(i["default"],r["b"],r["c"],!1,null,"e58ed430",null,!1,r["a"],void 0);e["default"]=a.exports},d1d7:function(t,e,n){"use strict";n.d(e,"b",(function(){return r})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){}));var r=function(){var t=this.$createElement;this._self._c},i=[]},f4f6:function(t,e,n){"use strict";var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=r(n("7ca3")),c=n("8f59");function o(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}var a={data:function(){return{id:"",type:"",ranklist:[]}},computed:function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?o(Object(n),!0).forEach((function(e){(0,i.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):o(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}({},(0,c.mapState)([])),onLoad:function(t){this.id=t.id,this.type=t.type,this.getList()},methods:{getList:function(){var t=this;this.$model.gethistorydetail({id:this.id,type:this.type}).then((function(e){console.log("历史记录详情",e),t.ranklist=e.data}))}}};e.default=a},ffd7:function(t,e,n){}},[["a7cc","common/runtime","common/vendor"]]]);

View File

@ -1 +1 @@
<view class="data-v-515c4b2b"><view class="box data-v-515c4b2b"><view class="form lanBox data-v-515c4b2b"><block wx:for="{{ranklist}}" wx:for-item="item" wx:for-index="index"><view class="lan border-bottom data-v-515c4b2b"><view class="left data-v-515c4b2b"><view class="view data-v-515c4b2b"><block wx:if="{{item.key_name!='score'}}"><view class="{{['t-icon','data-v-515c4b2b','t-icon-'+item.key_name]}}"></view></block><block wx:else><view class="score data-v-515c4b2b">A</view></block></view>{{''+item.name+''}}</view><view class="right data-v-515c4b2b">{{(item.value?item.value:"0")+item.unit}}</view></view></block></view></view></view> <view class="data-v-e58ed430"><view class="box data-v-e58ed430"><view class="form lanBox data-v-e58ed430"><block wx:for="{{ranklist}}" wx:for-item="item" wx:for-index="index"><view class="lan border-bottom data-v-e58ed430"><view class="left data-v-e58ed430"><view class="view data-v-e58ed430"><block wx:if="{{item.key_name!='score'&&item.key_name!='head_circumference'}}"><view class="{{['t-icon','data-v-e58ed430','t-icon-'+item.key_name]}}"></view></block><block wx:if="{{item.key_name=='score'}}"><view class="score data-v-e58ed430">A</view></block><block wx:if="{{item.key_name=='head_circumference'}}"><image src="../../static/head.png" class="data-v-e58ed430"></image></block></view>{{''+item.name+''}}</view><view class="right data-v-e58ed430">{{(item.value?item.value:"0")+item.unit}}</view></view></block></view></view></view>

View File

@ -1,2 +1,2 @@
.box.data-v-515c4b2b{min-height:100vh;background-color:#fff}.lanBox.data-v-515c4b2b{padding:0 15px 0}.lan.data-v-515c4b2b{display:flex;align-items:center;font-size:32rpx;height:50px;line-height:50px;justify-content:space-between;border-bottom:1px solid #f7f7f7}.lan .left.data-v-515c4b2b{display:flex;align-items:center;text-align:left;font-size:32rpx;padding-left:30px}.lan .left .view.data-v-515c4b2b{width:18px;height:18px;position:absolute;left:15px;padding:2px;background-color:#c7c7c7;border-radius:50%;display:flex;align-items:center;justify-content:center}.lan .left .t-icon.data-v-515c4b2b, .box.data-v-e58ed430{min-height:100vh;background-color:#fff}.lanBox.data-v-e58ed430{padding:0 15px 0}.lan.data-v-e58ed430{display:flex;align-items:center;font-size:32rpx;height:50px;line-height:50px;justify-content:space-between;border-bottom:1px solid #f7f7f7}.lan .left.data-v-e58ed430{display:flex;align-items:center;text-align:left;font-size:32rpx;padding-left:30px}.lan .left .view.data-v-e58ed430{width:18px;height:18px;position:absolute;left:15px;padding:2px;background-color:#c7c7c7;border-radius:50%;display:flex;align-items:center;justify-content:center}.lan .left .t-icon.data-v-e58ed430,
.lan .left image.data-v-515c4b2b{width:16px;height:16px}.lan .right.data-v-515c4b2b{display:flex;align-items:center;justify-content:flex-end;width:50%;min-height:38px;box-sizing:border-box;line-height:36px} .lan .left image.data-v-e58ed430{width:16px;height:16px}.lan .right.data-v-e58ed430{display:flex;align-items:center;justify-content:flex-end;width:50%;min-height:38px;box-sizing:border-box;line-height:36px}

View File

@ -1 +1 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/notepad/addNotepad"],{"2fcd":function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var o=r(n("5464"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},5464:function(t,e,n){"use strict";n.r(e);var r=n("68fed"),o=n("b294");for(var i in o)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("973c");var c=n("828b"),a=Object(c["a"])(o["default"],r["b"],r["c"],!1,null,"a997936c",null,!1,r["a"],void 0);e["default"]=a.exports},"68fed":function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return r}));var r={uniDatetimePicker:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker")]).then(n.bind(null,"9a7d"))}},o=function(){var t=this.$createElement,e=(this._self._c,this.content.length);this.$mp.data=Object.assign({},{$root:{g0:e}})},i=[]},"973c":function(t,e,n){"use strict";var r=n("a1bb"),o=n.n(r);o.a},a1bb:function(t,e,n){},b294:function(t,e,n){"use strict";n.r(e);var r=n("c8f7"),o=n.n(r);for(var i in r)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(i);e["default"]=o.a},c8f7:function(t,e,n){"use strict";(function(t){var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("7ca3")),i=n("8f59");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){(0,o.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={data:function(){return{index:-1,petId:"",content:"",recordTime:""}},computed:a(a({},(0,i.mapState)(["petInfo","petList"])),{},{start:function(){return this.$tools.getTime()}}),mounted:function(){this.recordTime=this.$tools.getTime()},methods:{handleList:function(t){this.index=t.target.value,this.petId=this.petList[t.target.value].id},changeLog:function(t){this.recordTime=t},handleCloseClick:function(){var e=this;e.recordTime?e.$model.getNotepadSubmit({petId:t.getStorageSync("petid"),content:e.content,recordTime:e.recordTime}).then((function(n){n.code,e.$tools.msg("记录成功!"),t.redirectTo({url:"/pages/notepad/notepad"})})):e.$tools.msg("请选择记录时间")}}};e.default=u}).call(this,n("df3c")["default"])}},[["2fcd","common/runtime","common/vendor"]]]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/notepad/addNotepad"],{"2fcd":function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var o=r(n("5464"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},5464:function(t,e,n){"use strict";n.r(e);var r=n("68fe"),o=n("b294");for(var i in o)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("973c");var c=n("828b"),a=Object(c["a"])(o["default"],r["b"],r["c"],!1,null,"a997936c",null,!1,r["a"],void 0);e["default"]=a.exports},"68fe":function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return r}));var r={uniDatetimePicker:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker")]).then(n.bind(null,"9a7d"))}},o=function(){var t=this.$createElement,e=(this._self._c,this.content.length);this.$mp.data=Object.assign({},{$root:{g0:e}})},i=[]},"973c":function(t,e,n){"use strict";var r=n("a1bb"),o=n.n(r);o.a},a1bb:function(t,e,n){},b294:function(t,e,n){"use strict";n.r(e);var r=n("c8f7"),o=n.n(r);for(var i in r)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(i);e["default"]=o.a},c8f7:function(t,e,n){"use strict";(function(t){var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("7ca3")),i=n("8f59");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){(0,o.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={data:function(){return{index:-1,petId:"",content:"",recordTime:""}},computed:a(a({},(0,i.mapState)(["petInfo","petList"])),{},{start:function(){return this.$tools.getTime()}}),mounted:function(){this.recordTime=this.$tools.getTime()},methods:{handleList:function(t){this.index=t.target.value,this.petId=this.petList[t.target.value].id},changeLog:function(t){this.recordTime=t},handleCloseClick:function(){var e=this;e.recordTime?e.$model.getNotepadSubmit({petId:t.getStorageSync("petid"),content:e.content,recordTime:e.recordTime}).then((function(n){n.code,e.$tools.msg("记录成功!"),t.redirectTo({url:"/pages/notepad/notepad"})})):e.$tools.msg("请选择记录时间")}}};e.default=u}).call(this,n("df3c")["default"])}},[["2fcd","common/runtime","common/vendor"]]]);

View File

@ -1 +1 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/webview/webview"],{1986:function(e,t,n){"use strict";n.d(t,"b",(function(){return c})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){}));var c=function(){var e=this.$createElement;this._self._c},o=[]},"4ebc":function(e,t,n){"use strict";n.r(t);var c=n("8bb7"),o=n.n(c);for(var i in c)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return c[e]}))}(i);t["default"]=o.a},"8bb7":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={data:function(){return{webviewUrl:""}},onLoad:function(t){var n=e.getStorageSync("token"),c="https://tc.pcxbc.com/editortext/model_content?token="+n+"&id="+t.id;this.webviewUrl=decodeURIComponent(c),console.log("11111",c,this.webviewUrl)}};t.default=n}).call(this,n("df3c")["default"])},"9cc3":function(e,t,n){"use strict";(function(e,t){var c=n("47a9");n("30b7");c(n("3240"));var o=c(n("e33a"));e.__webpack_require_UNI_MP_PLUGIN__=n,t(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},e33a:function(e,t,n){"use strict";n.r(t);var c=n("1986"),o=n("4ebc");for(var i in o)["default"].indexOf(i)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(i);var u=n("828b"),a=Object(u["a"])(o["default"],c["b"],c["c"],!1,null,null,null,!1,c["a"],void 0);t["default"]=a.exports}},[["9cc3","common/runtime","common/vendor"]]]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/webview/webview"],{"4ebc":function(e,t,n){"use strict";n.r(t);var c=n("8bb7"),o=n.n(c);for(var u in c)["default"].indexOf(u)<0&&function(e){n.d(t,e,(function(){return c[e]}))}(u);t["default"]=o.a},"8bb7":function(e,t,n){"use strict";(function(e){Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={data:function(){return{webviewUrl:""}},onLoad:function(t){var n="",c=e.getStorageSync("token");t.id&&(n="https://tc.pcxbc.com/model_content?token="+c+"&id="+t.id),t.url&&(n=t.url),this.webviewUrl=decodeURIComponent(n),console.log("11111",n,this.webviewUrl)}};t.default=n}).call(this,n("df3c")["default"])},"9cc3":function(e,t,n){"use strict";(function(e,t){var c=n("47a9");n("30b7");c(n("3240"));var o=c(n("e33a"));e.__webpack_require_UNI_MP_PLUGIN__=n,t(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},e33a:function(e,t,n){"use strict";n.r(t);var c=n("e8eb"),o=n("4ebc");for(var u in o)["default"].indexOf(u)<0&&function(e){n.d(t,e,(function(){return o[e]}))}(u);var i=n("828b"),r=Object(i["a"])(o["default"],c["b"],c["c"],!1,null,null,null,!1,c["a"],void 0);t["default"]=r.exports},e8eb:function(e,t,n){"use strict";n.d(t,"b",(function(){return c})),n.d(t,"c",(function(){return o})),n.d(t,"a",(function(){}));var c=function(){var e=this.$createElement;this._self._c},o=[]}},[["9cc3","common/runtime","common/vendor"]]]);

View File

@ -1,3 +1,3 @@
.tabbar.data-v-6fa7011a{width:calc(100% - 30px);padding:10px 15px 15px;display:flex;align-items:center;justify-content:space-around}.tabbar view.data-v-6fa7011a{position:relative}.tabbar .active.data-v-6fa7011a:after{content:"";height:3px;width:100%;position:absolute;bottom:-5px;left:0;border-radius:5px;background:#37cc92}.charts .boxTime.data-v-6fa7011a{display:flex;justify-content:center;align-items:center;background-color:#fff;border-radius:10px 10px 0 0}.charts .boxTime .one.data-v-6fa7011a{width:100%;display:flex;line-height:25px;justify-content:space-between;align-items:center}.charts .boxTime .center.data-v-6fa7011a{width:10%;margin:0 15px}.charts .boxTime picker.data-v-6fa7011a{width:50%;border:none;display:flex;justify-content:center}.charts .boxTime .iconfont.data-v-6fa7011a{color:#333;font-size:36rpx}.charts .box.data-v-6fa7011a{width:100%;padding:0;margin:0;display:flex;flex-wrap:wrap;border-radius:0 0 10px 10px;justify-content:space-between}.charts .box .listC.data-v-6fa7011a{background-color:#fff}.charts .box .listC .name.data-v-6fa7011a{width:20%;padding:0 15px;font-size:32rpx;text-align:center;border-radius:5px;height:30px;line-height:30px}.charts .box .listC .active2.data-v-6fa7011a{color:#fff;background:#37cc92}.charts .box .blockC.data-v-6fa7011a{clear:both;width:100%;height:250px;background-color:#fff;border-radius:0 0 10px 10px;padding-bottom:15px}.charts .gridList.data-v-6fa7011a{margin:0!important;width:100%!important}.charts .gridList .info.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between}.charts .gridList .info .item.data-v-6fa7011a{color:#fff;width:48%;height:120rpx;background:#37cc92;text-align:center;border-radius:10px;display:flex;justify-content:center;align-items:center}.charts .gridList .info .item text.data-v-6fa7011a{width:70rpx;height:70rpx;border-radius:50%;margin-right:10px;display:inline-block;background-color:#fff}.charts .gridList .data .item.data-v-6fa7011a{display:block!important}.report .box.data-v-6fa7011a{padding:10px 10px 0;background-color:#fff;border-radius:10px;display:block;margin:15px 10px}.report .box .time.data-v-6fa7011a{color:#999;padding-bottom:15px;width:100%}.report .box .item2.data-v-6fa7011a{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.report .box .item2 .item2_data.data-v-6fa7011a{width:33%}.report .box .item2 .item2_data .data.data-v-6fa7011a{width:100%;text-align:center;border-right:1PX solid #f7f7f7}.report .box .item2 .item2_data text.data-v-6fa7011a{font-size:40rpx!important;font-weight:700}.report .box2.data-v-6fa7011a{height:50px;line-height:50px;border-radius:10px;display:flex;padding:0 10px;justify-content:space-between;margin:10px;background-color:#fff}.report .info.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between}.report .info .item.data-v-6fa7011a{color:#fff;width:48%;height:120rpx;background:#37cc92;text-align:center;border-radius:10px;display:flex;justify-content:center;align-items:center}.report .info .item text.data-v-6fa7011a{width:70rpx;height:70rpx;border-radius:50%;margin-right:10px;display:inline-block;background-color:#fff}.report .myinfoPage.data-v-6fa7011a{width:100%;background:#fff;margin:10px 0;padding-bottom:0;border-radius:10px}.report .myinfoPage .box1.data-v-6fa7011a{display:flex;flex-wrap:wrap;border-radius:10px;font-size:32rpx;position:relative;margin:0 15px 0;padding-bottom:10px}.report .myinfoPage .box1 .list.data-v-6fa7011a{width:100%;color:#666;padding:0;line-height:50px}.report .myinfoPage .box1 .list image.data-v-6fa7011a, .tabbar.data-v-6fa7011a{width:calc(100% - 30px);padding:10px 15px 15px;display:flex;align-items:center;justify-content:space-around}.tabbar view.data-v-6fa7011a{position:relative}.tabbar .active.data-v-6fa7011a:after{content:"";height:3px;width:100%;position:absolute;bottom:-5px;left:0;border-radius:5px;background:#37cc92}.notice.data-v-6fa7011a{width:100%;display:flex;align-items:center;background-color:#fff;margin-top:15px;margin-bottom:15px;border-radius:10px}.notice text.data-v-6fa7011a{width:60px;font-size:18px;color:red;font-weight:700;text-align:center;border-right:1px solid #dfdfdf}.notice.data-v-6fa7011a swiper{width:calc(100% - 15px);height:40px;line-height:40px;margin-left:15px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.f_banner.data-v-6fa7011a{width:calc(100% - 20px);height:330rpx;margin:20rpx}.f_banner.data-v-6fa7011a swiper{height:330rpx}.f_banner image.data-v-6fa7011a{width:100%;height:100%;border-radius:10px;background-size:100%}.charts .boxTime.data-v-6fa7011a{display:flex;justify-content:center;align-items:center;background-color:#fff;border-radius:10px 10px 0 0}.charts .boxTime .one.data-v-6fa7011a{width:100%;display:flex;line-height:25px;justify-content:space-between;align-items:center}.charts .boxTime .center.data-v-6fa7011a{width:10%;margin:0 15px}.charts .boxTime picker.data-v-6fa7011a{width:50%;border:none;display:flex;justify-content:center}.charts .boxTime .iconfont.data-v-6fa7011a{color:#333;font-size:36rpx}.charts .box.data-v-6fa7011a{width:100%;padding:0;margin:0;display:flex;flex-wrap:wrap;border-radius:0 0 10px 10px;justify-content:space-between}.charts .box .listC.data-v-6fa7011a{background-color:#fff}.charts .box .listC .name.data-v-6fa7011a{width:20%;padding:0 15px;font-size:32rpx;text-align:center;border-radius:5px;height:30px;line-height:30px}.charts .box .listC .active2.data-v-6fa7011a{color:#fff;background:#37cc92}.charts .box .blockC.data-v-6fa7011a{clear:both;width:100%;height:250px;background-color:#fff;border-radius:0 0 10px 10px;padding-bottom:15px}.charts .gridList.data-v-6fa7011a{margin:0!important;width:100%!important}.charts .gridList .info.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between}.charts .gridList .info .item.data-v-6fa7011a{color:#fff;width:48%;height:120rpx;background:#37cc92;text-align:center;border-radius:10px;display:flex;justify-content:center;align-items:center}.charts .gridList .info .item text.data-v-6fa7011a{width:70rpx;height:70rpx;border-radius:50%;margin-right:10px;display:inline-block;background-color:#fff}.charts .gridList .data .item.data-v-6fa7011a{display:block!important}.report .box.data-v-6fa7011a{padding:10px 10px 0;background-color:#fff;border-radius:10px;display:block;margin:15px 10px}.report .box .time.data-v-6fa7011a{color:#999;padding-bottom:15px;width:100%}.report .box .item2.data-v-6fa7011a{width:100%;display:flex;flex-wrap:wrap;justify-content:space-between}.report .box .item2 .item2_data.data-v-6fa7011a{width:33%}.report .box .item2 .item2_data .data.data-v-6fa7011a{width:100%;text-align:center;border-right:1PX solid #f7f7f7;box-sizing:border-box}.report .box .item2 .item2_data text.data-v-6fa7011a{font-size:40rpx!important;font-weight:700}.report .box .item2 .item2_data:nth-last-child(2) .data.data-v-6fa7011a{border-right:none}.report .box2.data-v-6fa7011a{height:50px;line-height:50px;border-radius:10px;display:flex;padding:0 10px;justify-content:space-between;margin:10px;background-color:#fff}.report .info.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between}.report .info .item.data-v-6fa7011a{color:#fff;width:48%;height:120rpx;background:#37cc92;text-align:center;border-radius:10px;display:flex;justify-content:center;align-items:center}.report .info .item text.data-v-6fa7011a{width:70rpx;height:70rpx;border-radius:50%;margin-right:10px;display:inline-block;background-color:#fff}.report .myinfoPage.data-v-6fa7011a{width:100%;background:#fff;margin:10px 0;padding-bottom:0;border-radius:10px}.report .myinfoPage .box1.data-v-6fa7011a{display:flex;flex-wrap:wrap;border-radius:10px;font-size:32rpx;position:relative;margin:0 15px 0;padding-bottom:10px}.report .myinfoPage .box1 .list.data-v-6fa7011a{width:100%;color:#666;padding:0;line-height:50px}.report .myinfoPage .box1 .list image.data-v-6fa7011a,
.report .myinfoPage .box1 .list .t-icon.data-v-6fa7011a{width:18px!important;height:18px;border:2px solid #c7c7c7;background-color:#c7c7c7;border-radius:50%;margin-right:5px}.report .myinfoPage .box1 .list .block.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between;align-items:center;color:#666;position:relative}.report .myinfoPage .box1 .list .block .level.data-v-6fa7011a, .report .myinfoPage .box1 .list .t-icon.data-v-6fa7011a{width:18px!important;height:18px;border:2px solid #c7c7c7;background-color:#c7c7c7;border-radius:50%;margin-right:5px}.report .myinfoPage .box1 .list .block.data-v-6fa7011a{width:100%;display:flex;justify-content:space-between;align-items:center;color:#666;position:relative}.report .myinfoPage .box1 .list .block .level.data-v-6fa7011a,
.report .myinfoPage .box1 .list .block .val.data-v-6fa7011a{width:25%}.report .myinfoPage .box1 .list .block .name.data-v-6fa7011a{width:40%;display:flex;align-items:center}.report .myinfoPage .box1 .list .block .icon.data-v-6fa7011a{width:20px;text-align:right;display:flex}.report .myinfoPage .box1 .list .block .icon image.data-v-6fa7011a{width:20px;height:20px}.report .desc.data-v-6fa7011a{line-height:20px;text-align:left;width:calc(100%-20px);height:auto;border-radius:5px;font-size:30rpx;color:#999;padding:10px;background:#f7f7f7}.report .desc .statuevue.data-v-6fa7011a{height:35px;position:relative;width:100%!important;margin:20px auto 10px}.report .desc .statuevue .bi.data-v-6fa7011a{display:flex;justify-content:space-between;width:auto;padding-top:10px}.report .desc .statuevue .bi .peobox.data-v-6fa7011a{position:absolute;right:0;top:-1px;z-index:999}.report .desc .statuevue .bi .peobox .xx.data-v-6fa7011a{width:5px;height:5px;border-radius:50%;background:#fff;position:absolute;z-index:9;border:2px solid #1b2086;top:9px}.report .desc .statuevue .item.data-v-6fa7011a{position:relative;margin:0;flex:1;height:5px;color:#666;font-size:30rpx}.report .desc .statuevue .item .span1.data-v-6fa7011a{width:100%;text-align:center;position:absolute;top:-23px}.report .desc .statuevue .item .span.data-v-6fa7011a{margin-top:8px;position:absolute;right:-8px}.report .yuanxing.data-v-6fa7011a{display:inline-block;background:#f19601;width:8px;height:12px;margin-right:5px;font-size:36rpx}.report .btnf.data-v-6fa7011a{font-size:28rpx;border-radius:5px;height:22px;margin:0 10px 0 0;line-height:22px;color:#fff;font-weight:400;width:44px!important;text-align:center!important;float:right}.report .tivon.data-v-6fa7011a{display:flex;justify-content:center;align-content:center;align-items:center}.report .tivon .bianji.data-v-6fa7011a{width:20px;height:20px;margin-left:5px}.report .box1 :last-child.list .val.data-v-6fa7011a{width:25%!important}.report .kcalClass.data-v-6fa7011a{width:100%;text-align:center;font-size:36rpx;line-height:55px;margin:-20px auto}.report .yichang.data-v-6fa7011a{background:#ffe4be;color:#ff4239;padding:5px;text-align:center;border-radius:5px;margin:0 15px 10px}.report .tips.data-v-6fa7011a{font-size:30rpx;line-height:20px}.report .tips text.data-v-6fa7011a{display:inline-block;width:100%}.report .jianyi_box.data-v-6fa7011a{background-color:#fff;border-radius:10px;padding:5px 10px 15px;width:calc(100% -20px);margin:10px 0}.report .jianyi.data-v-6fa7011a{display:flex;margin:0 -15px;justify-content:space-between}.report .jianyi view.data-v-6fa7011a{display:flex;flex-wrap:wrap;align-content:center;align-items:center;justify-content:center;width:20%;margin:5px 2.5% 0}.report .jianyi view image.data-v-6fa7011a{width:25px;height:25px}.report .jianyi view text.data-v-6fa7011a{width:100%;text-align:center;margin-top:10px;font-size:28rpx;color:#666}.report .jianyi .active.data-v-6fa7011a{border-bottom:2px solid #f19601;padding-bottom:5px;margin:17px 2.5% 0}.report .jianyi-con.data-v-6fa7011a{margin-top:15px;background:#f7f7f7;padding:10px;font-size:28rpx;line-height:20px;border-radius:10px}.report .tips2.data-v-6fa7011a{color:#999;margin-top:15px;font-size:30rpx;display:flex;align-items:center}.report.data-v-6fa7011a .uni-collapse-item{width:100%!important}.report.data-v-6fa7011a .uni-collapse-item__title-arrow{margin-right:0!important}.report.data-v-6fa7011a .uni-collapse-item__wrap-content.uni-collapse-item--border{border-bottom-width:0}.content.data-v-6fa7011a{padding:15px;font-size:32rpx;width:calc(100% - 30px);background-color:#f5f6fa;min-height:100vh}.listC.data-v-6fa7011a{margin:0;width:100%} .report .myinfoPage .box1 .list .block .val.data-v-6fa7011a{width:25%}.report .myinfoPage .box1 .list .block .name.data-v-6fa7011a{width:40%;display:flex;align-items:center}.report .myinfoPage .box1 .list .block .icon.data-v-6fa7011a{width:20px;text-align:right;display:flex}.report .myinfoPage .box1 .list .block .icon image.data-v-6fa7011a{width:20px;height:20px}.report .desc.data-v-6fa7011a{line-height:20px;text-align:left;width:calc(100%-20px);height:auto;border-radius:5px;font-size:30rpx;color:#999;padding:10px;background:#f7f7f7}.report .desc .statuevue.data-v-6fa7011a{height:35px;position:relative;width:100%!important;margin:20px auto 10px}.report .desc .statuevue .bi.data-v-6fa7011a{display:flex;justify-content:space-between;width:auto;padding-top:10px}.report .desc .statuevue .bi .peobox.data-v-6fa7011a{position:absolute;right:0;top:-1px;z-index:999}.report .desc .statuevue .bi .peobox .xx.data-v-6fa7011a{width:5px;height:5px;border-radius:50%;background:#fff;position:absolute;z-index:9;border:2px solid #1b2086;top:9px}.report .desc .statuevue .item.data-v-6fa7011a{position:relative;margin:0;flex:1;height:5px;color:#666;font-size:30rpx}.report .desc .statuevue .item .span1.data-v-6fa7011a{width:100%;text-align:center;position:absolute;top:-23px}.report .desc .statuevue .item .span.data-v-6fa7011a{margin-top:8px;position:absolute;right:-8px}.report .yuanxing.data-v-6fa7011a{display:inline-block;background:#f19601;width:8px;height:12px;margin-right:5px;font-size:36rpx}.report .btnf.data-v-6fa7011a{font-size:28rpx;border-radius:5px;height:22px;margin:0 10px 0 0;line-height:22px;color:#fff;font-weight:400;width:44px!important;text-align:center!important;float:right}.report .tivon.data-v-6fa7011a{display:flex;justify-content:center;align-content:center;align-items:center}.report .tivon .bianji.data-v-6fa7011a{width:20px;height:20px;margin-left:5px}.report .box1 :last-child.list .val.data-v-6fa7011a{width:25%!important}.report .kcalClass.data-v-6fa7011a{width:100%;text-align:center;font-size:36rpx;line-height:55px;margin:-20px auto}.report .yichang.data-v-6fa7011a{background:#ffe4be;color:#ff4239;padding:5px;text-align:center;border-radius:5px;margin:0 15px 10px}.report .tips.data-v-6fa7011a{font-size:30rpx;line-height:20px}.report .tips text.data-v-6fa7011a{display:inline-block;width:100%}.report .jianyi_box.data-v-6fa7011a{background-color:#fff;border-radius:10px;padding:5px 10px 15px;width:calc(100% -20px);margin:10px 0}.report .jianyi.data-v-6fa7011a{display:flex;margin:0 -15px;justify-content:space-between}.report .jianyi view.data-v-6fa7011a{display:flex;flex-wrap:wrap;align-content:center;align-items:center;justify-content:center;width:20%;margin:0 2.5% 0}.report .jianyi view image.data-v-6fa7011a{width:25px;height:25px}.report .jianyi view text.data-v-6fa7011a{width:100%;text-align:center;margin-top:10px;font-size:28rpx;color:#666}.report .jianyi .active.data-v-6fa7011a{border-bottom:2px solid #f19601;padding-bottom:5px;margin:17px 2.5% 0}.report .jianyi-con.data-v-6fa7011a{margin-top:15px;background:#f7f7f7;padding:10px;font-size:28rpx;line-height:20px;border-radius:10px}.report .tips2.data-v-6fa7011a{color:#999;margin-top:15px;font-size:30rpx;display:flex;align-items:center}.report.data-v-6fa7011a .uni-collapse-item{width:100%!important}.report.data-v-6fa7011a .uni-collapse-item__title-arrow{margin-right:0!important}.report.data-v-6fa7011a .uni-collapse-item__wrap-content.uni-collapse-item--border{border-bottom-width:0}.wrapper.data-v-6fa7011a{position:fixed;left:0;right:0;top:0;bottom:0;z-index:999}.wrapper .bg.data-v-6fa7011a{position:fixed;left:0;right:0;top:0;bottom:0;background-color:rgba(0,0,0,.4);z-index:99}.wrapper .edit.data-v-6fa7011a{width:90%;height:auto;background:#fff;border-radius:10px;position:relative;top:23%;padding:5px;margin:auto;z-index:99999;overflow:hidden;display:flex;flex-direction:column;justify-content:space-between}.wrapper .edit.data-v-6fa7011a swiper{min-height:540rpx;text-align:center}.wrapper .edit image.data-v-6fa7011a{width:100%;height:450rpx;margin-top:10px}.wrapper .clear.data-v-6fa7011a{position:absolute;right:3px;top:0;background-color:#fff;border-radius:50%}.content.data-v-6fa7011a{padding:15px;font-size:32rpx;width:calc(100% - 30px);background-color:#f5f6fa;min-height:100vh}.listC.data-v-6fa7011a{margin:0;width:100%}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/my/me"],{"0fa6":function(n,t,e){"use strict";e.r(t);var o=e("6f7b"),c=e.n(o);for(var r in o)["default"].indexOf(r)<0&&function(n){e.d(t,n,(function(){return o[n]}))}(r);t["default"]=c.a},"14cf":function(n,t,e){},"6f7b":function(n,t,e){"use strict";(function(n){var o=e("47a9");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var c=o(e("7ca3")),r=e("8f59");function u(n,t){var e=Object.keys(n);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(n);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),e.push.apply(e,o)}return e}function i(n){for(var t=1;t<arguments.length;t++){var e=null!=arguments[t]?arguments[t]:{};t%2?u(Object(e),!0).forEach((function(t){(0,c.default)(n,t,e[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(n,Object.getOwnPropertyDescriptors(e)):u(Object(e)).forEach((function(t){Object.defineProperty(n,t,Object.getOwnPropertyDescriptor(e,t))}))}return n}var a={data:function(){return{token:"",user:{}}},components:{headerIndex:function(){e.e("element/headerIndex").then(function(){return resolve(e("c5cc"))}.bind(null,e)).catch(e.oe)}},computed:i(i({},(0,r.mapState)(["accountNumber","familayList"])),{},{nickname:function(){return this.accountNumber.nickname},userList:function(){return this.familayList}}),onLoad:function(){this.token=n.getStorageSync("token"),this.handleAccountNumber()},watch:{nickname:function(){this.user={},this.user=this.accountNumber}},onPullDownRefresh:function(){this.token=n.getStorageSync("token"),this.handleAccountNumber(),setTimeout((function(){n.stopPullDownRefresh()}),1e3)},methods:{handleAccountNumber:function(){var n=this;n.$model.getAccountNumber({}).then((function(t){console.log("账号信息",t),0==t.code?(n.user=t.data,n.$store.commit("changeAccountNumber",t.data)):n.$tools.msg(t.msg)})).catch((function(n){}))},handleOutLogin:function(){var t=this;n.showModal({title:"友情提示",content:"是否退出登录?",success:function(e){e.confirm?t.$model.getloginOut({}).then((function(t){0==t.code&&(console.log("确定退出",t),n.setStorageSync("token",null),n.setStorageSync("aan_id",null),n.clearStorageSync(),n.reLaunch({url:"/pageTwo/login/login"}))})):e.cancel&&t.$tools.msg("您已取消操作!")}})},navTo:function(t){n.navigateTo({url:t})}}};t.default=a}).call(this,e("df3c")["default"])},8320:function(n,t,e){"use strict";e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return o}));var o={uniIcons:function(){return Promise.all([e.e("common/vendor"),e.e("uni_modules/uni-icons/components/uni-icons/uni-icons")]).then(e.bind(null,"bbd6"))}},c=function(){var n=this.$createElement;this._self._c},r=[]},"8b38":function(n,t,e){"use strict";var o=e("14cf"),c=e.n(o);c.a},af14:function(n,t,e){"use strict";e.r(t);var o=e("8320"),c=e("0fa6");for(var r in c)["default"].indexOf(r)<0&&function(n){e.d(t,n,(function(){return c[n]}))}(r);e("8b38");var u=e("828b"),i=Object(u["a"])(c["default"],o["b"],o["c"],!1,null,"7a900e66",null,!1,o["a"],void 0);t["default"]=i.exports},b575:function(n,t,e){"use strict";(function(n,t){var o=e("47a9");e("30b7");o(e("3240"));var c=o(e("af14"));n.__webpack_require_UNI_MP_PLUGIN__=e,t(c.default)}).call(this,e("3223")["default"],e("df3c")["createPage"])}},[["b575","common/runtime","common/vendor"]]]); (global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pages/my/me"],{"0264":function(n,t,e){"use strict";var o=e("a9aa"),c=e.n(o);c.a},"0fa6":function(n,t,e){"use strict";e.r(t);var o=e("6f7b"),c=e.n(o);for(var r in o)["default"].indexOf(r)<0&&function(n){e.d(t,n,(function(){return o[n]}))}(r);t["default"]=c.a},"6f7b":function(n,t,e){"use strict";(function(n){var o=e("47a9");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var c=o(e("7ca3")),r=e("8f59");function u(n,t){var e=Object.keys(n);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(n);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),e.push.apply(e,o)}return e}function a(n){for(var t=1;t<arguments.length;t++){var e=null!=arguments[t]?arguments[t]:{};t%2?u(Object(e),!0).forEach((function(t){(0,c.default)(n,t,e[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(n,Object.getOwnPropertyDescriptors(e)):u(Object(e)).forEach((function(t){Object.defineProperty(n,t,Object.getOwnPropertyDescriptor(e,t))}))}return n}var i={data:function(){return{token:"",user:{}}},components:{headerIndex:function(){e.e("element/headerIndex").then(function(){return resolve(e("c5cc"))}.bind(null,e)).catch(e.oe)}},computed:a(a({},(0,r.mapState)(["accountNumber","familayList","CooperationUrl"])),{},{nickname:function(){return this.accountNumber.nickname},userList:function(){return this.familayList}}),onLoad:function(){this.token=n.getStorageSync("token"),this.handleAccountNumber()},watch:{nickname:function(){this.user={},this.user=this.accountNumber}},onPullDownRefresh:function(){this.token=n.getStorageSync("token"),this.handleAccountNumber(),setTimeout((function(){n.stopPullDownRefresh()}),1e3)},methods:{handleAccountNumber:function(){var n=this;n.$model.getAccountNumber({}).then((function(t){console.log("账号信息",t),0==t.code?(n.user=t.data,n.$store.commit("changeAccountNumber",t.data)):n.$tools.msg(t.msg)})).catch((function(n){}))},handleOutLogin:function(){var t=this;n.showModal({title:"友情提示",content:"是否退出登录?",success:function(e){e.confirm?t.$model.getloginOut({}).then((function(t){0==t.code&&(console.log("确定退出",t),n.setStorageSync("token",null),n.setStorageSync("aan_id",null),n.clearStorageSync(),n.reLaunch({url:"/pageTwo/login/login"}))})):e.cancel&&t.$tools.msg("您已取消操作!")}})},navTo:function(t){n.navigateTo({url:t})}}};t.default=i}).call(this,e("df3c")["default"])},a9aa:function(n,t,e){},af14:function(n,t,e){"use strict";e.r(t);var o=e("d12f"),c=e("0fa6");for(var r in c)["default"].indexOf(r)<0&&function(n){e.d(t,n,(function(){return c[n]}))}(r);e("0264");var u=e("828b"),a=Object(u["a"])(c["default"],o["b"],o["c"],!1,null,"5af79c8c",null,!1,o["a"],void 0);t["default"]=a.exports},b575:function(n,t,e){"use strict";(function(n,t){var o=e("47a9");e("30b7");o(e("3240"));var c=o(e("af14"));n.__webpack_require_UNI_MP_PLUGIN__=e,t(c.default)}).call(this,e("3223")["default"],e("df3c")["createPage"])},d12f:function(n,t,e){"use strict";e.d(t,"b",(function(){return c})),e.d(t,"c",(function(){return r})),e.d(t,"a",(function(){return o}));var o={uniIcons:function(){return Promise.all([e.e("common/vendor"),e.e("uni_modules/uni-icons/components/uni-icons/uni-icons")]).then(e.bind(null,"bbd6"))}},c=function(){var n=this.$createElement;this._self._c},r=[]}},[["b575","common/runtime","common/vendor"]]]);

View File

@ -1 +1 @@
<view class="content data-v-7a900e66"><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/setting/setting']]]]]}}" class="top data-v-7a900e66" bindtap="__e"><view class="headimg data-v-7a900e66"><image class="image data-v-7a900e66" src="{{user.head_pic}}"></image><view class="size20 bold data-v-7a900e66">{{user.nickname}}</view></view><text class="t-icon t-icon-arrow-right-bold data-v-7a900e66"></text></view><view class="wxlist borderRadius data-v-7a900e66"><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/my/manage']]]]]}}" class="list data-v-7a900e66" bindtap="__e"><view class="item border-bottom data-v-7a900e66"><view class="left data-v-7a900e66"><view class="name data-v-7a900e66">成员管理</view></view><view class="right data-v-7a900e66"><uni-icons vue-id="4e2db094-1" type="right" class="data-v-7a900e66" bind:__l="__l"></uni-icons></view></view></view><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/business/business']]]]]}}" class="list data-v-7a900e66" bindtap="__e"><view class="item border-bottom data-v-7a900e66"><view class="left data-v-7a900e66"><view class="name data-v-7a900e66">设备管理</view></view><view class="right data-v-7a900e66"><uni-icons vue-id="4e2db094-2" type="right" class="data-v-7a900e66" bind:__l="__l"></uni-icons></view></view></view><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/score/history']]]]]}}" class="list data-v-7a900e66" bindtap="__e"><view class="item border-bottom data-v-7a900e66"><view class="left data-v-7a900e66"><view class="name data-v-7a900e66">估分历史</view></view><view class="right data-v-7a900e66"><uni-icons vue-id="4e2db094-3" type="right" class="data-v-7a900e66" bind:__l="__l"></uni-icons></view></view></view></view><block wx:if="{{token}}"><view data-event-opts="{{[['tap',[['handleOutLogin',['$event']]]]]}}" class="btn mb-15 data-v-7a900e66" bindtap="__e">退出登录</view></block></view> <view class="content data-v-5af79c8c"><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/setting/setting']]]]]}}" class="top data-v-5af79c8c" bindtap="__e"><view class="headimg data-v-5af79c8c"><image class="image data-v-5af79c8c" src="{{user.head_pic}}"></image><view class="size20 bold data-v-5af79c8c">{{user.nickname}}</view></view><text class="t-icon t-icon-arrow-right-bold data-v-5af79c8c"></text></view><view class="wxlist borderRadius data-v-5af79c8c"><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/my/manage']]]]]}}" class="list data-v-5af79c8c" bindtap="__e"><view class="item border-bottom data-v-5af79c8c"><view class="left data-v-5af79c8c"><view class="name data-v-5af79c8c">成员管理</view></view><view class="right data-v-5af79c8c"><uni-icons vue-id="4e2db094-1" type="right" class="data-v-5af79c8c" bind:__l="__l"></uni-icons></view></view></view><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/business/business']]]]]}}" class="list data-v-5af79c8c" bindtap="__e"><view class="item border-bottom data-v-5af79c8c"><view class="left data-v-5af79c8c"><view class="name data-v-5af79c8c">设备管理</view></view><view class="right data-v-5af79c8c"><uni-icons vue-id="4e2db094-2" type="right" class="data-v-5af79c8c" bind:__l="__l"></uni-icons></view></view></view><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/score/history']]]]]}}" class="list data-v-5af79c8c" bindtap="__e"><view class="item border-bottom data-v-5af79c8c"><view class="left data-v-5af79c8c"><view class="name data-v-5af79c8c">估分历史</view></view><view class="right data-v-5af79c8c"><uni-icons vue-id="4e2db094-3" type="right" class="data-v-5af79c8c" bind:__l="__l"></uni-icons></view></view></view><block wx:for="{{CooperationUrl}}" wx:for-item="ite" wx:for-index="ind" wx:key="ind"><view class="list data-v-5af79c8c"><view data-event-opts="{{[['tap',[['navTo',['/pageTwo/webview/webview?url='+ite.url]]]]]}}" class="item border-bottom data-v-5af79c8c" bindtap="__e"><view class="left data-v-5af79c8c"><view class="name data-v-5af79c8c">{{ite.title}}</view></view><view class="right data-v-5af79c8c"><uni-icons vue-id="{{'4e2db094-4-'+ind}}" type="right" class="data-v-5af79c8c" bind:__l="__l"></uni-icons></view></view></view></block></view><block wx:if="{{token}}"><view data-event-opts="{{[['tap',[['handleOutLogin',['$event']]]]]}}" class="btn mb-15 data-v-5af79c8c" bindtap="__e">退出登录</view></block></view>

View File

@ -1 +1 @@
.content.data-v-7a900e66{background-color:#f3f4f6;padding:15px;min-height:100vh}.top.data-v-7a900e66{height:auto;background:#fff;border-radius:10px;display:flex;padding:10px;align-items:center;justify-content:space-between}.top .headimg.data-v-7a900e66{width:80%;display:flex;align-items:center}.top .headimg view.data-v-7a900e66{width:calc(100% - 70px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top image.data-v-7a900e66{width:60px;height:60px;border-radius:50%;margin-right:10px}.wxlist.data-v-7a900e66{height:auto;overflow:hidden;position:relative}.wxlist .item.data-v-7a900e66{width:auto;font-size:32rpx;line-height:45px;height:45px;display:flex;margin-top:15px;background:#fff;padding:0 10px;border-radius:10px;justify-content:space-between;align-items:center}.wxlist .item .left.data-v-7a900e66{display:flex;align-items:center}.href.data-v-7a900e66{display:flex;width:100%;color:#000;text-decoration:none;justify-content:space-between}.btn.data-v-7a900e66{width:auto;background:#fea606;margin:50px 15px 0 15px} .content.data-v-5af79c8c{background-color:#f3f4f6;padding:15px;min-height:100vh}.top.data-v-5af79c8c{height:auto;background:#fff;border-radius:10px;display:flex;padding:10px;align-items:center;justify-content:space-between}.top .headimg.data-v-5af79c8c{width:80%;display:flex;align-items:center}.top .headimg view.data-v-5af79c8c{width:calc(100% - 70px);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.top image.data-v-5af79c8c{width:60px;height:60px;border-radius:50%;margin-right:10px}.wxlist.data-v-5af79c8c{height:auto;overflow:hidden;position:relative}.wxlist .item.data-v-5af79c8c{width:auto;font-size:32rpx;line-height:45px;height:45px;display:flex;margin-top:15px;background:#fff;padding:0 10px;border-radius:10px;justify-content:space-between;align-items:center}.wxlist .item .left.data-v-5af79c8c{display:flex;align-items:center}.href.data-v-5af79c8c{display:flex;width:100%;color:#000;text-decoration:none;justify-content:space-between}.btn.data-v-5af79c8c{width:auto;background:#fea606;margin:50px 15px 0 15px}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,2 +1,2 @@
.box.data-v-7a722ffe{margin:15px 10px 0;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 40px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px;position:relative;min-height:30px}.box .groupBtn.data-v-7a722ffe{width:100%}.box .history.data-v-7a722ffe{position:absolute;top:0;right:10px;height:35px;line-height:35px;float:right;margin-top:15px;font-size:28rpx;padding:0 10px;background:#37cc92!important}.box .charts.data-v-7a722ffe{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-7a722ffe{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.wrapper.data-v-7a722ffe{font-size:28rpx}.wrapper .choice.data-v-7a722ffe{color:#37cc92;font-weight:500;padding-left:15px;display:inline-block}.wrapper .edit.data-v-7a722ffe{background-color:#fff}.wrapper .item.data-v-7a722ffe{width:100%;height:45px;line-height:45px;display:flex;border-bottom:1px solid #f7f7f7}.wrapper .btn.data-v-7a722ffe{width:40%;float:right;margin-top:15px;background:#37cc92!important}.wrapper .edit.data-v-7a722ffe{top:20%}.wrapper .close.data-v-7a722ffe{background:#dfdfdf!important;float:left;color:#333}.indexCarList.data-v-7a722ffe{width:calc(100% - 40px);margin:10px;padding:10px;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-7a722ffe{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;align-items:center;width:calc(100% - 10px)}.indexCarList .title .name.data-v-7a722ffe{font-size:32rpx;font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-7a722ffe{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-7a722ffe{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;align-items:center;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-7a722ffe{width:42%}.indexCarList .item3 .weight.data-v-7a722ffe{width:58%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight text.data-v-7a722ffe{color:#666;position:absolute;right:0;bottom:15px;font-size:24rpx}.indexCarList .item3 .weight .input.data-v-7a722ffe{width:70%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight .input .uni-icons.data-v-7a722ffe{position:absolute;right:10px;bottom:10px}.indexCarList .item3 .weight .input.data-v-7a722ffe input, .box.data-v-9a8bbe20{margin-top:15px;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 20px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px;position:relative;min-height:30px}.box .groupBtn.data-v-9a8bbe20{width:100%}.box .history.data-v-9a8bbe20{position:absolute;top:0;right:10px;height:35px;line-height:35px;float:right;margin-top:15px;font-size:28rpx;padding:0 10px;background:#37cc92!important}.box .charts.data-v-9a8bbe20{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-9a8bbe20{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.wrapper.data-v-9a8bbe20{font-size:28rpx}.wrapper .choice.data-v-9a8bbe20{color:#37cc92;font-weight:500;padding-left:15px;display:inline-block}.wrapper .edit.data-v-9a8bbe20{background-color:#fff}.wrapper .item.data-v-9a8bbe20{width:100%;height:45px;line-height:45px;display:flex;border-bottom:1px solid #f7f7f7}.wrapper .btn.data-v-9a8bbe20{width:40%;float:right;margin-top:15px;background:#37cc92!important}.wrapper .edit.data-v-9a8bbe20{top:20%}.wrapper .close.data-v-9a8bbe20{background:#dfdfdf!important;float:left;color:#333}.indexCarList.data-v-9a8bbe20{width:100%;margin:10px 0;padding:10px 0;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-9a8bbe20{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;align-items:center;width:calc(100% - 10px)}.indexCarList .title .name.data-v-9a8bbe20{font-size:32rpx;font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-9a8bbe20{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-9a8bbe20{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;align-items:center;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-9a8bbe20{width:42%;display:flex}.indexCarList .item3 .name text.data-v-9a8bbe20{max-width:calc(100% - 25px);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.indexCarList .item3 .weight.data-v-9a8bbe20{width:58%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight text.data-v-9a8bbe20{color:#666;position:absolute;right:0;bottom:15px;font-size:24rpx}.indexCarList .item3 .weight .input.data-v-9a8bbe20{width:70%;display:flex;align-items:center;position:relative;border-radius:5px;border:1px solid #dfdfdf;justify-content:space-between}.indexCarList .item3 .weight .input .uni-icons.data-v-9a8bbe20{position:absolute;right:10px;bottom:5px}.indexCarList .item3 .weight .input.data-v-9a8bbe20 input,
.indexCarList .item3 .weight .input.data-v-7a722ffe picker{width:100%;font-size:32rpx;height:35px;line-height:33px;text-align:center;border:1px solid #dfdfdf;border-radius:5px;background-color:#f7f7f7}.indexCarList .item3 .weight .input.data-v-7a722ffe picker{position:relative}.indexCarList .item3 .weight .input.data-v-7a722ffe picker .down{position:absolute;right:10px;top:1px}.indexCarList .item3 .iconfont.data-v-7a722ffe{color:#fea606}.result.data-v-7a722ffe{width:100%}.result .weight view.data-v-7a722ffe{width:30%!important;text-align:center}.gfbtn.data-v-7a722ffe{width:calc(100% - 40px);margin-top:20px;margin-left:20px;color:#fff;padding:8px 0;border-radius:10px;text-align:center;background:#37cc92}.content.data-v-7a722ffe{min-height:100vh;padding-bottom:15px;background-color:#f7f7f7}.uni-stat-tooltip.data-v-7a722ffe{width:80%;height:auto;overflow:scroll;word-break:break-word;position:fixed;margin:auto;background-color:rgba(0,0,0,.8);color:#fff;z-index:999;padding:10px;border-radius:10px;top:33%;left:10%} .indexCarList .item3 .weight .input.data-v-9a8bbe20 picker{width:100%;font-size:32rpx;height:35px;line-height:33px;text-align:center}.indexCarList .item3 .weight .input.data-v-9a8bbe20 picker{position:relative}.indexCarList .item3 .weight .input.data-v-9a8bbe20 picker .down{position:absolute;right:10px;top:1px}.indexCarList .item3 .iconfont.data-v-9a8bbe20{color:#fea606}.result.data-v-9a8bbe20{width:100%}.result .weight view.data-v-9a8bbe20{width:30%!important;text-align:center}.gfbtn.data-v-9a8bbe20{width:calc(100% - 40px);margin-top:20px;margin-left:20px;color:#fff;padding:8px 0;border-radius:10px;text-align:center;background:#37cc92}.content.data-v-9a8bbe20{min-height:100vh;padding-bottom:15px;background-color:#f7f7f7}.Max_score.data-v-9a8bbe20{width:100%;text-align:center}.Lastdata.data-v-9a8bbe20{height:35px;line-height:35px;margin-top:15px;font-size:28rpx;padding:0 10px;background:#fec407!important;border-radius:10px;color:#fff;width:30%;text-align:center}.uni-stat-tooltip.data-v-9a8bbe20{width:80%;height:auto;overflow:scroll;word-break:break-word;position:fixed;margin:auto;background-color:rgba(0,0,0,.8);color:#fff;z-index:999;padding:10px;border-radius:10px;top:33%;left:10%}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
.content.data-v-5b0d9194{width:100%;min-height:100vh;background-color:#f5f6fa}.skiptop.data-v-5b0d9194{margin-top:15px}.tabbar.data-v-5b0d9194{width:100%;margin-top:20px;margin-bottom:20px;display:flex;align-items:center;justify-content:space-around}.tabbar view.data-v-5b0d9194{position:relative}.tabbar .active.data-v-5b0d9194:after{content:"";height:3px;width:100%;position:absolute;bottom:-8px;left:0;border-radius:5px;background:#37cc92}.box1.data-v-5b0d9194{background-color:#fff;padding:10px!important;color:#999;margin:15px;border-radius:10px;width:calc(100%- 30px)}.box1 .time.data-v-5b0d9194{width:100%;font-size:32rpx;margin-bottom:20px}.box1 .item.data-v-5b0d9194{width:100%;color:#333;font-size:44rpx;text-align:center;margin-bottom:15px}.box1 .item text.data-v-5b0d9194{display:block}.box1 .item .item-ite.data-v-5b0d9194{font-size:36rpx;margin-bottom:15px;width:100%}.box1 .item .item-set.data-v-5b0d9194{width:calc(100% - 30px);display:flex;align-items:center;height:55px;line-height:55px;font-size:60rpx;margin-bottom:5px;background-color:#f7f7f7;padding:0 15px;justify-content:space-between;margin:auto;position:relative}.box1 .item .item-set.data-v-5b0d9194 input{font-size:60rpx;height:55px;line-height:55px}.box1 .item .item-set0.data-v-5b0d9194{background-color:#fff;justify-content:center}.box1 .item .tips.data-v-5b0d9194{font-size:32rpx;color:#999;margin-top:10px}.box1 .start.data-v-5b0d9194{color:#fff;width:100px;height:100px;font-size:36rpx;font-weight:700;line-height:100px;text-align:center;border-radius:50%;background:#37cc92;margin:15px auto}.box1 .Nstart.data-v-5b0d9194{opacity:.5!important}.status.data-v-5b0d9194{background-color:#fff}.status image.data-v-5b0d9194{width:18px;height:18px}.status .icon_link.data-v-5b0d9194{-webkit-animation:rotation-data-v-5b0d9194 .6s infinite linear;animation:rotation-data-v-5b0d9194 .6s infinite linear}@-webkit-keyframes rotation-data-v-5b0d9194{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotation-data-v-5b0d9194{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}} .content.data-v-eaae2774{width:100%;min-height:100vh;background-color:#f5f6fa}.skiptop.data-v-eaae2774{margin-top:15px}.tabbar.data-v-eaae2774{width:100%;margin-top:20px;margin-bottom:20px;display:flex;align-items:center;justify-content:space-around}.tabbar view.data-v-eaae2774{position:relative}.tabbar .active.data-v-eaae2774:after{content:"";height:3px;width:100%;position:absolute;bottom:-8px;left:0;border-radius:5px;background:#37cc92}.box1.data-v-eaae2774{background-color:#fff;padding:10px!important;color:#999;margin:15px;border-radius:10px;width:calc(100%- 30px)}.box1 .time.data-v-eaae2774{width:100%;font-size:32rpx;margin-bottom:20px}.box1 .item.data-v-eaae2774{width:100%;color:#333;font-size:44rpx;text-align:center;margin-bottom:15px}.box1 .item text.data-v-eaae2774{display:block}.box1 .item .item-ite.data-v-eaae2774{font-size:36rpx;margin-bottom:15px;width:100%}.box1 .item .item-set.data-v-eaae2774{width:calc(100% - 30px);display:flex;align-items:center;height:55px;line-height:55px;font-size:60rpx;margin-bottom:5px;background-color:#f7f7f7;padding:0 15px;justify-content:space-between;margin:auto;position:relative}.box1 .item .item-set.data-v-eaae2774 input{font-size:60rpx;height:55px;line-height:55px}.box1 .item .item-set0.data-v-eaae2774{background-color:#fff;justify-content:center}.box1 .item .tips.data-v-eaae2774{font-size:32rpx;color:#999;margin-top:10px}.box1 .start.data-v-eaae2774{color:#fff;width:100px;height:100px;font-size:36rpx;font-weight:700;line-height:100px;text-align:center;border-radius:50%;background:#37cc92;margin:15px auto}.box1 .Nstart.data-v-eaae2774{opacity:.5!important}.status.data-v-eaae2774{background-color:#fff}.status image.data-v-eaae2774{width:18px;height:18px}.status .icon_link.data-v-eaae2774{-webkit-animation:rotation-data-v-eaae2774 .6s infinite linear;animation:rotation-data-v-eaae2774 .6s infinite linear}@-webkit-keyframes rotation-data-v-eaae2774{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes rotation-data-v-eaae2774{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{"version":3,"sources":["uni-app:///main.js"],"names":["wx","__webpack_require_UNI_MP_PLUGIN__","__webpack_require__","createPage","Page"],"mappings":";;;;;;;;;;;;;AAAA;AAGA;AACA;AAHA;AACAA,EAAE,CAACC,iCAAiC,GAAGC,mBAAmB;AAG1DC,UAAU,CAACC,UAAI,CAAC,C","file":"pageTwo/B20/B20.js","sourcesContent":["import 'uni-pages';\n// @ts-ignore\nwx.__webpack_require_UNI_MP_PLUGIN__ = __webpack_require__;\nimport Vue from 'vue'\nimport Page from './pageTwo/B20/B20.vue'\ncreatePage(Page)"],"sourceRoot":""}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More