This commit is contained in:
2024-05-30 08:59:03 +08:00
parent 393de6531c
commit bbdd2c8612
20 changed files with 43 additions and 47 deletions

View File

@ -72,4 +72,4 @@ export function wxsportaddV1(identity, date, steps) {
region: uni.getStorageSync('region'), region: uni.getStorageSync('region'),
}, },
}) })
} }

View File

@ -27,4 +27,4 @@ export function isRegistered(logincode,phonecode) {
url: `/applet/register/login/${logincode}/${phonecode}`, url: `/applet/register/login/${logincode}/${phonecode}`,
method: 'GET' method: 'GET'
}) })
} }

View File

@ -68,4 +68,4 @@ export function editPrimaryAccountFlag(data) {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token') Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
}, },
}) })
} }

View File

@ -7,4 +7,4 @@ export function pushMeg(data) {
method: 'get', method: 'get',
data data
}) })
} }

View File

@ -9,10 +9,4 @@ export function getOrderList(patientId,identity,pageNum,pageSize) {
region: uni.getStorageSync('region'), region: uni.getStorageSync('region'),
} }
}) })
} }
// export function inviteFriends(patientId) {
// return request({
// url: `/nurseApplet/patientInfo/inviteFriends?inviteId=${patientId}`,
// method: 'post'
// })
// }

View File

@ -26,4 +26,4 @@ export function markRead(data) {
method: 'PUT', method: 'PUT',
data: data data: data
}) })
} }

View File

@ -472,4 +472,4 @@
<style lang="scss"> <style lang="scss">
@import "./homepage.scss"; @import "./homepage.scss";
</style> </style>

View File

@ -857,4 +857,4 @@
<style lang="scss"> <style lang="scss">
@import "./CommodityDetailsstyle.scss"; @import "./CommodityDetailsstyle.scss";
</style> </style>

View File

@ -379,4 +379,4 @@
<style lang="scss"> <style lang="scss">
@import "./CommodityOrder.scss"; @import "./CommodityOrder.scss";
</style> </style>

View File

@ -126,11 +126,14 @@
} }
this.itemlistleft = res.data this.itemlistleft = res.data
this.itemlistleft && this.itemlistleft.length > 0 ? this.itemlistleft[0].open = true : '' this.itemlistleft && this.itemlistleft.length > 0 ? this.itemlistleft[0].open = true : ''
res.data && res.data[0].list.length > 0 ? this.recordCode = res.data[0].list[0] if (res.data && res.data[0].list.length > 0) {
.recordCode : '' this.recordCode = res.data[0].list[0].recordCode
this.dataies({ this.dataies({
recordCode: this.recordCode recordCode: this.recordCode
}); });
} else {
this.show = false
}
}) })
} }
}, },

View File

@ -485,4 +485,4 @@
</script> </script>
<style lang="scss"> <style lang="scss">
@import './appointmenttime.scss' @import './appointmenttime.scss'
</style> </style>

View File

@ -481,4 +481,4 @@
<style lang="scss"> <style lang="scss">
@import './confirmation.scss'; @import './confirmation.scss';
</style> </style>

View File

@ -140,7 +140,7 @@
</view> </view>
<!-- <view class="amount"> <!-- <view class="amount">
<span>预约日期</span><span>{{list.appointmentDate}}</span> <span>预约日期</span><span>{{list.appointmentDate}}</span>
</view> --> </view> -->
<!-- <view class="doctordetailstwo"> <!-- <view class="doctordetailstwo">
<view class="doctorphonetwo"> <view class="doctorphonetwo">
@ -212,7 +212,7 @@
evaluateshow: false, evaluateshow: false,
orderTypeList: { orderTypeList: {
orderNo:'', orderNo:'',
}, },
order: [], order: [],
@ -226,7 +226,7 @@
// this.orderTypeList.goodsOrderId = this.list.goodsOrderId // this.orderTypeList.goodsOrderId = this.list.goodsOrderId
this.orderTypeList.orderNo = this.list.goOrderNo this.orderTypeList.orderNo = this.list.goOrderNo
// goOrderNo // goOrderNo
// } // }

