重点单品 课区运营监控完成

This commit is contained in:
2024-06-29 13:41:43 +08:00
parent fda8e1e999
commit 9d33394619
2 changed files with 124 additions and 6 deletions

View File

@@ -6,11 +6,11 @@ export default {
return {
tableData: [],
columns: [
{label: "重点单品", prop: "name"},
{label: "销售额", prop: "targetNum", width: "70px"},
{label: "库存数量", prop: "saleNum", width: "70px"},
{label: "销售目标", prop: "stockNum", width: "70px"},
{label: "销售达成", prop: "preSaleNum"},
{label: "重点单品", prop: "goodsCategoryName"},
{label: "销售额", prop: "saleNum", width: "70px"},
{label: "库存数量", prop: "stockNum", width: "70px"},
{label: "销售目标", prop: "targetSaleNum", width: "70px"},
{label: "销售达成", prop: "saleAchieveRate"},
]
}
},
@@ -37,7 +37,7 @@ export default {
<template>
<section class="AppKeyGoods">
<el-table :data="tableData" size="mini" header-cell-class-name="tableHeader" cell-class-name="tableCell" max-height="440px" show-summary stripe>
<el-table :data="tableData" size="mini" header-cell-class-name="tableHeader" cell-class-name="tableCell" max-height="440px" stripe>
<table-column v-for="(column,i) in columns" :key="i" :column="column"/>
</el-table>
</section>