重点单品 课区运营监控完成
This commit is contained in:
118
src/views/AppGroupMonitorTable.vue
Normal file
118
src/views/AppGroupMonitorTable.vue
Normal file
@@ -0,0 +1,118 @@
|
||||
<script>
|
||||
export default {
|
||||
name: "AppGroupMonitorTable",
|
||||
label: "市场看板-课区运营监控表",
|
||||
data() {
|
||||
return {
|
||||
tableData: [],
|
||||
columns: [
|
||||
{label: "课区", prop: "groupName",width:50,align:'center'},
|
||||
{label: "课长", prop: "supervisorName",width:50,align:'center'},
|
||||
{label: "销售额", prop: "saleAmt",width:60},
|
||||
{label: "外卖销售额", prop: "deliverySaleAmt",width:60},
|
||||
{label: "有效订单数", prop: "validOrderNum",width:60},
|
||||
{label: "客单价", prop: "customerUnitPrice",width:58},
|
||||
{label: "蛋糕销售额", prop: "cakeSaleAmt",width:60},
|
||||
{label: "西点销售额", prop: "westSaleAmt",width:60},
|
||||
{label: "现烤销售额", prop: "bakeSaleAmt",width:60},
|
||||
{label: "现烤损货比", prop: "lossAmtRate",width:60},
|
||||
{label: "环比(目标完成比)",prop: "targetRate"},
|
||||
]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
search: v => v.$marketBoard.search
|
||||
},
|
||||
methods: {
|
||||
getTableData() {
|
||||
const {$http, $waitFor} = window
|
||||
$waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/groupMonitor", {
|
||||
...this.search, limit: 999
|
||||
})).then(res => {
|
||||
if (res?.data) {
|
||||
this.tableData = res.data?.page?.records || []
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getTableData()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="AppGroupMonitorTable">
|
||||
<el-table :data="tableData" size="mini" header-cell-class-name="tableHeader" cell-class-name="tableCell" max-height="440px" show-summary stripe>
|
||||
<table-column v-for="(column,i) in columns" :key="i" :column="column"/>
|
||||
</el-table>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.AppGroupMonitorTable {
|
||||
color: #fff;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .tableHeader {
|
||||
background: rgba(13, 48, 99, 0.6) !important;
|
||||
color: #fff;
|
||||
border-color: transparent !important;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table tr {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table {
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table .el-table__footer-wrapper tr {
|
||||
background: linear-gradient(90deg, rgba(1, 196, 236, 0.5) 0%, rgba(1, 196, 236, 0.01) 100%);
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table .el-table__footer-wrapper .is-leaf {
|
||||
color: #66FFFF;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table:before {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .tableCell {
|
||||
color: #fff;
|
||||
border-color: transparent !important;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table tr.el-table__row--striped {
|
||||
--odd-bg: #09265B;
|
||||
background-color: #081F48;
|
||||
background-image: linear-gradient(
|
||||
-45deg, var(--odd-bg) 0, var(--odd-bg) 10%, transparent 10%, transparent 50%,
|
||||
var(--odd-bg) 50%, var(--odd-bg) 60%, transparent 60%, transparent);
|
||||
background-size: 10px 10px;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table tr.el-table__row--striped .tableCell {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .el-table tr:hover > .tableCell {
|
||||
background-color: rgba(255, 255, 255, .1) !important;
|
||||
}
|
||||
|
||||
.AppGroupMonitorTable .subTitle {
|
||||
line-height: 20px;
|
||||
width: fit-content;
|
||||
margin: 24px auto 12px;
|
||||
background-image: url("http://10.0.97.209/img/kengee/kengee5.png");
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 2px;
|
||||
background-position: center bottom;
|
||||
}
|
||||
</style>
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user