View File

@ -261,4 +261,4 @@
<style lang="scss"> <style lang="scss">
@import './mysigning.scss'; @import './mysigning.scss';
</style> </style>

View File

@ -164,10 +164,10 @@
// //
orderType: '', orderType: '',
orderStatus: '', orderStatus: '',
orderTypeList: [ orderTypeList: [
], ],
// orderStatus: '', // orderStatus: '',
pageSize: 15, pageSize: 15,
@ -317,18 +317,18 @@
}, },
onLoad(options) { onLoad(options) {
//2 1 //2 1
if(options.delta=='2'){ if (options.delta == '2') {
this.orderTypeList={ this.orderTypeList = {
goodsOrderId: null, goodsOrderId: null,
patientId: '', patientId: '',
openid: null, openid: null,
// //
orderType: 'HEALTH_CONSULTATION', orderType: 'HEALTH_CONSULTATION',
orderStatus: 'WAIT_PAY', orderStatus: 'WAIT_PAY',
// orderTypeList: [ // orderTypeList: [
// 'INTEGRAL_EXCHANGE',// // 'INTEGRAL_EXCHANGE',//
// 'DIRECT_BUY', // 'DIRECT_BUY',
// ], // ],
// orderStatus: '', // orderStatus: '',
@ -336,20 +336,20 @@
pageNum: 1, pageNum: 1,
goodsName: '', goodsName: '',
} }
}else if(options.delta=='1'){ } else if (options.delta == '1') {
this.orderTypeList={ this.orderTypeList = {
goodsOrderId: null, goodsOrderId: null,
patientId: '', patientId: '',
openid: null, openid: null,
// //
// orderType: 'HEALTH_CONSULTATION', // orderType: 'HEALTH_CONSULTATION',
// orderStatus: 'WAIT_PAY', // orderStatus: 'WAIT_PAY',
orderTypeList: [ orderTypeList: [
'INTEGRAL_EXCHANGE',// 'INTEGRAL_EXCHANGE', //
'DIRECT_BUY', 'DIRECT_BUY',
], ],
// orderStatus: '', // orderStatus: '',
@ -357,7 +357,7 @@
pageNum: 1, pageNum: 1,
goodsName: '', goodsName: '',
} }
} }
this.baseurl = baseurl this.baseurl = baseurl
this.orderTypeList.goodsOrderId = options.goodsOrderId this.orderTypeList.goodsOrderId = options.goodsOrderId

View File

@ -553,4 +553,4 @@
/deep/.u-button__text { /deep/.u-button__text {
font-size: 34rpx !important; font-size: 34rpx !important;
} }
</style> </style>

View File

@ -701,4 +701,4 @@
</script> </script>
<style lang="scss"> <style lang="scss">
@import "./Onlinesigning.scss"; @import "./Onlinesigning.scss";
</style> </style>

View File

@ -99,7 +99,6 @@
this.listitem.identity = this.userinfo.cardNo this.listitem.identity = this.userinfo.cardNo
this.listitem.applyStartTime = this.datetimerange[0] this.listitem.applyStartTime = this.datetimerange[0]
this.listitem.applyEndTime = this.datetimerange[1] this.listitem.applyEndTime = this.datetimerange[1]
console.log(this.listitem, '555')
if (!this.listitem.applyStartTime && !this.listitem.applyEndTime) { if (!this.listitem.applyStartTime && !this.listitem.applyEndTime) {
this.$refs.uToast.show({ this.$refs.uToast.show({
title: '请选择预约时间', title: '请选择预约时间',

View File

@ -953,4 +953,4 @@
bottom: 38rpx; bottom: 38rpx;
} }
} }
</style> </style>

View File

@ -198,4 +198,4 @@
} }
} }
} }
</style> </style>