From 2c25c956ee0dc781500c70c7479c36f8b58f3445 Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Tue, 26 Jan 2021 15:48:36 +0800 Subject: [PATCH] 1、修改文章bug --- zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html index b596745..039e6be 100644 --- a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html +++ b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/order-form.html @@ -382,7 +382,7 @@ title="业绩设置" :visible.sync="drawer" :direction="direction" - size="50%" + size="90%" > <el-row> <el-col :span="24"> @@ -835,7 +835,7 @@ } item.count = 1; - if (this.staffUser) { + if (this.staffUser.suId) { //加入业绩 this.achieveList.push({ orderItem: item, @@ -899,7 +899,14 @@ item.payMoney = zkPrice * count; } _this.order.payMoney += parseFloat(item.payMoney); + + _this.achieveList.forEach(achieve=>{ + if(achieve.orderItem==item){ + achieve.achieveMoney=item.payMoney; + } + }) }); + //计算欠款 // _this.order.arrears = _this.order.zkTotal - _this.order.payMoney; // if (_this.order.arrears < 0) { -- Gitblit v1.9.1