Kaynağa Gözat

销售汇总

jiangn 1 yıl önce
ebeveyn
işleme
83a29f1ba5
2 değiştirilmiş dosya ile 7 ekleme ve 0 silme
  1. 4 0
      src/api/pages/report/detail-report.js
  2. 3 0
      src/mixins/index.js

+ 4 - 0
src/api/pages/report/detail-report.js

@@ -59,6 +59,10 @@ export default {
     getSaleProfitGroupBySku:'get_sale_profit_group_by_sku',
     // 经营概况
     getBusinessOverview:'get_business_overview',
+    // 销售汇总表
+    getOrderSummary:'get_order_summary',
+    // 销售汇总明细
+    getOrderSummaryItem:'get_order_summary_item',
   }
 }
 

+ 3 - 0
src/mixins/index.js

@@ -319,6 +319,9 @@ export const indexMixin = {
           if (!this.tableData && res.data && Array.isArray(res.data)) {
             this.tableData = res.data;
           }
+          if (!this.tableData && res.data && Array.isArray(res.data.detail)) {
+            this.tableData = res.data.detail;
+          }
           if (params.currentPage == 1) {
             this.pageInfo.total = res.data.total
             this.pageInfo.currentPage = 1;