Commit 77808db1 authored by 盖献康's avatar 盖献康

parent 6686c326
......@@ -303,7 +303,7 @@ export default {
getManage(id).then(response => {
this.subscribeMessage = response.data
console.log('立即预约页面', this.subscribeMessage)
// this.subscribeMessage.payAmount = this.keepTwoDecimals(this.subscribeMessage.payAmount)
this.subscribeMessage.payAmount = this.keepTwoDecimals(this.subscribeMessage.payAmount)
// 时间
this.deviceQueryParams.reservationTime = parseTime(new Date(), '{y}-{m}-{d}')
// 服务类型(医院自有、外部服务)
......@@ -380,7 +380,7 @@ export default {
this.total = res.total
if (this.subscribeMessage.checkType === '2' && this.deviceList.length > 0) {
this.deviceList.forEach(item => {
item['price'] = this.keepTwoDecimals(this.subscribeMessage.payAmount)
item['price'] = '¥' + this.subscribeMessage.payAmount
})
}
console.log('列表', this.deviceList)
......
......@@ -650,7 +650,7 @@ export default {
this.deviceTotal = res.total
if (this.currentCheckType === '2' && this.deviceList.length > 0) {
this.deviceList.forEach(item => {
item['price'] = this.keepTwoDecimals(this.currentPayAmount)
item['price'] = '¥' + this.keepTwoDecimals(this.currentPayAmount)
})
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment