成员列表不为空后再进行蓝牙连接
This commit is contained in:
parent
cf9840ba4a
commit
9c8cc815f8
|
|
@ -143,7 +143,6 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
console.log("手动内容", that.PublicRecord, info, that.rtype)
|
|
||||||
return that.PublicRecord.length ? info : null
|
return that.PublicRecord.length ? info : null
|
||||||
},
|
},
|
||||||
endDate() {
|
endDate() {
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
"name" : "Reedaw",
|
"name" : "Reedaw",
|
||||||
"appid" : "__UNI__20604F1",
|
"appid" : "__UNI__20604F1",
|
||||||
"description" : "面向儿童青少年的健康体质测量APP",
|
"description" : "面向儿童青少年的健康体质测量APP",
|
||||||
"versionName" : "1.2.7",
|
"versionName" : "1.2.8",
|
||||||
"versionCode" : 127,
|
"versionCode" : 128,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
|
|
||||||
|
|
@ -64,12 +64,12 @@
|
||||||
<view class="right">
|
<view class="right">
|
||||||
<view class="radio">
|
<view class="radio">
|
||||||
<uni-icons :type="memInfo.measure_model==1?'checkbox-filled':'circle'"
|
<uni-icons :type="memInfo.measure_model==1?'checkbox-filled':'circle'"
|
||||||
@click="memInfo.measure_model=1" size="24"
|
@click="handleMeasureModel(1)" size="24"
|
||||||
:color="memInfo.measure_model==1?'#fea606':'#dfdfdf'"></uni-icons>体测模式
|
:color="memInfo.measure_model==1?'#fea606':'#dfdfdf'"></uni-icons>体测模式
|
||||||
</view>
|
</view>
|
||||||
<view class="radio ml-15">
|
<view class="radio ml-15">
|
||||||
<uni-icons :type="memInfo.measure_model==2?'checkbox-filled':'circle'"
|
<uni-icons :type="memInfo.measure_model==2?'checkbox-filled':'circle'"
|
||||||
@click="memInfo.measure_model=2" size="24"
|
@click="handleMeasureModel(2)" size="24"
|
||||||
:color="memInfo.measure_model==2?'#fea606':'#dfdfdf'"></uni-icons>体脂模式
|
:color="memInfo.measure_model==2?'#fea606':'#dfdfdf'"></uni-icons>体脂模式
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
@ -146,7 +146,7 @@
|
||||||
height: "",
|
height: "",
|
||||||
weight: "",
|
weight: "",
|
||||||
address: '',
|
address: '',
|
||||||
identity_name: "",
|
identity_name: "陌生人",
|
||||||
identity_id: "P0",
|
identity_id: "P0",
|
||||||
},
|
},
|
||||||
visible: false,
|
visible: false,
|
||||||
|
|
@ -173,12 +173,15 @@
|
||||||
let that = this
|
let that = this
|
||||||
that.handleIdentityList()
|
that.handleIdentityList()
|
||||||
if (options.info) {
|
if (options.info) {
|
||||||
that.memInfo = JSON.parse(options.info)
|
let info = JSON.parse(options.info)
|
||||||
if(options.measure_model=="1"){
|
that.memInfo = info
|
||||||
that.gradeIndex = that.gradeList.findIndex((profile) => profile.id === that.memInfo.grade);
|
// if (info.measure_model == "1" || info.measure_model == 1) {
|
||||||
that.memInfo.grade = that.gradeList[that.gradeIndex].id
|
console.log("that.memInfo ", that.memInfo)
|
||||||
that.identityIndex = that.identityList.findIndex((profile) => profile.id === that.memInfo.identity_id);
|
that.gradeIndex = that.gradeList.findIndex((profile) => profile.id === that.memInfo.grade);
|
||||||
}
|
that.memInfo.grade = that.gradeList[that.gradeIndex].id
|
||||||
|
that.identityIndex = that.identityList.findIndex((profile) => profile.id === that.memInfo.identity_id);
|
||||||
|
console.log("1111111111", that.identityList, that.identityIndex)
|
||||||
|
// }
|
||||||
that.isEdit = true
|
that.isEdit = true
|
||||||
}
|
}
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
|
|
@ -235,6 +238,8 @@
|
||||||
console.log("成员列表", res)
|
console.log("成员列表", res)
|
||||||
that.$store.commit('changeFamilay', res.data)
|
that.$store.commit('changeFamilay', res.data)
|
||||||
let aud_id = ""
|
let aud_id = ""
|
||||||
|
let pages = getCurrentPages()
|
||||||
|
let prevPage = pages[pages.length - 2]
|
||||||
// 修改用户
|
// 修改用户
|
||||||
if (that.isEdit && that.memInfo.id == uni.getStorageSync('userid')) {
|
if (that.isEdit && that.memInfo.id == uni.getStorageSync('userid')) {
|
||||||
console.log("修改用户")
|
console.log("修改用户")
|
||||||
|
|
@ -247,16 +252,23 @@
|
||||||
uni.setStorageSync('gender', that.memInfo.gender)
|
uni.setStorageSync('gender', that.memInfo.gender)
|
||||||
aud_id = id
|
aud_id = id
|
||||||
}
|
}
|
||||||
|
that.handlePublicRecord(aud_id)
|
||||||
that.$store.dispatch('getUserInfo', {
|
that.$store.dispatch('getUserInfo', {
|
||||||
aud_id: aud_id
|
aud_id: aud_id
|
||||||
})
|
})
|
||||||
that.$store.dispatch("getResult", {
|
that.$store.dispatch("getResult", {
|
||||||
aud_id: aud_id
|
aud_id: aud_id
|
||||||
})
|
})
|
||||||
that.handlePublicRecord(aud_id)
|
console.log("familayList个数", that.familayList.length)
|
||||||
uni.navigateBack({
|
if (!that.isEdit && that.familayList.length == 1) {
|
||||||
delta: 1
|
uni.setStorageSync('isBle', true)
|
||||||
});
|
uni.switchTab({
|
||||||
|
url: "/pages/home/home"
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
uni.navigateBack()
|
||||||
|
}
|
||||||
|
|
||||||
}).catch(err => {})
|
}).catch(err => {})
|
||||||
},
|
},
|
||||||
// 公共手动记录内容
|
// 公共手动记录内容
|
||||||
|
|
@ -341,7 +353,11 @@
|
||||||
that.memInfo.identity_name = that.identityList[that.identityIndex].name
|
that.memInfo.identity_name = that.identityList[that.identityIndex].name
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
// 场景选择
|
||||||
|
handleMeasureModel(ind) {
|
||||||
|
let that = this
|
||||||
|
that.memInfo.measure_model = ind
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
{
|
{
|
||||||
"path": "pages/home/home",
|
"path": "pages/home/home",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "首页",
|
"navigationBarTitleText": "",
|
||||||
"enablePullDownRefresh": true,
|
"enablePullDownRefresh": true,
|
||||||
"onReachBottomDistance": 50
|
"onReachBottomDistance": 50
|
||||||
}
|
}
|
||||||
|
|
@ -355,7 +355,7 @@
|
||||||
"pagePath": "pages/home/home",
|
"pagePath": "pages/home/home",
|
||||||
"iconPath": "static/shou.png",
|
"iconPath": "static/shou.png",
|
||||||
"selectedIconPath": "static/shou2.png",
|
"selectedIconPath": "static/shou2.png",
|
||||||
"text": "首页"
|
"text": "记录"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pagePath": "pages/zixun/list",
|
"pagePath": "pages/zixun/list",
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,13 @@
|
||||||
<!-- 头部 -->
|
<!-- 头部 -->
|
||||||
<headerIndex :isArea="false" v-if="isShow"></headerIndex>
|
<headerIndex :isArea="false" v-if="isShow"></headerIndex>
|
||||||
<!-- 蓝牙提示区 -->
|
<!-- 蓝牙提示区 -->
|
||||||
<view class="bleTips" v-if="islink==0">
|
<view v-if="userList.length">
|
||||||
{{textLink}}
|
<view class="bleTips" v-if="islink==0">
|
||||||
</view>
|
{{textLink}}
|
||||||
<view class="bleTips2 bleTips" v-else @click="openBluetoothAdapter">
|
</view>
|
||||||
{{textLink}}
|
<view class="bleTips2 bleTips" v-else @click="openBluetoothAdapter">
|
||||||
|
{{textLink}}
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 工具区 -->
|
<!-- 工具区 -->
|
||||||
|
|
@ -312,7 +314,6 @@
|
||||||
// #ifdef APP-PLUS
|
// #ifdef APP-PLUS
|
||||||
if (options && options.type == 1) {
|
if (options && options.type == 1) {
|
||||||
that.handleUserList()
|
that.handleUserList()
|
||||||
that.openBluetoothAdapter()
|
|
||||||
}
|
}
|
||||||
// #endif
|
// #endif
|
||||||
// #ifndef APP-PLUS
|
// #ifndef APP-PLUS
|
||||||
|
|
@ -326,10 +327,7 @@
|
||||||
onPullDownRefresh() {
|
onPullDownRefresh() {
|
||||||
let that = this
|
let that = this
|
||||||
that.isShow = true
|
that.isShow = true
|
||||||
if (that.userList.length) {
|
that.handleUserList()
|
||||||
that.handleUserList()
|
|
||||||
}
|
|
||||||
that.openBluetoothAdapter()
|
|
||||||
that.onBLEConnectionStateChange()
|
that.onBLEConnectionStateChange()
|
||||||
uni.stopPullDownRefresh()
|
uni.stopPullDownRefresh()
|
||||||
},
|
},
|
||||||
|
|
@ -349,6 +347,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
onShow() {
|
||||||
|
let that = this
|
||||||
|
console.log("onShow", uni.getStorageSync('isBle'))
|
||||||
|
if (uni.getStorageSync('isBle') && uni.getStorageSync('isBle') == true) {
|
||||||
|
that.openBluetoothAdapter()
|
||||||
|
uni.setStorageSync('isBle', false)
|
||||||
|
console.log("首次添加玩用户后初始化蓝牙", uni.getStorageSync('isBle'))
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 初始化蓝牙
|
// 初始化蓝牙
|
||||||
openBluetoothAdapter() {
|
openBluetoothAdapter() {
|
||||||
|
|
@ -373,7 +380,8 @@
|
||||||
success(modalSuccess) {
|
success(modalSuccess) {
|
||||||
uni.openSetting({
|
uni.openSetting({
|
||||||
success(settingdata) {
|
success(settingdata) {
|
||||||
if (settingdata.authSetting["scope.bluetooth"]) {
|
if (settingdata.authSetting[
|
||||||
|
"scope.bluetooth"]) {
|
||||||
uni.openBluetoothAdapter({
|
uni.openBluetoothAdapter({
|
||||||
success: e => {
|
success: e => {
|
||||||
that.islink = -1
|
that.islink = -1
|
||||||
|
|
@ -579,7 +587,7 @@
|
||||||
clearTimeout(myTime);
|
clearTimeout(myTime);
|
||||||
that.$Bluetooth.stopBluetoothDevicesDiscovery()
|
that.$Bluetooth.stopBluetoothDevicesDiscovery()
|
||||||
}
|
}
|
||||||
}, 30000);
|
}, 50000);
|
||||||
},
|
},
|
||||||
// 从广播秤返回后更改蓝牙状态
|
// 从广播秤返回后更改蓝牙状态
|
||||||
getBlereload() {
|
getBlereload() {
|
||||||
|
|
@ -593,7 +601,6 @@
|
||||||
that.$model.getloginversion({}).then(res => {
|
that.$model.getloginversion({}).then(res => {
|
||||||
if (res.code == 0) {
|
if (res.code == 0) {
|
||||||
that.handleUserList()
|
that.handleUserList()
|
||||||
that.openBluetoothAdapter()
|
|
||||||
} else {
|
} else {
|
||||||
uni.setStorageSync('token', null)
|
uni.setStorageSync('token', null)
|
||||||
uni.setStorageSync('aan_id', null)
|
uni.setStorageSync('aan_id', null)
|
||||||
|
|
@ -619,11 +626,15 @@
|
||||||
}
|
}
|
||||||
that.$store.commit('changeFamilay', res.data)
|
that.$store.commit('changeFamilay', res.data)
|
||||||
if (res.data.length) {
|
if (res.data.length) {
|
||||||
let userid = uni.getStorageSync('userid')
|
let userid = ""
|
||||||
let found = res.data.find(e => e.id == userid);
|
if (uni.getStorageSync('userid')) {
|
||||||
|
let found = res.data.find(e => e.id == uni.getStorageSync('userid'));
|
||||||
if (found !== undefined) {
|
if (found !== undefined) {
|
||||||
userid = found.id
|
userid = found.id
|
||||||
|
} else {
|
||||||
|
userid = res.data[0].id
|
||||||
|
uni.setStorageSync('userid', res.data[0].id)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
userid = res.data[0].id
|
userid = res.data[0].id
|
||||||
uni.setStorageSync('userid', res.data[0].id)
|
uni.setStorageSync('userid', res.data[0].id)
|
||||||
|
|
@ -637,6 +648,7 @@
|
||||||
})
|
})
|
||||||
that.handleLabelList(userid)
|
that.handleLabelList(userid)
|
||||||
that.handlePublicRecord(userid)
|
that.handlePublicRecord(userid)
|
||||||
|
that.openBluetoothAdapter()
|
||||||
}
|
}
|
||||||
}).catch(err => {})
|
}).catch(err => {})
|
||||||
},
|
},
|
||||||
|
|
@ -844,6 +856,11 @@
|
||||||
box-shadow: 0px 1px 5px 2px #dfe2e1fc;
|
box-shadow: 0px 1px 5px 2px #dfe2e1fc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.bleTips2 {
|
||||||
|
background: #fea606;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
// 工具
|
// 工具
|
||||||
.tools_l {
|
.tools_l {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -872,11 +889,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bleTips2 {
|
|
||||||
background: #fea606;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.activeHeight {
|
.activeHeight {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
border-bottom: 2px solid $maincolor;
|
border-bottom: 2px solid $maincolor;
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<view class="item3" v-for="(it,ik) in ite.list" :key="ik" v-if="!isresult">
|
<view class="item3" v-for="(it,ik) in ite.list" :key="ik" v-if="!isresult">
|
||||||
|
|
||||||
<view class="name overflow" @click="handleTips(it.describe)">
|
<view class="name" @click="handleTips(it.describe)">
|
||||||
{{it.name}}
|
{{it.name}}
|
||||||
<uni-icons type="info" color="#f0ad4e" size="20" v-if="it.describe"></uni-icons>
|
<uni-icons type="info" color="#f0ad4e" size="20" v-if="it.describe"></uni-icons>
|
||||||
</view>
|
</view>
|
||||||
|
|
|
||||||
|
|
@ -79,11 +79,12 @@
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
font-size: 32upx;
|
font-size: 32upx;
|
||||||
|
align-items: center;
|
||||||
border-bottom: 1px solid #f7f7f7;
|
border-bottom: 1px solid #f7f7f7;
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
width: 40%;
|
width: 40%;
|
||||||
line-height: 50px;
|
// line-height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.weight {
|
.weight {
|
||||||
|
|
|
||||||
|
|
@ -131,11 +131,12 @@
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
font-size: 32upx;
|
font-size: 32upx;
|
||||||
|
align-items: center;
|
||||||
border-bottom: 1px solid #f7f7f7;
|
border-bottom: 1px solid #f7f7f7;
|
||||||
|
|
||||||
.name {
|
.name {
|
||||||
width: 42%;
|
width: 42%;
|
||||||
line-height: 50px;
|
// line-height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.weight {
|
.weight {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
iosProfile=F:/证书/发布Development描述文件/Reedaw.mobileprovision
|
iosProfile=D:/青测证书/ios证书/profile证书文件/Reedaw.mobileprovision
|
||||||
ioscertFile=F:/证书/发布Development证书/证书.p12
|
ioscertFile=D:/青测证书/ios证书/私钥证书/证书.p12
|
||||||
ioscertPassword=ep/Tdjka4Y7WYqDB6/S7dw==
|
ioscertPassword=ep/Tdjka4Y7WYqDB6/S7dw==
|
||||||
|
|
|
||||||
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__20604F1","name":"Reedaw","version":{"name":"1.2.7","code":127},"description":"面向儿童青少年的健康体质测量APP","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":"light","background":"#37cc92"},"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":"需要蓝牙权限来连接设备","NSBluetoothPeripheralUsageDescription":"使用蓝牙与外设通信"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false,"version":"2"},"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","fontSize":"14px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"首页"},{"pagePath":"pages/zixun/list","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"资讯"},{"pagePath":"pages/my/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"}
|
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__20604F1","name":"Reedaw","version":{"name":"1.2.8","code":128},"description":"面向儿童青少年的健康体质测量APP","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":"light","background":"#37cc92"},"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":"需要蓝牙权限来连接设备","NSBluetoothPeripheralUsageDescription":"使用蓝牙与外设通信"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false,"version":"2"},"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","fontSize":"14px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"首页"},{"pagePath":"pages/zixun/list","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"资讯"},{"pagePath":"pages/my/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"}
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
"pagePath": "pages/home/home",
|
"pagePath": "pages/home/home",
|
||||||
"iconPath": "static/shou.png",
|
"iconPath": "static/shou.png",
|
||||||
"selectedIconPath": "static/shou2.png",
|
"selectedIconPath": "static/shou2.png",
|
||||||
"text": "首页"
|
"text": "记录"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pagePath": "pages/zixun/list",
|
"pagePath": "pages/zixun/list",
|
||||||
|
|
|
||||||
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 @@
|
||||||
.btn.data-v-385b78f4{width:40%;float:right;margin-top:15px;background:#37cc92!important}.close.data-v-385b78f4{background:#dfdfdf!important;float:left}
|
.btn.data-v-596d6a0d{width:40%;float:right;margin-top:15px;background:#37cc92!important}.close.data-v-596d6a0d{background:#dfdfdf!important;float:left}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
||||||
.box.data-v-74efdea4{height:100vh;background-color:#fff}input.data-v-74efdea4{border:none;background:inherit}.headbox.data-v-74efdea4{height:180rpx;padding-top:10px;border-radius:0 0 5px 5px;background:#37cc92}.headimage.data-v-74efdea4{display:block;padding-top:10px;width:70px;height:70px;border-radius:50%;font-size:140rpx;margin:auto;color:#fff}.lan.data-v-74efdea4{display:flex;align-items:center;font-size:32rpx;padding:5px 0;margin:5px 15px;border-bottom:1px solid #f7f7f7}.left.data-v-74efdea4{width:24%;text-align:left}.right.data-v-74efdea4{display:flex;align-items:center;justify-content:flex-end;width:72%;height:40px;line-height:40px;box-sizing:border-box;position:relative;text-align:right}.right .radio.data-v-74efdea4{display:flex;align-items:center}.right picker.data-v-74efdea4{width:100%;text-align:right;border:none;margin-right:15px;font-size:32rpx;color:#333}.right.data-v-74efdea4 input{height:35px;padding-top:1px;font-size:32rpx;color:#333;margin-right:15px}.right .iconfont.data-v-74efdea4{color:#333;font-size:32rpx;position:absolute;right:-10px;top:0}.btn.data-v-74efdea4{width:auto;margin:40px 15px 0;background:#fea606!important}.visible.data-v-74efdea4{position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background-color:rgba(0,0,0,.6)}.visible .groupBtn.data-v-74efdea4{height:50px;line-height:50px;background-color:#fff;display:flex;justify-content:space-between;padding:0 15px;border-bottom:1px solid #dfdfdf;position:absolute;left:0;right:0;bottom:45%;z-index:999}.visible .groupBtn view.data-v-74efdea4{height:30px;line-height:30px;padding:0 10px;background-color:#dfdfdf;border-radius:5px;margin-top:10px}.visible .groupBtn .sure.data-v-74efdea4{background-color:#37cc92;color:#fff!important}.visible .picker-view.data-v-74efdea4{width:100%;height:45%;bottom:0;position:absolute;background-color:#fff}.visible .item.data-v-74efdea4{line-height:45px;text-align:center}
|
.box.data-v-748b2346{height:100vh;background-color:#fff}input.data-v-748b2346{border:none;background:inherit}.headbox.data-v-748b2346{height:180rpx;padding-top:10px;border-radius:0 0 5px 5px;background:#37cc92}.headimage.data-v-748b2346{display:block;padding-top:10px;width:70px;height:70px;border-radius:50%;font-size:140rpx;margin:auto;color:#fff}.lan.data-v-748b2346{display:flex;align-items:center;font-size:32rpx;padding:5px 0;margin:5px 15px;border-bottom:1px solid #f7f7f7}.left.data-v-748b2346{width:24%;text-align:left}.right.data-v-748b2346{display:flex;align-items:center;justify-content:flex-end;width:72%;height:40px;line-height:40px;box-sizing:border-box;position:relative;text-align:right}.right .radio.data-v-748b2346{display:flex;align-items:center}.right picker.data-v-748b2346{width:100%;text-align:right;border:none;margin-right:15px;font-size:32rpx;color:#333}.right.data-v-748b2346 input{height:35px;padding-top:1px;font-size:32rpx;color:#333;margin-right:15px}.right .iconfont.data-v-748b2346{color:#333;font-size:32rpx;position:absolute;right:-10px;top:0}.btn.data-v-748b2346{width:auto;margin:40px 15px 0;background:#fea606!important}.visible.data-v-748b2346{position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background-color:rgba(0,0,0,.6)}.visible .groupBtn.data-v-748b2346{height:50px;line-height:50px;background-color:#fff;display:flex;justify-content:space-between;padding:0 15px;border-bottom:1px solid #dfdfdf;position:absolute;left:0;right:0;bottom:45%;z-index:999}.visible .groupBtn view.data-v-748b2346{height:30px;line-height:30px;padding:0 10px;background-color:#dfdfdf;border-radius:5px;margin-top:10px}.visible .groupBtn .sure.data-v-748b2346{background-color:#37cc92;color:#fff!important}.visible .picker-view.data-v-748b2346{width:100%;height:45%;bottom:0;position:absolute;background-color:#fff}.visible .item.data-v-748b2346{line-height:45px;text-align:center}
|
||||||
|
|
@ -1 +1 @@
|
||||||
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/notepad/addNotepad"],{"2fcd":function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var o=r(n("5464"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},5464:function(t,e,n){"use strict";n.r(e);var r=n("68fe"),o=n("b294");for(var i in o)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("973c");var c=n("828b"),a=Object(c["a"])(o["default"],r["b"],r["c"],!1,null,"a997936c",null,!1,r["a"],void 0);e["default"]=a.exports},"68fe":function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return r}));var r={uniDatetimePicker:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker")]).then(n.bind(null,"9a7d"))}},o=function(){var t=this.$createElement,e=(this._self._c,this.content.length);this.$mp.data=Object.assign({},{$root:{g0:e}})},i=[]},"973c":function(t,e,n){"use strict";var r=n("a1bb"),o=n.n(r);o.a},a1bb:function(t,e,n){},b294:function(t,e,n){"use strict";n.r(e);var r=n("c8f7"),o=n.n(r);for(var i in r)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(i);e["default"]=o.a},c8f7:function(t,e,n){"use strict";(function(t){var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("7ca3")),i=n("8f59");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){(0,o.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={data:function(){return{index:-1,petId:"",content:"",recordTime:""}},computed:a(a({},(0,i.mapState)(["petInfo","petList"])),{},{start:function(){return this.$tools.getTime()}}),mounted:function(){this.recordTime=this.$tools.getTime()},methods:{handleList:function(t){this.index=t.target.value,this.petId=this.petList[t.target.value].id},changeLog:function(t){this.recordTime=t},handleCloseClick:function(){var e=this;e.recordTime?e.$model.getNotepadSubmit({petId:t.getStorageSync("petid"),content:e.content,recordTime:e.recordTime}).then((function(n){n.code,e.$tools.msg("记录成功!"),t.redirectTo({url:"/pages/notepad/notepad"})})):e.$tools.msg("请选择记录时间")}}};e.default=u}).call(this,n("df3c")["default"])}},[["2fcd","common/runtime","common/vendor"]]]);
|
(global["webpackJsonp"]=global["webpackJsonp"]||[]).push([["pageTwo/notepad/addNotepad"],{"2fcd":function(t,e,n){"use strict";(function(t,e){var r=n("47a9");n("30b7");r(n("3240"));var o=r(n("5464"));t.__webpack_require_UNI_MP_PLUGIN__=n,e(o.default)}).call(this,n("3223")["default"],n("df3c")["createPage"])},5464:function(t,e,n){"use strict";n.r(e);var r=n("68fed"),o=n("b294");for(var i in o)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return o[t]}))}(i);n("973c");var c=n("828b"),a=Object(c["a"])(o["default"],r["b"],r["c"],!1,null,"a997936c",null,!1,r["a"],void 0);e["default"]=a.exports},"68fed":function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return i})),n.d(e,"a",(function(){return r}));var r={uniDatetimePicker:function(){return Promise.all([n.e("common/vendor"),n.e("uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker")]).then(n.bind(null,"9a7d"))}},o=function(){var t=this.$createElement,e=(this._self._c,this.content.length);this.$mp.data=Object.assign({},{$root:{g0:e}})},i=[]},"973c":function(t,e,n){"use strict";var r=n("a1bb"),o=n.n(r);o.a},a1bb:function(t,e,n){},b294:function(t,e,n){"use strict";n.r(e);var r=n("c8f7"),o=n.n(r);for(var i in r)["default"].indexOf(i)<0&&function(t){n.d(e,t,(function(){return r[t]}))}(i);e["default"]=o.a},c8f7:function(t,e,n){"use strict";(function(t){var r=n("47a9");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var o=r(n("7ca3")),i=n("8f59");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function a(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){(0,o.default)(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={data:function(){return{index:-1,petId:"",content:"",recordTime:""}},computed:a(a({},(0,i.mapState)(["petInfo","petList"])),{},{start:function(){return this.$tools.getTime()}}),mounted:function(){this.recordTime=this.$tools.getTime()},methods:{handleList:function(t){this.index=t.target.value,this.petId=this.petList[t.target.value].id},changeLog:function(t){this.recordTime=t},handleCloseClick:function(){var e=this;e.recordTime?e.$model.getNotepadSubmit({petId:t.getStorageSync("petid"),content:e.content,recordTime:e.recordTime}).then((function(n){n.code,e.$tools.msg("记录成功!"),t.redirectTo({url:"/pages/notepad/notepad"})})):e.$tools.msg("请选择记录时间")}}};e.default=u}).call(this,n("df3c")["default"])}},[["2fcd","common/runtime","common/vendor"]]]);
|
||||||
|
|
@ -1 +1 @@
|
||||||
.box.data-v-353b2ee0{margin:15px 10px 0;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 40px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px}.box .charts.data-v-353b2ee0{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-353b2ee0{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.box .title.data-v-353b2ee0{width:100%;text-align:center}.box .time.data-v-353b2ee0{width:100%}.indexCarList.data-v-353b2ee0{width:calc(100% - 40px);margin:10px;padding:5px 10px;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-353b2ee0{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;font-weight:700;align-items:center;width:calc(100% - 10px);font-size:32rpx}.indexCarList .title .name.data-v-353b2ee0{font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-353b2ee0{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-353b2ee0{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-353b2ee0{width:40%;line-height:50px}.indexCarList .item3 .weight.data-v-353b2ee0{width:60%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight view.data-v-353b2ee0{width:30%;text-align:center}.indexCarList .item3 .weight .input.data-v-353b2ee0{width:40%}.indexCarList .item3.data-v-353b2ee0:nth-child(1){font-weight:700}.content.data-v-353b2ee0{min-height:100vh;padding-top:15px;padding-bottom:15px;background-color:#f7f7f7}
|
.box.data-v-353b2ee0{margin:15px 10px 0;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 40px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px}.box .charts.data-v-353b2ee0{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-353b2ee0{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.box .title.data-v-353b2ee0{width:100%;text-align:center}.box .time.data-v-353b2ee0{width:100%}.indexCarList.data-v-353b2ee0{width:calc(100% - 40px);margin:10px;padding:5px 10px;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-353b2ee0{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;font-weight:700;align-items:center;width:calc(100% - 10px);font-size:32rpx}.indexCarList .title .name.data-v-353b2ee0{font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-353b2ee0{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-353b2ee0{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;align-items:center;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-353b2ee0{width:40%}.indexCarList .item3 .weight.data-v-353b2ee0{width:60%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight view.data-v-353b2ee0{width:30%;text-align:center}.indexCarList .item3 .weight .input.data-v-353b2ee0{width:40%}.indexCarList .item3.data-v-353b2ee0:nth-child(1){font-weight:700}.content.data-v-353b2ee0{min-height:100vh;padding-top:15px;padding-bottom:15px;background-color:#f7f7f7}
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"navigationBarTitleText": "首页",
|
"navigationBarTitleText": "",
|
||||||
"enablePullDownRefresh": true,
|
"enablePullDownRefresh": true,
|
||||||
"onReachBottomDistance": 50,
|
"onReachBottomDistance": 50,
|
||||||
"usingComponents": {
|
"usingComponents": {
|
||||||
|
|
|
||||||
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,2 +1,2 @@
|
||||||
.box.data-v-7a8c8153{margin:15px 10px 0;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 40px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px;position:relative;min-height:30px}.box .groupBtn.data-v-7a8c8153{width:100%}.box .history.data-v-7a8c8153{position:absolute;top:0;right:10px;height:35px;line-height:35px;float:right;margin-top:15px;font-size:28rpx;padding:0 10px;background:#37cc92!important}.box .charts.data-v-7a8c8153{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-7a8c8153{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.wrapper.data-v-7a8c8153{font-size:28rpx}.wrapper .choice.data-v-7a8c8153{color:#37cc92;font-weight:500;padding-left:15px;display:inline-block}.wrapper .edit.data-v-7a8c8153{background-color:#fff}.wrapper .item.data-v-7a8c8153{width:100%;height:45px;line-height:45px;display:flex;border-bottom:1px solid #f7f7f7}.wrapper .btn.data-v-7a8c8153{width:40%;float:right;margin-top:15px;background:#37cc92!important}.wrapper .edit.data-v-7a8c8153{top:20%}.wrapper .close.data-v-7a8c8153{background:#dfdfdf!important;float:left;color:#333}.indexCarList.data-v-7a8c8153{width:calc(100% - 40px);margin:10px;padding:10px;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-7a8c8153{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;align-items:center;width:calc(100% - 10px)}.indexCarList .title .name.data-v-7a8c8153{font-size:32rpx;font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-7a8c8153{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-7a8c8153{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-7a8c8153{width:42%;line-height:50px}.indexCarList .item3 .weight.data-v-7a8c8153{width:58%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight text.data-v-7a8c8153{color:#666;position:absolute;right:0;bottom:15px;font-size:24rpx}.indexCarList .item3 .weight .input.data-v-7a8c8153{width:70%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight .input .uni-icons.data-v-7a8c8153{position:absolute;right:10px;bottom:10px}.indexCarList .item3 .weight .input.data-v-7a8c8153 input,
|
.box.data-v-7a722ffe{margin:15px 10px 0;padding:15px 10px 10px;background-color:#fff;width:calc(100% - 40px);display:flex;flex-wrap:wrap;justify-content:center;align-items:center;border-radius:10px;position:relative;min-height:30px}.box .groupBtn.data-v-7a722ffe{width:100%}.box .history.data-v-7a722ffe{position:absolute;top:0;right:10px;height:35px;line-height:35px;float:right;margin-top:15px;font-size:28rpx;padding:0 10px;background:#37cc92!important}.box .charts.data-v-7a722ffe{width:100%;height:260rpx;margin:10px 0;position:relative;display:flex;align-items:center;justify-content:center}.box .charts .name.data-v-7a722ffe{position:absolute;width:100%;text-align:center;font-size:56rpx;margin:auto;color:#4687f9}.wrapper.data-v-7a722ffe{font-size:28rpx}.wrapper .choice.data-v-7a722ffe{color:#37cc92;font-weight:500;padding-left:15px;display:inline-block}.wrapper .edit.data-v-7a722ffe{background-color:#fff}.wrapper .item.data-v-7a722ffe{width:100%;height:45px;line-height:45px;display:flex;border-bottom:1px solid #f7f7f7}.wrapper .btn.data-v-7a722ffe{width:40%;float:right;margin-top:15px;background:#37cc92!important}.wrapper .edit.data-v-7a722ffe{top:20%}.wrapper .close.data-v-7a722ffe{background:#dfdfdf!important;float:left;color:#333}.indexCarList.data-v-7a722ffe{width:calc(100% - 40px);margin:10px;padding:10px;background-color:#fff;border-radius:10px}.indexCarList .title.data-v-7a722ffe{color:#000;background-color:#f5f5f5!important;border-bottom:1px solid #d9d9d9;padding-left:10px;border-radius:5px;height:35px;display:flex;align-items:center;width:calc(100% - 10px)}.indexCarList .title .name.data-v-7a722ffe{font-size:32rpx;font-weight:700;margin-top:3px}.indexCarList .title .right.data-v-7a722ffe{width:30%;color:#37cc92;font-size:32rpx;text-align:right;margin-top:5px;margin-right:10px}.indexCarList .item3.data-v-7a722ffe{display:flex;background:#fff;padding:0 10px;height:50px;font-size:32rpx;align-items:center;border-bottom:1px solid #f7f7f7}.indexCarList .item3 .name.data-v-7a722ffe{width:42%}.indexCarList .item3 .weight.data-v-7a722ffe{width:58%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight text.data-v-7a722ffe{color:#666;position:absolute;right:0;bottom:15px;font-size:24rpx}.indexCarList .item3 .weight .input.data-v-7a722ffe{width:70%;display:flex;align-items:center;position:relative;justify-content:space-between}.indexCarList .item3 .weight .input .uni-icons.data-v-7a722ffe{position:absolute;right:10px;bottom:10px}.indexCarList .item3 .weight .input.data-v-7a722ffe input,
|
||||||
.indexCarList .item3 .weight .input.data-v-7a8c8153 picker{width:100%;font-size:32rpx;height:35px;line-height:33px;text-align:center;border:1px solid #dfdfdf;border-radius:5px;background-color:#f7f7f7}.indexCarList .item3 .weight .input.data-v-7a8c8153 picker{position:relative}.indexCarList .item3 .weight .input.data-v-7a8c8153 picker .down{position:absolute;right:10px;top:1px}.indexCarList .item3 .iconfont.data-v-7a8c8153{color:#fea606}.result.data-v-7a8c8153{width:100%}.result .weight view.data-v-7a8c8153{width:30%!important;text-align:center}.gfbtn.data-v-7a8c8153{width:calc(100% - 40px);margin-top:20px;margin-left:20px;color:#fff;padding:8px 0;border-radius:10px;text-align:center;background:#37cc92}.content.data-v-7a8c8153{min-height:100vh;padding-bottom:15px;background-color:#f7f7f7}.uni-stat-tooltip.data-v-7a8c8153{width:80%;height:auto;overflow:scroll;word-break:break-word;position:fixed;margin:auto;background-color:rgba(0,0,0,.8);color:#fff;z-index:999;padding:10px;border-radius:10px;top:33%;left:10%}
|
.indexCarList .item3 .weight .input.data-v-7a722ffe picker{width:100%;font-size:32rpx;height:35px;line-height:33px;text-align:center;border:1px solid #dfdfdf;border-radius:5px;background-color:#f7f7f7}.indexCarList .item3 .weight .input.data-v-7a722ffe picker{position:relative}.indexCarList .item3 .weight .input.data-v-7a722ffe picker .down{position:absolute;right:10px;top:1px}.indexCarList .item3 .iconfont.data-v-7a722ffe{color:#fea606}.result.data-v-7a722ffe{width:100%}.result .weight view.data-v-7a722ffe{width:30%!important;text-align:center}.gfbtn.data-v-7a722ffe{width:calc(100% - 40px);margin-top:20px;margin-left:20px;color:#fff;padding:8px 0;border-radius:10px;text-align:center;background:#37cc92}.content.data-v-7a722ffe{min-height:100vh;padding-bottom:15px;background-color:#f7f7f7}.uni-stat-tooltip.data-v-7a722ffe{width:80%;height:auto;overflow:scroll;word-break:break-word;position:fixed;margin:auto;background-color:rgba(0,0,0,.8);color:#fff;z-index:999;padding:10px;border-radius:10px;top:33%;left:10%}
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"description": "项目配置文件。",
|
"description": "项目配置文件。",
|
||||||
"packOptions": {
|
"packOptions": {
|
||||||
"ignore": []
|
"ignore": [],
|
||||||
|
"include": []
|
||||||
},
|
},
|
||||||
"setting": {
|
"setting": {
|
||||||
"urlCheck": false,
|
"urlCheck": false,
|
||||||
|
|
@ -9,28 +10,21 @@
|
||||||
"postcss": true,
|
"postcss": true,
|
||||||
"minified": true,
|
"minified": true,
|
||||||
"newFeature": true,
|
"newFeature": true,
|
||||||
"bigPackageSizeSupport": true
|
"bigPackageSizeSupport": true,
|
||||||
|
"babelSetting": {
|
||||||
|
"ignore": [],
|
||||||
|
"disablePlugins": [],
|
||||||
|
"outputPath": ""
|
||||||
|
},
|
||||||
|
"condition": false
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
"libVersion": "",
|
"libVersion": "3.6.5",
|
||||||
"appid": "wx9c0b7a436ada6d1e",
|
"appid": "wx9c0b7a436ada6d1e",
|
||||||
"projectname": "Reedaw",
|
"projectname": "Reedaw",
|
||||||
"condition": {
|
"condition": {},
|
||||||
"search": {
|
"editorSetting": {
|
||||||
"current": -1,
|
"tabIndent": "insertSpaces",
|
||||||
"list": []
|
"tabSize": 2
|
||||||
},
|
|
||||||
"conversation": {
|
|
||||||
"current": -1,
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"game": {
|
|
||||||
"current": -1,
|
|
||||||
"list": []
|
|
||||||
},
|
|
||||||
"miniprogram": {
|
|
||||||
"current": -1,
|
|
||||||
"list": []
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
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
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 it is too large
Load Diff
|
|
@ -1 +1 @@
|
||||||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__20604F1","name":"Reedaw","version":{"name":"1.2.7","code":127},"description":"面向儿童青少年的健康体质测量APP","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":"light","background":"#37cc92"},"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":"需要蓝牙权限来连接设备","NSBluetoothPeripheralUsageDescription":"使用蓝牙与外设通信"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false,"version":"2"},"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","fontSize":"14px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"首页"},{"pagePath":"pages/zixun/list","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"资讯"},{"pagePath":"pages/my/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"}
|
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__20604F1","name":"Reedaw","version":{"name":"1.2.8","code":128},"description":"面向儿童青少年的健康体质测量APP","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":"light","background":"#37cc92"},"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":"需要蓝牙权限来连接设备","NSBluetoothPeripheralUsageDescription":"使用蓝牙与外设通信"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false,"version":"2"},"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","fontSize":"14px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","iconPath":"static/shou.png","selectedIconPath":"static/shou2.png","text":"记录"},{"pagePath":"pages/zixun/list","iconPath":"static/ping.png","selectedIconPath":"static/ping2.png","text":"资讯"},{"pagePath":"pages/my/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"}
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
"pagePath": "pages/home/home",
|
"pagePath": "pages/home/home",
|
||||||
"iconPath": "static/shou.png",
|
"iconPath": "static/shou.png",
|
||||||
"selectedIconPath": "static/shou2.png",
|
"selectedIconPath": "static/shou2.png",
|
||||||
"text": "首页"
|
"text": "记录"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"pagePath": "pages/zixun/list",
|
"pagePath": "pages/zixun/list",
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue