修改
This commit is contained in:
parent
a1b2ccbf60
commit
34393e5136
@ -1,9 +1,9 @@
|
||||
import request from "../request.js"
|
||||
|
||||
//
|
||||
export function selectOrderByNursePersonCount(nurserStationPersonId) {
|
||||
export function selectOrderByNursePersonCount(nurseStationPersonId) {
|
||||
return request({
|
||||
url: `/nurseApp/personLogin/selectOrderByNursePersonCount?nurserStationPersonId=${nurserStationPersonId}`,
|
||||
url: `/nurseApp/personLogin/selectOrderByNursePersonCount?nurseStationPersonId=${nurseStationPersonId}`,
|
||||
method: 'GET'
|
||||
})
|
||||
}
|
||||
|
||||
328
pages/RevenueDetails/RevenueDetails.vue
Normal file
328
pages/RevenueDetails/RevenueDetails.vue
Normal file
@ -0,0 +1,328 @@
|
||||
<template>
|
||||
<view class="app">
|
||||
<view class="top">
|
||||
<view class="title">
|
||||
<image src="../../static/fuwu.png" mode=""></image>
|
||||
<view class="text">
|
||||
{{itemlist.nurseItemName}}
|
||||
</view>
|
||||
<view class="righttext">
|
||||
¥{{itemlist.totalPrice}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="content">
|
||||
<view class="time">
|
||||
时间: {{itemlist.serviceDate}}
|
||||
<span style='padding-left: 10rpx;'>{{itemlist.serviceStartTime}}</span>
|
||||
</view>
|
||||
<view class="address">
|
||||
地点:{{itemlist.serviceAddress}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="top">
|
||||
<view class="title">
|
||||
<image src="../../static/user.png" mode=""></image>
|
||||
<view class="text">
|
||||
用户信息
|
||||
</view>
|
||||
</view>
|
||||
<view class="content" style="margin-top: 20rpx;">
|
||||
<view class="item">
|
||||
姓名:{{itemlist.patientName}}
|
||||
</view>
|
||||
<view class="item">
|
||||
年龄:{{itemlist.age}}
|
||||
</view>
|
||||
<view class="item">
|
||||
电话:{{itemlist.phone}}
|
||||
</view>
|
||||
<view class="item address" @tap='goMap'>
|
||||
<view class="text" style="line-height: 60rpx;">
|
||||
住址:{{itemlist.serviceAddress}}
|
||||
</view>
|
||||
<view class="daohang">
|
||||
<image src="../../static/daohang.png" mode=""></image>
|
||||
<span class='p'>导航</span>
|
||||
</view>
|
||||
</view>
|
||||
<view class="item">
|
||||
是否失能:{{itemlist.disablingCondition=="NOT_DISABLED"?'未失能':''}}
|
||||
{{itemlist.disablingCondition=="DISABLED"?'已失能':''}}
|
||||
</view>
|
||||
<view class="item" v-if="itemlist.disablingCondition=='DISABLED'">
|
||||
失能情况:{{itemlist.disablingReason}}
|
||||
</view>
|
||||
<view class="item">
|
||||
身体健康状况:{{itemlist.diseaseName}}
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="pictures top">
|
||||
<view class="title">
|
||||
<image src="../../static/ziliao.png" mode=""></image>
|
||||
<view class="text">
|
||||
相关资料
|
||||
</view>
|
||||
</view>
|
||||
<view class="picture">
|
||||
<view class="attendantImg">
|
||||
护理员到岗照片
|
||||
</view>
|
||||
<view class="uppicture">
|
||||
<image :src="baseurl + itemlist.onDutyPictureUrl" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="picture">
|
||||
<view class="attendantImg">
|
||||
服务结束照片
|
||||
</view>
|
||||
<view class="uppicture">
|
||||
<image :src="baseurl + itemlist.serviceEndPictureUrl" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
<view class="picture" style="height: 730rpx;">
|
||||
<view class="attendantImg" style="border-bottom: 1rpx solid #BAB7B8;">
|
||||
用户签名
|
||||
</view>
|
||||
<view class="uppicture">
|
||||
<image :src="baseurl + itemlist.userSignaturePictureUrl" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
taskDetails
|
||||
} from '@/api/taskDetails/taskDetails.js'
|
||||
import baseurl from '@/api/baseurl.js'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
itemlist: null, //信息list
|
||||
baseurl: null,
|
||||
tude: { //经纬度
|
||||
latitude: '',
|
||||
longitude: '',
|
||||
},
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
//获取经纬度
|
||||
goMap() {
|
||||
let that = this
|
||||
uni.request({
|
||||
url: 'https://apis.map.qq.com/ws/geocoder/v1/?address=',
|
||||
method: 'GET',
|
||||
data: {
|
||||
key: '3VABZ-6LZWK-YPAJ3-AMQED-D7RUK-VPB37', //高德地图key
|
||||
address: this.itemlist.serviceAddress // 详细地址
|
||||
},
|
||||
success: function(res) {
|
||||
that.tude.latitude = res.data.result.location.lat
|
||||
that.tude.longitude = res.data.result.location.lng
|
||||
that.getlocations();
|
||||
},
|
||||
fail(err) {}
|
||||
})
|
||||
},
|
||||
//跳转导航
|
||||
getlocations() {
|
||||
let that = this
|
||||
uni.openLocation({
|
||||
latitude: Number(that.tude.latitude),
|
||||
longitude: Number(that.tude.longitude),
|
||||
})
|
||||
},
|
||||
},
|
||||
onLoad(options) {
|
||||
this.baseurl = baseurl
|
||||
taskDetails(options.orderDetailsId).then(res => {
|
||||
this.itemlist = res.data
|
||||
console.log(res)
|
||||
})
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.app {
|
||||
font-size: 36rpx;
|
||||
padding: 0 0 100rpx;
|
||||
|
||||
.top {
|
||||
padding-bottom: 40rpx;
|
||||
background-color: #fff;
|
||||
width: 96%;
|
||||
margin: 15rpx auto 0;
|
||||
color: #333333;
|
||||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
|
||||
.title {
|
||||
border-bottom: 1rpx solid #E6E6E6;
|
||||
display: flex;
|
||||
height: 100rpx;
|
||||
line-height: 100rpx;
|
||||
width: 100%;
|
||||
position: relative;
|
||||
|
||||
.righttext {
|
||||
position: absolute;
|
||||
right: 20rpx;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
font-size: 34rpx;
|
||||
color: #EA706A;
|
||||
}
|
||||
|
||||
.text {
|
||||
font-size: 34rpx;
|
||||
line-height: 100rpx;
|
||||
padding-left: 18rpx;
|
||||
}
|
||||
|
||||
image {
|
||||
margin: 50rpx 0 0 35rpx;
|
||||
transform: translateY(-50%);
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 50rpx;
|
||||
font-size: 30rpx;
|
||||
|
||||
.item {
|
||||
line-height: 60rpx;
|
||||
}
|
||||
|
||||
.time {
|
||||
line-height: 90rpx;
|
||||
}
|
||||
|
||||
.address {
|
||||
position: relative;
|
||||
line-height: 45rpx;
|
||||
|
||||
.text {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.daohang {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
right: 10rpx;
|
||||
display: inline-block;
|
||||
width: 100rpx;
|
||||
}
|
||||
|
||||
.p {
|
||||
padding-left: 30rpx;
|
||||
font-size: 24rpx;
|
||||
color: #EA706A;
|
||||
}
|
||||
|
||||
image {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0rpx;
|
||||
transform: translateY(-40%);
|
||||
width: 25rpx;
|
||||
height: 25rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.pictures {
|
||||
width: 96%;
|
||||
margin: 15rpx auto;
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||||
border-radius: 5rpx;
|
||||
|
||||
.picture {
|
||||
width: 100%;
|
||||
height: 630rpx;
|
||||
|
||||
.attendantImg {
|
||||
color: #000000;
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
margin-left: 30rpx;
|
||||
|
||||
span {
|
||||
color: #BAB7B8;
|
||||
}
|
||||
}
|
||||
|
||||
.uppicture {
|
||||
border: 1rpx dashed #818181;
|
||||
width: 90%;
|
||||
height: 500rpx;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
|
||||
image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.choice {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
::v-deep .u-list-item[data-v-49deb6f2] {
|
||||
background: #FFFFFF;
|
||||
}
|
||||
|
||||
span {
|
||||
font-size: 35rpx;
|
||||
color: #969394;
|
||||
}
|
||||
}
|
||||
|
||||
.user {
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
color: #969394;
|
||||
margin-left: 30rpx;
|
||||
|
||||
image {
|
||||
width: 34rpx;
|
||||
height: 34rpx;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.receive {
|
||||
height: 88rpx;
|
||||
line-height: 88rpx;
|
||||
color: #969394;
|
||||
margin-left: 30rpx;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.submit {
|
||||
width: 496rpx;
|
||||
height: 58rpx;
|
||||
background: #4271B9;
|
||||
border-radius: 5rpx;
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
line-height: 58rpx;
|
||||
background: #4C7BC9;
|
||||
margin: 90rpx auto;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -24,12 +24,12 @@
|
||||
var that = this
|
||||
createMobileToken().then(res => {
|
||||
uni.setStorageSync("token", res.data.token)
|
||||
setTimeout(() => {
|
||||
uni.reLaunch({
|
||||
url: '/pages/homepage/homepage',
|
||||
})
|
||||
}, 1000);
|
||||
})
|
||||
setTimeout(() => {
|
||||
uni.reLaunch({
|
||||
url: '/pages/homepage/homepage',
|
||||
})
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
BIN
static/upload.png
Normal file
BIN
static/upload.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 590 B |
BIN
static/ziliao.png
Normal file
BIN
static/ziliao.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 977 B |
Loading…
Reference in New Issue
Block a user