修改
This commit is contained in:
parent
4ece20347d
commit
af9f7a8a72
37
androidPrivacy.json
Normal file
37
androidPrivacy.json
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{
|
||||||
|
"version" : "1",
|
||||||
|
"prompt" : "template",
|
||||||
|
"title" : "服务协议和隐私政策",
|
||||||
|
"message" : "请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/> 你可阅读<a href=\"\">《服务协议》</a>和<a href=\"\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
|
||||||
|
"buttonAccept" : "同意并接受",
|
||||||
|
"buttonRefuse" : "暂不同意",
|
||||||
|
"hrefLoader" : "system|default",
|
||||||
|
"second" : {
|
||||||
|
"title" : "确认提示",
|
||||||
|
"message" : "进入应用前,你需先同意<a href=\"\">《服务协议》</a>和<a href=\"\">《隐私政策》</a>,否则将退出应用。",
|
||||||
|
"buttonAccept" : "同意并继续",
|
||||||
|
"buttonRefuse" : "退出应用"
|
||||||
|
},
|
||||||
|
"disagreeMode" : {
|
||||||
|
"support" : false,
|
||||||
|
"loadNativePlugins" : false,
|
||||||
|
"visitorEntry" : true,
|
||||||
|
"showAlways" : true
|
||||||
|
},
|
||||||
|
"styles" : {
|
||||||
|
"backgroundColor" : "#ffffff",
|
||||||
|
"borderRadius" : "5px",
|
||||||
|
"title" : {
|
||||||
|
"color" : "#000000"
|
||||||
|
},
|
||||||
|
"buttonAccept" : {
|
||||||
|
"color" : "#000000"
|
||||||
|
},
|
||||||
|
"buttonRefuse" : {
|
||||||
|
"color" : "#000000"
|
||||||
|
},
|
||||||
|
"buttonVisitor" : {
|
||||||
|
"color" : "#000000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -6,4 +6,11 @@ export function appLogin(phonenumber, stationPersonPassword) {
|
|||||||
url: `/nurseApp/personLogin/appLogin?phonenumber=${phonenumber}&stationPersonPassword=${stationPersonPassword}`,
|
url: `/nurseApp/personLogin/appLogin?phonenumber=${phonenumber}&stationPersonPassword=${stationPersonPassword}`,
|
||||||
method: 'POST'
|
method: 'POST'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function createMobileToken() {
|
||||||
|
return request({
|
||||||
|
url: `/nurseApplet/authorization/createMobileToken`,
|
||||||
|
method: 'GET'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@ -10,10 +10,36 @@ var request = function(config) {
|
|||||||
data: config.data,
|
data: config.data,
|
||||||
method: config.method,
|
method: config.method,
|
||||||
timeout: 10000,
|
timeout: 10000,
|
||||||
// header: {
|
header: {
|
||||||
// token: uni.getStorageSync('token')
|
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
|
||||||
// },
|
},
|
||||||
success(res) {
|
success(res) {
|
||||||
|
if (res.data.code == 9999) {
|
||||||
|
uni.removeStorageSync('token');
|
||||||
|
// uni.reLaunch({
|
||||||
|
// url: '/pages/login/login'
|
||||||
|
// })
|
||||||
|
uni.showModal({
|
||||||
|
title: "登录提示",
|
||||||
|
content: '登录失效,请重新登录',
|
||||||
|
success(res1) {
|
||||||
|
if (res1.confirm) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/login/login'
|
||||||
|
})
|
||||||
|
} else if (res1.cancel) {
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/homepage/homepage'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fail(err1) {
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/homepage/homepage'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
uni.hideLoading();
|
uni.hideLoading();
|
||||||
resolve(res.data)
|
resolve(res.data)
|
||||||
},
|
},
|
||||||
|
|||||||
@ -2,8 +2,8 @@
|
|||||||
"name" : "泉医到家护理员APP",
|
"name" : "泉医到家护理员APP",
|
||||||
"appid" : "__UNI__EE607B0",
|
"appid" : "__UNI__EE607B0",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "1.0.1",
|
"versionName" : "1.0.5",
|
||||||
"versionCode" : 101,
|
"versionCode" : 105,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
@ -17,7 +17,10 @@
|
|||||||
"delay" : 0
|
"delay" : 0
|
||||||
},
|
},
|
||||||
/* 模块配置 */
|
/* 模块配置 */
|
||||||
"modules" : {},
|
"modules" : {
|
||||||
|
"Geolocation" : {},
|
||||||
|
"Maps" : {}
|
||||||
|
},
|
||||||
/* 应用发布信息 */
|
/* 应用发布信息 */
|
||||||
"distribute" : {
|
"distribute" : {
|
||||||
/* android打包配置 */
|
/* android打包配置 */
|
||||||
@ -46,7 +49,20 @@
|
|||||||
},
|
},
|
||||||
/* SDK配置 */
|
/* SDK配置 */
|
||||||
"sdkConfigs" : {
|
"sdkConfigs" : {
|
||||||
"ad" : {}
|
"ad" : {},
|
||||||
|
"geolocation" : {
|
||||||
|
"amap" : {
|
||||||
|
"__platform__" : [ "ios", "android" ],
|
||||||
|
"appkey_ios" : "fa38860a5159a551b6819ea3092a68f3",
|
||||||
|
"appkey_android" : "fa38860a5159a551b6819ea3092a68f3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"maps" : {
|
||||||
|
"amap" : {
|
||||||
|
"appkey_ios" : "fa38860a5159a551b6819ea3092a68f3",
|
||||||
|
"appkey_android" : "fa38860a5159a551b6819ea3092a68f3"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"icons" : {
|
"icons" : {
|
||||||
"android" : {
|
"android" : {
|
||||||
|
|||||||
14
pages.json
14
pages.json
@ -4,6 +4,13 @@
|
|||||||
},
|
},
|
||||||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
||||||
{
|
{
|
||||||
|
"path": "pages/login/login",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "登录",
|
||||||
|
"navigationBarBackgroundColor": "#ffffff", //背景颜色
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},{
|
||||||
"path": "pages/startup/startup",
|
"path": "pages/startup/startup",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "启动页",
|
"navigationBarTitleText": "启动页",
|
||||||
@ -16,13 +23,6 @@
|
|||||||
"navigationBarTitleText": "完成确认",
|
"navigationBarTitleText": "完成确认",
|
||||||
"navigationBarBackgroundColor": "#ffffff" //背景颜色
|
"navigationBarBackgroundColor": "#ffffff" //背景颜色
|
||||||
}
|
}
|
||||||
}, {
|
|
||||||
"path": "pages/login/login",
|
|
||||||
"style": {
|
|
||||||
"navigationBarTitleText": "登录",
|
|
||||||
"navigationBarBackgroundColor": "#ffffff", //背景颜色
|
|
||||||
"navigationStyle": "custom"
|
|
||||||
}
|
|
||||||
}, {
|
}, {
|
||||||
"path": "pages/personal/personal",
|
"path": "pages/personal/personal",
|
||||||
"style": {
|
"style": {
|
||||||
|
|||||||
@ -116,9 +116,6 @@
|
|||||||
formData: { //多余值
|
formData: { //多余值
|
||||||
'userId': that.appPersonallist.userId,
|
'userId': that.appPersonallist.userId,
|
||||||
},
|
},
|
||||||
header: {
|
|
||||||
'content-type': 'multipart/form-data'
|
|
||||||
},
|
|
||||||
timeout: 5000,
|
timeout: 5000,
|
||||||
success(res) {
|
success(res) {
|
||||||
that.appPersonallist.avatar = JSON.parse(res.data).imgUrl
|
that.appPersonallist.avatar = JSON.parse(res.data).imgUrl
|
||||||
|
|||||||
@ -36,7 +36,7 @@
|
|||||||
<view class="names">{{item.serviceDate}} {{item.serviceStartTime}}-{{item.serviceEndTime}}
|
<view class="names">{{item.serviceDate}} {{item.serviceStartTime}}-{{item.serviceEndTime}}
|
||||||
<span>已完成</span>
|
<span>已完成</span>
|
||||||
</view>
|
</view>
|
||||||
<image src="../../static/fuwutu.png" mode=""></image>
|
<image :src="baseurl+item.itemPictureUrl" mode=""></image>
|
||||||
<view class="detailsinfo">
|
<view class="detailsinfo">
|
||||||
<view class="change">
|
<view class="change">
|
||||||
{{item.nurseItemName}}
|
{{item.nurseItemName}}
|
||||||
|
|||||||
@ -83,7 +83,9 @@
|
|||||||
serviceEndPictureUrl: null,
|
serviceEndPictureUrl: null,
|
||||||
userSignaturePictureUrl: null,
|
userSignaturePictureUrl: null,
|
||||||
list: {
|
list: {
|
||||||
|
res: {},
|
||||||
id: null,
|
id: null,
|
||||||
|
serviceLocationName:null,
|
||||||
onDutyPictureUrl: null,
|
onDutyPictureUrl: null,
|
||||||
serviceEndPictureUrl: null,
|
serviceEndPictureUrl: null,
|
||||||
userSignaturePictureUrl: null,
|
userSignaturePictureUrl: null,
|
||||||
@ -91,9 +93,6 @@
|
|||||||
serveLocationLongitude: null,
|
serveLocationLongitude: null,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
|
||||||
onShow() {
|
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//签名
|
//签名
|
||||||
@ -213,8 +212,10 @@
|
|||||||
this.orderNo = options.orderNo
|
this.orderNo = options.orderNo
|
||||||
var that = this
|
var that = this
|
||||||
uni.getLocation({
|
uni.getLocation({
|
||||||
type: 'wgs84',
|
type: 'gcj02',
|
||||||
|
geocode: true,
|
||||||
success: function(res) {
|
success: function(res) {
|
||||||
|
that.list.serviceLocationName = res.address.poiName
|
||||||
that.list.serveLocationLatitude = res.latitude
|
that.list.serveLocationLatitude = res.latitude
|
||||||
that.list.serveLocationLongitude = res.longitude
|
that.list.serveLocationLongitude = res.longitude
|
||||||
},
|
},
|
||||||
|
|||||||
@ -48,6 +48,7 @@
|
|||||||
newpassword: '',
|
newpassword: '',
|
||||||
getCodeText: '获取验证码', //获取验证码的文字
|
getCodeText: '获取验证码', //获取验证码的文字
|
||||||
getCodeBtnColor: "#4C7BC9", //获取验证码的color
|
getCodeBtnColor: "#4C7BC9", //获取验证码的color
|
||||||
|
timer: null,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
@ -57,6 +58,7 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
pwdlogin() {
|
pwdlogin() {
|
||||||
|
var that = this
|
||||||
if (this.password !== this.newpassword) {
|
if (this.password !== this.newpassword) {
|
||||||
this.$refs.uToast.show({
|
this.$refs.uToast.show({
|
||||||
title: '密码输入不一致,请重新输入',
|
title: '密码输入不一致,请重新输入',
|
||||||
|
|||||||
@ -42,8 +42,23 @@
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
gomymission() {
|
gomymission() {
|
||||||
uni.navigateTo({
|
nursePerson(this.phonenumber, this.password).then(res => {
|
||||||
url: '/pages/Mymission/Mymission'
|
if (res.code == 200) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pages/Mymission/Mymission'
|
||||||
|
})
|
||||||
|
} else if (res.code == 9999) {} else {
|
||||||
|
this.$refs.uToast.show({
|
||||||
|
title: '账号异常,请重新登录',
|
||||||
|
type: 'error',
|
||||||
|
duration: '1000'
|
||||||
|
})
|
||||||
|
setTimeout(e => {
|
||||||
|
uni.reLaunch({
|
||||||
|
url: '/pages/login/login'
|
||||||
|
})
|
||||||
|
}, 1000)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
gopersonal() {
|
gopersonal() {
|
||||||
@ -52,7 +67,7 @@
|
|||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/personal/personal'
|
url: '/pages/personal/personal'
|
||||||
})
|
})
|
||||||
} else {
|
} else if (res.code == 9999) {} else {
|
||||||
this.$refs.uToast.show({
|
this.$refs.uToast.show({
|
||||||
title: '账号异常,请重新登录',
|
title: '账号异常,请重新登录',
|
||||||
type: 'error',
|
type: 'error',
|
||||||
|
|||||||
@ -27,8 +27,9 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
appLogin
|
appLogin,
|
||||||
} from '../../api/login/index.js'
|
createMobileToken
|
||||||
|
} from '@/api/login/index.js'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@ -46,8 +47,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
//密码登录
|
login() {
|
||||||
pwdlogin() {
|
|
||||||
var that = this
|
var that = this
|
||||||
appLogin(this.phonenumber, this.password).then(res => {
|
appLogin(this.phonenumber, this.password).then(res => {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
@ -55,7 +55,7 @@
|
|||||||
uni.setStorageSync("phonenumber", that.phonenumber)
|
uni.setStorageSync("phonenumber", that.phonenumber)
|
||||||
uni.setStorageSync("password", that.password)
|
uni.setStorageSync("password", that.password)
|
||||||
uni.setStorageSync("nursePersonId", res.data.nursePersonId)
|
uni.setStorageSync("nursePersonId", res.data.nursePersonId)
|
||||||
this.$refs.uToast.show({
|
that.$refs.uToast.show({
|
||||||
title: '登录成功',
|
title: '登录成功',
|
||||||
type: 'success',
|
type: 'success',
|
||||||
duration: '1500'
|
duration: '1500'
|
||||||
@ -66,13 +66,21 @@
|
|||||||
})
|
})
|
||||||
}, 1500);
|
}, 1500);
|
||||||
} else {
|
} else {
|
||||||
this.$refs.uToast.show({
|
that.$refs.uToast.show({
|
||||||
title: res.msg,
|
title: res.msg,
|
||||||
type: 'error'
|
type: 'error'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
//密码登录
|
||||||
|
pwdlogin() {
|
||||||
|
var that = this
|
||||||
|
createMobileToken().then(res => {
|
||||||
|
uni.setStorageSync("token", res.data.token)
|
||||||
|
that.login();
|
||||||
|
})
|
||||||
|
},
|
||||||
//跳转注册页
|
//跳转注册页
|
||||||
goregister() {
|
goregister() {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
|
|||||||
@ -27,7 +27,10 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="item" style="border:none;border-radius:0 0 20rpx 20rpx;line-height:50rpx;padding: 20rpx 3%;"
|
<view class="item" style="border:none;border-radius:0 0 20rpx 20rpx;line-height:50rpx;padding: 20rpx 3%;"
|
||||||
v-if="appPersonallist.nurseStationSysUserVOList">
|
v-if="appPersonallist.nurseStationSysUserVOList">
|
||||||
护理站: {{appPersonallist.nurseStationSysUserVOList[0].nurseStationName}}
|
护理站:
|
||||||
|
<text v-for='(uitem,index) in appPersonallist.nurseStationSysUserVOList'> {{uitem.nurseStationName}}
|
||||||
|
<text v-if="index!=appPersonallist.nurseStationSysUserVOList.length-1">,</text>
|
||||||
|
</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="signout" @tap='remove'>
|
<view class="signout" @tap='remove'>
|
||||||
退出账号
|
退出账号
|
||||||
@ -45,7 +48,6 @@
|
|||||||
</view>
|
</view>
|
||||||
<image src="../../static/jiantou.png" mode=""></image>
|
<image src="../../static/jiantou.png" mode=""></image>
|
||||||
</view> -->
|
</view> -->
|
||||||
|
|
||||||
<u-toast ref="uToast" />
|
<u-toast ref="uToast" />
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
@ -66,7 +68,6 @@
|
|||||||
appPersonallist: [], //获取个人信息
|
appPersonallist: [], //获取个人信息
|
||||||
nurseStationSysUserVOList: [],
|
nurseStationSysUserVOList: [],
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.baseurl = baseurl;
|
this.baseurl = baseurl;
|
||||||
|
|||||||
@ -22,85 +22,84 @@
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
this.info();
|
|
||||||
//自动更新
|
//自动更新
|
||||||
// var that = this;
|
var that = this;
|
||||||
// plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
|
plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
|
||||||
// this.apknumber = wgtinfo.version
|
this.apknumber = wgtinfo.version
|
||||||
// appFileInfoByOneId().then(res => {
|
appFileInfoByOneId().then(res => {
|
||||||
// if (res.fileVersion > this.apknumber) {
|
if (res.fileVersion > this.apknumber) {
|
||||||
// uni.showToast({
|
uni.showToast({
|
||||||
// title: '有新的版本发布,程序已启动自动更新。新版本下载完成后将自动弹出安装程序。',
|
title: '有新的版本发布,程序已启动自动更新。新版本下载完成后将自动弹出安装程序。',
|
||||||
// mask: false,
|
mask: false,
|
||||||
// duration: 5000,
|
duration: 5000,
|
||||||
// icon: "none"
|
icon: "none"
|
||||||
// });
|
});
|
||||||
// var dtask = plus.downloader.createDownload(
|
var dtask = plus.downloader.createDownload(
|
||||||
// res.fileUrl, {},
|
res.fileUrl, {},
|
||||||
// function(d, status) {
|
function(d, status) {
|
||||||
// //下载完成
|
//下载完成
|
||||||
// if (status == 200) {
|
if (status == 200) {
|
||||||
// plus.runtime.install(plus.io.convertLocalFileSystemURL(d
|
plus.runtime.install(plus.io.convertLocalFileSystemURL(d
|
||||||
// .filename), {}, {}, function(error) {
|
.filename), {}, {}, function(error) {
|
||||||
// uni.showToast({
|
uni.showToast({
|
||||||
// title: '安装失败',
|
title: '安装失败',
|
||||||
// mask: false,
|
mask: false,
|
||||||
// duration: 1500
|
duration: 1500
|
||||||
// });
|
});
|
||||||
// })
|
})
|
||||||
// } else {
|
} else {
|
||||||
// uni.showToast({
|
uni.showToast({
|
||||||
// title: '更新失败',
|
title: '更新失败',
|
||||||
// mask: false,
|
mask: false,
|
||||||
// duration: 1500
|
duration: 1500
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
// try {
|
try {
|
||||||
// dtask.start(); // 开启下载的任务
|
dtask.start(); // 开启下载的任务
|
||||||
// var prg = 0;
|
var prg = 0;
|
||||||
// var showLoading = plus.nativeUI.showWaiting(
|
var showLoading = plus.nativeUI.showWaiting(
|
||||||
// "正在下载"); //创建一个showWaiting对象
|
"正在下载"); //创建一个showWaiting对象
|
||||||
// dtask.addEventListener('statechanged', function(
|
dtask.addEventListener('statechanged', function(
|
||||||
// task,
|
task,
|
||||||
// status
|
status
|
||||||
// ) {
|
) {
|
||||||
// // 给下载任务设置一个监听 并根据状态 做操作
|
// 给下载任务设置一个监听 并根据状态 做操作
|
||||||
// switch (task.state) {
|
switch (task.state) {
|
||||||
// case 1:
|
case 1:
|
||||||
// showLoading.setTitle("正在下载");
|
showLoading.setTitle("正在下载");
|
||||||
// break;
|
break;
|
||||||
// case 2:
|
case 2:
|
||||||
// showLoading.setTitle("已连接到服务器");
|
showLoading.setTitle("已连接到服务器");
|
||||||
// break;
|
break;
|
||||||
// case 3:
|
case 3:
|
||||||
// prg = parseInt(
|
prg = parseInt(
|
||||||
// (parseFloat(task.downloadedSize) /
|
(parseFloat(task.downloadedSize) /
|
||||||
// parseFloat(task.totalSize)) *
|
parseFloat(task.totalSize)) *
|
||||||
// 100
|
100
|
||||||
// );
|
);
|
||||||
// showLoading.setTitle(" 正在下载" + prg + "% ");
|
showLoading.setTitle(" 正在下载" + prg + "% ");
|
||||||
// break;
|
break;
|
||||||
// case 4:
|
case 4:
|
||||||
// plus.nativeUI.closeWaiting();
|
plus.nativeUI.closeWaiting();
|
||||||
// //下载完成
|
//下载完成
|
||||||
// break;
|
break;
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
// } catch (err) {
|
} catch (err) {
|
||||||
// plus.nativeUI.closeWaiting();
|
plus.nativeUI.closeWaiting();
|
||||||
// uni.showToast({
|
uni.showToast({
|
||||||
// title: '更新失败',
|
title: '更新失败',
|
||||||
// mask: false,
|
mask: false,
|
||||||
// duration: 1500
|
duration: 1500
|
||||||
// });
|
});
|
||||||
// that.info();
|
that.info();
|
||||||
// }
|
}
|
||||||
// } else {
|
} else {
|
||||||
// that.info();
|
that.info();
|
||||||
// }
|
}
|
||||||
// })
|
})
|
||||||
// })
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
info() {
|
info() {
|
||||||
|
|||||||
@ -25,19 +25,19 @@
|
|||||||
地址:{{list.serviceAddress}}
|
地址:{{list.serviceAddress}}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="img" v-if="list.orderStatus=='COMPLETE'">
|
<view class="img" v-if="list.orderStatus=='COMPLETE'||list.orderStatus=='EVALUATED'">
|
||||||
<view class="">
|
<view class="">
|
||||||
护理员到岗照片
|
护理员到岗照片
|
||||||
</view>
|
</view>
|
||||||
<image :src="baseurl+list.onDutyPictureUrl" mode=""></image>
|
<image :src="baseurl+list.onDutyPictureUrl" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="img" v-if="list.orderStatus=='COMPLETE'">
|
<view class="img" v-if="list.orderStatus=='COMPLETE'||list.orderStatus=='EVALUATED'">
|
||||||
<view class="" >
|
<view class="" >
|
||||||
服务结束照片
|
服务结束照片
|
||||||
</view>
|
</view>
|
||||||
<image :src="baseurl+list.serviceEndPictureUrl" mode=""></image>
|
<image :src="baseurl+list.serviceEndPictureUrl" mode=""></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="img" v-if="list.orderStatus=='COMPLETE'">
|
<view class="img" v-if="list.orderStatus=='COMPLETE'||list.orderStatus=='EVALUATED'">
|
||||||
<view class="">
|
<view class="">
|
||||||
签名
|
签名
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user