Commit 21e3a840 authored by 盖献康's avatar 盖献康

bug(66387) - 检查管理金额的元

parent ecf4fa06
...@@ -206,8 +206,8 @@ ...@@ -206,8 +206,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col v-show="subscribeMessage.checkType === '2'" :span="8"> <el-col v-show="subscribeMessage.checkType === '2'" :span="8">
<el-form-item label="支出账户余额" label-width="96px"> <el-form-item label="预储值余额" label-width="96px">
<span>{{ '¥' + moneyFormat(currentHospital.currentBalance) }}</span> <span>{{ moneyFormat(currentHospital.currentBalance) + ' 元' }}</span>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -411,7 +411,7 @@ export default { ...@@ -411,7 +411,7 @@ export default {
this.total = res.total this.total = res.total
if (this.subscribeMessage.checkType === '2' && this.deviceList.length > 0) { if (this.subscribeMessage.checkType === '2' && this.deviceList.length > 0) {
this.deviceList.forEach(item => { this.deviceList.forEach(item => {
item['price'] = '¥' + this.subscribeMessage.payAmount item['price'] = this.subscribeMessage.payAmount + ' 元'
}) })
} }
console.log('列表', this.deviceList) console.log('列表', this.deviceList)
......
...@@ -305,8 +305,8 @@ ...@@ -305,8 +305,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col v-show="currentCheckType === '2'" :span="6"> <el-col v-show="currentCheckType === '2'" :span="6">
<el-form-item label="支出账户余额" prop="shadowReport" label-width="120"> <el-form-item label="预储值余额" prop="shadowReport" label-width="120">
<span v-if="currentHospital !== undefined && currentHospital !== null">{{ '¥' + moneyFormat(currentHospital.currentBalance || 0) }}</span> <span v-if="currentHospital !== undefined && currentHospital !== null">{{ moneyFormat(currentHospital.currentBalance || 0.00) + ' 元' }}</span>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -766,7 +766,7 @@ export default { ...@@ -766,7 +766,7 @@ export default {
this.deviceTotal = res.total this.deviceTotal = res.total
if (this.currentCheckType === '2' && this.deviceList.length > 0) { if (this.currentCheckType === '2' && this.deviceList.length > 0) {
this.deviceList.forEach(item => { 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