切换至备用屏

This commit is contained in:
aixianling
2024-07-10 13:55:30 +08:00
parent d97108862a
commit 3ecd2daef4
3 changed files with 16 additions and 23 deletions

View File

@@ -9,7 +9,7 @@ export default {
{label: "重点单品", prop: "goodsCategoryName"},
{label: "销售额", prop: "saleNum", width: 70},
{label: "库存数量", prop: "stockNum", width: 70},
{label: "销售目标", prop: "targetSaleNum", width:70},
{label: "销售目标", prop: "targetSaleNum", width: 70},
{label: "销售达成", prop: "saleAchieveRate"},
]
}
@@ -32,7 +32,7 @@ export default {
getTableData() {
const {$http, $waitFor} = window
$waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/marketKeyGoods", {
// ...this.search, limit: 999
...this.search, limit: 999
})).then(res => {
if (res?.data) {
this.tableData = res.data?.records || []
@@ -40,9 +40,9 @@ export default {
})
}
},
watch:{
watch: {
search: {
immediate:true,deep:true,handler(){
immediate: true, deep: true, handler() {
this.getTableData()
}
}
@@ -52,7 +52,7 @@ export default {
<template>
<section class="AppKeyGoods">
<dv-scroll-board :config="tableConfig" @click=""/>
<dv-scroll-board :config="tableConfig"/>
</section>
</template>