From 274e574e4dce8559eb9177c56ef528e09af9195c Mon Sep 17 00:00:00 2001 From: jiangyouyao <jiangyouyao> Date: Tue, 29 Mar 2022 15:26:07 +0800 Subject: [PATCH] fix:修复vue花括号闪现问题 --- zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/orderXq-form.html | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/orderXq-form.html b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/orderXq-form.html index 5ace9ce..f496dba 100644 --- a/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/orderXq-form.html +++ b/zq-erp/src/main/resources/templates/views/admin/hive/beautySalon/orderXq-form.html @@ -212,8 +212,10 @@ label="单价"> </el-table-column> <el-table-column - prop="count" label="可退数量"> + <template slot-scope="scope"> + {{scope.row.count- scope.row.refundCount}} + </template> </el-table-column> <el-table-column label="退款单价"> <template slot-scope="scope"> @@ -419,6 +421,10 @@ <el-table-column prop="payMethod" label="支付方式"> + </el-table-column> + <el-table-column + prop="cardName" + label="储值卡名称"> </el-table-column> <el-table-column prop="flowNo" @@ -679,7 +685,7 @@ } } - item.achaeveList = achieveList; + item.achieveList = achieveList; } if (item.returnStore) { item.isReturnStore = 'Y'; -- Gitblit v1.9.1