Merge branch 'master' of https://git.yuzhankeji.cn/UzTech/water_uni
16
.hbuilderx/launch.json
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||||
|
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||||
|
"version": "0.0",
|
||||||
|
"configurations": [{
|
||||||
|
"app-plus" :
|
||||||
|
{
|
||||||
|
"launchtype" : "local"
|
||||||
|
},
|
||||||
|
"default" :
|
||||||
|
{
|
||||||
|
"launchtype" : "local"
|
||||||
|
},
|
||||||
|
"type" : "uniCloud"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ import store from '@/store'
|
|||||||
|
|
||||||
// 基础配置
|
// 基础配置
|
||||||
const config = {
|
const config = {
|
||||||
apiUrl : 'http://api.gout.shangkelian.cn/api/', // 正式环境
|
apiUrl : 'http://api.water.shangkelian.cn/api/', // 正式环境
|
||||||
timeout : 60000
|
timeout : 60000
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -35,32 +35,71 @@
|
|||||||
</view>
|
</view>
|
||||||
<block v-if="!editState">
|
<block v-if="!editState">
|
||||||
<view class="issue-title">
|
<view class="issue-title">
|
||||||
病例档案
|
健康档案
|
||||||
</view>
|
</view>
|
||||||
<view class="case-block">
|
<view class="case-block">
|
||||||
<view class="case-inputs">
|
<view class="case-inputs">
|
||||||
<label class="case-input-label">症状说明</label>
|
<label class="case-input-label">健康说明</label>
|
||||||
<textarea :value="seeData.remark" placeholder="输入症状说明" name="remark" type="text" :disabled="editState" />
|
<textarea :value="seeData.remark" placeholder="请描述您当前的三高情况" name="remark" type="text" :disabled="editState" />
|
||||||
</view>
|
</view>
|
||||||
<view class="case-inputs">
|
<view class="case-inputs">
|
||||||
<label class="case-input-label">
|
<label class="case-input-label">
|
||||||
当前尿酸值
|
当前高血脂
|
||||||
<text>({{sexName == 'man' ? '男性' : '女性'}}尿酸正常指标 {{ countMin }} ~ {{ countMax }})</text>
|
<text>({{sexName == 'man' ? '男性' : '女性'}}高血脂正常指标 {{ hyperlipemiaMin }} ~ {{ hyperlipemiaMax }})</text>
|
||||||
</label>
|
</label>
|
||||||
<input class="case-inputs-input" placeholder="输入当前尿酸值" @input="numberInput" :value="countNumber" type="idcard" :disabled="editState"></input>
|
<input class="case-inputs-input" placeholder="输入您当前高血脂值" @input="hyperlipemiaInput" :value="hyperlipemiaNumber" type="idcard" :disabled="editState"></input>
|
||||||
<text class="case-inputs-tips active" v-if="countNumber > countMax">偏高</text>
|
<text class="case-inputs-tips active" v-if="hyperlipemiaNumber > hyperlipemiaMax">偏高</text>
|
||||||
<text class="case-inputs-tips" v-if="countNumber < countMin && countNumber != ''">偏低</text>
|
<text class="case-inputs-tips" v-if="hyperlipemiaNumber < hyperlipemiaMin && hyperlipemiaNumber != ''">偏低</text>
|
||||||
|
</view>
|
||||||
|
<view class="case-inputs">
|
||||||
|
<label class="case-input-label">
|
||||||
|
当前高血压
|
||||||
|
<text>({{sexName == 'man' ? '男性' : '女性'}}高血压正常指标 {{ hypertensionMin }} ~ {{ hypertensionMax }})</text>
|
||||||
|
</label>
|
||||||
|
<input class="case-inputs-input" placeholder="输入您当前高血压值" @input="hypertensionInput" :value="hypertensionNumber" type="idcard" :disabled="editState"></input>
|
||||||
|
<text class="case-inputs-tips active" v-if="hypertensionNumber > hypertensionMax">偏高</text>
|
||||||
|
<text class="case-inputs-tips" v-if="hypertensionNumber < hypertensionMin && hypertensionNumber != ''">偏低</text>
|
||||||
|
</view>
|
||||||
|
<view class="case-inputs">
|
||||||
|
<label class="case-input-label">
|
||||||
|
当前高血糖
|
||||||
|
<text>({{sexName == 'man' ? '男性' : '女性'}}高血糖正常指标 {{ hyperglycemiaMin }} ~ {{ hyperglycemiaMax }})</text>
|
||||||
|
</label>
|
||||||
|
<input class="case-inputs-input" placeholder="输入您当前高血糖值" @input="hyperglycemiaInput" :value="hyperglycemiaNumber" type="idcard" :disabled="editState"></input>
|
||||||
|
<text class="case-inputs-tips active" v-if="hyperglycemiaNumber > hyperglycemiaMax">偏高</text>
|
||||||
|
<text class="case-inputs-tips" v-if="hyperglycemiaNumber < hyperglycemiaMin && hyperglycemiaNumber != ''">偏低</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="issue-block">
|
<view class="issue-block">
|
||||||
<label class="issueNew-title">诊断证明</label>
|
<label class="issueNew-title">上传诊断证明</label>
|
||||||
|
<!-- hyperlipemia;hypertension;hyperglycemia -->
|
||||||
|
<view class="flexrow">
|
||||||
<view class="issueNew-photo">
|
<view class="issueNew-photo">
|
||||||
<view class="issueNew-content" v-if="editState">
|
<view class="issueNew-content" v-if="editState">
|
||||||
<image class="issueNew-icon" @click="openImg(seeData.cover)" :src="seeData.cover" mode="aspectFill"></image>
|
<image class="issueNew-icon" @click="openImg(seeData.cover)" :src="seeData.cover" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="issueNew-content" @click="updImg('license')" v-else>
|
<view class="issueNew-content" @click="updImg('hyperlipemia')" v-else>
|
||||||
<image class="issueNew-icon" :src="license.showpath || '/static/imgs/cover_img.png'" mode="aspectFill"></image>
|
<image class="issueNew-icon" :src="hyperlipemia.showpath || '/static/imgs/cover_img.png'" mode="aspectFill"></image>
|
||||||
<view class="issueNew-text">请上传诊断证明</view>
|
<view class="issueNew-text">高血脂诊断证明</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="issueNew-photo">
|
||||||
|
<view class="issueNew-content" v-if="editState">
|
||||||
|
<image class="issueNew-icon" @click="openImg(seeData.cover)" :src="seeData.cover" mode="aspectFill"></image>
|
||||||
|
</view>
|
||||||
|
<view class="issueNew-content" @click="updImg('hypertension')" v-else>
|
||||||
|
<image class="issueNew-icon" :src="hypertension.showpath || '/static/imgs/cover_img.png'" mode="aspectFill"></image>
|
||||||
|
<view class="issueNew-text">高血压诊断证明</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="issueNew-photo">
|
||||||
|
<view class="issueNew-content" v-if="editState">
|
||||||
|
<image class="issueNew-icon" @click="openImg(seeData.cover)" :src="seeData.cover" mode="aspectFill"></image>
|
||||||
|
</view>
|
||||||
|
<view class="issueNew-content" @click="updImg('hyperglycemia')" v-else>
|
||||||
|
<image class="issueNew-icon" :src="hyperglycemia.showpath || '/static/imgs/cover_img.png'" mode="aspectFill"></image>
|
||||||
|
<view class="issueNew-text">高血糖诊断证明</view>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -83,9 +122,15 @@
|
|||||||
editState: false, //是否可以编辑表单
|
editState: false, //是否可以编辑表单
|
||||||
numberVal: '',
|
numberVal: '',
|
||||||
count : '',
|
count : '',
|
||||||
countMax : '',
|
hyperlipemiaMax : '',
|
||||||
countMin : '',
|
hyperlipemiaMin : '',
|
||||||
countNumber:'',
|
hyperlipemiaNumber:'',
|
||||||
|
hypertensionMax : '',
|
||||||
|
hypertensionMin : '',
|
||||||
|
hypertensionNumber:'',
|
||||||
|
hyperglycemiaMax : '',
|
||||||
|
hyperglycemiaMin : '',
|
||||||
|
hyperglycemiaNumber:'',
|
||||||
seeData : {
|
seeData : {
|
||||||
name : '',
|
name : '',
|
||||||
id_card : '',
|
id_card : '',
|
||||||
@@ -97,7 +142,15 @@
|
|||||||
}, //查看我的病例内容
|
}, //查看我的病例内容
|
||||||
sexIndex : 0,
|
sexIndex : 0,
|
||||||
sexName : 'man',
|
sexName : 'man',
|
||||||
license : {
|
hyperlipemia : {
|
||||||
|
showpath: '',
|
||||||
|
path : ''
|
||||||
|
},
|
||||||
|
hypertension:{
|
||||||
|
showpath: '',
|
||||||
|
path : ''
|
||||||
|
},
|
||||||
|
hyperglycemia:{
|
||||||
showpath: '',
|
showpath: '',
|
||||||
path : ''
|
path : ''
|
||||||
},
|
},
|
||||||
@@ -111,11 +164,15 @@
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
// 病例前置信息
|
// 健康前置信息
|
||||||
goutCreate().then(res => {
|
goutCreate().then(res => {
|
||||||
this.count = res.count
|
this.count = res.count
|
||||||
this.countMax = parseInt(res.count.man.max)
|
this.hyperlipemiaMax = Number(res.count.man.hyperlipidemia.max)
|
||||||
this.countMin = parseInt(res.count.man.min)
|
this.hyperlipemiaMin = Number(res.count.man.hyperlipidemia.min)
|
||||||
|
this.hypertensionMax = Number(res.count.man.hypertension.max)
|
||||||
|
this.hypertensionMin = Number(res.count.man.hypertension.min)
|
||||||
|
this.hyperglycemiaMax = Number(res.count.man.hyperglycemia.max)
|
||||||
|
this.hyperglycemiaMin = Number(res.count.man.hyperglycemia.min)
|
||||||
this.seeData.username = res.user.username
|
this.seeData.username = res.user.username
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
@@ -123,8 +180,7 @@
|
|||||||
icon : 'none'
|
icon : 'none'
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
if(this.$Route.query.hasCase === 'true') {
|
||||||
if(this.$Route.query.hasCase == true) {
|
|
||||||
this.editState = true
|
this.editState = true
|
||||||
// 获取查看病例
|
// 获取查看病例
|
||||||
this.goutSeeInfo();
|
this.goutSeeInfo();
|
||||||
@@ -155,8 +211,19 @@
|
|||||||
this.sexIndex = parseInt(e.detail.value)
|
this.sexIndex = parseInt(e.detail.value)
|
||||||
this.sexName = this.sexArray[e.detail.value].val
|
this.sexName = this.sexArray[e.detail.value].val
|
||||||
if(this.sexArray[e.detail.value].val == 'woman') {
|
if(this.sexArray[e.detail.value].val == 'woman') {
|
||||||
this.countMax = parseInt(this.count.woman.max)
|
this.hyperlipemiaMax = parseInt(this.count.woman.hyperlipidemia.max)
|
||||||
this.countMin = parseInt(this.count.woman.min)
|
this.hyperlipemiaMin = parseInt(this.count.woman.hyperlipidemia.min)
|
||||||
|
this.hypertensionMax = parseInt(this.count.woman.hypertension.max)
|
||||||
|
this.hypertensionMin = parseInt(this.count.woman.hypertension.min)
|
||||||
|
this.hyperglycemiaMax = parseInt(this.count.woman.hyperglycemia.max)
|
||||||
|
this.hyperglycemiaMin = parseInt(this.count.woman.hyperglycemia.min)
|
||||||
|
}else {
|
||||||
|
this.hyperlipemiaMax = parseInt(this.count.man.hyperlipidemia.max)
|
||||||
|
this.hyperlipemiaMin = parseInt(this.count.man.hyperlipidemia.min)
|
||||||
|
this.hypertensionMax = parseInt(this.count.man.hypertension.max)
|
||||||
|
this.hypertensionMin = parseInt(this.count.man.hypertension.min)
|
||||||
|
this.hyperglycemiaMax = parseInt(this.count.man.hyperglycemia.max)
|
||||||
|
this.hyperglycemiaMin = parseInt(this.count.man.hyperglycemia.min)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -182,25 +249,39 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
// 尿酸值
|
// 高血脂
|
||||||
numberInput(e) {
|
hyperlipemiaInput(e) {
|
||||||
this.countNumber = e.detail.value
|
this.hyperlipemiaNumber = e.detail.value
|
||||||
|
},
|
||||||
|
// 高血压
|
||||||
|
hypertensionInput(e) {
|
||||||
|
this.hypertensionNumber = e.detail.value
|
||||||
|
},
|
||||||
|
// 高血糖
|
||||||
|
hyperglycemiaInput(e) {
|
||||||
|
this.hyperglycemiaNumber = e.detail.value
|
||||||
},
|
},
|
||||||
|
|
||||||
// 提交表单
|
|
||||||
|
|
||||||
|
// 提交表单 hyperlipemia;hypertension;hyperglycemia
|
||||||
issueForm(e) {
|
issueForm(e) {
|
||||||
let value = e.detail.value,
|
let value = e.detail.value;
|
||||||
newCover = this.license.path,
|
|
||||||
newSex = this.sexArray[this.sexIndex].val
|
let data = {
|
||||||
goutAdd({
|
|
||||||
name : value.name,
|
name : value.name,
|
||||||
age : value.age,
|
age : value.age,
|
||||||
mobileNo: value.mobileNo,
|
mobileNo: value.mobileNo,
|
||||||
number : this.countNumber,
|
|
||||||
remark : value.remark,
|
remark : value.remark,
|
||||||
cover : newCover,
|
sex : this.sexArray[this.sexIndex].val,
|
||||||
sex : newSex
|
hyperlipidemia : this.hyperlipemiaNumber,
|
||||||
}).then(res => {
|
hypertension : this.hypertensionNumber,
|
||||||
|
hyperglycemia : this.hyperglycemiaNumber,
|
||||||
|
hyperlipidemia_cover : this.hyperlipemia.path,
|
||||||
|
hypertension_cover : this.hypertension.path,
|
||||||
|
hyperglycemia_cover : this.hyperglycemia.path,
|
||||||
|
}
|
||||||
|
goutAdd(data).then(res => {
|
||||||
this.disabled = true
|
this.disabled = true
|
||||||
this.$Router.replace({name: "User"})
|
this.$Router.replace({name: "User"})
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
@@ -311,8 +392,8 @@
|
|||||||
.issueNew-content{
|
.issueNew-content{
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 25rpx;
|
right: 15rpx;
|
||||||
left: 25rpx;
|
left: 15rpx;
|
||||||
bottom: 10rpx;
|
bottom: 10rpx;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
@@ -320,8 +401,8 @@
|
|||||||
border:1rpx solid #f5f5f5;
|
border:1rpx solid #f5f5f5;
|
||||||
border-radius: 6rpx;
|
border-radius: 6rpx;
|
||||||
.issueNew-icon{
|
.issueNew-icon{
|
||||||
width: 200rpx;
|
width: 180rpx;
|
||||||
height: 200rpx;
|
height: 180rpx;
|
||||||
margin-bottom: 15rpx;
|
margin-bottom: 15rpx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -357,4 +438,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.flexrow{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
0
unpackage/dist/dev/.automator/app-plus/.automator.json
vendored
Normal file
1
unpackage/dist/dev/app-plus/__uniappchooselocation.js
vendored
Normal file
BIN
unpackage/dist/dev/app-plus/__uniapperror.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
1
unpackage/dist/dev/app-plus/__uniappes6.js
vendored
Normal file
1
unpackage/dist/dev/app-plus/__uniappopenlocation.js
vendored
Normal file
1
unpackage/dist/dev/app-plus/__uniapppicker.js
vendored
Normal file
8
unpackage/dist/dev/app-plus/__uniappquill.js
vendored
Normal file
1
unpackage/dist/dev/app-plus/__uniappquillimageresize.js
vendored
Normal file
1
unpackage/dist/dev/app-plus/__uniappscan.js
vendored
Normal file
BIN
unpackage/dist/dev/app-plus/__uniappsuccess.png
vendored
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
25
unpackage/dist/dev/app-plus/__uniappview.html
vendored
Normal file
@@ -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>
|
||||||
8
unpackage/dist/dev/app-plus/app-config-service.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
|
||||||
|
var isReady=false;var onReadyCallbacks=[];
|
||||||
|
var isServiceReady=false;var onServiceReadyCallbacks=[];
|
||||||
|
var __uniConfig = {"pages":["pages/index/index","pages/index/details","pages/user/index","pages/user/code","pages/circle/index","pages/purine/index","pages/purine/details","pages/uricacid/index","pages/uricacid/list","pages/attestation/index","pages/friend/index","pages/order/index","pages/order/details","pages/receive/index","pages/login/login","pages/userCase/userCase"],"window":{"navigationBarTitleText":"痛风记录","backgroundColor":"#f3f4f6","navigationStyle":"custom"},"tabBar":{"list":[{"pagePath":"pages/index/index","iconPath":"static/tabBar/tabBar_icon_00.png","selectedIconPath":"static/tabBar/tabBar_show_00.png","text":"首页"},{"pagePath":"pages/uricacid/index","iconPath":"static/tabBar/tabBar_icon_01.png","selectedIconPath":"static/tabBar/tabBar_show_01.png","text":"记录"},{"pagePath":"pages/user/index","iconPath":"static/tabBar/tabBar_icon_02.png","selectedIconPath":"static/tabBar/tabBar_show_02.png","text":"我的"}],"borderStyle":"white","backgroundColor":"#FFFFFF","selectedColor":"#6a7df3","color":"#9d9d9d","iconWidth":"26px","spacing":"0","height":"60px"},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"medical","compilerVersion":"3.3.11","entryPagePath":"pages/index/index","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
|
||||||
|
var __uniRoutes = [{"path":"/pages/index/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"首页"}},{"path":"/pages/index/details","meta":{},"window":{"navigationBarTitleText":"商品详情"}},{"path":"/pages/user/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"我的"}},{"path":"/pages/user/code","meta":{},"window":{"navigationBarTitleText":"我的推广码"}},{"path":"/pages/circle/index","meta":{},"window":{"navigationBarTitleText":"病友记"}},{"path":"/pages/purine/index","meta":{},"window":{"navigationBarTitleText":"嘌呤列表"}},{"path":"/pages/purine/details","meta":{},"window":{"navigationBarTitleText":"食品详情"}},{"path":"/pages/uricacid/index","meta":{"isQuit":true,"isTabBar":true},"window":{"navigationBarTitleText":"尿酸值"}},{"path":"/pages/uricacid/list","meta":{},"window":{"navigationBarTitleText":"尿酸列表"}},{"path":"/pages/attestation/index","meta":{},"window":{"navigationBarTitleText":"认证"}},{"path":"/pages/friend/index","meta":{},"window":{"navigationBarTitleText":"邀请记录"}},{"path":"/pages/order/index","meta":{},"window":{"navigationBarTitleText":"我的订单"}},{"path":"/pages/order/details","meta":{},"window":{"navigationBarTitleText":"订单详情"}},{"path":"/pages/receive/index","meta":{},"window":{"navigationBarTitleText":"文章详情"}},{"path":"/pages/login/login","meta":{},"window":{}},{"path":"/pages/userCase/userCase","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}}}});
|
||||||
154
unpackage/dist/dev/app-plus/app-config.js
vendored
Normal file
@@ -0,0 +1,154 @@
|
|||||||
|
/******/ (function(modules) { // webpackBootstrap
|
||||||
|
/******/ // install a JSONP callback for chunk loading
|
||||||
|
/******/ function webpackJsonpCallback(data) {
|
||||||
|
/******/ var chunkIds = data[0];
|
||||||
|
/******/ var moreModules = data[1];
|
||||||
|
/******/ var executeModules = data[2];
|
||||||
|
/******/
|
||||||
|
/******/ // add "moreModules" to the modules object,
|
||||||
|
/******/ // then flag all "chunkIds" as loaded and fire callback
|
||||||
|
/******/ var moduleId, chunkId, i = 0, resolves = [];
|
||||||
|
/******/ for(;i < chunkIds.length; i++) {
|
||||||
|
/******/ chunkId = chunkIds[i];
|
||||||
|
/******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
|
||||||
|
/******/ resolves.push(installedChunks[chunkId][0]);
|
||||||
|
/******/ }
|
||||||
|
/******/ installedChunks[chunkId] = 0;
|
||||||
|
/******/ }
|
||||||
|
/******/ for(moduleId in moreModules) {
|
||||||
|
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
|
||||||
|
/******/ modules[moduleId] = moreModules[moduleId];
|
||||||
|
/******/ }
|
||||||
|
/******/ }
|
||||||
|
/******/ if(parentJsonpFunction) parentJsonpFunction(data);
|
||||||
|
/******/
|
||||||
|
/******/ while(resolves.length) {
|
||||||
|
/******/ resolves.shift()();
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/ // add entry modules from loaded chunk to deferred list
|
||||||
|
/******/ deferredModules.push.apply(deferredModules, executeModules || []);
|
||||||
|
/******/
|
||||||
|
/******/ // run deferred modules when all chunks ready
|
||||||
|
/******/ return checkDeferredModules();
|
||||||
|
/******/ };
|
||||||
|
/******/ function checkDeferredModules() {
|
||||||
|
/******/ var result;
|
||||||
|
/******/ for(var i = 0; i < deferredModules.length; i++) {
|
||||||
|
/******/ var deferredModule = deferredModules[i];
|
||||||
|
/******/ var fulfilled = true;
|
||||||
|
/******/ for(var j = 1; j < deferredModule.length; j++) {
|
||||||
|
/******/ var depId = deferredModule[j];
|
||||||
|
/******/ if(installedChunks[depId] !== 0) fulfilled = false;
|
||||||
|
/******/ }
|
||||||
|
/******/ if(fulfilled) {
|
||||||
|
/******/ deferredModules.splice(i--, 1);
|
||||||
|
/******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
|
||||||
|
/******/ }
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/ return result;
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/ // The module cache
|
||||||
|
/******/ var installedModules = {};
|
||||||
|
/******/
|
||||||
|
/******/ // object to store loaded and loading chunks
|
||||||
|
/******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
|
||||||
|
/******/ // Promise = chunk loading, 0 = chunk loaded
|
||||||
|
/******/ var installedChunks = {
|
||||||
|
/******/ "app-config": 0
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ var deferredModules = [];
|
||||||
|
/******/
|
||||||
|
/******/ // The require function
|
||||||
|
/******/ function __webpack_require__(moduleId) {
|
||||||
|
/******/
|
||||||
|
/******/ // Check if module is in cache
|
||||||
|
/******/ if(installedModules[moduleId]) {
|
||||||
|
/******/ return installedModules[moduleId].exports;
|
||||||
|
/******/ }
|
||||||
|
/******/ // Create a new module (and put it into the cache)
|
||||||
|
/******/ var module = installedModules[moduleId] = {
|
||||||
|
/******/ i: moduleId,
|
||||||
|
/******/ l: false,
|
||||||
|
/******/ exports: {}
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // Execute the module function
|
||||||
|
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||||
|
/******/
|
||||||
|
/******/ // Flag the module as loaded
|
||||||
|
/******/ module.l = true;
|
||||||
|
/******/
|
||||||
|
/******/ // Return the exports of the module
|
||||||
|
/******/ return module.exports;
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/
|
||||||
|
/******/ // expose the modules object (__webpack_modules__)
|
||||||
|
/******/ __webpack_require__.m = modules;
|
||||||
|
/******/
|
||||||
|
/******/ // expose the module cache
|
||||||
|
/******/ __webpack_require__.c = installedModules;
|
||||||
|
/******/
|
||||||
|
/******/ // define getter function for harmony exports
|
||||||
|
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||||
|
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||||
|
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||||
|
/******/ }
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // define __esModule on exports
|
||||||
|
/******/ __webpack_require__.r = function(exports) {
|
||||||
|
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||||
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||||
|
/******/ }
|
||||||
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // create a fake namespace object
|
||||||
|
/******/ // mode & 1: value is a module id, require it
|
||||||
|
/******/ // mode & 2: merge all properties of value into the ns
|
||||||
|
/******/ // mode & 4: return value when already ns object
|
||||||
|
/******/ // mode & 8|1: behave like require
|
||||||
|
/******/ __webpack_require__.t = function(value, mode) {
|
||||||
|
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||||
|
/******/ if(mode & 8) return value;
|
||||||
|
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||||
|
/******/ var ns = Object.create(null);
|
||||||
|
/******/ __webpack_require__.r(ns);
|
||||||
|
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||||
|
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||||
|
/******/ return ns;
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||||
|
/******/ __webpack_require__.n = function(module) {
|
||||||
|
/******/ var getter = module && module.__esModule ?
|
||||||
|
/******/ function getDefault() { return module['default']; } :
|
||||||
|
/******/ function getModuleExports() { return module; };
|
||||||
|
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||||
|
/******/ return getter;
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // Object.prototype.hasOwnProperty.call
|
||||||
|
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||||
|
/******/
|
||||||
|
/******/ // __webpack_public_path__
|
||||||
|
/******/ __webpack_require__.p = "/";
|
||||||
|
/******/
|
||||||
|
/******/ var jsonpArray = this["webpackJsonp"] = this["webpackJsonp"] || [];
|
||||||
|
/******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
|
||||||
|
/******/ jsonpArray.push = webpackJsonpCallback;
|
||||||
|
/******/ jsonpArray = jsonpArray.slice();
|
||||||
|
/******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
|
||||||
|
/******/ var parentJsonpFunction = oldJsonpFunction;
|
||||||
|
/******/
|
||||||
|
/******/
|
||||||
|
/******/ // run deferred modules from other chunks
|
||||||
|
/******/ checkDeferredModules();
|
||||||
|
/******/ })
|
||||||
|
/************************************************************************/
|
||||||
|
/******/ ([]);
|
||||||
10875
unpackage/dist/dev/app-plus/app-service.js
vendored
Normal file
8039
unpackage/dist/dev/app-plus/app-view.js
vendored
Normal file
1
unpackage/dist/dev/app-plus/manifest.json
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{"@platforms":["android","iPhone","iPad"],"id":"__UNI__F02BFB1","name":"medical","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":{"id":"1","kernel":"WKWebview"},"statusbar":{"immersed":"supportedDevice","style":"light","background":"#000000"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"distribute":{"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":{},"plugins":{"audio":{"mp3":{"description":"Android平台录音支持MP3格式文件"}}}},"allowsInlineMediaPlayback":true,"safearea":{"background":"#FFFFFF","bottom":{"offset":"auto"}},"uni-app":{"compilerVersion":"3.3.11","control":"uni-v3","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal"},"tabBar":{"list":[{"pagePath":"pages/index/index","iconPath":"static/tabBar/tabBar_icon_00.png","selectedIconPath":"static/tabBar/tabBar_show_00.png","text":"首页"},{"pagePath":"pages/uricacid/index","iconPath":"static/tabBar/tabBar_icon_01.png","selectedIconPath":"static/tabBar/tabBar_show_01.png","text":"记录"},{"pagePath":"pages/user/index","iconPath":"static/tabBar/tabBar_icon_02.png","selectedIconPath":"static/tabBar/tabBar_show_02.png","text":"我的"}],"borderStyle":"rgba(255,255,255,0.4)","backgroundColor":"#FFFFFF","selectedColor":"#6a7df3","color":"#9d9d9d","iconWidth":"26px","spacing":"0","height":"60px","child":["lauchwebview"],"selected":0},"launch_path":"__uniappview.html"}}
|
||||||
BIN
unpackage/dist/dev/app-plus/static/404/404.png
vendored
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/caseCamera.png
vendored
Normal file
|
After Width: | Height: | Size: 623 B |
BIN
unpackage/dist/dev/app-plus/static/icons/lookIcon_00.png
vendored
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/lookIcon_01.png
vendored
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/lookIcon_02.png
vendored
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/nameClose_icon.png
vendored
Normal file
|
After Width: | Height: | Size: 698 B |
BIN
unpackage/dist/dev/app-plus/static/icons/orderIcon_00.png
vendored
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/orderIcon_01.png
vendored
Normal file
|
After Width: | Height: | Size: 718 B |
BIN
unpackage/dist/dev/app-plus/static/icons/order_00.png
vendored
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/order_01.png
vendored
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/order_02.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/order_03.png
vendored
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/order_04.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/purineArrow.png
vendored
Normal file
|
After Width: | Height: | Size: 275 B |
BIN
unpackage/dist/dev/app-plus/static/icons/purineSearch.png
vendored
Normal file
|
After Width: | Height: | Size: 862 B |
BIN
unpackage/dist/dev/app-plus/static/icons/refresh_loding.gif
vendored
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/tool_icon_00.png
vendored
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/tool_icon_01.png
vendored
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/tool_icon_02.png
vendored
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/uricacidClose.png
vendored
Normal file
|
After Width: | Height: | Size: 449 B |
BIN
unpackage/dist/dev/app-plus/static/icons/userForm_icon.png
vendored
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
unpackage/dist/dev/app-plus/static/icons/userLogin_icon.png
vendored
Normal file
|
After Width: | Height: | Size: 580 B |
BIN
unpackage/dist/dev/app-plus/static/icons/useredit_icon.png
vendored
Normal file
|
After Width: | Height: | Size: 737 B |
BIN
unpackage/dist/dev/app-plus/static/icons/wechat.png
vendored
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/authPop_img.png
vendored
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/banner.png
vendored
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/caseTips.png
vendored
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/codeBack.png
vendored
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/coupon_null.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/cover_img.png
vendored
Normal file
|
After Width: | Height: | Size: 16 KiB |
BIN
unpackage/dist/dev/app-plus/static/imgs/default_myHead.png
vendored
Normal file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
unpackage/dist/dev/app-plus/static/product/img.jpg
vendored
Normal file
|
After Width: | Height: | Size: 645 KiB |
BIN
unpackage/dist/dev/app-plus/static/product/product_00.png
vendored
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
unpackage/dist/dev/app-plus/static/product/product_01.png
vendored
Normal file
|
After Width: | Height: | Size: 116 KiB |
BIN
unpackage/dist/dev/app-plus/static/product/product_02.png
vendored
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_icon_00.png
vendored
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_icon_01.png
vendored
Normal file
|
After Width: | Height: | Size: 2.9 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_icon_02.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_show_00.png
vendored
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_show_01.png
vendored
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
unpackage/dist/dev/app-plus/static/tabBar/tabBar_show_02.png
vendored
Normal file
|
After Width: | Height: | Size: 2.7 KiB |