估分多选
This commit is contained in:
parent
0fbf0572da
commit
06959bd56a
|
|
@ -2,8 +2,8 @@
|
|||
"name" : "青测",
|
||||
"appid" : "__UNI__E0E1A21",
|
||||
"description" : "",
|
||||
"versionName" : "1.1.6",
|
||||
"versionCode" : 116,
|
||||
"versionName" : "1.1.5",
|
||||
"versionCode" : 115,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
|
|
@ -21,6 +21,9 @@
|
|||
"modules" : {
|
||||
"Bluetooth" : {}
|
||||
},
|
||||
"compattible" : {
|
||||
"ignoreVersion" : true // true 表示忽略版本检查提示
|
||||
},
|
||||
/* 应用发布信息 */
|
||||
"distribute" : {
|
||||
/* android打包配置 */
|
||||
|
|
|
|||
|
|
@ -170,6 +170,7 @@
|
|||
let buffer = device.advertisData.slice(3, 9)
|
||||
device.mac = new Uint8Array(buffer) // 保存广播数据中的mac地址,这是由于iOS不直接返回mac地址
|
||||
let tempMac = Array.from(device.mac)
|
||||
tempMac.reverse()
|
||||
device.macAddr = that.$tools.ab2hex(tempMac, ':').toUpperCase()
|
||||
that.deviceId = device.deviceId
|
||||
that.macAddr = device.macAddr
|
||||
|
|
|
|||
|
|
@ -2,16 +2,17 @@
|
|||
<view class="content">
|
||||
<!-- 估分 -->
|
||||
<view class="box">
|
||||
<view class="title bold" v-if="Max_score">该地区体育总成绩为:{{Max_score}}</view>
|
||||
<view class="title bold">本次估分成绩为</view>
|
||||
<view class="charts">
|
||||
<qiun-data-charts type="arcbar" :chartData="chartData" />
|
||||
<view class="name">{{score}}</view>
|
||||
</view>
|
||||
<view class="name">{{score}}</view>
|
||||
<view class="time text_c">{{create_time}}</view>
|
||||
</view>
|
||||
<!-- -->
|
||||
<view v-for="(item,index) in selectllist">
|
||||
<view class="titleName bold mt-15 ml-15 size18">{{item.name}}</view>
|
||||
<view class="titleName bold mt-15 ml-15 size16">{{item.name}}</view>
|
||||
<view class="indexCarList">
|
||||
<view class="card" v-for="(ite,ind) in item.list">
|
||||
<view class="title">
|
||||
|
|
@ -21,8 +22,8 @@
|
|||
<view class="name">{{it.name}}</view>
|
||||
<view class="weight">
|
||||
<view class="input">{{it.value?it.value:'-'}}</view>
|
||||
<view class="cblue bold">{{it.score?it.score:'-'}}</view>
|
||||
<view class="cblue bold">{{it.proportion_value?it.proportion_value:'-'}}</view>
|
||||
<view class="cblue bold">{{it.total_score?it.total_score:'-'}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
@ -45,6 +46,7 @@
|
|||
}]
|
||||
},
|
||||
score: 0,
|
||||
Max_score: 0,
|
||||
create_time: "",
|
||||
selectllist: []
|
||||
}
|
||||
|
|
@ -66,6 +68,7 @@
|
|||
if (res.code != 0) return
|
||||
that.selectllist = res.data.list
|
||||
that.score = Number(res.data.score)
|
||||
that.Max_score = res.data.max_score
|
||||
that.create_time = res.data.create_time
|
||||
that.chartData.series[0].data = Number(res.data.score) / 50
|
||||
})
|
||||
|
|
@ -93,14 +96,33 @@
|
|||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 10px;
|
||||
position: relative;
|
||||
|
||||
.name {
|
||||
position: absolute;
|
||||
top: 42%;
|
||||
margin: auto;
|
||||
font-size: 70rpx;
|
||||
color: #4687F9;
|
||||
.charts {
|
||||
width: 100%;
|
||||
height: 260upx;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.name {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 56rpx;
|
||||
margin: auto;
|
||||
color: #4687F9;
|
||||
}
|
||||
}
|
||||
|
||||
.title {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.time {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -119,9 +141,10 @@
|
|||
border-radius: 5px;
|
||||
height: 35px;
|
||||
display: flex;
|
||||
font-weight: bold;
|
||||
align-items: center;
|
||||
width: calc(100% - 10px);
|
||||
|
||||
font-size: 32upx;
|
||||
|
||||
.name {
|
||||
font-weight: bold;
|
||||
|
|
@ -143,15 +166,16 @@
|
|||
background: #fff;
|
||||
padding: 0 10px;
|
||||
height: 50px;
|
||||
font-size: 28upx;
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
|
||||
.name {
|
||||
width: 35%;
|
||||
width: 40%;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
.weight {
|
||||
width: 65%;
|
||||
width: 60%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
|
|
@ -168,11 +192,9 @@
|
|||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.charts {
|
||||
width: 100%;
|
||||
height: 130px;
|
||||
margin: 10px 0;
|
||||
.item3:nth-child(1) {
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
@ -7,14 +7,15 @@
|
|||
<view class="title bold">本次估分成绩为</view>
|
||||
<view class="charts mt-15">
|
||||
<qiun-data-charts type="arcbar" :chartData="chartData" />
|
||||
<view class="name">{{score?score:'--'}}</view>
|
||||
</view>
|
||||
<view class="name">{{score?score:'--'}}</view>
|
||||
<view class="btn history" @click="navTo('/pages/score/history')">估分历史</view>
|
||||
<view class="title bold" v-if="Max_score">该地区体育总成绩为:{{Max_score}}</view>
|
||||
</view>
|
||||
<!-- -->
|
||||
<view v-if="selectllist.length">
|
||||
<view v-for="(item,index) in selectllist">
|
||||
<view class="titleName bold mt-15 ml-15 size18">{{item.name}}</view>
|
||||
<view class="titleName bold mt-15 ml-15 size16">{{item.name}}</view>
|
||||
<view class="indexCarList">
|
||||
<view class="card" v-for="(ite,ind) in item.list">
|
||||
<view class="title">
|
||||
|
|
@ -23,7 +24,8 @@
|
|||
</view>
|
||||
<!-- 列表 -->
|
||||
<view class="item3" v-for="(it,ik) in ite.list" :key="ik" v-if="!isresult">
|
||||
<view class="name">{{it.name}}</view>
|
||||
<view class="name">{{it.name}}<uni-icons type="info" color="#f0ad4e" size="20"
|
||||
@click="handleTips(it.describe)" v-if="it.describe"></uni-icons></view>
|
||||
<view class="weight">
|
||||
<view class="input">
|
||||
<!-- 整数类型 -->
|
||||
|
|
@ -51,8 +53,8 @@
|
|||
<view class="name">{{ita.name}}</view>
|
||||
<view class="weight">
|
||||
<view style="width: 40%;">{{ita.value?ita.value:'-'}}</view>
|
||||
<view class="cblue bold">{{ita.score?ita.score:'-'}}</view>
|
||||
<view class="cblue bold">{{ita.proportion_value?ita.proportion_value:'-'}}</view>
|
||||
<view class="cblue bold">{{ita.total_score?ita.total_score:'-'}}</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
@ -74,10 +76,16 @@
|
|||
<view class="wrapper" v-if="isDrawe">
|
||||
<view class="bg" @click="onTap"></view>
|
||||
<view class="edit" @click.stop>
|
||||
<view class="title">请选择</view>
|
||||
<view class="title">请选择<text class="choice">({{List.length}}选{{choice}})</text></view>
|
||||
<view class="item" v-for="(item, index) in List" :key="index" @click="toggle(item)">
|
||||
<uni-icons :type="isActive.name==item.name?'checkbox-filled':'circle'" size="22"
|
||||
:color="isActive.name==item.name?'#FEC407':'#dfdfdf'"></uni-icons>
|
||||
|
||||
<!-- d单选 -->
|
||||
<uni-icons :type="isActive.name==item.name?'circle-filled':'circle'" size="22"
|
||||
:color="isActive.name==item.name?'#FEC407':'#dfdfdf'" v-if="choice==1"></uni-icons>
|
||||
<!-- 多选 -->
|
||||
<uni-icons :type="isActiveList.indexOf(item)!=-1?'checkbox-filled':'circle'" size="22"
|
||||
:color="isActiveList.indexOf(item)!=-1?'#FEC407':'#dfdfdf'" v-if="choice>1"></uni-icons>
|
||||
<!-- -->
|
||||
<view class="name">
|
||||
<view class="overflow">
|
||||
{{item.name}}
|
||||
|
|
@ -111,9 +119,11 @@
|
|||
sportsList: [],
|
||||
List: [],
|
||||
score: 0,
|
||||
Max_score: 0,
|
||||
isDrawe: false,
|
||||
selectllist: [],
|
||||
isActive: {},
|
||||
isActiveList: [],
|
||||
region_list: {},
|
||||
timeList: [],
|
||||
timesTndex: [0, 0],
|
||||
|
|
@ -121,6 +131,7 @@
|
|||
msg: "",
|
||||
address: "",
|
||||
isresult: false,
|
||||
choice: 0
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
@ -148,6 +159,8 @@
|
|||
onPullDownRefresh() {
|
||||
let that = this
|
||||
that.score = 0
|
||||
that.choice = 0
|
||||
that.Max_score = 0
|
||||
that.selectllist = []
|
||||
that.sportsList = []
|
||||
that.timeList = that.$tools.gethms()
|
||||
|
|
@ -165,8 +178,10 @@
|
|||
// that.isSports = false
|
||||
if (!that.familayList.length) {
|
||||
that.score = 0
|
||||
that.Max_score = 0
|
||||
that.selectllist = []
|
||||
that.sportsList = []
|
||||
that.isActiveList = []
|
||||
that.chartData.series[0].data = 0.8
|
||||
}
|
||||
},
|
||||
|
|
@ -191,6 +206,7 @@
|
|||
that.isresult = false
|
||||
that.selectllist = []
|
||||
that.sportsList = []
|
||||
that.isActiveList = []
|
||||
that.getList()
|
||||
},
|
||||
//
|
||||
|
|
@ -200,7 +216,8 @@
|
|||
that.isSports = false
|
||||
that.$model.getSportsListAll({
|
||||
gender: uni.getStorageSync('gender'),
|
||||
parameter_data: that.address
|
||||
parameter_data: that.address,
|
||||
// parameter_data: "辽宁,沈阳市"
|
||||
}).then((res) => {
|
||||
console.log("全部项目", res)
|
||||
if (res.code != 0) {
|
||||
|
|
@ -208,6 +225,7 @@
|
|||
return
|
||||
}
|
||||
that.score = 0
|
||||
that.Max_score = 0
|
||||
that.selectllist = res.data
|
||||
that.chartData.series[0].data = 0.8
|
||||
that.handleSportsList()
|
||||
|
|
@ -220,6 +238,7 @@
|
|||
aud_id: uni.getStorageSync('userid'),
|
||||
gender: uni.getStorageSync('gender'),
|
||||
address: that.address
|
||||
// address: "辽宁,沈阳市"
|
||||
}).then((res) => {
|
||||
console.log("单地区", res)
|
||||
if (res.code != 0) return
|
||||
|
|
@ -233,6 +252,7 @@
|
|||
that.$tools.msg("请先添加成员")
|
||||
return
|
||||
}
|
||||
console.log("selectllist", that.selectllist)
|
||||
that.selectllist.forEach(item => {
|
||||
item.list.forEach(ite => {
|
||||
ite.list.forEach(it => {
|
||||
|
|
@ -244,6 +264,7 @@
|
|||
aud_id: uni.getStorageSync('userid'),
|
||||
gender: uni.getStorageSync('gender'),
|
||||
parameter_data: that.address,
|
||||
// parameter_data: "辽宁,沈阳市",
|
||||
result_data: that.selectllist,
|
||||
}).then((res) => {
|
||||
console.log("开始估分", res)
|
||||
|
|
@ -255,7 +276,8 @@
|
|||
that.isresult = true
|
||||
that.selectllist = res.data.list
|
||||
that.score = res.data.total_score
|
||||
that.chartData.series[0].data = Number(res.data.total_score) / 50
|
||||
that.Max_score = res.data.max_score
|
||||
that.chartData.series[0].data = Number(res.data.total_score) / res.data.max_score
|
||||
})
|
||||
},
|
||||
// 添加项目
|
||||
|
|
@ -263,12 +285,13 @@
|
|||
let that = this
|
||||
that.List = []
|
||||
that.region_list = item
|
||||
console.log("添加项目", that.sportsList, that.List)
|
||||
that.sportsList.forEach(ite => {
|
||||
if (ite.key == item.key) {
|
||||
that.List = ite.list
|
||||
that.choice = item.is_choice
|
||||
}
|
||||
})
|
||||
// console.log("添加项目", item)
|
||||
that.isDrawe = true
|
||||
},
|
||||
bindTimeChange(e, it) {
|
||||
|
|
@ -276,15 +299,29 @@
|
|||
let minute = e.target.value[0]
|
||||
let second = e.target.value[1]
|
||||
it.value = that.timeList[0][minute].substring(0, 2) + ':' + that.timeList[1][second].substring(0, 2)
|
||||
console.log(e.target.value, it)
|
||||
// console.log(e.target.value, it)
|
||||
},
|
||||
// 选择项目
|
||||
toggle(item) {
|
||||
this.isActive = this.isActive.name == item.name ? {} : item
|
||||
let that = this
|
||||
if (that.choice == 1) {
|
||||
that.isActive = that.isActive.name == item.name ? {} : item
|
||||
return
|
||||
}
|
||||
if (that.isActiveList.indexOf(item.name) == -1) {
|
||||
that.isActiveList.push(item)
|
||||
} else {
|
||||
that.isActiveList = that.isActiveList.filter(ite => ite.name !== item.name)
|
||||
}
|
||||
if (that.isActiveList.length > that.choice) {
|
||||
that.isActiveList.splice(0, 1)
|
||||
}
|
||||
// console.log("isActiveList", that.selectllist, that.region_list, item)
|
||||
},
|
||||
// 确定选择项目
|
||||
handleTarget() {
|
||||
let that = this
|
||||
// console.log('确定', that.selectllist, that.region_list)
|
||||
that.selectllist.forEach(item => {
|
||||
item.list.forEach(it => {
|
||||
if (it.key == that.region_list.key) {
|
||||
|
|
@ -292,9 +329,20 @@
|
|||
}
|
||||
})
|
||||
})
|
||||
that.region_list.list.push(that.isActive)
|
||||
if (that.choice == 1) {
|
||||
that.region_list.list.push(that.isActive)
|
||||
} else {
|
||||
that.region_list.list = that.isActiveList
|
||||
}
|
||||
that.isDrawe = false
|
||||
},
|
||||
handleTips(text) {
|
||||
uni.showToast({
|
||||
title: text,
|
||||
duration: 4000,
|
||||
icon: 'none'
|
||||
})
|
||||
},
|
||||
// 取消选择
|
||||
onTap() {
|
||||
this.isActive = {}
|
||||
|
|
@ -333,31 +381,50 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.name {
|
||||
position: absolute;
|
||||
top: 45%;
|
||||
margin: auto;
|
||||
font-size:70rpx;
|
||||
color: #4687F9;
|
||||
}
|
||||
|
||||
.history {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 10px;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
float: right;
|
||||
margin-top: 15px;
|
||||
font-size: 32rpx;
|
||||
font-size: 28rpx;
|
||||
padding: 0 10px;
|
||||
background: $maincolor !important;
|
||||
}
|
||||
|
||||
.charts {
|
||||
width: 100%;
|
||||
height: 260upx;
|
||||
margin: 10px 0;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
.name {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 56rpx;
|
||||
margin: auto;
|
||||
color: #4687F9;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.wrapper {
|
||||
font-size: 28upx;
|
||||
|
||||
.choice {
|
||||
color: $textcolor;
|
||||
font-weight: 500;
|
||||
padding-left: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.edit {
|
||||
background-color: #fff;
|
||||
|
|
@ -365,8 +432,8 @@
|
|||
|
||||
.item {
|
||||
width: 100%;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
display: flex;
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
}
|
||||
|
|
@ -411,6 +478,7 @@
|
|||
|
||||
|
||||
.name {
|
||||
font-size: 32upx;
|
||||
font-weight: bold;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
|
@ -430,15 +498,16 @@
|
|||
background: #fff;
|
||||
padding: 0 10px;
|
||||
height: 50px;
|
||||
font-size: 28rpx;
|
||||
border-bottom: 1px solid #f7f7f7;
|
||||
|
||||
.name {
|
||||
width: 35%;
|
||||
width: 45%;
|
||||
line-height: 50px;
|
||||
}
|
||||
|
||||
.weight {
|
||||
width: 65%;
|
||||
width: 55%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
|
|
@ -446,7 +515,6 @@
|
|||
|
||||
text {
|
||||
color: #666;
|
||||
font-size: 32rpx;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 15px;
|
||||
|
|
@ -468,7 +536,7 @@
|
|||
/deep/input,
|
||||
/deep/picker {
|
||||
width: 100%;
|
||||
font-size:28rpx;
|
||||
font-size: 28rpx;
|
||||
height: 35px;
|
||||
line-height: 33px;
|
||||
text-align: center;
|
||||
|
|
@ -508,12 +576,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
.charts {
|
||||
width: 100%;
|
||||
height: 130px;
|
||||
}
|
||||
|
||||
.gfbtn {
|
||||
width: calc(100% - 40px);
|
||||
margin-top: 20px;
|
||||
|
|
|
|||
|
|
@ -67,7 +67,8 @@ function validatePhoneEmail(input) {
|
|||
function msg(str) {
|
||||
uni.showToast({
|
||||
title: str,
|
||||
icon: 'none'
|
||||
icon: 'none',
|
||||
duration: 3000
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
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
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
|
|
@ -1 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__E0E1A21","name":"青测","version":{"name":"1.1.6","code":116},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Bluetooth":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"template":"index.html","distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"common","android":{"hdpi":"static/logo.png","xhdpi":"static/logo.png","xxhdpi":"static/logo.png"},"useOriginalMsgbox":true},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["arm64-v8a","x86"]},"apple":{"dSYMs":false,"idfa":false,"privacyDescription":{"NSBluetoothAlwaysUsageDescription":"连接设备"}},"plugins":{"share":{},"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#fff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.99","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#333","selectedColor":"#477EFF","backgroundColor":"#fff","list":[{"pagePath":"pages/index/index","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"首页"},{"pagePath":"pages/score/score","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"估分"},{"pagePath":"pages/business/business","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"设备"},{"pagePath":"pages/me/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"},"locale":"zh-Hans","fallbackLocale":"zh-Hans"}
|
||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__E0E1A21","name":"青测","version":{"name":"1.1.5","code":115},"description":"","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"Bluetooth":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#fff"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"template":"index.html","compattible":{"ignoreVersion":true},"distribute":{"icons":{"android":{"hdpi":"unpackage/res/icons/72x72.png","xhdpi":"unpackage/res/icons/96x96.png","xxhdpi":"unpackage/res/icons/144x144.png","xxxhdpi":"unpackage/res/icons/192x192.png"},"ios":{"appstore":"unpackage/res/icons/1024x1024.png","ipad":{"app":"unpackage/res/icons/76x76.png","app@2x":"unpackage/res/icons/152x152.png","notification":"unpackage/res/icons/20x20.png","notification@2x":"unpackage/res/icons/40x40.png","proapp@2x":"unpackage/res/icons/167x167.png","settings":"unpackage/res/icons/29x29.png","settings@2x":"unpackage/res/icons/58x58.png","spotlight":"unpackage/res/icons/40x40.png","spotlight@2x":"unpackage/res/icons/80x80.png"},"iphone":{"app@2x":"unpackage/res/icons/120x120.png","app@3x":"unpackage/res/icons/180x180.png","notification@2x":"unpackage/res/icons/40x40.png","notification@3x":"unpackage/res/icons/60x60.png","settings@2x":"unpackage/res/icons/58x58.png","settings@3x":"unpackage/res/icons/87x87.png","spotlight@2x":"unpackage/res/icons/80x80.png","spotlight@3x":"unpackage/res/icons/120x120.png"}}},"splashscreen":{"androidStyle":"common","android":{"hdpi":"static/logo.png","xhdpi":"static/logo.png","xxhdpi":"static/logo.png"},"useOriginalMsgbox":true},"google":{"permissions":["<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>","<uses-permission android:name=\"android.permission.VIBRATE\"/>","<uses-permission android:name=\"android.permission.READ_LOGS\"/>","<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>","<uses-feature android:name=\"android.hardware.camera.autofocus\"/>","<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>","<uses-permission android:name=\"android.permission.CAMERA\"/>","<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>","<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>","<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>","<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>","<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>","<uses-feature android:name=\"android.hardware.camera\"/>","<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"],"abiFilters":["arm64-v8a","x86"]},"apple":{"dSYMs":false,"idfa":false,"privacyDescription":{"NSBluetoothAlwaysUsageDescription":"连接设备"}},"plugins":{"share":{},"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"safearea":{"background":"#fff","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"4.24","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"color":"#333","selectedColor":"#477EFF","backgroundColor":"#fff","list":[{"pagePath":"pages/index/index","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"首页"},{"pagePath":"pages/score/score","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"估分"},{"pagePath":"pages/business/business","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"设备"},{"pagePath":"pages/me/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}],"borderStyle":"rgba(0,0,0,0.4)","height":"50px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"},"locale":"zh-Hans","fallbackLocale":"zh-Hans"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -729,7 +729,7 @@
|
|||
background: url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20width%3D%27100%25%27%20height%3D%27100%25%27%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20id%3D%22t-icon-xiazai41%22%20viewBox%3D%220%200%201024%201024%22%3E%3Cpath%20d%3D%22M888.514259%20742.334969%20888.514259%20742.334969c-12.409634%2012.409634-32.715099%2012.409634-45.124733%200l-90.248444-90.248444c-12.409634-12.409634-12.409634-32.715099%200-45.124733l0%200c12.409634-12.409634%2032.715099-12.409634%2045.124733%200l90.249467%2090.248444C900.92287%20709.61987%20900.92287%20729.925335%20888.514259%20742.334969zM935.280376%20481.368352%20935.280376%20481.368352c0%2017.549701-14.358009%2031.907711-31.907711%2031.907711L775.741823%20513.276063c-17.549701%200-31.907711-14.358009-31.907711-31.907711l0%200c0-17.549701%2014.358009-31.907711%2031.907711-31.907711l127.630842%200C920.922367%20449.460642%20935.280376%20463.818651%20935.280376%20481.368352zM753.141082%20373.944737%20753.141082%20373.944737c12.409634%2012.409634%2032.715099%2012.409634%2045.124733%200l90.249467-90.248444c12.409634-12.409634%2012.409634-32.715099%200-45.124733l0%200c-12.409634-12.409634-32.715099-12.409634-45.124733%200l-90.248444%2090.248444C740.731448%20341.229638%20740.731448%20361.535103%20753.141082%20373.944737zM623.036909%20951.717743c-11.110035%200-22.583344-4.448312-32.720216-13.024641l-246.657726-208.682833c-13.453407-11.382235-15.132652-31.515784-3.750417-44.968168%2011.382235-13.452383%2031.515784-15.132652%2044.968168-3.750417l216.285998%20182.987614L601.162716%20160.03281%20407.043576%20325.567937c-17.97335%2015.326057-48.161906%2026.450419-71.78186%2026.450419L152.535045%20352.018356l0%20321.972039%2087.490633%200c17.622356%200%2031.907711%2014.285355%2031.907711%2031.907711s-14.285355%2031.907711-31.907711%2031.907711l-90.391706%200c-33.589003%200-60.915371-27.325345-60.915371-60.914348L88.718601%20349.117282c0-33.589003%2027.326369-60.915371%2060.915371-60.915371l185.626721%200c8.382924%200%2023.99653-5.753027%2030.375821-11.1919L590.295204%2085.432765c15.430434-13.155624%2033.994232-16.695241%2049.662073-9.464559%2015.666818%207.230682%2025.02086%2023.652699%2025.02086%2043.929512L664.978137%20904.063397c0%2020.249183-9.340739%2036.671201-24.987091%2043.928488C634.604362%20950.489776%20628.870778%20951.717743%20623.036909%20951.717743z%22%20fill%3D%22%23ff5656%22%20%3E%3C%2Fpath%3E%3C%2Fsvg%3E);
|
||||
}
|
||||
page {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.text_l {
|
||||
text-align: left;
|
||||
|
|
@ -759,20 +759,20 @@ page {
|
|||
color: #477EFF !important;
|
||||
}
|
||||
.size12 {
|
||||
font-size: 24rpx !important;
|
||||
font-size: 28rpx !important;
|
||||
}
|
||||
.size14 {
|
||||
font-size: 14rpx !important;
|
||||
}
|
||||
.size16 {
|
||||
font-size: 32rpx !important;
|
||||
}
|
||||
.size18 {
|
||||
.size16 {
|
||||
font-size: 36rpx !important;
|
||||
}
|
||||
.size20 {
|
||||
.size18 {
|
||||
font-size: 40rpx !important;
|
||||
}
|
||||
.size20 {
|
||||
font-size: 44rpx !important;
|
||||
}
|
||||
.size26 {
|
||||
font-size: 52rpx !important;
|
||||
}
|
||||
|
|
@ -872,7 +872,7 @@ page {
|
|||
}
|
||||
.endtext {
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #999;
|
||||
padding: 15px 0;
|
||||
}
|
||||
|
|
@ -964,14 +964,14 @@ page {
|
|||
margin-right: 10px;
|
||||
}
|
||||
.wrapper .wrapper_box .drawerList .drawerList_item .overflow {
|
||||
font-size: 27rpx;
|
||||
font-size: 32rpx;
|
||||
color: #333;
|
||||
}
|
||||
.wrapper .wrapper_box .drawerList .drawerList_item .right {
|
||||
width: 70%;
|
||||
}
|
||||
.wrapper .wrapper_box .drawerList .drawerList_item .right .dangqian {
|
||||
font-size: 20rpx;
|
||||
font-size: 28rpx;
|
||||
color: #fff;
|
||||
padding: 1px 5px;
|
||||
background-color: #477EFF;
|
||||
|
|
@ -995,7 +995,7 @@ page {
|
|||
.wrapper .wrapper_box .drawerList .drawerList_item .info view {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
}
|
||||
.wrapper .wrapper_box .drawerList .drawerList_item .name {
|
||||
|
|
@ -1012,7 +1012,7 @@ page {
|
|||
color: #fff;
|
||||
height: 30px;
|
||||
text-align: center;
|
||||
font-size: 28px;
|
||||
font-size: 56rpx;
|
||||
line-height: 30px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
|
@ -1032,13 +1032,13 @@ page {
|
|||
text-align: center;
|
||||
width: 100%;
|
||||
color: #333;
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.wrapper .edit .editem {
|
||||
position: relative;
|
||||
display: flex;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
border-radius: 10px;
|
||||
margin-top: 15px;
|
||||
height: 40px;
|
||||
|
|
@ -1048,7 +1048,7 @@ page {
|
|||
align-items: center;
|
||||
}
|
||||
.wrapper .edit .editem .radioimg {
|
||||
font-size: 22px;
|
||||
font-size: 44rpx;
|
||||
color: #FEC407;
|
||||
}
|
||||
.wrapper .edit .editem .radio {
|
||||
|
|
@ -1077,7 +1077,7 @@ page {
|
|||
}
|
||||
.wrapper .edit .editem .right picker {
|
||||
width: 100%;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
|
@ -1108,7 +1108,7 @@ page {
|
|||
display: flex;
|
||||
}
|
||||
.wrapper .edit .tips {
|
||||
font-size: 0.75rem;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
text-align: center;
|
||||
margin-top: 15px;
|
||||
|
|
@ -1145,7 +1145,7 @@ page {
|
|||
}
|
||||
.header .add {
|
||||
border: 1px #dfdfdf dashed;
|
||||
font-size: 28px;
|
||||
font-size: 56rpx;
|
||||
font-weight: 500;
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
|
|
@ -1196,7 +1196,7 @@ page {
|
|||
color: #fff;
|
||||
}
|
||||
.TrendPage .boxTime .iconfont {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #666;
|
||||
}
|
||||
.TrendPage .boxLine {
|
||||
|
|
@ -1258,7 +1258,7 @@ page {
|
|||
.gridList .data .item {
|
||||
width: 47.5%;
|
||||
text-align: center;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
line-height: 30px;
|
||||
background: #fff;
|
||||
padding: 10px 0;
|
||||
|
|
@ -1271,13 +1271,13 @@ page {
|
|||
.gridList .data .val {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 20px;
|
||||
font-size: 40rpx;
|
||||
font-weight: 700;
|
||||
justify-content: center;
|
||||
color: #666;
|
||||
}
|
||||
.gridList .data .val text {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
font-weight: 500;
|
||||
display: block;
|
||||
margin-top: 3px;
|
||||
|
|
@ -1303,7 +1303,7 @@ page {
|
|||
background: linear-gradient(to right, #477EFF, #39D9C9);
|
||||
border-radius: 10px;
|
||||
margin: 0 15px 10px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
padding: 20px 10px 5px;
|
||||
color: #fff;
|
||||
}
|
||||
|
|
@ -1326,7 +1326,7 @@ page {
|
|||
.skiptop .item text {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
|
@ -1350,7 +1350,7 @@ page {
|
|||
justify-content: space-between;
|
||||
}
|
||||
.indexCarList .card .title text {
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
margin-right: 10px;
|
||||
color: #333;
|
||||
|
|
@ -1365,7 +1365,7 @@ page {
|
|||
width: 100%;
|
||||
}
|
||||
.indexCarList .card .item .weight text {
|
||||
font-size: 24px !important;
|
||||
font-size: 48rpx !important;
|
||||
font-weight: bold;
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
@ -1375,7 +1375,7 @@ page {
|
|||
border-radius: 8px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
margin: auto;
|
||||
background-color: #FEC407;
|
||||
}
|
||||
|
|
@ -1385,7 +1385,7 @@ page {
|
|||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding-top: 10px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #477EFF;
|
||||
border-top: 1px solid #f7f7f7;
|
||||
}
|
||||
|
|
@ -1461,7 +1461,7 @@ page {
|
|||
border-radius: 10px;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
font-weight: 700;
|
||||
}
|
||||
.calendar .list .item view {
|
||||
|
|
@ -1473,7 +1473,7 @@ page {
|
|||
}
|
||||
.calendar .list .item text {
|
||||
width: 100%;
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
display: block;
|
||||
color: #666;
|
||||
text-align: center;
|
||||
|
|
@ -1483,16 +1483,16 @@ page {
|
|||
width: 35px !important;
|
||||
}
|
||||
.calendar .list .item .check .icon-kongradio {
|
||||
font-size: 22px;
|
||||
font-size: 44rpx;
|
||||
color: #999;
|
||||
}
|
||||
.calendar .list .item .check .icon-radio {
|
||||
font-size: 22px;
|
||||
font-size: 44rpx;
|
||||
color: #FCA82D;
|
||||
}
|
||||
.calendar .time {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #666;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -1500,7 +1500,7 @@ page {
|
|||
flex-wrap: wrap;
|
||||
}
|
||||
.calendar .time text {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
margin-top: 3px;
|
||||
}
|
||||
.calendar .bottom {
|
||||
|
|
@ -1544,7 +1544,7 @@ page {
|
|||
width: 25px;
|
||||
}
|
||||
.calendar .bottom .list .check .icon-quxiao {
|
||||
font-size: 20px;
|
||||
font-size: 40rpx;
|
||||
color: #999;
|
||||
}
|
||||
.calendar .pkclass {
|
||||
|
|
@ -1556,7 +1556,7 @@ page {
|
|||
line-height: 27px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
font-size: 19px;
|
||||
font-size: 40rpx;
|
||||
left: 30px;
|
||||
top: 120rpx;
|
||||
}
|
||||
|
|
@ -1586,13 +1586,13 @@ page {
|
|||
text-align: left;
|
||||
}
|
||||
.pkconp .headerTop image {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
width: 110rpx;
|
||||
height: 110rpx;
|
||||
border-radius: 50%;
|
||||
margin-right: 15px;
|
||||
}
|
||||
.pkconp .headerTop .right {
|
||||
width: calc(100% - 70px);
|
||||
width: calc(100% - 140rpx);
|
||||
}
|
||||
.pkconp .headerTop .top {
|
||||
width: 100%;
|
||||
|
|
@ -1601,6 +1601,7 @@ page {
|
|||
line-height: 30px;
|
||||
color: #999;
|
||||
margin-top: 15px;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.pkconp .box {
|
||||
background: #ffff;
|
||||
|
|
@ -1610,6 +1611,7 @@ page {
|
|||
align-items: center;
|
||||
padding-top: 15px;
|
||||
margin: 15px;
|
||||
font-size: 15px;
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
.pkconp .box .item {
|
||||
|
|
@ -1621,7 +1623,7 @@ page {
|
|||
box-sizing: border-box;
|
||||
}
|
||||
.pkconp .box .item view {
|
||||
font-size: 20px;
|
||||
font-size: 40rpx;
|
||||
font-weight: 700;
|
||||
color: #666;
|
||||
}
|
||||
|
|
@ -1656,6 +1658,7 @@ page {
|
|||
.pkconp .control .li .name {
|
||||
width: 25%;
|
||||
display: flex;
|
||||
font-size: 32rpx;
|
||||
align-items: center;
|
||||
}
|
||||
.pkconp .control .li .name image {
|
||||
|
|
@ -1683,10 +1686,10 @@ page {
|
|||
display: block;
|
||||
width: 100%;
|
||||
color: #999999;
|
||||
font-size: 11px;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.pkconp .control .li .f0 text {
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.pkconp .time {
|
||||
border-top: 1px solid #f0f0f0;
|
||||
|
|
@ -1725,7 +1728,7 @@ page {
|
|||
.weightPages .text {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
margin-top: 20px;
|
||||
color: #477EFF;
|
||||
}
|
||||
|
|
@ -1734,7 +1737,7 @@ page {
|
|||
text-align: center;
|
||||
height: 45px;
|
||||
line-height: 45px;
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.weightPages .image {
|
||||
|
|
@ -1751,7 +1754,7 @@ page {
|
|||
margin-top: 25px;
|
||||
padding-left: 20px;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
}
|
||||
.weightPages .tips text {
|
||||
|
|
@ -1779,7 +1782,7 @@ page {
|
|||
line-height: 30px;
|
||||
}
|
||||
.weightPages .wrapper .Blue .h4 {
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
font-weight: 700;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
|
@ -1792,7 +1795,7 @@ page {
|
|||
margin-bottom: 15px;
|
||||
}
|
||||
.weightPages .wrapper .Blue .Blue-box text {
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
font-weight: 700;
|
||||
margin: 0 5px;
|
||||
color: #477EFF;
|
||||
|
|
@ -1808,7 +1811,7 @@ page {
|
|||
width: 45%;
|
||||
background: #477EFF;
|
||||
border-radius: 5px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
height: 35px;
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -1 +1 @@
|
|||
<view class="data-v-815fb44c"><view class="header data-v-815fb44c"><block wx:if="{{$root.g0}}"><view class="top data-v-815fb44c"><view class="headimg data-v-815fb44c"><image src="{{user.head_pic}}" class="data-v-815fb44c"></image></view><view class="info data-v-815fb44c"><view class="size20 bold data-v-815fb44c">{{user.nickname}}</view><view class="mt-5 data-v-815fb44c">{{"年龄:"+user.age+"岁"}}</view><view class="data-v-815fb44c">{{$root.m0+":"+user.birthday}}</view></view><block wx:if="{{isLeft}}"><text data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="t-icon t-icon-qiehuan1 data-v-815fb44c" bindtap="__e"></text></block></view></block><block wx:else><view data-event-opts="{{[['tap',[['handleAddUser',['$event']]]]]}}" class="top data-v-815fb44c" bindtap="__e"><view class="info data-v-815fb44c">暂无成员,请先添加~</view><view class="add data-v-815fb44c">+</view></view></block></view><view class="cityList data-v-815fb44c"><block wx:if="{{isArea}}"><view data-event-opts="{{[['tap',[['e1',['$event']]]]]}}" class="area data-v-815fb44c" bindtap="__e"><view class="data-v-815fb44c">选择地区标准:</view><view class="data-v-815fb44c">{{region?region:user.address}}<uni-icons vue-id="2ab5166c-1" type="bottom" class="data-v-815fb44c" bind:__l="__l"></uni-icons></view></view></block><block wx:if="{{visible}}"><view data-event-opts="{{[['tap',[['e2',['$event']]]]]}}" class="visible data-v-815fb44c" bindtap="__e"><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="item data-v-815fb44c" catchtap="__e"><view class="groupBtn data-v-815fb44c"><view data-event-opts="{{[['tap',[['e3',['$event']]]]]}}" bindtap="__e" class="data-v-815fb44c">取消</view><view data-event-opts="{{[['tap',[['handlesure']]]]}}" class="sure data-v-815fb44c" bindtap="__e">确定</view></view><picker-view class="picker-view data-v-815fb44c" value="{{value}}" indicator-style="{{indicatorStyle}}" data-event-opts="{{[['change',[['bindChange',['$event']]]]]}}" bindchange="__e"><picker-view-column class="data-v-815fb44c"><block wx:for="{{province}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item data-v-815fb44c">{{item.name}}</view></block></picker-view-column><picker-view-column class="data-v-815fb44c"><block wx:for="{{city}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item data-v-815fb44c">{{item}}</view></block></picker-view-column></picker-view></view></view></block></view><drawer vue-id="2ab5166c-2" class="data-v-815fb44c" bind:__l="__l"></drawer></view>
|
||||
<view class="data-v-815fb44c"><view class="header data-v-815fb44c"><block wx:if="{{$root.g0}}"><view class="top data-v-815fb44c"><view class="headimg data-v-815fb44c"><image src="{{user.head_pic}}" class="data-v-815fb44c"></image></view><view class="info data-v-815fb44c"><view class="size18 bold data-v-815fb44c">{{user.nickname}}</view><view class="mt-10 data-v-815fb44c">{{"年龄:"+user.age+"岁"}}</view><view class="mt-10 data-v-815fb44c">{{$root.m0+":"+user.birthday}}</view></view><block wx:if="{{isLeft}}"><text data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="t-icon t-icon-qiehuan1 data-v-815fb44c" bindtap="__e"></text></block></view></block><block wx:else><view data-event-opts="{{[['tap',[['handleAddUser',['$event']]]]]}}" class="top data-v-815fb44c" bindtap="__e"><view class="info data-v-815fb44c">暂无成员,请先添加~</view><view class="add data-v-815fb44c">+</view></view></block></view><view class="cityList data-v-815fb44c"><block wx:if="{{isArea}}"><view data-event-opts="{{[['tap',[['e1',['$event']]]]]}}" class="area data-v-815fb44c" bindtap="__e"><view class="data-v-815fb44c">选择地区标准:</view><view class="data-v-815fb44c">{{region?region:user.address}}<uni-icons vue-id="2ab5166c-1" type="bottom" class="data-v-815fb44c" bind:__l="__l"></uni-icons></view></view></block><block wx:if="{{visible}}"><view data-event-opts="{{[['tap',[['e2',['$event']]]]]}}" class="visible data-v-815fb44c" bindtap="__e"><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="item data-v-815fb44c" catchtap="__e"><view class="groupBtn data-v-815fb44c"><view data-event-opts="{{[['tap',[['e3',['$event']]]]]}}" bindtap="__e" class="data-v-815fb44c">取消</view><view data-event-opts="{{[['tap',[['handlesure']]]]}}" class="sure data-v-815fb44c" bindtap="__e">确定</view></view><picker-view class="picker-view data-v-815fb44c" value="{{value}}" indicator-style="{{indicatorStyle}}" data-event-opts="{{[['change',[['bindChange',['$event']]]]]}}" bindchange="__e"><picker-view-column class="data-v-815fb44c"><block wx:for="{{province}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item data-v-815fb44c">{{item.name}}</view></block></picker-view-column><picker-view-column class="data-v-815fb44c"><block wx:for="{{city}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view class="item data-v-815fb44c">{{item}}</view></block></picker-view-column></picker-view></view></view></block></view><drawer vue-id="2ab5166c-2" class="data-v-815fb44c" bind:__l="__l"></drawer></view>
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
.calendar-wrapper.data-v-2e42c8f8 {
|
||||
color: #bbb7b7;
|
||||
border-radius: 10px;
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
background-color: #fff;
|
||||
padding-bottom: 10rpx;
|
||||
|
|
@ -39,14 +39,14 @@
|
|||
justify-content: center;
|
||||
height: 88rpx;
|
||||
color: #42464A;
|
||||
font-size: 32rpx;
|
||||
font-size: 36rpx;
|
||||
font-weight: bold;
|
||||
justify-content: space-around;
|
||||
}
|
||||
.calendar-wrapper .header .pre.data-v-2e42c8f8,
|
||||
.calendar-wrapper .header .next.data-v-2e42c8f8 {
|
||||
color: #FEC407;
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.calendar-wrapper .week.data-v-2e42c8f8 {
|
||||
display: flex;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -27,7 +27,7 @@
|
|||
/* 主题色 */
|
||||
.content.data-v-7bb9ca46 {
|
||||
padding: 15px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
background-color: #F5F6FA;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
|
@ -76,7 +76,7 @@
|
|||
}
|
||||
.charts .boxTime .iconfont.data-v-7bb9ca46 {
|
||||
color: #333333;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
top: 0;
|
||||
|
|
@ -96,7 +96,7 @@
|
|||
.charts .box .listC .name.data-v-7bb9ca46 {
|
||||
width: 20%;
|
||||
padding: 0 15px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
height: 30px;
|
||||
|
|
@ -147,7 +147,7 @@
|
|||
border-right: 1PX solid #f7f7f7;
|
||||
}
|
||||
.report .box .item2 .item2_data text.data-v-7bb9ca46 {
|
||||
font-size: 20px !important;
|
||||
font-size: 40rpx !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
.report .box2.data-v-7bb9ca46 {
|
||||
|
|
@ -195,7 +195,7 @@
|
|||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
border-radius: 10px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
position: relative;
|
||||
margin: 0px 15px 0;
|
||||
padding-bottom: 10px;
|
||||
|
|
@ -247,7 +247,7 @@
|
|||
width: calc(100%-20px);
|
||||
height: auto;
|
||||
border-radius: 5px;
|
||||
font-size: 12px;
|
||||
font-size: 30rpx;
|
||||
color: #999;
|
||||
padding: 10px;
|
||||
background: #f7f7f7;
|
||||
|
|
@ -285,7 +285,7 @@
|
|||
flex: 1;
|
||||
height: 5px;
|
||||
color: #666;
|
||||
font-size: 12px;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
.report .desc .statuevue .item .span1.data-v-7bb9ca46 {
|
||||
width: 100%;
|
||||
|
|
@ -304,10 +304,10 @@
|
|||
width: 8px;
|
||||
height: 12px;
|
||||
margin-right: 5px;
|
||||
font-size: 32rpx;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
.report .btnf.data-v-7bb9ca46 {
|
||||
font-size: 13px;
|
||||
font-size: 28rpx;
|
||||
border-radius: 5px;
|
||||
height: 22px;
|
||||
margin: 0 10px 0 0;
|
||||
|
|
@ -335,7 +335,7 @@
|
|||
.report .kcalClass.data-v-7bb9ca46 {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
line-height: 55px;
|
||||
margin: -20px auto;
|
||||
}
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
margin: 0 15px 10px;
|
||||
}
|
||||
.report .tips.data-v-7bb9ca46 {
|
||||
font-size: 12px;
|
||||
font-size: 30rpx;
|
||||
line-height: 20px;
|
||||
}
|
||||
.report .tips text.data-v-7bb9ca46 {
|
||||
|
|
@ -384,7 +384,7 @@
|
|||
width: 100%;
|
||||
text-align: center;
|
||||
margin-top: 10px;
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
color: #666;
|
||||
}
|
||||
.report .jianyi .active.data-v-7bb9ca46 {
|
||||
|
|
@ -396,14 +396,14 @@
|
|||
margin-top: 15px;
|
||||
background: #f7f7f7;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
font-size: 28rpx;
|
||||
line-height: 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.report .tips2.data-v-7bb9ca46 {
|
||||
color: #999;
|
||||
margin-top: 15px;
|
||||
font-size: 12px;
|
||||
font-size: 30rpx;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
/* 文章场景相关 */
|
||||
/* 主题色 */
|
||||
.content.data-v-4ead8e86 {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
padding: 15px;
|
||||
background-color: #F5F6FA;
|
||||
min-height: calc(100vh - 30px);
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
width: 100%;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
margin-bottom: 15px;
|
||||
color: #fff;
|
||||
border-radius: 15px;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
}
|
||||
.tishi.data-v-de099824 {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
line-height: 25px;
|
||||
font-weight: bold;
|
||||
position: absolute;
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
}
|
||||
.tishi text.data-v-de099824 {
|
||||
font-weight: 500;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #999;
|
||||
width: 100%;
|
||||
display: block;
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
color: #666;
|
||||
}
|
||||
.device_list.data-v-de099824 {
|
||||
|
|
@ -86,20 +86,20 @@
|
|||
top: 170px;
|
||||
}
|
||||
.device_list .device_item.data-v-de099824 {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
padding: 7px 10px;
|
||||
color: #999;
|
||||
border-bottom: 1px solid #dfdfdf;
|
||||
}
|
||||
.device_list .device_item text.data-v-de099824 {
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
font-weight: bold;
|
||||
color: #666;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.tips.data-v-de099824 {
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
text-align: center;
|
||||
color: #e83a1e;
|
||||
background: #f7e4c8;
|
||||
|
|
|
|||
|
|
@ -27,19 +27,19 @@
|
|||
/* 主题色 */
|
||||
.content.data-v-99f1c1f4 {
|
||||
padding: 15px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
background-color: #F5F6FA;
|
||||
min-height: 100vh;
|
||||
}
|
||||
.content .tips.data-v-99f1c1f4 {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #999;
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.content .tips2.data-v-99f1c1f4 {
|
||||
color: #333;
|
||||
font-size: 16px;
|
||||
font-size: 32rpx;
|
||||
font-weight: bold;
|
||||
}
|
||||
.content .list.data-v-99f1c1f4 {
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
border-radius: 5px;
|
||||
}
|
||||
.content .list .item .uni-icons.data-v-99f1c1f4 {
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
position: absolute;
|
||||
top: -28px;
|
||||
left: -5px;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="content data-v-fbe23aa4"><view class=" calendar data-v-fbe23aa4"><block wx:if="{{isShow}}"><ren-calendar vue-id="806417d0-1" markDays="{{markDays}}" data-ref="ren" data-event-opts="{{[['^onDayClick',[['onDayClick']]],['^onMonthClickPre',[['onMonthClickPre']]]]}}" bind:onDayClick="__e" bind:onMonthClickPre="__e" class="data-v-fbe23aa4 vue-ref" bind:__l="__l"></ren-calendar></block><block wx:if="{{$root.g0}}"><view class="box data-v-fbe23aa4"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view data-event-opts="{{[['tap',[['addMemberTags',['$0','$1'],[[['infoList','',index,'id']],[['infoList','',index]]]]]]]}}" class="list data-v-fbe23aa4" bindtap="__e"><view class="item data-v-fbe23aa4"><view class="check data-v-fbe23aa4"><uni-icons vue-id="{{'806417d0-2-'+index}}" type="{{item.g1!=-1?'checkbox-filled':'circle'}}" size="22" color="{{item.g2!=-1?'#FEC407':'#dfdfdf'}}" class="data-v-fbe23aa4" bind:__l="__l"></uni-icons></view><view class="data-v-fbe23aa4">{{item.$orig.v1}}<text class="data-v-fbe23aa4">{{item.$orig.v1_name}}</text></view><block wx:if="{{item.$orig.v2}}"><view class="data-v-fbe23aa4">{{item.$orig.v2}}<text class="data-v-fbe23aa4">{{item.$orig.v2_name}}</text></view></block><block wx:if="{{item.$orig.v3}}"><view class="data-v-fbe23aa4">{{item.$orig.v3}}<text class="data-v-fbe23aa4">{{item.$orig.v3_name}}</text></view></block></view></view></block></view></block><view class="bottom data-v-fbe23aa4"><block wx:for="{{ActiveDays}}" wx:for-item="ite" wx:for-index="ind" wx:key="ind"><block wx:if="{{isActive}}"><view data-event-opts="{{[['tap',[['addMemberTags',['$0','$1'],[[['ActiveDays','',ind,'id']],[['ActiveDays','',ind]]]]]]]}}" class="list data-v-fbe23aa4" bindtap="__e"><view class="item borderRadius data-v-fbe23aa4"><view class="time data-v-fbe23aa4">{{ite.r_t}}</view><view class="data-v-fbe23aa4">{{ite.v1}}<text class="data-v-fbe23aa4">{{ite.v1_name}}</text></view><block wx:if="{{ite.v2}}"><view class="data-v-fbe23aa4">{{ite.v2}}<text class="data-v-fbe23aa4">{{ite.v2_name}}</text></view></block><block wx:if="{{ite.v3}}"><view class="data-v-fbe23aa4">{{ite.v3}}<text class="data-v-fbe23aa4">{{ite.v3_name}}</text></view></block><view class="check data-v-fbe23aa4"><uni-icons vue-id="{{'806417d0-3-'+ind}}" type="clear" size="22" color="#999" class="data-v-fbe23aa4" bind:__l="__l"></uni-icons></view></view></view></block></block><block wx:if="{{length==2}}"><view class="pkclass data-v-fbe23aa4">vs</view></block><view data-event-opts="{{[['tap',[['handlePK',['$event']]]]]}}" class="{{['btn','data-v-fbe23aa4',(length!=2)?'active':'']}}" bindtap="__e">对比</view></view></view></view>
|
||||
<view class="content data-v-fbe23aa4"><view class="calendar data-v-fbe23aa4"><block wx:if="{{isShow}}"><ren-calendar vue-id="806417d0-1" markDays="{{markDays}}" data-ref="ren" data-event-opts="{{[['^onDayClick',[['onDayClick']]],['^onMonthClickPre',[['onMonthClickPre']]]]}}" bind:onDayClick="__e" bind:onMonthClickPre="__e" class="data-v-fbe23aa4 vue-ref" bind:__l="__l"></ren-calendar></block><block wx:if="{{$root.g0}}"><view class="box data-v-fbe23aa4"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index" wx:key="index"><view data-event-opts="{{[['tap',[['addMemberTags',['$0','$1'],[[['infoList','',index,'id']],[['infoList','',index]]]]]]]}}" class="list data-v-fbe23aa4" bindtap="__e"><view class="item data-v-fbe23aa4"><view class="check data-v-fbe23aa4"><uni-icons vue-id="{{'806417d0-2-'+index}}" type="{{item.g1!=-1?'checkbox-filled':'circle'}}" size="22" color="{{item.g2!=-1?'#FEC407':'#dfdfdf'}}" class="data-v-fbe23aa4" bind:__l="__l"></uni-icons></view><view class="data-v-fbe23aa4">{{item.$orig.v1}}<text class="data-v-fbe23aa4">{{item.$orig.v1_name}}</text></view><block wx:if="{{item.$orig.v2}}"><view class="data-v-fbe23aa4">{{item.$orig.v2}}<text class="data-v-fbe23aa4">{{item.$orig.v2_name}}</text></view></block><block wx:if="{{item.$orig.v3}}"><view class="data-v-fbe23aa4">{{item.$orig.v3}}<text class="data-v-fbe23aa4">{{item.$orig.v3_name}}</text></view></block></view></view></block></view></block><view class="bottom data-v-fbe23aa4"><block wx:for="{{ActiveDays}}" wx:for-item="ite" wx:for-index="ind" wx:key="ind"><block wx:if="{{isActive}}"><view data-event-opts="{{[['tap',[['addMemberTags',['$0','$1'],[[['ActiveDays','',ind,'id']],[['ActiveDays','',ind]]]]]]]}}" class="list data-v-fbe23aa4" bindtap="__e"><view class="item borderRadius data-v-fbe23aa4"><view class="time data-v-fbe23aa4">{{ite.r_t}}</view><view class="data-v-fbe23aa4">{{ite.v1}}<text class="data-v-fbe23aa4">{{ite.v1_name}}</text></view><block wx:if="{{ite.v2}}"><view class="data-v-fbe23aa4">{{ite.v2}}<text class="data-v-fbe23aa4">{{ite.v2_name}}</text></view></block><block wx:if="{{ite.v3}}"><view class="data-v-fbe23aa4">{{ite.v3}}<text class="data-v-fbe23aa4">{{ite.v3_name}}</text></view></block><view class="check data-v-fbe23aa4"><uni-icons vue-id="{{'806417d0-3-'+ind}}" type="clear" size="22" color="#999" class="data-v-fbe23aa4" bind:__l="__l"></uni-icons></view></view></view></block></block><block wx:if="{{length==2}}"><view class="pkclass data-v-fbe23aa4">vs</view></block><view data-event-opts="{{[['tap',[['handlePK',['$event']]]]]}}" class="{{['btn','data-v-fbe23aa4',(length!=2)?'active':'']}}" bindtap="__e">对比</view></view></view></view>
|
||||
|
|
@ -1 +1 @@
|
|||
<view class="content pkconp data-v-15e1b8b8"><view class="headerTop data-v-15e1b8b8"><view class="left data-v-15e1b8b8"><image class="image1 data-v-15e1b8b8" src="{{memInfo.headimg}}"></image></view><view class="right data-v-15e1b8b8"><view class="name data-v-15e1b8b8">{{memInfo.name?memInfo.name:memInfo.nickname}}</view><view class="top data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{"性别:"+(memInfo.gender=='0'?'未知':memInfo.gender=='1'?'男':'女')}}</view><view class="ml-15 data-v-15e1b8b8">{{"年龄:"+user.age+"岁"}}</view></view></view></view><block wx:if="{{acd_id==2}}"><view class="box data-v-15e1b8b8"><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.day?memInfo.day:'0'}}</view><text class="data-v-15e1b8b8">时间(天)</text></view><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.weightdiff?$root.g0:0}}</view><block wx:if="{{$root.m0>0}}"><text class="data-v-15e1b8b8">增重(kg)</text></block><block wx:else><text class="data-v-15e1b8b8">减重(kg)</text></block></view><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.fat_wdiff?$root.g1:0}}</view><block wx:if="{{$root.m1>0}}"><text class="data-v-15e1b8b8">增脂(kg)</text></block><block wx:else><text class="data-v-15e1b8b8">减脂(kg)</text></block></view><view class="time data-v-15e1b8b8"><view class="data-v-15e1b8b8"><uni-icons class="t-icon t-icon-shijian-mianxing-0 data-v-15e1b8b8" vue-id="b3544164-1" bind:__l="__l"></uni-icons>{{memInfo.time+''}}</view>数据变化</view></view></block><block wx:else><view class="boxTime data-v-15e1b8b8"><view class="data-v-15e1b8b8"><uni-icons class="t-icon t-icon-shijian-mianxing-0 data-v-15e1b8b8" vue-id="b3544164-2" bind:__l="__l"></uni-icons>{{''+memInfo.time+''}}</view>数据变化</view></block><view class="control data-v-15e1b8b8"><view class="title data-v-15e1b8b8"><view class="name data-v-15e1b8b8"></view><view class="data-v-15e1b8b8">趋势</view><view class="data-v-15e1b8b8">之前</view><view class="data-v-15e1b8b8">之后</view></view><block wx:for="{{$root.l0}}" wx:for-item="ite" wx:for-index="ind" wx:key="ind"><view class="li data-v-15e1b8b8"><view class="name data-v-15e1b8b8"><text class="data-v-15e1b8b8">{{ite.$orig.title}}</text></view><view class="num data-v-15e1b8b8"><block wx:if="{{ite.$orig.diffval!=0||ite.$orig.diffval=='0.00'||ite.$orig.diffval=='00:00:00'}}"><text class="data-v-15e1b8b8">{{acd_id!=6?ite.g2:ite.$orig.diffval}}</text></block><block wx:if="{{ite.m2>0}}"><icon class="t-icon t-icon-shang data-v-15e1b8b8"></icon></block><block wx:if="{{ite.m3<0}}"><icon class="t-icon t-icon-xia data-v-15e1b8b8"></icon></block><block wx:if="{{!ite.$orig.diffval||ite.$orig.diffval=='0.00'||ite.$orig.diffval=='00:00:00'}}"><icon class="t-icon t-icon-hengxian data-v-15e1b8b8"></icon></block></view><view class="f data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{ite.$orig.firstresult?ite.$orig.firstresult.value:'-'}}</view><text class="data-v-15e1b8b8">{{ite.$orig.firstresult.level}}</text></view><view class="f data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{ite.$orig.secondresult?ite.$orig.secondresult.value:'-'}}</view><text class="data-v-15e1b8b8">{{ite.$orig.secondresult.level}}</text></view></view></block></view></view>
|
||||
<view class="content pkconp data-v-15e1b8b8"><view class="headerTop data-v-15e1b8b8"><view class="left data-v-15e1b8b8"><image class="image1 data-v-15e1b8b8" src="{{memInfo.headimg}}"></image></view><view class="right data-v-15e1b8b8"><view class="name data-v-15e1b8b8">{{memInfo.name?memInfo.name:memInfo.nickname}}</view><view class="top data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{"性别:"+(memInfo.gender=='0'?'未知':memInfo.gender=='1'?'男':'女')}}</view><view class="ml-15 data-v-15e1b8b8">{{"年龄:"+user.age+"岁"}}</view></view></view></view><block wx:if="{{acd_id==2}}"><view class="box data-v-15e1b8b8"><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.day?memInfo.day:'0'}}</view><text class="data-v-15e1b8b8">时间(天)</text></view><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.weightdiff?$root.g0:0}}</view><block wx:if="{{$root.m0>0}}"><text class="data-v-15e1b8b8">增重(kg)</text></block><block wx:else><text class="data-v-15e1b8b8">减重(kg)</text></block></view><view class="item data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{memInfo.fat_wdiff?$root.g1:0}}</view><block wx:if="{{$root.m1>0}}"><text class="data-v-15e1b8b8">增脂(kg)</text></block><block wx:else><text class="data-v-15e1b8b8">减脂(kg)</text></block></view><view class="time data-v-15e1b8b8"><view class="data-v-15e1b8b8"><uni-icons class="t-icon t-icon-shijian-mianxing-0 data-v-15e1b8b8" vue-id="b3544164-1" bind:__l="__l"></uni-icons>{{memInfo.time+''}}</view>数据变化</view></view></block><block wx:else><view class="boxTime data-v-15e1b8b8"><view class="mt-10 mb-10 data-v-15e1b8b8"><uni-icons class="t-icon t-icon-shijian-mianxing-0 mr-10 size18 data-v-15e1b8b8" vue-id="b3544164-2" bind:__l="__l"></uni-icons>{{''+memInfo.time+''}}</view>数据变化</view></block><view class="control data-v-15e1b8b8"><view class="title data-v-15e1b8b8"><view class="name data-v-15e1b8b8"></view><view class="data-v-15e1b8b8">趋势</view><view class="data-v-15e1b8b8">之前</view><view class="data-v-15e1b8b8">之后</view></view><block wx:for="{{$root.l0}}" wx:for-item="ite" wx:for-index="ind" wx:key="ind"><view class="li data-v-15e1b8b8"><view class="name data-v-15e1b8b8"><text class="data-v-15e1b8b8">{{ite.$orig.title}}</text></view><view class="num data-v-15e1b8b8"><block wx:if="{{ite.$orig.diffval!=0||ite.$orig.diffval=='0.00'||ite.$orig.diffval=='00:00:00'}}"><text class="data-v-15e1b8b8">{{acd_id!=6?ite.g2:ite.$orig.diffval}}</text></block><block wx:if="{{ite.m2>0}}"><icon class="t-icon t-icon-shang data-v-15e1b8b8"></icon></block><block wx:if="{{ite.m3<0}}"><icon class="t-icon t-icon-xia data-v-15e1b8b8"></icon></block><block wx:if="{{!ite.$orig.diffval||ite.$orig.diffval=='0.00'||ite.$orig.diffval=='00:00:00'}}"><icon class="t-icon t-icon-hengxian data-v-15e1b8b8"></icon></block></view><view class="f data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{ite.$orig.firstresult?ite.$orig.firstresult.value:'-'}}</view><text class="data-v-15e1b8b8">{{ite.$orig.firstresult.level}}</text></view><view class="f data-v-15e1b8b8"><view class="data-v-15e1b8b8">{{ite.$orig.secondresult?ite.$orig.secondresult.value:'-'}}</view><text class="data-v-15e1b8b8">{{ite.$orig.secondresult.level}}</text></view></view></block></view></view>
|
||||
|
|
@ -279,6 +279,7 @@ var _default = {
|
|||
var buffer = device.advertisData.slice(3, 9);
|
||||
device.mac = new Uint8Array(buffer); // 保存广播数据中的mac地址,这是由于iOS不直接返回mac地址
|
||||
var tempMac = Array.from(device.mac);
|
||||
tempMac.reverse();
|
||||
device.macAddr = that.$tools.ab2hex(tempMac, ':').toUpperCase();
|
||||
that.deviceId = device.deviceId;
|
||||
that.macAddr = device.macAddr;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="weightPages data-v-34f160ee"><view class="content data-v-34f160ee"><block wx:if="{{isConnection==0}}"><view class="title data-v-34f160ee">连接中,请稍后</view></block><block wx:if="{{isConnection==1}}"><view class="title data-v-34f160ee">连接成功,开始测量</view></block><block wx:if="{{isConnection==2}}"><view data-event-opts="{{[['tap',[['openBluetoothAdapter',['$event']]]]]}}" class="title data-v-34f160ee" bindtap="__e">连接失败,点击重新连接</view></block><view class="text data-v-34f160ee">{{text}}</view><view class="image data-v-34f160ee"><image class="image3 data-v-34f160ee" src="/static/devices/HC.png"></image></view><view class="tips data-v-34f160ee"><view class="data-v-34f160ee">提示:</view><text class="data-v-34f160ee">1.请确定设备已开机</text><text class="data-v-34f160ee">2.请确定手机蓝牙及位置信息已打开</text></view></view><block wx:if="{{isHeight}}"><view class="wrapper data-v-34f160ee"><view class="bg data-v-34f160ee"></view><view class="Blue data-v-34f160ee"><view class="h4 data-v-34f160ee">测量结果提示</view><view class="Blue-box data-v-34f160ee">本次测量身高为:<text class="data-v-34f160ee">{{height+unit}}</text></view><view class="Blue-box data-v-34f160ee">上次测量体重为:<input type="digit" placeholder="请输入体重" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-34f160ee"/>kg</view><view data-event-opts="{{[['tap',[['handleBack',[1]]]]]}}" class="Blue-btn Blue-close data-v-34f160ee" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="Blue-btn data-v-34f160ee" bindtap="__e">保存测量结果</view></view></view></block></view>
|
||||
<view class="weightPages data-v-34f160ee"><view class="content data-v-34f160ee"><block wx:if="{{isConnection==0}}"><view class="title data-v-34f160ee">连接中,请稍后</view></block><block wx:if="{{isConnection==1}}"><view class="title data-v-34f160ee">连接成功,开始测量</view></block><block wx:if="{{isConnection==2}}"><view data-event-opts="{{[['tap',[['openBluetoothAdapter',['$event']]]]]}}" class="title data-v-34f160ee" bindtap="__e">连接失败,点击重新连接</view></block><view class="text data-v-34f160ee">{{text}}</view><view class="image data-v-34f160ee"><image class="image3 data-v-34f160ee" src="/static/devices/HC.png"></image></view><view class="tips data-v-34f160ee"><view class="data-v-34f160ee">提示:</view><text class="data-v-34f160ee">1.请确定设备已开机</text><text class="data-v-34f160ee">2.请确定手机蓝牙及位置信息已打开</text></view></view><block wx:if="{{isHeight}}"><view class="wrapper data-v-34f160ee"><view class="bg data-v-34f160ee"></view><view class="Blue data-v-34f160ee"><view class="h4 data-v-34f160ee">测量结果提示</view><view class="Blue-box data-v-34f160ee">本次测量身高为:<text class="data-v-34f160ee">{{height+unit}}</text></view><view class="Blue-box data-v-34f160ee">上次测量体重为:<input type="digit" placeholder="请输入体重" data-event-opts="{{[['input',[['__set_model',['','weight','$event',[]]]]]]}}" value="{{weight}}" bindinput="__e" class="data-v-34f160ee"/>kg</view><view data-event-opts="{{[['tap',[['handleBack',[1]]]]]}}" class="Blue-btn Blue-close data-v-34f160ee" bindtap="__e">取消</view><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="Blue-btn data-v-34f160ee" bindtap="__e">保存测量结果</view></view></view></block></view>
|
||||
|
|
@ -1 +1 @@
|
|||
<view class="content skipping data-v-9f6749b2"><view class="title data-v-9f6749b2">{{info.active==1?'自由训练':info.active==2?'定时训练':'定数训练'}}</view><view class="skiptop data-v-9f6749b2"><view class="item data-v-9f6749b2"><view class="item-ite data-v-9f6749b2">{{info.active==1?'自由次数':info.active==2?"个数":'目标次数'}}<text class="data-v-9f6749b2">{{weight}}</text></view><view class="item-ite data-v-9f6749b2">{{''+(info.active==2?'目标时长 分:秒':"分:秒")}}<text class="data-v-9f6749b2">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text></view><view class="item-ite data-v-9f6749b2">消耗/kcal<text class="data-v-9f6749b2">{{$root.g0}}</text></view></view></view><view class="image data-v-9f6749b2"><image src="../../static/t01.gif" class="data-v-9f6749b2"></image></view><view data-event-opts="{{[['longpress',[['onlongpress',['$event']]]]]}}" class="end data-v-9f6749b2" bindlongpress="__e">长按结束</view><block wx:if="{{iswrapper}}"><view class="wrapper data-v-9f6749b2"><view class="bg data-v-9f6749b2"><view class="edit data-v-9f6749b2"><view class="editem data-v-9f6749b2"><view class="data-v-9f6749b2">平均速度:<text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{$root.g1}}</text>bpm</view><view class="size12 c999 data-v-9f6749b2">(bpm=个/分钟)</view></view><view class="center data-v-9f6749b2"><view class="left data-v-9f6749b2"><image src="../../static/duan.png" class="data-v-9f6749b2"></image><view class="name data-v-9f6749b2"><view class="data-v-9f6749b2">中断次数</view><view class="data-v-9f6749b2"><text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{Bcount}}</text>次</view></view></view><view class="left data-v-9f6749b2"><image src="../../static/xu.png" class="data-v-9f6749b2"></image><view class="name data-v-9f6749b2"><view class="data-v-9f6749b2">最长连续</view><view class="data-v-9f6749b2"><text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{continuous}}</text>个</view></view></view></view><view class="item data-v-9f6749b2"><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{weight}}</text>训练个数</view><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text>分:秒</view><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{$root.g2}}</text>消耗/kcal</view></view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-9f6749b2" bindtap="__e">完成</view></view></view></view></block></view>
|
||||
<view class="content skipping data-v-9f6749b2"><view class="title data-v-9f6749b2">{{info.active==1?'自由训练':info.active==2?'定时训练':'定数训练'}}</view><view class="skiptop data-v-9f6749b2"><view class="item data-v-9f6749b2"><view class="item-ite data-v-9f6749b2">{{info.active==1?'自由次数':info.active==2?"个数":'目标次数'}}<text class="data-v-9f6749b2">{{weight}}</text></view><view class="item-ite data-v-9f6749b2">{{''+(info.active==2?'目标时长 分:秒':"分:秒")}}<text class="data-v-9f6749b2">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text></view><view class="item-ite data-v-9f6749b2">消耗/kcal<text class="data-v-9f6749b2">{{$root.g0}}</text></view></view></view><view class="image data-v-9f6749b2"><image src="../../static/t01.gif" class="data-v-9f6749b2"></image></view><view data-event-opts="{{[['longpress',[['onlongpress',['$event']]]]]}}" class="end data-v-9f6749b2" bindlongpress="__e">长按结束</view><block wx:if="{{iswrapper}}"><view class="wrapper data-v-9f6749b2"><view class="bg data-v-9f6749b2"><view class="edit data-v-9f6749b2"><view class="editem data-v-9f6749b2"><view class="data-v-9f6749b2">平均速度:<text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{$root.g1}}</text>bpm</view><view class="size12 c999 data-v-9f6749b2">(bpm=个/分钟)</view></view><view class="center data-v-9f6749b2"><view class="left data-v-9f6749b2"><image src="../../static/duan.png" class="data-v-9f6749b2"></image><view class="name data-v-9f6749b2"><view class="data-v-9f6749b2">中断次数</view><view class="data-v-9f6749b2"><text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{Bcount}}</text>次</view></view></view><view class="left data-v-9f6749b2"><image src="../../static/xu.png" class="data-v-9f6749b2"></image><view class="name data-v-9f6749b2"><view class="data-v-9f6749b2">最长连续</view><view class="data-v-9f6749b2"><text class="cyello Blue size20 mr-5 data-v-9f6749b2">{{continuous}}</text>个</view></view></view></view><view class="item data-v-9f6749b2"><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{weight}}</text>训练个数</view><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{(time_m?time_m:'00')+":"+(time_s?time_s:'00')}}</text>分:秒</view><view class="item-ite data-v-9f6749b2"><text class="data-v-9f6749b2">{{$root.g2}}</text>消耗/kcal</view></view><view data-event-opts="{{[['tap',[['handleTarget',['$event']]]]]}}" class="btn data-v-9f6749b2" bindtap="__e">完成</view></view></view></view></block></view>
|
||||
|
|
@ -86,7 +86,7 @@
|
|||
padding: 0 10px;
|
||||
display: flex;
|
||||
margin: 45px 0;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
border-radius: 5px;
|
||||
height: 65px;
|
||||
align-items: center;
|
||||
|
|
@ -111,14 +111,14 @@
|
|||
}
|
||||
.wrapper .item .item-ite.data-v-9f6749b2 {
|
||||
line-height: 20px;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
color: #999;
|
||||
text-align: center;
|
||||
}
|
||||
.wrapper .item .item-ite text.data-v-9f6749b2 {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 18px;
|
||||
font-size: 36rpx;
|
||||
color: #333;
|
||||
text-align: center;
|
||||
margin-bottom: 10px;
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="content data-v-1a26e92a"><block wx:if="{{!isstart}}"><view class="tips data-v-1a26e92a"><view class="top data-v-1a26e92a"><view class="left cgreen f-l data-v-1a26e92a">T</view><view class="right data-v-1a26e92a"><text class="cgreen data-v-1a26e92a">肺活量测试</text><text class="text data-v-1a26e92a">肺活量测试能让我们更好的了解您,为您生成详细的健康报告。</text></view></view><view class="list data-v-1a26e92a"><block wx:if="{{number1}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">1</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number1+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level1}}</text></view></block><block wx:if="{{number2}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">2</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number2+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level2}}</text></view></block><block wx:if="{{number3}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">3</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number3+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level3}}</text></view></block></view><block wx:if="{{number3==''}}"><view class="title data-v-1a26e92a"><view class="{{['data-v-1a26e92a',second==5?'cgreen':'']}}">您好!第<text class="data-v-1a26e92a">{{number1!=0?'二':number2!=''?'三':'一'}}</text>次测试开始</view><view class="{{['data-v-1a26e92a',second==3?'cgreen':'']}}">放下呼吸训练器,缓慢呼气,尽可能排空肺部气体</view><view class="{{['data-v-1a26e92a',second==1?'cgreen':'']}}">使用呼吸训练器,缓慢吸气,直至到达极限</view></view></block><block wx:if="{{number3}}"><view class="data data-v-1a26e92a"><view class="val data-v-1a26e92a"><text class="data-v-1a26e92a">{{$root.g0+"ml"}}</text>平均吸气肺活量</view><view class="text data-v-1a26e92a">{{'根据您的个人信息,您的达标吸气肺活量为'+standard+"ml。您本次测试吸气速度"+averageS+"L/min,肺活量测试结果"+$root.g1+'ml。结合您的身体状态和改善目标,我们将为您生成详细的健康报告。'}}</view></view></block><block wx:if="{{number3}}"><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="btn data-v-1a26e92a" bindtap="__e">查看本次报告</view></block><block wx:if="{{number3}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="btn close data-v-1a26e92a" bindtap="__e">我想重新测试</view></block><block wx:if="{{number1==0||number2==0||number3==0}}"><view class="btn data-v-1a26e92a">{{''+second+"S后开始第"}}<text class="data-v-1a26e92a">{{number1!=0?'二':number2!=0?'三':'一'}}</text>次测试</view></block></view></block><block wx:else><view class="weight data-v-1a26e92a"><view class="title cgreen data-v-1a26e92a">使用呼吸训练器,缓慢吸气,直至到达极限</view><view class="box1 data-v-1a26e92a"><view class="time data-v-1a26e92a">吸气速度<text class="cgreen ml-5 data-v-1a26e92a">{{LiuS+"L/min"}}</text></view><view class="item data-v-1a26e92a"><view class="image data-v-1a26e92a"><image src="../../static/01.gif" mode="widthFix" class="data-v-1a26e92a"></image></view><view class="center mt-15 data-v-1a26e92a"><view class="level data-v-1a26e92a"></view><view class="level level-bg data-v-1a26e92a" style="{{'top:'+($root.m0+'%')+';'}}"></view><view class="level-item data-v-1a26e92a"><block wx:for="{{list}}" wx:for-item="ite" wx:for-index="ind"><view class="ite data-v-1a26e92a">{{ite.text}}</view></block></view></view></view><view class="val data-v-1a26e92a"><text class="data-v-1a26e92a">{{text+"ml"}}</text>吸气肺活量</view></view></view></block></view>
|
||||
<view class="content data-v-1a26e92a"><block wx:if="{{!isstart}}"><view class="tips data-v-1a26e92a"><view class="top data-v-1a26e92a"><view class="left cgreen f-l data-v-1a26e92a">T</view><view class="right data-v-1a26e92a"><text class="cgreen data-v-1a26e92a">肺活量测试</text><text class="text data-v-1a26e92a">肺活量测试能让我们更好的了解您,为您生成详细的健康报告。</text></view></view><view class="list data-v-1a26e92a"><block wx:if="{{number1}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">1</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number1+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level1}}</text></view></block><block wx:if="{{number2}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">2</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number2+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level2}}</text></view></block><block wx:if="{{number3}}"><view class="item data-v-1a26e92a"><text class="ml-10 mr-10 data-v-1a26e92a">3</text><text class="data-v-1a26e92a">吸气肺活量</text><text class="cgreen data-v-1a26e92a">{{number3+"ml"}}</text><text class="data-v-1a26e92a">吸气速度</text><text class="cgreen level data-v-1a26e92a">{{level3}}</text></view></block></view><block wx:if="{{number3==''}}"><view class="title data-v-1a26e92a"><view class="{{['data-v-1a26e92a',second==5?'cgreen':'']}}">您好!第<text class="data-v-1a26e92a">{{number1!=0?'二':number2!=''?'三':'一'}}</text>次测试开始</view><view class="{{['data-v-1a26e92a',second==3?'cgreen':'']}}">放下呼吸训练器,缓慢呼气,尽可能排空肺部气体</view><view class="{{['data-v-1a26e92a',second==1?'cgreen':'']}}">使用呼吸训练器,缓慢吸气,直至到达极限</view></view></block><block wx:if="{{number3}}"><view class="data data-v-1a26e92a"><view class="val data-v-1a26e92a"><text class="data-v-1a26e92a">{{$root.g0+"ml"}}</text>平均吸气肺活量</view><view class="text data-v-1a26e92a">{{'根据您的个人信息,您的达标吸气肺活量为'+standard+"ml。您本次测试吸气速度"+averageS+"L/min,肺活量测试结果"+$root.g1+'ml。结合您的身体状态和改善目标,我们将为您生成详细的健康报告。'}}</view></view></block><block wx:if="{{number3}}"><view data-event-opts="{{[['tap',[['handleGetMeasure',['$event']]]]]}}" class="btn data-v-1a26e92a" bindtap="__e">查看本次报告</view></block><block wx:if="{{number3}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" class="btn close data-v-1a26e92a" bindtap="__e">我想重新测试</view></block><block wx:if="{{number1==0||number2==0||number3==0}}"><view class="btn data-v-1a26e92a">{{''+second+"S后开始第"}}<text class="data-v-1a26e92a">{{number1!=0?'二':number2!=0?'三':'一'}}</text>次测试</view></block></view></block><block wx:else><view class="weight data-v-1a26e92a"><view class="title cgreen data-v-1a26e92a">使用呼吸训练器,缓慢吸气,直至到达极限</view><view class="box1 data-v-1a26e92a"><view class="time data-v-1a26e92a">吸气速度<text class="cgreen ml-5 data-v-1a26e92a">{{LiuS+"L/min"}}</text></view><view class="item data-v-1a26e92a"><view class="image data-v-1a26e92a"><image src="../../static/01.gif" mode="widthFix" class="data-v-1a26e92a"></image></view><view class="center mt-15 data-v-1a26e92a"><view class="level data-v-1a26e92a"></view><view class="level level-bg data-v-1a26e92a" style="{{'top:'+($root.m0+'%')+';'}}"></view><view class="level-item data-v-1a26e92a"><block wx:for="{{list}}" wx:for-item="ite" wx:for-index="ind"><view class="ite data-v-1a26e92a">{{ite.text}}</view></block></view></view></view><view class="val data-v-1a26e92a"><text class="data-v-1a26e92a">{{text+"ml"}}</text>吸气肺活量</view></view></view></block></view>
|
||||
|
|
@ -47,14 +47,14 @@
|
|||
align-items: flex-start;
|
||||
}
|
||||
.tips .top .left.data-v-1a26e92a {
|
||||
font-size: 32px;
|
||||
font-size: 64rpx;
|
||||
margin-right: 10px;
|
||||
}
|
||||
.tips .top .right .text.data-v-1a26e92a {
|
||||
font-size: 12px !important;
|
||||
font-size: 32rpx !important;
|
||||
}
|
||||
.tips .top .right text.data-v-1a26e92a {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
|
|
@ -74,14 +74,14 @@
|
|||
}
|
||||
.tips .item .cgreen.data-v-1a26e92a {
|
||||
flex-grow: 2;
|
||||
font-size: 16px;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.tips .item .level.data-v-1a26e92a {
|
||||
color: #516752;
|
||||
}
|
||||
.tips .title.data-v-1a26e92a {
|
||||
font-size: 18px;
|
||||
font-size: 32rpx;
|
||||
margin: 20px;
|
||||
}
|
||||
.tips .title view.data-v-1a26e92a {
|
||||
|
|
@ -93,7 +93,7 @@
|
|||
margin-top: 20px;
|
||||
}
|
||||
.tips .data .text.data-v-1a26e92a {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #fff;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
|
@ -119,7 +119,7 @@
|
|||
.weight .title.data-v-1a26e92a {
|
||||
width: 80%;
|
||||
margin: auto;
|
||||
font-size: 18px;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
}
|
||||
.box1.data-v-1a26e92a {
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
}
|
||||
.box1 .item.data-v-1a26e92a {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
padding: 10px 0;
|
||||
border-radius: 15px;
|
||||
display: flex;
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
width: calc(100% - 10px);
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #fff;
|
||||
z-index: 99;
|
||||
border-bottom: 1px solid #999;
|
||||
|
|
@ -212,12 +212,12 @@
|
|||
text-align: center;
|
||||
margin: 20px 0;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.val text.data-v-1a26e92a {
|
||||
display: block;
|
||||
color: #39D9C9 !important;
|
||||
font-size: 32px;
|
||||
font-size: 64rpx;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
text-align: center;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-size: 16px;
|
||||
font-size: 36rpx;
|
||||
color: #477EFF;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
|
@ -43,13 +43,13 @@
|
|||
line-height: 24px;
|
||||
}
|
||||
.tips view.data-v-9ae48a5a {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #477EFF;
|
||||
font-weight: bold;
|
||||
margin-left: 15px;
|
||||
}
|
||||
.tips text.data-v-9ae48a5a {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
width: 100%;
|
||||
display: block;
|
||||
margin-left: 20px;
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
.list .item text.data-v-9ae48a5a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #666;
|
||||
margin-top: 5px;
|
||||
text-align: center;
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
align-items: center;
|
||||
font-weight: 700;
|
||||
line-height: 50rpx;
|
||||
font-size: 18px !important;
|
||||
font-size: 36rpx !important;
|
||||
}
|
||||
.history .list .item text.data-v-24bfa630 {
|
||||
display: block;
|
||||
|
|
@ -77,7 +77,7 @@
|
|||
margin-right: 5px;
|
||||
}
|
||||
.history .list .time text.data-v-24bfa630 {
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
margin-top: 3px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
.lan.data-v-3295f821 {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
justify-content: space-between;
|
||||
|
|
@ -45,7 +45,7 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
text-align: left;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
padding-left: 30px;
|
||||
}
|
||||
.lan .left .view.data-v-3295f821 {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="content indexCarList data-v-57280228"><header-index vue-id="8dd740cc-1" isArea="{{false}}" class="data-v-57280228" bind:__l="__l"></header-index><view class="list data-v-57280228"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index"><view class="data-v-57280228"><view data-event-opts="{{[['tap',[['handlerReport',['$0'],[[['user.card_data_list','',index]]]]]]]}}" class="card box data-v-57280228" bindtap="__e"><view class="title border-bottom data-v-57280228"><view class="name data-v-57280228"><text class="data-v-57280228">{{item.$orig.card_name}}</text>{{item.$orig.record_time}}</view><block wx:if="{{item.$orig.inside_data[0].value}}"><uni-icons vue-id="{{'8dd740cc-2-'+index}}" type="right" size="20" class="data-v-57280228" bind:__l="__l"></uni-icons></block></view><view class="item title data-v-57280228" style="{{'justify-content:'+(item.g0>2?'space-between':'center')+';'}}"><block wx:for="{{item.$orig.inside_data}}" wx:for-item="ite" wx:for-index="ind"><view class="{{['data-v-57280228',item.g1>3?'item2':'']}}"><view class="name data-v-57280228">{{ite.name}}</view><view class="weight data-v-57280228"><text class="data-v-57280228">{{ite.value?ite.value:'-'}}</text>{{ite.unit}}</view><block wx:if="{{ite.standard}}"><view class="standardBtn data-v-57280228" style="{{'background-color:'+(ite.color)+';'}}">{{''+ite.standard+''}}</view></block></view></block></view><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="target data-v-57280228" catchtap="__e"><block wx:if="{{item.$orig.acd_id==2}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" data-event-params="{{({item:item.$orig})}}" class="orangeBtn data-v-57280228" bindtap="__e">蓝牙连接</view></block><block wx:else><view class="data-v-57280228"></view></block><view data-event-opts="{{[['tap',[['handlerRecord',['$0'],[[['user.card_data_list','',index,'acd_id']]]]]]]}}" class="blueBtn data-v-57280228" bindtap="__e">手动记录</view></view></view></view></block></view><view data-event-opts="{{[['tap',[['handleCard',['$event']]]]]}}" class="setcard data-v-57280228" bindtap="__e">设置数据页卡片</view><record vue-id="8dd740cc-3" rtype="{{rtype}}" class="data-v-57280228" bind:__l="__l"></record></view>
|
||||
<view class="content indexCarList data-v-57280228"><header-index vue-id="8dd740cc-1" isArea="{{false}}" class="data-v-57280228" bind:__l="__l"></header-index><view class="list data-v-57280228"><block wx:for="{{$root.l0}}" wx:for-item="item" wx:for-index="index"><view class="data-v-57280228"><view data-event-opts="{{[['tap',[['handlerReport',['$0'],[[['user.card_data_list','',index]]]]]]]}}" class="card box data-v-57280228" bindtap="__e"><view class="title border-bottom data-v-57280228"><view class="name data-v-57280228"><text class="data-v-57280228">{{item.$orig.card_name}}</text>{{item.$orig.record_time}}</view><block wx:if="{{item.$orig.inside_data[0].value}}"><uni-icons vue-id="{{'8dd740cc-2-'+index}}" type="right" size="20" class="data-v-57280228" bind:__l="__l"></uni-icons></block></view><view class="item title data-v-57280228" style="{{'justify-content:'+(item.g0>2?'space-between':'center')+';'}}"><block wx:for="{{item.$orig.inside_data}}" wx:for-item="ite" wx:for-index="ind"><view class="{{['data-v-57280228',item.g1>3?'item2':'']}}"><view class="name data-v-57280228">{{ite.name}}</view><view class="weight mt-5 data-v-57280228"><text class="data-v-57280228">{{ite.value?ite.value:'-'}}</text>{{ite.unit}}</view><block wx:if="{{ite.standard}}"><view class="standardBtn mt-5 data-v-57280228" style="{{'background-color:'+(ite.color)+';'}}">{{''+ite.standard+''}}</view></block></view></block></view><view data-event-opts="{{[['tap',[['',['$event']]]]]}}" class="target data-v-57280228" catchtap="__e"><block wx:if="{{item.$orig.acd_id==2}}"><view data-event-opts="{{[['tap',[['e0',['$event']]]]]}}" data-event-params="{{({item:item.$orig})}}" class="orangeBtn data-v-57280228" bindtap="__e">蓝牙连接</view></block><block wx:else><view class="data-v-57280228"></view></block><view data-event-opts="{{[['tap',[['handlerRecord',['$0'],[[['user.card_data_list','',index,'acd_id']]]]]]]}}" class="blueBtn data-v-57280228" bindtap="__e">手动记录</view></view></view></view></block></view><view data-event-opts="{{[['tap',[['handleCard',['$event']]]]]}}" class="setcard data-v-57280228" bindtap="__e">设置数据页卡片</view><record vue-id="8dd740cc-3" rtype="{{rtype}}" class="data-v-57280228" bind:__l="__l"></record></view>
|
||||
|
|
@ -1 +1 @@
|
|||
<view class="content data-v-9e3137f2"><view class="login data-v-9e3137f2"><view class="editem data-v-9e3137f2"><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">手机号/邮箱</view><view class="input data-v-9e3137f2"><input placeholder data-event-opts="{{[['input',[['__set_model',['','phone','$event',[]]]]]]}}" value="{{phone}}" bindinput="__e" class="data-v-9e3137f2"/></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">验证码</view><view class="input yanzhengma data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','code','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{code}}" bindinput="__e"/><button class="code data-v-9e3137f2" type="none" disabled="{{disabled}}" value="{{code}}" data-event-opts="{{[['tap',[['handleCode',['$event']]]],['input',[['__set_model',['','code','$event',[]]]]]]}}" bindtap="__e" bindinput="__e">{{(second<60?second+'S后重发':$root.m0)+''}}</button></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">密码</view><view class="input data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{password}}" bindinput="__e"/></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">确认密码</view><view class="input data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','password2','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{password2}}" bindinput="__e"/></view></view></view><view data-event-opts="{{[['tap',[['handleTelLogin',['$event']]]]]}}" class="btnlogin data-v-9e3137f2" bindtap="__e">确认</view></view></view>
|
||||
<view class="content data-v-9e3137f2"><view class="login data-v-9e3137f2"><view class="editem data-v-9e3137f2"><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">手机号/邮箱</view><view class="input data-v-9e3137f2"><input placeholder data-event-opts="{{[['input',[['__set_model',['','phone','$event',[]]]]]]}}" value="{{phone}}" bindinput="__e" class="data-v-9e3137f2"/></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">验证码</view><view class="input yanzhengma data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','code','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{code}}" bindinput="__e"/><button class="code data-v-9e3137f2" type="none" disabled="{{disabled}}" value="{{code}}" data-event-opts="{{[['tap',[['handleCode',['$event']]]],['input',[['__set_model',['','code','$event',[]]]]]]}}" bindtap="__e" bindinput="__e">{{(second<60?second+'S后重发':$root.m0)+''}}</button></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">密码</view><view class="input data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{password}}" bindinput="__e"/></view></view><view class="item data-v-9e3137f2"><view class="text data-v-9e3137f2">确认密码</view><view class="input data-v-9e3137f2"><input data-event-opts="{{[['input',[['__set_model',['','password2','$event',[]]]]]]}}" class="uni-input data-v-9e3137f2" value="{{password2}}" bindinput="__e"/></view></view></view><view data-event-opts="{{[['tap',[['handleTelLogin',['$event']]]]]}}" class="btnlogin data-v-9e3137f2" bindtap="__e">确认</view></view></view>
|
||||
|
|
@ -56,7 +56,7 @@
|
|||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
width: 80px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.login .editem .item .input.data-v-9e3137f2 {
|
||||
width: calc(100% - 100px);
|
||||
|
|
@ -91,7 +91,7 @@
|
|||
left: 10px;
|
||||
right: 0px;
|
||||
z-index: 88;
|
||||
font-size: 14px;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.login .editem .item .yanzhengma input.data-v-9e3137f2 {
|
||||
right: 120px;
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
.login .editem .code.data-v-9e3137f2 {
|
||||
width: 110px;
|
||||
background: #dfdfdf;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
margin: 0;
|
||||
line-height: 40px;
|
||||
border-radius: 5px;
|
||||
|
|
@ -139,7 +139,7 @@
|
|||
color: #fff !important;
|
||||
}
|
||||
.xieyi.data-v-9e3137f2 {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #477EFF;
|
||||
}
|
||||
.xieyi text.data-v-9e3137f2 {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
<view class="content data-v-b237504c"><view class="bg data-v-b237504c"></view><view class="top data-v-b237504c"><image src="../../static/logo.png" class="data-v-b237504c"></image><text class="data-v-b237504c">青测</text></view><view class="login box_shadow data-v-b237504c"><view class="title data-v-b237504c">{{$root.m0}}</view><view data-event-opts="{{[['tap',[['handleToggle',['$event']]]]]}}" class="toggle cblue data-v-b237504c" bindtap="__e">切换登录</view><view class="editem data-v-b237504c"><view class="item data-v-b237504c"><view class="text data-v-b237504c">手机号/邮箱</view><view class="input data-v-b237504c"><input placeholder data-event-opts="{{[['input',[['__set_model',['','phone','$event',[]]]]]]}}" value="{{phone}}" bindinput="__e" class="data-v-b237504c"/></view></view><block wx:if="{{isCode}}"><view class="item data-v-b237504c"><view class="text data-v-b237504c">{{$root.m1}}</view><view class="input yanzhengma data-v-b237504c"><input data-event-opts="{{[['input',[['__set_model',['','code','$event',[]]]]]]}}" class="uni-input data-v-b237504c" value="{{code}}" bindinput="__e"/><button class="code data-v-b237504c" type="none" disabled="{{disabled}}" value="{{code}}" data-event-opts="{{[['tap',[['handleCode',['$event']]]],['input',[['__set_model',['','code','$event',[]]]]]]}}" bindtap="__e" bindinput="__e">{{(second<60?second+'S后重发':$root.m2)+''}}</button></view></view></block><block wx:else><view class="item data-v-b237504c"><view class="text data-v-b237504c">密码</view><view class="input yanzhengma data-v-b237504c"><input data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" class="uni-input data-v-b237504c" value="{{password}}" bindinput="__e"/><text data-event-opts="{{[['tap',[['handlePassword',['forgetPassword']]]]]}}" class="forget code data-v-b237504c" bindtap="__e">忘记密码?</text></view></view></block></view><view data-event-opts="{{[['tap',[['handleTelLogin',['$event']]]]]}}" class="btnlogin data-v-b237504c" bindtap="__e">{{$root.m3}}</view><view data-event-opts="{{[['tap',[['handlePassword',['register']]]]]}}" class="btngroup data-v-b237504c" bindtap="__e"><text class="data-v-b237504c">{{$root.m4}}</text></view></view></view>
|
||||
<view class="content data-v-b237504c"><view class="bg data-v-b237504c"></view><view class="top data-v-b237504c"><image src="../../static/logo.png" class="data-v-b237504c"></image><text class="data-v-b237504c">青测</text></view><view class="login box_shadow data-v-b237504c"><view class="title data-v-b237504c">{{$root.m0}}</view><view data-event-opts="{{[['tap',[['handleToggle',['$event']]]]]}}" class="toggle cblue data-v-b237504c" bindtap="__e">切换登录</view><view class="editem data-v-b237504c"><view class="item data-v-b237504c"><view class="text data-v-b237504c">手机号/邮箱</view><view class="input data-v-b237504c"><input placeholder data-event-opts="{{[['input',[['__set_model',['','phone','$event',[]]]]]]}}" value="{{phone}}" bindinput="__e" class="data-v-b237504c"/></view></view><block wx:if="{{isCode}}"><view class="item data-v-b237504c"><view class="text data-v-b237504c">{{$root.m1}}</view><view class="input yanzhengma data-v-b237504c"><input data-event-opts="{{[['input',[['__set_model',['','code','$event',[]]]]]]}}" class="uni-input data-v-b237504c" value="{{code}}" bindinput="__e"/><button class="code data-v-b237504c" type="none" disabled="{{disabled}}" value="{{code}}" data-event-opts="{{[['tap',[['handleCode',['$event']]]],['input',[['__set_model',['','code','$event',[]]]]]]}}" bindtap="__e" bindinput="__e">{{(second<60?second+'S后重发':$root.m2)+''}}</button></view></view></block><block wx:else><view class="item data-v-b237504c"><view class="text data-v-b237504c">密码</view><view class="input yanzhengma data-v-b237504c"><input data-event-opts="{{[['input',[['__set_model',['','password','$event',[]]]]]]}}" class="uni-input data-v-b237504c" value="{{password}}" bindinput="__e"/><text data-event-opts="{{[['tap',[['handlePassword',['forgetPassword']]]]]}}" class="forget code data-v-b237504c" bindtap="__e">忘记密码?</text></view></view></block></view><view data-event-opts="{{[['tap',[['handleTelLogin',['$event']]]]]}}" class="btnlogin data-v-b237504c" bindtap="__e">{{$root.m3}}</view><view data-event-opts="{{[['tap',[['handlePassword',['register']]]]]}}" class="btngroup data-v-b237504c" bindtap="__e"><text class="data-v-b237504c">{{$root.m4}}</text></view></view></view>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
margin: 0 15px;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
margin-bottom: 15px;
|
||||
}
|
||||
.login .editem .item .text.data-v-b237504c {
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.login .editem .item .input.data-v-b237504c {
|
||||
|
|
@ -119,16 +119,16 @@
|
|||
left: 10px;
|
||||
right: 0px;
|
||||
z-index: 88;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.login .editem .item .yanzhengma input.data-v-b237504c {
|
||||
right: 120px;
|
||||
font-size: 28rpx;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
.login .editem .code.data-v-b237504c {
|
||||
width: 110px;
|
||||
background: #dfdfdf;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
margin: 0;
|
||||
line-height: 40px;
|
||||
border-radius: 5px;
|
||||
|
|
@ -167,7 +167,7 @@
|
|||
color: #fff !important;
|
||||
}
|
||||
.xieyi.data-v-b237504c {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #477EFF;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.logo.data-v-1783b6cf {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
font-size: 40rpx;
|
||||
line-height: 30px;
|
||||
}
|
||||
.logo image.data-v-1783b6cf {
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
}
|
||||
.logo text.data-v-1783b6cf {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
color: #999;
|
||||
}
|
||||
.list.data-v-1783b6cf {
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
.list .item .new.data-v-1783b6cf {
|
||||
color: #fff;
|
||||
background-color: red;
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
border-radius: 10px;
|
||||
padding: 3px 5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -32,9 +32,9 @@
|
|||
}
|
||||
.add.data-v-1af98b93 {
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
line-height: 30px;
|
||||
font-size: 14px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
font-size: 32rpx;
|
||||
margin-bottom: 10px;
|
||||
color: #fff;
|
||||
border-radius: 15px;
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
}
|
||||
.list.data-v-1af98b93 {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
font-size: 36rpx;
|
||||
}
|
||||
.list .item.data-v-1af98b93 {
|
||||
background: #fff;
|
||||
|
|
@ -78,13 +78,14 @@
|
|||
width: calc(100% - 70px);
|
||||
}
|
||||
.list .left .name .title.data-v-1af98b93 {
|
||||
font-size: 34rpx;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
margin-top: 5px;
|
||||
}
|
||||
.list .left .name .title2.data-v-1af98b93 {
|
||||
font-size: 12px;
|
||||
font-size: 32rpx;
|
||||
color: #999;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
|
@ -93,6 +94,7 @@
|
|||
}
|
||||
.list .blueBtn.data-v-1af98b93 {
|
||||
width: auto;
|
||||
font-size: 32rpx;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -234,6 +234,8 @@ var _default = {
|
|||
that.$model.getloginOut({}).then(function (res) {
|
||||
if (res.code != 0) return;
|
||||
console.log('确定退出', res);
|
||||
uni.setStorageSync('token', null);
|
||||
uni.setStorageSync('aan_id', null);
|
||||
uni.clearStorageSync();
|
||||
uni.reLaunch({
|
||||
url: "/pages/login/login"
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
}
|
||||
.wxlist .item.data-v-259fb574 {
|
||||
width: auto;
|
||||
font-size: 14px;
|
||||
font-size: 32rpx;
|
||||
line-height: 45px;
|
||||
height: 45px;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -230,6 +230,7 @@ var _default = {
|
|||
return ite.id == that.memInfo.grade;
|
||||
});
|
||||
}
|
||||
that.memInfo.grade = res.data[that.index].id;
|
||||
}).catch(function (err) {});
|
||||
},
|
||||
// 提交
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue