@@ -113,11 +113,11 @@
- {{ orderStatistics.wechat || 0 }}/{{ orderStatistics.alipay || 0 }}
+ {{ orderStatistics.UNIONPAY || 0 }}
-
云闪付/pos刷卡(元)
+
银联二维码(元)
@@ -169,16 +169,16 @@
-
+
+
+
+
+
+
{{ getRealName(staffList, scope.row.staffId) }}
-
-
- {{ parseTime(scope.row.payTime) }}
-
-
{{ parseTime(scope.row.payTime) }}
diff --git a/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue b/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
index a4a7e04da..d07d82190 100644
--- a/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
+++ b/fuintCashierWeb/src/views/cashier/orderComponents/order_Oil.vue
@@ -151,11 +151,11 @@
- {{ orderStatistics.wechat || 0 }}/{{ orderStatistics.alipay || 0 }}
+ {{ orderStatistics.UNIONPAY || 0 }}
-
云闪付/pos刷卡(元)
+
银联二维码(元)
@@ -231,8 +231,12 @@
{{ scope.row.remark || "--" }}
-
-
+
+
+
+ {{ getRealName(staffList, scope.row.staffId) }}
+
+
{{ scope.row.payTime ? parseTime(scope.row.payTime) : "--" }}
@@ -753,7 +757,16 @@ export default {
this.getList();
},
-
+ // 获取员工姓名
+ getRealName(list, id) {
+ var name = "";
+ list.forEach(item => {
+ if (item.id == id) {
+ name = item.realName;
+ }
+ })
+ return name;
+ },
// 获取优惠券信息
getInfoById() {