Files
kengee-data-screen/src/views/AppHourSale.vue

114 lines
3.4 KiB
Vue
Raw Normal View History

2024-06-30 15:04:47 +08:00
<script>
export default {
name: "AppHourSale",
label: "市场看板-全门店时段销售",
data() {
return {
2024-07-05 17:36:16 +08:00
summary: {},
2024-06-30 15:04:47 +08:00
tableData: []
}
},
computed: {
search: v => v.$marketBoard.search,
2024-07-05 17:36:16 +08:00
columns: () => {
return [
{label: "时段", width: 100, prop: "hour"},
{label: "销售额", prop: "compareSaleAmt", align: 'center'},
{label: "有效订单数", prop: "compareValidOrderNum", align: 'center'},
{label: "销售额", prop: "currentSaleAmt", align: 'center'},
{label: "有效订单数", prop: "currentValidOrderNum", align: 'center'},
{label: "销售增长率", width: 80, align: 'center', prop: "saleGrowthRate"},
]
},
tableConfig: v => {
return {
headerBGC: 'rgba(13, 48, 99, 0.6)',
oddRowBGC: window.evenRowBGC(), evenRowBGC: "transparent",
header: v.columns.map(e => e.label), rowNum: 16,
columnWidth: v.columns.map(e => e.width || "0;flex:1;min-width:0;"),
align: v.columns.map(e => e.align || "left"),
data: v.tableData.map(e => v.columns.map(column => e[column.prop])),
}
},
summaryRow: v => v.columns.map((column, i) => {
const isNumber = v => /^-?\d+(\.\d+)?%?$/.test(v)
const style = {textAlign: column.align}
if (column.width > 0) {
style.width = `${column.width}px`
} else {
style.flex = 1
style.minWidth = 0
}
return {
style,
value: isNumber(v.summary[column.prop]) ? v.summary[column.prop] :
i == 0 ? v.summary.hour : ""
}
}),
specialRow: v => {
2024-06-30 15:04:47 +08:00
let {currentDate, compareDate} = v.search
const {dayjs} = window
currentDate = currentDate ? dayjs(currentDate).format("YYYY-MM-DD") : ""
compareDate = compareDate ? dayjs(compareDate).format("YYYY-MM-DD") : ""
return [
2024-07-05 17:36:16 +08:00
{value: "日期", width: 100},
{value: compareDate, align: 'center'},
{value: currentDate, align: 'center'},
{width: 80},
].map(column => {
const style = {textAlign: column.align}
if (column.width > 0) {
style.width = `${column.width}px`
} else {
style.flex = 1
style.minWidth = 0
}
return {style, value: column.value}
})
2024-06-30 15:04:47 +08:00
}
},
methods: {
getTableData() {
const {$http, $waitFor} = window
$waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/hourSale", {
...this.search, limit: 999
})).then(res => {
if (res?.data) {
2024-07-05 17:36:16 +08:00
this.summary = res.data.total
this.tableData = res.data?.page?.records?.map(e => ({...e, hour: `${`${e.hour - 1}`.padStart(2, '0')}:00-${e.hour.padStart(2, '0')}:00`})) || []
2024-06-30 15:04:47 +08:00
}
})
}
},
watch: {
search: {
immediate: true, deep: true, handler() {
this.getTableData()
}
}
}
}
</script>
<template>
<section class="AppHourSale">
2024-07-05 17:36:16 +08:00
<div class="tableHead flex">
<div class="item" v-for="(col,i) in specialRow" :key="i" v-text="col.value" :style="col.style"/>
</div>
<dv-scroll-board :config="tableConfig"/>
<div class="summary flex">
<div class="item" v-for="(col,i) in summaryRow" :key="i" v-text="col.value" :style="col.style"/>
</div>
2024-06-30 15:04:47 +08:00
</section>
</template>
<style>
.AppHourSale {
color: #fff;
box-sizing: border-box;
}
2024-07-05 17:36:16 +08:00
.AppHourSale .dv-scroll-board {
height: calc(100% - 60px);
2024-06-30 15:04:47 +08:00
}
</style>