Qukatie 2 سال پیش
والد
کامیت
14ee5fa24b

+ 2 - 2
src/views/statisticAnalysis/AmtAmount/index.vue

@@ -38,7 +38,7 @@ export default {
       form: {},
       search: {
         year: defaultDate4(),
-        status: "1"
+        status: "0"
       },
       dataList: [],
       loading: false,
@@ -220,7 +220,7 @@ export default {
           {
             label: "含未发货订单",
             prop: "status",
-            searchValue:"1",
+            searchValue:"0",
             overHidden: true,
             hide: true,
             showColumn: false,

+ 3 - 0
src/views/statisticAnalysis/customerProfit/index.vue

@@ -26,6 +26,9 @@
         <template slot="grossProfitRate" slot-scope="{ row, index }">
           <span>{{ Number(row.grossProfitRate ? row.grossProfitRate : 0).toFixed(2) }}</span>
         </template>
+        <template slot="purchaseAmount" slot-scope="{ row, index }">
+          <span>{{ Number(row.purchaseAmount ? row.purchaseAmount : 0).toFixed(2) }}</span>
+        </template>
       </avue-crud>
     </basic-container>
   </div>

+ 3 - 0
src/views/statisticAnalysis/salesmanProfit/index.vue

@@ -23,6 +23,9 @@
         <template slot="grossProfitRate" slot-scope="{ row, index }">
           <span>{{ Number(row.grossProfitRate ? row.grossProfitRate : 0).toFixed(2) }}</span>
         </template>
+        <template slot="purchaseAmount" slot-scope="{ row, index }">
+          <span>{{ Number(row.purchaseAmount ? row.purchaseAmount : 0).toFixed(2) }}</span>
+        </template>
       </avue-crud>
     </basic-container>
   </div>