Commit a1188f3b authored by 盖献康's avatar 盖献康

去除¥

parent 4fb29a90
...@@ -429,7 +429,7 @@ export default { ...@@ -429,7 +429,7 @@ export default {
if (price === null) { if (price === null) {
return null return null
} else { } else {
return '¥' + price.toFixed(2) return price.toFixed(2)
} }
}, },
// 点击 预约信息-立即预约 // 点击 预约信息-立即预约
......
...@@ -341,7 +341,7 @@ export default { ...@@ -341,7 +341,7 @@ export default {
checkMessage.checkEndTime = row.checkDate + ' ' + checkTimeList[1] checkMessage.checkEndTime = row.checkDate + ' ' + checkTimeList[1]
checkMessage.checkSchedule = '2' // 把进度改为预约检查 checkMessage.checkSchedule = '2' // 把进度改为预约检查
checkMessage.devicePrice = this.currentPayAmount checkMessage.devicePrice = this.currentPayAmount
console.log('需要修改的对象', checkMessage) console.log('需要修改的对象-', checkMessage)
const list = [] const list = []
list.push(checkMessage) list.push(checkMessage)
updateCheck(list).then(res => { updateCheck(list).then(res => {
...@@ -360,7 +360,7 @@ export default { ...@@ -360,7 +360,7 @@ export default {
if (price === null) { if (price === null) {
return null return null
} else { } else {
return '¥' + price.toFixed(2) return price.toFixed(2)
} }
}, },
getList() {}, getList() {},
......
...@@ -449,7 +449,7 @@ export default { ...@@ -449,7 +449,7 @@ export default {
if (price === null) { if (price === null) {
return null return null
} else { } else {
return '¥' + price.toFixed(2) return price.toFixed(2)
} }
}, },
/** 表单选择框对齐 */ /** 表单选择框对齐 */
......
...@@ -477,7 +477,7 @@ export default { ...@@ -477,7 +477,7 @@ export default {
if (price === null) { if (price === null) {
return '-' return '-'
} else { } else {
return '¥' + price.toFixed(2) return price.toFixed(2)
} }
}, },
/** 上传报告对话框取消 */ /** 上传报告对话框取消 */
......
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