From 106ef3032c0aa973a88ecb2d214814af54cfbddf Mon Sep 17 00:00:00 2001 From: aixianling Date: Tue, 22 Oct 2024 16:46:01 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E5=8F=98=E6=9B=B4-4:?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E9=87=8D=E6=96=B0=E5=AF=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AppStoreMonitor.vue | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/views/AppStoreMonitor.vue b/src/views/AppStoreMonitor.vue index 62ca72f..173ffc4 100644 --- a/src/views/AppStoreMonitor.vue +++ b/src/views/AppStoreMonitor.vue @@ -8,15 +8,15 @@ export default { columns: [ {label: "课区", prop: "groupName"}, {label: "课长", prop: "supervisorName"}, - {label: "门店", prop: "storeName"}, - {label: "昨日门店净收货额", prop: "bakeNetAmt"}, - {label: "昨日现烤销售", prop: "bakeSaleAmt"}, - {label: "昨日现烤报损", prop: "bakeBsAmt"}, - {label: "门店现在现烤库存金额", prop: "bakeLyAmt"}, - {label: "现在现烤销售额", prop: "bakeXsSaleAmt"}, + {label: "门店", prop: "storeName", width: 100}, + {label: "昨日门店净收货额", prop: "yesterdayNetAmt"}, + {label: "昨日现烤销售", prop: "yesterdayBakeSaleAmt"}, + {label: "昨日现烤报损", prop: "yesterdayBakeBsAmt"}, + {label: "门店现在现烤库存金额", prop: "bakeStockAmt"}, + {label: "现在现烤销售额", prop: "bakeSaleAmt"}, ], filter: "", - options:[], + options: [], summary: {} } }, @@ -53,7 +53,7 @@ export default { getTableData() { const {$http, $waitFor} = window return $waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/storeMonitor", { - ...this.search, limit: 999,groupCodeList: [this.filter].filter(Boolean) + ...this.search, limit: 999, groupCodeList: [this.filter].filter(Boolean) })).then(res => { if (res?.data) { this.summary = res.data.total @@ -104,7 +104,7 @@ export default { width: 660px; } -.AppStoreMonitor .dv-scroll-board,.AppStoreMonitor .scrollTable{ +.AppStoreMonitor .dv-scroll-board, .AppStoreMonitor .scrollTable { height: calc(100% - 80px) !important; }