需求变更-4:字段重新对

This commit is contained in:
aixianling
2024-10-22 16:46:01 +08:00
parent 1c8a98eacd
commit 106ef3032c

View File

@@ -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;
}