ios版本更新
|
|
@ -15,7 +15,7 @@
|
|||
"type" : "uniCloud"
|
||||
},
|
||||
{
|
||||
"playground" : "standard",
|
||||
"playground" : "custom",
|
||||
"type" : "uni-app:app-ios"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
84
App.vue
|
|
@ -29,7 +29,7 @@
|
|||
}
|
||||
that.checkForUpdates()
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index'
|
||||
url: '/pages/home/home'
|
||||
})
|
||||
console.log('App Launch')
|
||||
|
||||
|
|
@ -59,98 +59,88 @@
|
|||
// 版本信息
|
||||
handleoginversion(info) {
|
||||
let that = this
|
||||
let res_version = info.version;
|
||||
let currentVersion = info.version;
|
||||
that.$model.getloginversion({}).then(res => {
|
||||
let downloadUrl = res.data.url
|
||||
let latestVersion = res.data.version
|
||||
console.log("服务器版本号", res)
|
||||
that.$store.commit('changePhoneInfo', {
|
||||
versionUrl: res.data
|
||||
})
|
||||
console.log("服务器版本号", res)
|
||||
// 比对版本号
|
||||
if (latestVersion !== res_version) {
|
||||
if (latestVersion !== currentVersion) {
|
||||
uni.showModal({
|
||||
title: '发现新版本',
|
||||
content: '检查到新版本' + res.data.version + ',是否更新?',
|
||||
success: (modalRes) => {
|
||||
if (modalRes.confirm) {
|
||||
if (platform === 'android') {
|
||||
if (modalRes.confirm) { //确定更新
|
||||
if (platform === 'android') { //安卓更新
|
||||
uni.setStorageSync('VERSION', res.data.version)
|
||||
let showLoading = plus.nativeUI.showWaiting('正在下载')
|
||||
const dtask = uni.downloadFile({
|
||||
url: downloadUrl,
|
||||
url: res.data.url,
|
||||
success: (downloadRes) => {
|
||||
if (downloadRes.statusCode ===
|
||||
200) {
|
||||
plus.nativeUI
|
||||
.closeWaiting()
|
||||
plus.runtime.install(
|
||||
downloadRes
|
||||
if (downloadRes.statusCode === 200) {
|
||||
plus.nativeUI.closeWaiting()
|
||||
plus.runtime.install(downloadRes
|
||||
.tempFilePath, {
|
||||
force: false
|
||||
force: true
|
||||
},
|
||||
function() {
|
||||
plus.runtime.restart();
|
||||
console.log(
|
||||
'install success...'
|
||||
);
|
||||
plus.runtime
|
||||
.restart();
|
||||
},
|
||||
function(e) {
|
||||
console.error(
|
||||
'install fail...'
|
||||
);
|
||||
'install fail...');
|
||||
});
|
||||
}
|
||||
},
|
||||
fail: () => {
|
||||
that.handleCancelUpdate(res.code)
|
||||
uni.showToast({
|
||||
title: '升级失败',
|
||||
title: '更新失败',
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
});
|
||||
dtask.onProgressUpdate((res) => {
|
||||
showLoading.setTitle(" 正在下载" + res
|
||||
.progress + "% ");
|
||||
console.log('下载进度' + res.progress +
|
||||
'%');
|
||||
showLoading.setTitle(" 正在下载" + res.progress +
|
||||
"% ");
|
||||
console.log('下载进度' + res.progress + '%');
|
||||
});
|
||||
} else {
|
||||
uni.showModal({
|
||||
title: '发现新版本 ' + res.data.version,
|
||||
content: '请到App store进行升级',
|
||||
showCancel: false
|
||||
} else { //ios跳转
|
||||
that.handleCancelUpdate(res.code)
|
||||
plus.runtime.launchApplication({
|
||||
action: `itms-apps://itunes.apple.com/cn/app/id6654906497?mt=8`
|
||||
})
|
||||
}
|
||||
} else {
|
||||
console.log("用户放弃更新")
|
||||
if (res.code == 0) {
|
||||
that.handleUserList()
|
||||
} else {
|
||||
setTimeout(() => {
|
||||
uni.reLaunch({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}, 500);
|
||||
}
|
||||
that.handleCancelUpdate(res.code)
|
||||
}
|
||||
}
|
||||
});
|
||||
} else {
|
||||
console.log("版本号相同")
|
||||
if (res.code == 0) {
|
||||
that.handleUserList()
|
||||
} else {
|
||||
setTimeout(() => {
|
||||
uni.reLaunch({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}, 500);
|
||||
}
|
||||
that.handleCancelUpdate(res.code)
|
||||
}
|
||||
})
|
||||
},
|
||||
// 取消更新
|
||||
handleCancelUpdate(code) {
|
||||
let that = this
|
||||
if (code == 0) {
|
||||
that.handleUserList()
|
||||
} else {
|
||||
setTimeout(() => {
|
||||
uni.reLaunch({
|
||||
url: '/pages/login/login'
|
||||
})
|
||||
}, 500);
|
||||
}
|
||||
},
|
||||
// 成员列表
|
||||
handleUserList() {
|
||||
let that = this
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
"name" : "Reedaw",
|
||||
"appid" : "__UNI__E0E1A21",
|
||||
"description" : "面向儿童青少年的健康体质测量APP",
|
||||
"versionName" : "1.1.9",
|
||||
"versionCode" : 119,
|
||||
"versionName" : "1.2.0",
|
||||
"versionCode" : 120,
|
||||
"transformPx" : false,
|
||||
/* 5+App特有相关 */
|
||||
"app-plus" : {
|
||||
|
|
|
|||
|
|
@ -274,14 +274,14 @@
|
|||
"globalStyle": {
|
||||
"navigationBarTextStyle": "white",
|
||||
"navigationBarTitleText": "",
|
||||
"navigationBarBackgroundColor": "#849D6A",
|
||||
"navigationBarBackgroundColor": "#37cc92",
|
||||
"backgroundColor": "#fff"
|
||||
},
|
||||
// 切换导航
|
||||
"tabBar": {
|
||||
"color": "#333",
|
||||
"fontSize": "13px",
|
||||
"selectedColor": "#849D6A",
|
||||
"selectedColor": "#37cc92",
|
||||
"backgroundColor": "#fff",
|
||||
"list": [{
|
||||
"pagePath": "pages/home/home",
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
</uni-collapse-item>
|
||||
</uni-collapse>
|
||||
</view>
|
||||
<view class="tips c999 ml-15">
|
||||
<view class="tips c999 ml-15" v-if="info&&info.literature.length">
|
||||
<text>*数据参考:</text>
|
||||
<text v-for="(item,index) in info.literature" :key="index">
|
||||
{{item}}
|
||||
|
|
@ -114,42 +114,43 @@
|
|||
此测量数据仅供参考,不可代替医学专业测试!
|
||||
</view>
|
||||
<!-- 成长建议 -->
|
||||
<view class="bold mt-10" v-if="info">成长建议</view>
|
||||
<view class="jianyi_box" v-if="info">
|
||||
<view class="jianyi">
|
||||
<view @click="proposalnd=1" :class="{active:proposalnd==1}">
|
||||
<image src="../../static/icon4.png"></image>
|
||||
<text>营养</text>
|
||||
<view v-if="info&&cplist&&(cplist.sleeplist.lengt||cplist.nutritionlist.length)">
|
||||
<view class="bold mt-10" >成长建议</view>
|
||||
<view class="jianyi_box">
|
||||
<view class="jianyi">
|
||||
<view @click="proposalnd=1" :class="{active:proposalnd==1}">
|
||||
<image src="../../static/icon4.png"></image>
|
||||
<text>营养</text>
|
||||
</view>
|
||||
<view @click="proposalnd=2" :class="{active:proposalnd==2}">
|
||||
<image src="../../static/icon1.png"></image>
|
||||
<text>睡眠</text>
|
||||
</view>
|
||||
<view @click="proposalnd=3" :class="{active:proposalnd==3}">
|
||||
<image src="../../static/icon3.png"></image>
|
||||
<text>运动</text>
|
||||
</view>
|
||||
<view @click="proposalnd=4" :class="{active:proposalnd==4}">
|
||||
<image src="../../static/icon2.png"></image>
|
||||
<text>情绪</text>
|
||||
</view>
|
||||
</view>
|
||||
<view @click="proposalnd=2" :class="{active:proposalnd==2}">
|
||||
<image src="../../static/icon1.png"></image>
|
||||
<text>睡眠</text>
|
||||
</view>
|
||||
<view @click="proposalnd=3" :class="{active:proposalnd==3}">
|
||||
<image src="../../static/icon3.png"></image>
|
||||
<text>运动</text>
|
||||
</view>
|
||||
<view @click="proposalnd=4" :class="{active:proposalnd==4}">
|
||||
<image src="../../static/icon2.png"></image>
|
||||
<text>情绪</text>
|
||||
</view>
|
||||
</view>
|
||||
<view>
|
||||
<view v-if="proposalnd==1&&cplist.nutritionlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.nutritionlist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==2&&cplist.sleeplist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.sleeplist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==3&&cplist.sportlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.sportlist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==4&&cplist.moodlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.moodlist" :key="index">{{item}}</text>
|
||||
<view>
|
||||
<view v-if="proposalnd==1&&cplist.nutritionlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.nutritionlist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==2&&cplist.sleeplist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.sleeplist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==3&&cplist.sportlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.sportlist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
<view v-if="proposalnd==4&&cplist.moodlist.length" class="jianyi-con">
|
||||
<text v-for="(item,index) in cplist.moodlist" :key="index">{{item}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 手动记录 -->
|
||||
<record :rtype="acd_id"></record>
|
||||
</view>
|
||||
|
|
@ -159,16 +160,12 @@
|
|||
<!-- 时间选择 -->
|
||||
<view class="boxTime">
|
||||
<view class="one">
|
||||
<!-- <uni-datetime-picker type="date" :end="startDate" :clear-icon="false"
|
||||
:value="startTime?startTime:startDate" @change="handStartTimeH" :border="false" /> -->
|
||||
<picker mode="date" :end="endDate" @change="handStartTimeH" fields="time"
|
||||
:value="startTime?startTime:startDate">
|
||||
<view class="uni-input mr-10">{{startTime?startTime:startDate}}</view>
|
||||
<icon class="iconfont icon-arrow-down-bold"></icon>
|
||||
</picker>
|
||||
<view class="center">~</view>
|
||||
<!-- <uni-datetime-picker type="date" :end="endDate" :clear-icon="false"
|
||||
:value="endTime?endTime:endDate" @change="handEndTimeH" :border="false" /> -->
|
||||
<picker mode="date" :end="endDate" @change="handEndTimeH" fields="time"
|
||||
:value="endTime?endTime:endDate">
|
||||
<view class="uni-input mr-10">{{endTime?endTime:endDate}}</view>
|
||||
|
|
|
|||
|
|
@ -216,14 +216,14 @@
|
|||
margin-bottom: 15px;
|
||||
|
||||
.text {
|
||||
width: 80px;
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
font-size: 32rpx;
|
||||
}
|
||||
|
||||
.input {
|
||||
width: calc(100% - 100px);
|
||||
width: calc(100% - 120px);
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -91,20 +91,13 @@
|
|||
showLoading.setTitle(" 正在下载" + res.progress + "% ");
|
||||
console.log('下载进度' + res.progress + '%');
|
||||
});
|
||||
// that.downloadNewVersion(that.phoneInfo.versionUrl.url);
|
||||
} else {
|
||||
uni.showModal({
|
||||
title: '发现新版本 ' + that.phoneInfo.versionUrl.version,
|
||||
content: '请到App store进行升级',
|
||||
showCancel: false
|
||||
plus.runtime.launchApplication({
|
||||
action: `itms-apps://itunes.apple.com/cn/app/id6654906497?mt=8`
|
||||
})
|
||||
}
|
||||
}
|
||||
},
|
||||
downloadNewVersion(downloadUrl) {
|
||||
let that = this
|
||||
|
||||
},
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@
|
|||
series: [{
|
||||
name: "正确率",
|
||||
color: "#4687F9",
|
||||
data: 0
|
||||
data: 0.8
|
||||
}]
|
||||
},
|
||||
score: 0,
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
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
|
||||
that.chartData.series[0].data = Number(res.data.score) / Number(that.Max_score)
|
||||
})
|
||||
},
|
||||
|
||||
|
|
|
|||
BIN
static/logo2.png
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 48 KiB |
4
uni.scss
|
|
@ -1,4 +1,4 @@
|
|||
/* 主题色 */
|
||||
$maincolor:#849D6A;
|
||||
$maincolor:#37cc92;
|
||||
$btncolor:#fea606;
|
||||
$textcolor: #849D6A;
|
||||
$textcolor: #37cc92;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/home/home","pages/cardList/card","pages/body/body","pages/history/history","pages/history/historyDetail","pages/compk/contrast","pages/compk/pkdetail","pages/skiping/skip","pages/skiping/charts","pages/lunging/vitalcapacity","pages/lunging/charts","pages/my/me","pages/my/manage","pages/my/userInfo","pages/score/score","pages/score/history","pages/score/report","pages/login/forgetPassword","pages/login/login","pages/setting/setting","pages/setting/password","pages/setting/email","pages/setting/phone","pages/devices/search","pages/devices/G02","pages/business/business","pages/devices/PCV02","pages/business/addDevice","pages/business/search","pages/devices/PCT01","pages/my/about","pages/message/list","pages/notepad/notepad","pages/notepad/addNotepad"],"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"","navigationBarBackgroundColor":"#849D6A","backgroundColor":"#fff"},"tabBar":{"color":"#333","fontSize":"13px","selectedColor":"#849D6A","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.png","text":"设备"},{"pagePath":"pages/my/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"Reedaw","compilerVersion":"4.24","entryPagePath":"pages/home/home","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniConfig = {"pages":["pages/home/home","pages/cardList/card","pages/body/body","pages/history/history","pages/history/historyDetail","pages/compk/contrast","pages/compk/pkdetail","pages/skiping/skip","pages/skiping/charts","pages/lunging/vitalcapacity","pages/lunging/charts","pages/my/me","pages/my/manage","pages/my/userInfo","pages/score/score","pages/score/history","pages/score/report","pages/login/forgetPassword","pages/login/login","pages/setting/setting","pages/setting/password","pages/setting/email","pages/setting/phone","pages/devices/search","pages/devices/G02","pages/business/business","pages/devices/PCV02","pages/business/addDevice","pages/business/search","pages/devices/PCT01","pages/my/about","pages/message/list","pages/notepad/notepad","pages/notepad/addNotepad"],"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"","navigationBarBackgroundColor":"#37cc92","backgroundColor":"#fff"},"tabBar":{"color":"#333","fontSize":"13px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.png","text":"设备"},{"pagePath":"pages/my/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"Reedaw","compilerVersion":"4.24","entryPagePath":"pages/home/home","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/home/home","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/cardList/card","meta":{},"window":{"navigationBarTitleText":"卡片设置","enablePullDownRefresh":false}},{"path":"/pages/body/body","meta":{},"window":{"navigationBarTitleText":"身体数据","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/history/history","meta":{},"window":{"navigationBarTitleText":"历史记录","enablePullDownRefresh":false}},{"path":"/pages/history/historyDetail","meta":{},"window":{"navigationBarTitleText":"记录详情","enablePullDownRefresh":false}},{"path":"/pages/compk/contrast","meta":{},"window":{"navigationBarTitleText":"数据对比","enablePullDownRefresh":false}},{"path":"/pages/compk/pkdetail","meta":{},"window":{"navigationBarTitleText":"对比详情","enablePullDownRefresh":false}},{"path":"/pages/skiping/skip","meta":{},"window":{"navigationBarTitleText":"跳绳数据","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/skiping/charts","meta":{},"window":{"navigationBarTitleText":"运动曲线","enablePullDownRefresh":false}},{"path":"/pages/lunging/vitalcapacity","meta":{},"window":{"navigationBarTitleText":"肺活量数据","enablePullDownRefresh":true,"onReachBottomDistance":50,"navigationBarBackgroundColor":"#000000","backgroundColor":"#000000"}},{"path":"/pages/lunging/charts","meta":{},"window":{"navigationBarTitleText":"运动曲线","enablePullDownRefresh":false}},{"path":"/pages/my/me","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/my/manage","meta":{},"window":{"navigationBarTitleText":"成员管理","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/my/userInfo","meta":{},"window":{"navigationBarTitleText":"资料"}},{"path":"/pages/score/score","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"分数评估","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/score/history","meta":{},"window":{"navigationBarTitleText":"估分历史","enablePullDownRefresh":false}},{"path":"/pages/score/report","meta":{},"window":{"navigationBarTitleText":"估分报告","enablePullDownRefresh":false}},{"path":"/pages/login/forgetPassword","meta":{},"window":{"navigationBarTitleText":"密码","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/setting/setting","meta":{},"window":{"navigationBarTitleText":"设置","enablePullDownRefresh":false}},{"path":"/pages/setting/password","meta":{},"window":{"navigationBarTitleText":"修改密码","enablePullDownRefresh":false}},{"path":"/pages/setting/email","meta":{},"window":{"navigationBarTitleText":"绑定邮箱","enablePullDownRefresh":false}},{"path":"/pages/setting/phone","meta":{},"window":{"navigationBarTitleText":"绑定手机号","enablePullDownRefresh":false}},{"path":"/pages/devices/search","meta":{},"window":{"navigationBarTitleText":"蓝牙搜索","enablePullDownRefresh":false}},{"path":"/pages/devices/G02","meta":{},"window":{"navigationBarTitleText":"测量","enablePullDownRefresh":false}},{"path":"/pages/business/business","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"设备管理","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/devices/PCV02","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/business/addDevice","meta":{},"window":{"navigationBarTitleText":"设备列表","enablePullDownRefresh":false}},{"path":"/pages/business/search","meta":{},"window":{"navigationBarTitleText":"搜索设备","enablePullDownRefresh":false}},{"path":"/pages/devices/PCT01","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/my/about","meta":{},"window":{"navigationBarTitleText":"关于我们","enablePullDownRefresh":false}},{"path":"/pages/message/list","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/notepad/notepad","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/notepad/addNotepad","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}}];
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__E0E1A21","name":"Reedaw","version":{"name":"1.1.9","code":119},"description":"面向儿童青少年的健康体质测量APP","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UIWebview":{},"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":"#849D6A"},"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":"使用蓝牙与外设通信","NSLocationWhenInUseUsageDescription":"用于搜索蓝牙"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"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","fontSize":"13px","selectedColor":"#849D6A","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.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__E0E1A21","name":"Reedaw","version":{"name":"1.2.0","code":120},"description":"面向儿童青少年的健康体质测量APP","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UIWebview":{},"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":"使用蓝牙与外设通信","NSLocationWhenInUseUsageDescription":"用于搜索蓝牙"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"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","fontSize":"13px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.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"}
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 48 KiB |
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/home/home","pages/cardList/card","pages/body/body","pages/history/history","pages/history/historyDetail","pages/compk/contrast","pages/compk/pkdetail","pages/skiping/skip","pages/skiping/charts","pages/lunging/vitalcapacity","pages/lunging/charts","pages/my/me","pages/my/manage","pages/my/userInfo","pages/score/score","pages/score/history","pages/score/report","pages/login/forgetPassword","pages/login/login","pages/setting/setting","pages/setting/password","pages/setting/email","pages/setting/phone","pages/devices/search","pages/devices/G02","pages/business/business","pages/devices/PCV02","pages/business/addDevice","pages/business/search","pages/devices/PCT01","pages/my/about","pages/message/list","pages/notepad/notepad","pages/notepad/addNotepad"],"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"","navigationBarBackgroundColor":"#849D6A","backgroundColor":"#fff"},"tabBar":{"color":"#333","fontSize":"13px","selectedColor":"#849D6A","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.png","text":"设备"},{"pagePath":"pages/my/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"Reedaw","compilerVersion":"4.24","entryPagePath":"pages/home/home","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniConfig = {"pages":["pages/home/home","pages/cardList/card","pages/body/body","pages/history/history","pages/history/historyDetail","pages/compk/contrast","pages/compk/pkdetail","pages/skiping/skip","pages/skiping/charts","pages/lunging/vitalcapacity","pages/lunging/charts","pages/my/me","pages/my/manage","pages/my/userInfo","pages/score/score","pages/score/history","pages/score/report","pages/login/forgetPassword","pages/login/login","pages/setting/setting","pages/setting/password","pages/setting/email","pages/setting/phone","pages/devices/search","pages/devices/G02","pages/business/business","pages/devices/PCV02","pages/business/addDevice","pages/business/search","pages/devices/PCT01","pages/my/about","pages/message/list","pages/notepad/notepad","pages/notepad/addNotepad"],"window":{"navigationBarTextStyle":"white","navigationBarTitleText":"","navigationBarBackgroundColor":"#37cc92","backgroundColor":"#fff"},"tabBar":{"color":"#333","fontSize":"13px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.png","text":"设备"},{"pagePath":"pages/my/me","iconPath":"static/wo.png","selectedIconPath":"static/wo2.png","text":"我的"}]},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"Reedaw","compilerVersion":"4.24","entryPagePath":"pages/home/home","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/home/home","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/cardList/card","meta":{},"window":{"navigationBarTitleText":"卡片设置","enablePullDownRefresh":false}},{"path":"/pages/body/body","meta":{},"window":{"navigationBarTitleText":"身体数据","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/history/history","meta":{},"window":{"navigationBarTitleText":"历史记录","enablePullDownRefresh":false}},{"path":"/pages/history/historyDetail","meta":{},"window":{"navigationBarTitleText":"记录详情","enablePullDownRefresh":false}},{"path":"/pages/compk/contrast","meta":{},"window":{"navigationBarTitleText":"数据对比","enablePullDownRefresh":false}},{"path":"/pages/compk/pkdetail","meta":{},"window":{"navigationBarTitleText":"对比详情","enablePullDownRefresh":false}},{"path":"/pages/skiping/skip","meta":{},"window":{"navigationBarTitleText":"跳绳数据","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/skiping/charts","meta":{},"window":{"navigationBarTitleText":"运动曲线","enablePullDownRefresh":false}},{"path":"/pages/lunging/vitalcapacity","meta":{},"window":{"navigationBarTitleText":"肺活量数据","enablePullDownRefresh":true,"onReachBottomDistance":50,"navigationBarBackgroundColor":"#000000","backgroundColor":"#000000"}},{"path":"/pages/lunging/charts","meta":{},"window":{"navigationBarTitleText":"运动曲线","enablePullDownRefresh":false}},{"path":"/pages/my/me","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/my/manage","meta":{},"window":{"navigationBarTitleText":"成员管理","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/my/userInfo","meta":{},"window":{"navigationBarTitleText":"资料"}},{"path":"/pages/score/score","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"分数评估","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/score/history","meta":{},"window":{"navigationBarTitleText":"估分历史","enablePullDownRefresh":false}},{"path":"/pages/score/report","meta":{},"window":{"navigationBarTitleText":"估分报告","enablePullDownRefresh":false}},{"path":"/pages/login/forgetPassword","meta":{},"window":{"navigationBarTitleText":"密码","enablePullDownRefresh":false}},{"path":"/pages/login/login","meta":{},"window":{"navigationBarTitleText":"登录","enablePullDownRefresh":false,"navigationStyle":"custom"}},{"path":"/pages/setting/setting","meta":{},"window":{"navigationBarTitleText":"设置","enablePullDownRefresh":false}},{"path":"/pages/setting/password","meta":{},"window":{"navigationBarTitleText":"修改密码","enablePullDownRefresh":false}},{"path":"/pages/setting/email","meta":{},"window":{"navigationBarTitleText":"绑定邮箱","enablePullDownRefresh":false}},{"path":"/pages/setting/phone","meta":{},"window":{"navigationBarTitleText":"绑定手机号","enablePullDownRefresh":false}},{"path":"/pages/devices/search","meta":{},"window":{"navigationBarTitleText":"蓝牙搜索","enablePullDownRefresh":false}},{"path":"/pages/devices/G02","meta":{},"window":{"navigationBarTitleText":"测量","enablePullDownRefresh":false}},{"path":"/pages/business/business","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"设备管理","enablePullDownRefresh":true,"onReachBottomDistance":50}},{"path":"/pages/devices/PCV02","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/business/addDevice","meta":{},"window":{"navigationBarTitleText":"设备列表","enablePullDownRefresh":false}},{"path":"/pages/business/search","meta":{},"window":{"navigationBarTitleText":"搜索设备","enablePullDownRefresh":false}},{"path":"/pages/devices/PCT01","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/my/about","meta":{},"window":{"navigationBarTitleText":"关于我们","enablePullDownRefresh":false}},{"path":"/pages/message/list","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/notepad/notepad","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}},{"path":"/pages/notepad/addNotepad","meta":{},"window":{"navigationBarTitleText":"","enablePullDownRefresh":false}}];
|
||||
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__E0E1A21","name":"Reedaw","version":{"name":"1.1.9","code":119},"description":"面向儿童青少年的健康体质测量APP","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UIWebview":{},"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":"#849D6A"},"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":"使用蓝牙与外设通信","NSLocationWhenInUseUsageDescription":"用于搜索蓝牙"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"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","fontSize":"13px","selectedColor":"#849D6A","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.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__E0E1A21","name":"Reedaw","version":{"name":"1.2.0","code":120},"description":"面向儿童青少年的健康体质测量APP","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UIWebview":{},"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":"使用蓝牙与外设通信","NSLocationWhenInUseUsageDescription":"用于搜索蓝牙"}},"plugins":{"share":{},"ad":{},"geolocation":{"system":{"__platform__":["ios"]}},"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","fontSize":"13px","selectedColor":"#37cc92","backgroundColor":"#fff","list":[{"pagePath":"pages/home/home","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/bei.png","selectedIconPath":"static/bei2.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"}
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 48 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 3.5 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 568 B After Width: | Height: | Size: 572 B |
|
Before Width: | Height: | Size: 732 B After Width: | Height: | Size: 756 B |
|
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 1004 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.1 KiB |