需求变更-4:字段重新对
This commit is contained in:
@@ -8,15 +8,15 @@ export default {
|
|||||||
columns: [
|
columns: [
|
||||||
{label: "课区", prop: "groupName"},
|
{label: "课区", prop: "groupName"},
|
||||||
{label: "课长", prop: "supervisorName"},
|
{label: "课长", prop: "supervisorName"},
|
||||||
{label: "门店", prop: "storeName"},
|
{label: "门店", prop: "storeName", width: 100},
|
||||||
{label: "昨日门店净收货额", prop: "bakeNetAmt"},
|
{label: "昨日门店净收货额", prop: "yesterdayNetAmt"},
|
||||||
{label: "昨日现烤销售", prop: "bakeSaleAmt"},
|
{label: "昨日现烤销售", prop: "yesterdayBakeSaleAmt"},
|
||||||
{label: "昨日现烤报损", prop: "bakeBsAmt"},
|
{label: "昨日现烤报损", prop: "yesterdayBakeBsAmt"},
|
||||||
{label: "门店现在现烤库存金额", prop: "bakeLyAmt"},
|
{label: "门店现在现烤库存金额", prop: "bakeStockAmt"},
|
||||||
{label: "现在现烤销售额", prop: "bakeXsSaleAmt"},
|
{label: "现在现烤销售额", prop: "bakeSaleAmt"},
|
||||||
],
|
],
|
||||||
filter: "",
|
filter: "",
|
||||||
options:[],
|
options: [],
|
||||||
summary: {}
|
summary: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -53,7 +53,7 @@ export default {
|
|||||||
getTableData() {
|
getTableData() {
|
||||||
const {$http, $waitFor} = window
|
const {$http, $waitFor} = window
|
||||||
return $waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/storeMonitor", {
|
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 => {
|
})).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
this.summary = res.data.total
|
this.summary = res.data.total
|
||||||
@@ -104,7 +104,7 @@ export default {
|
|||||||
width: 660px;
|
width: 660px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.AppStoreMonitor .dv-scroll-board,.AppStoreMonitor .scrollTable{
|
.AppStoreMonitor .dv-scroll-board, .AppStoreMonitor .scrollTable {
|
||||||
height: calc(100% - 80px) !important;
|
height: calc(100% - 80px) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user