一些bug修改

This commit is contained in:
mabo
2021-05-21 17:46:29 +08:00
parent ae730cacf3
commit 05d35c3974
26 changed files with 120 additions and 249 deletions

View File

@@ -68,7 +68,7 @@
</div>
<div class="card-item">
<div class="card-item-label">退单金额</div>
<div class="card-item-value">{{overViewList.refundOrderPrice || 0}}</div>
<div class="card-item-value">{{overViewList.refundOrderPrice || 0 | unitPrice('¥')}}</div>
</div>
</div>
@@ -333,9 +333,7 @@ export default {
key: "applyRefundPrice",
render: (h, params) => {
return h(
"div",
"" +
(params.row.applyRefundPrice ? params.row.applyRefundPrice : 0)
"div", this.$options.filters.unitPrice(params.row.applyRefundPrice, '¥')
);
},
},