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

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

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

@ -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: '请选择预约时间',