fix: 新增体温数据
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name" : "中鼎云医",
|
||||
"appid" : "__UNI__24DA8DD",
|
||||
"description" : "",
|
||||
"description" : "中鼎云医",
|
||||
"versionName" : "1.0.0",
|
||||
"versionCode" : "100",
|
||||
"transformPx" : false,
|
||||
|
|
@ -41,9 +41,45 @@
|
|||
]
|
||||
},
|
||||
/* ios打包配置 */
|
||||
"ios" : {},
|
||||
"ios" : {
|
||||
"dSYMs" : false
|
||||
},
|
||||
/* SDK配置 */
|
||||
"sdkConfigs" : {}
|
||||
"sdkConfigs" : {
|
||||
"ad" : {}
|
||||
},
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
/* 快应用特有相关 */
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
// },
|
||||
"globalStyle": {
|
||||
"navigationBarTextStyle": "black",
|
||||
"navigationBarTitleText": "登陆模板",
|
||||
"navigationBarTitleText": "中鼎云医",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8",
|
||||
"navigationStyle": "custom"
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@
|
|||
updataDate: '更新时间',
|
||||
step: '步数'
|
||||
},
|
||||
time: '',
|
||||
time: new Date().toISOString().substring(0, 10),
|
||||
flag: false,
|
||||
successList: ['1676995200000'],
|
||||
errorList: ['1676908800000'],
|
||||
|
|
|
|||
|
|
@ -19,26 +19,26 @@
|
|||
<view class="item">
|
||||
<view class="title">卡路里</view>
|
||||
<view class="row-date">
|
||||
{{dataLists.step? dataLists.step.calorie/10 : '--'}}
|
||||
{{dataLists.step && Number.isFinite(Number(dataLists.step.calorie)) ? dataLists.step.calorie/10 : '--'}}
|
||||
<text>千卡</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="title">步数</view>
|
||||
<view class="row-date">
|
||||
{{dataLists.step? dataLists.step.step : '--'}}
|
||||
{{dataLists.step && Number.isFinite(Number(dataLists.step.step)) ? dataLists.step.step : '--'}}
|
||||
<text>步</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
<view class="title">距离</view>
|
||||
<view class="row-date">
|
||||
{{dataLists.step? dataLists.step.distance/100 : '--'}}
|
||||
{{dataLists.step && Number.isFinite(Number(dataLists.step.distance)) ? dataLists.step.distance/100 : '--'}}
|
||||
<text>公里</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="row-time">
|
||||
<view class="row-time" v-if="dataLists.step.length">
|
||||
{{formatDateTime(dataLists.updataDate)}}
|
||||
</view>
|
||||
<view class="bg">
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
<text class="icon">毫摩尔/升</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/血糖.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/xuetang.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=bloodOxygen')">
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<text class="icon">%</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/血氧.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/xueyang.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=bloodPressure')">
|
||||
|
|
@ -87,9 +87,26 @@
|
|||
<text class="icon">mmHG</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/血压.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/xueya.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=temperature')">
|
||||
<view class="title">
|
||||
{{getNameByKey('temperature')}}
|
||||
</view>
|
||||
<view class="time">
|
||||
{{dataLists.temperature? dataLists.temperature.time + '更新' : '--'}}
|
||||
</view>
|
||||
<view class="date">
|
||||
{{dataLists.temperature? dataLists.temperature.bodySurfaceTemperature : '--'}}
|
||||
<text class="icon">℃</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/wendu.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=heartReat')">
|
||||
<view class="title">
|
||||
{{getNameByKey('heartReat')}}
|
||||
|
|
@ -102,7 +119,7 @@
|
|||
<text class="icon">次/分</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/脉率.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/mailv.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=meiTuo')">
|
||||
|
|
@ -117,7 +134,7 @@
|
|||
<text class="icon">MET</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/心率.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/xinlv.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="content-item" @click="toPage('/pages/index/detail?type=bloodLiquid&desc=uricAcidVal')">
|
||||
|
|
@ -132,7 +149,7 @@
|
|||
<text class="icon">微摩尔/升</text>
|
||||
</view>
|
||||
<view class="bg">
|
||||
<image src="../../static/icon/体温计.png" mode="widthFix"></image>
|
||||
<image src="../../static/icon/wendu.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
|
@ -203,7 +220,8 @@
|
|||
bloodLiquid: "血液",
|
||||
meiTuo: '梅拖',
|
||||
pulseReat: '脉率',
|
||||
updataDate: '更新时间'
|
||||
updataDate: '更新时间',
|
||||
temperature: '体温'
|
||||
},
|
||||
dataLists: {}
|
||||
}
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
|
@ -0,0 +1 @@
|
|||
https://app.liuyingyong.cn/build/download/18e530f0-3e66-11ef-b25d-79dff3fe6d8f
|
||||
|
|
@ -0,0 +1 @@
|
|||
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
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
andrCertfile=/Applications/HBuilderX.app/Contents/HBuilderX/plugins/app-safe-pack/Test.keystore
|
||||
andrCertAlias=android
|
||||
andrCertPass=ep/Tdjka4Y7WYqDB6/S7dw==
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/login/login","pages/index/detail","pages/login/forget","pages/login/register","pages/index/index","pages/device/device","pages/my/my"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"中鼎云医","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8","navigationStyle":"custom"},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"中鼎云医","compilerVersion":"4.15","entryPagePath":"pages/login/login","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/login/login","meta":{"isQuit":true},"window":{}},{"path":"/pages/index/detail","meta":{},"window":{}},{"path":"/pages/login/forget","meta":{},"window":{}},{"path":"/pages/login/register","meta":{},"window":{}},{"path":"/pages/index/index","meta":{},"window":{}},{"path":"/pages/device/device","meta":{},"window":{}},{"path":"/pages/my/my","meta":{},"window":{}}];
|
||||
__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()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
||||
|
|
@ -0,0 +1 @@
|
|||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__24DA8DD","name":"中鼎云医","version":{"name":"1.0.0","code":"100"},"description":"中鼎云医","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"autoclose":true,"delay":0,"target":"id:1","waiting":true},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"icons":{"android":{"hdpi":"icon-android-hdpi.png","xhdpi":"icon-android-xhdpi.png","xxhdpi":"icon-android-xxhdpi.png","xxxhdpi":"icon-android-xxxhdpi.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"},"prerendered":"false"}},"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\"/>"],"packagename":"uni.UNI24DA8DD","aliasname":"","password":"","keystore":"html5plus://test","custompermissions":true},"apple":{"dSYMs":false,"devices":"universal"},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}},"orientation":"portrait-primary"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"4.15","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html","adid":"123262070412"}}
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/liu-step-bar/static/checkedImg.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/liu-step-bar/static/unCheckedImg.png
vendored
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/punch-calendar/static/images/cakebdar-open.png
vendored
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/punch-calendar/static/images/calendar-next-active.png
vendored
Normal file
|
After Width: | Height: | Size: 262 B |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/punch-calendar/static/images/calendar-next.png
vendored
Normal file
|
After Width: | Height: | Size: 166 B |
BIN
unpackage/cache/wgt/__UNI__24DA8DD/uni_modules/punch-calendar/static/images/calendar-prev.png
vendored
Normal file
|
After Width: | Height: | Size: 168 B |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script>
|
||||
var __UniViewStartTime__ = Date.now();
|
||||
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||||
CSS.supports('top: constant(a)'))
|
||||
document.write(
|
||||
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||||
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||||
</script>
|
||||
<title>View</title>
|
||||
<link rel="stylesheet" href="view.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="__uniappes6.js"></script>
|
||||
<script src="view.umd.min.js"></script>
|
||||
<script src="app-view.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
var isReady=false;var onReadyCallbacks=[];
|
||||
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||
var __uniConfig = {"pages":["pages/login/login","pages/index/detail","pages/login/forget","pages/login/register","pages/index/index","pages/device/device","pages/my/my"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"中鼎云医","navigationBarBackgroundColor":"#F8F8F8","backgroundColor":"#F8F8F8","navigationStyle":"custom"},"darkmode":false,"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"中鼎云医","compilerVersion":"4.15","entryPagePath":"pages/login/login","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||
var __uniRoutes = [{"path":"/pages/login/login","meta":{"isQuit":true},"window":{}},{"path":"/pages/index/detail","meta":{},"window":{}},{"path":"/pages/login/forget","meta":{},"window":{}},{"path":"/pages/login/register","meta":{},"window":{}},{"path":"/pages/index/index","meta":{},"window":{}},{"path":"/pages/device/device","meta":{},"window":{}},{"path":"/pages/my/my","meta":{},"window":{}}];
|
||||
__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()})}});
|
||||
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
|
||||
|
|
@ -0,0 +1 @@
|
|||
(function(e){function r(r){for(var n,l,i=r[0],p=r[1],a=r[2],c=0,s=[];c<i.length;c++)l=i[c],Object.prototype.hasOwnProperty.call(o,l)&&o[l]&&s.push(o[l][0]),o[l]=0;for(n in p)Object.prototype.hasOwnProperty.call(p,n)&&(e[n]=p[n]);f&&f(r);while(s.length)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,i=1;i<t.length;i++){var p=t[i];0!==o[p]&&(n=!1)}n&&(u.splice(r--,1),e=l(l.s=t[0]))}return e}var n={},o={"app-config":0},u=[];function l(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,l),t.l=!0,t.exports}l.m=e,l.c=n,l.d=function(e,r,t){l.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},l.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},l.t=function(e,r){if(1&r&&(e=l(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(l.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)l.d(t,n,function(r){return e[r]}.bind(null,n));return t},l.n=function(e){var r=e&&e.__esModule?function(){return e["default"]}:function(){return e};return l.d(r,"a",r),r},l.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},l.p="/";var i=this["webpackJsonp"]=this["webpackJsonp"]||[],p=i.push.bind(i);i.push=r,i=i.slice();for(var a=0;a<i.length;a++)r(i[a]);var f=p;t()})([]);
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__24DA8DD","name":"中鼎云医","version":{"name":"1.0.0","code":"100"},"description":"中鼎云医","launch_path":"__uniappview.html","developer":{"name":"","email":"","url":""},"permissions":{"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"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"}}},"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\"/>"]},"apple":{"dSYMs":false},"plugins":{"ad":{},"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"compilerVersion":"4.15","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"launch_path":"__uniappview.html"}}
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 3.9 KiB |
BIN
unpackage/dist/build/app-plus/uni_modules/liu-step-bar/static/checkedImg.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/dist/build/app-plus/uni_modules/liu-step-bar/static/unCheckedImg.png
vendored
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
unpackage/dist/build/app-plus/uni_modules/punch-calendar/static/images/cakebdar-open.png
vendored
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
unpackage/dist/build/app-plus/uni_modules/punch-calendar/static/images/calendar-next-active.png
vendored
Normal file
|
After Width: | Height: | Size: 262 B |
BIN
unpackage/dist/build/app-plus/uni_modules/punch-calendar/static/images/calendar-next.png
vendored
Normal file
|
After Width: | Height: | Size: 166 B |
BIN
unpackage/dist/build/app-plus/uni_modules/punch-calendar/static/images/calendar-prev.png
vendored
Normal file
|
After Width: | Height: | Size: 168 B |