ylong 7 месяцев назад
Родитель
Сommit
6684f09453
1 измененных файлов с 5 добавлено и 3 удалено
  1. 5 3
      src/views/statistic/recycleOrder/index.vue

+ 5 - 3
src/views/statistic/recycleOrder/index.vue

@@ -40,11 +40,12 @@
     { label: '仓库', prop: 'godownName', align: 'center' },
     { label: '回收订单数', prop: 'orderNum', align: 'center' },
     { label: '回收本数', prop: 'bookNum', align: 'center' },
+    { label: '订单预估金额', prop: 'recycleTotalMoney', align: 'center' },
     { label: '回收平均价格', prop: 'recycleAveragePrice', align: 'center' },
     { label: '审核订单数', prop: 'auditNum', align: 'center' },
-    { label: '审核本数', prop: 'auditGoodNum', align: 'center' },
+    { label: '审核本数', prop: 'auditGoodNum', align: 'center' },
     { label: '审核金额', prop: 'auditMoney', align: 'center' },
-    { label: '回收总预估价', prop: 'recycleTotalMoney', align: 'center' },
+    { label: '审核订单预估金额', prop: 'auditTotalMoney', align: 'center' },
     { label: '审核平均单本价', prop: 'auditAverageMoney', align: 'center' }
   ]);
 
@@ -108,7 +109,8 @@
           break;
         }
         case 'auditMoney':
-        case 'recycleTotalMoney': {
+        case 'recycleTotalMoney':
+        case 'auditTotalMoney': {
           // 求和,保留两位小数
           const sum = values.reduce((prev, curr) => {
             const value = Number(curr);