部分bug

This commit is contained in:
夜良king
2022-02-17 10:43:46 +08:00
parent 81297db7a8
commit f9d09365ea
8 changed files with 36 additions and 20 deletions

View File

@@ -598,10 +598,10 @@ export default {
},
{
title: "小计",
key: "flowPrice",
key: "subTotal",
minWidth: 100,
render: (h, params) => {
return h("div", this.$options.filters.unitPrice(params.row.flowPrice, "¥"));
return h("div", this.$options.filters.unitPrice(params.row.subTotal, "¥"));
},
},
],
@@ -674,7 +674,8 @@ export default {
},
modifyPrice() {
//默认要修改的金额为订单总金额
this.modifyPriceForm.price = this.orderInfo.order.flowPrice;
this.modifyPriceForm.price = this.orderInfo.order.subTotal;
console.log(this.modifyPriceForm.price)
this.modal = true;
},
//修改订单金额提交