Merge remote-tracking branch 'origin/main'
# Conflicts: # src/views/AppMultipleStoreBoardFilter.vue
This commit is contained in:
@@ -249,3 +249,20 @@ a, .green {
|
|||||||
.AppSubTitle .el-select {
|
.AppSubTitle .el-select {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes flashOpacity {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; /* 完全不透明 */
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
opacity: 0; /* 完全透明 */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 应用动画到元素 */
|
||||||
|
.flash-opacity {
|
||||||
|
.cell > span {
|
||||||
|
animation: flashOpacity 1s infinite; /* 动画名称、持续时间、重复次数 */
|
||||||
|
color: red
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -66,18 +66,19 @@ window.evenRowBGC = (color = "#09265B") => `transparent;background-image: linear
|
|||||||
Vue.prototype.$marketBoard = Vue.observable({
|
Vue.prototype.$marketBoard = Vue.observable({
|
||||||
screenId: '5b1849ac-4fc3-451a-844c-3362b47341ef',
|
screenId: '5b1849ac-4fc3-451a-844c-3362b47341ef',
|
||||||
thirdGoods: {},
|
thirdGoods: {},
|
||||||
search: {"groupCodeList": [], "currentDate": "20240701", "compareDate": "20240630", "hourNum": "18"}
|
saleHour: undefined,
|
||||||
|
search: {"groupCodeList": [], "currentDate": "20240701", "compareDate": "20240630", "hourNum": "18", t: null}
|
||||||
})
|
})
|
||||||
Vue.prototype.$multipleStoreBoard = Vue.observable({
|
Vue.prototype.$multipleStoreBoard = Vue.observable({
|
||||||
carouselIndex: 0,
|
carouselIndex: 0,
|
||||||
search: {"groupCodeList": [], "hourNum": "", type: "1"}
|
search: {"groupCodeList": [], "hourNum": "", type: "1", t: null}
|
||||||
})
|
})
|
||||||
Vue.prototype.$storeBoard = Vue.observable({
|
Vue.prototype.$storeBoard = Vue.observable({
|
||||||
currentDate: "20240705",
|
currentDate: "20240705",
|
||||||
dialog: false,
|
dialog: false,
|
||||||
aroundStock: [],
|
aroundStock: [],
|
||||||
query: {},
|
query: {},
|
||||||
search: {}
|
search: {t: null}
|
||||||
})
|
})
|
||||||
Vue.component("HlsPlayer", {
|
Vue.component("HlsPlayer", {
|
||||||
render: (h) => h('div', {style: {width: '100%', height: '100%'}}),
|
render: (h) => h('div', {style: {width: '100%', height: '100%'}}),
|
||||||
@@ -134,6 +135,10 @@ Vue.component("scrollTable", {
|
|||||||
return h('el-table', {
|
return h('el-table', {
|
||||||
props: {
|
props: {
|
||||||
headerCellClassName: 'tableHeader', cellClassName: 'tableCell', stripe: !0, height: '100%',
|
headerCellClassName: 'tableHeader', cellClassName: 'tableCell', stripe: !0, height: '100%',
|
||||||
|
rowClassName({row}) {
|
||||||
|
const item = columns.find(e => e.flash == 1)
|
||||||
|
return item?.prop && row[item.prop] <= 0 ? 'flash-opacity' : ''
|
||||||
|
},
|
||||||
...config, data: tableData,
|
...config, data: tableData,
|
||||||
}, class: 'scrollTable',
|
}, class: 'scrollTable',
|
||||||
on: {
|
on: {
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export default {
|
|||||||
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
|
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
|
||||||
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
|
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
|
||||||
{label: "今日销售数量", prop: "saleNum", width: 70},
|
{label: "今日销售数量", prop: "saleNum", width: 70},
|
||||||
{label: "现在库存数量", prop: "stockNum", width: 70},
|
{label: "现在库存数量", prop: "stockNum", width: 70, flash: 1},
|
||||||
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
|
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
|
||||||
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
search: v => v.$marketBoard.search,
|
search: v => v.$marketBoard.search,
|
||||||
|
saleHour: v => v.$marketBoard.saleHour,
|
||||||
columns: v => {
|
columns: v => {
|
||||||
return [
|
return [
|
||||||
{label: '品类', prop: "categoryName", width: 100},
|
{label: '品类', prop: "categoryName", width: 100},
|
||||||
@@ -70,8 +71,9 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
getTableData() {
|
getTableData() {
|
||||||
const {$http, $waitFor} = window
|
const {$http, $waitFor} = window
|
||||||
|
const {saleHour: hourNum} = this
|
||||||
$waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/hourCount", {
|
$waitFor($http).then(() => $http.post("/data-boot/la/screen/marketBoard/hourCount", {
|
||||||
...this.search, limit: 999
|
...this.search, limit: 999, hourNum
|
||||||
})).then(res => {
|
})).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
this.tableData = res.data?.page?.records?.sort((a, b) => sort.indexOf(a.categoryId) - sort.indexOf(b.categoryId)) || []
|
this.tableData = res.data?.page?.records?.sort((a, b) => sort.indexOf(a.categoryId) - sort.indexOf(b.categoryId)) || []
|
||||||
@@ -85,6 +87,9 @@ export default {
|
|||||||
immediate: true, deep: true, handler() {
|
immediate: true, deep: true, handler() {
|
||||||
this.getTableData()
|
this.getTableData()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
saleHour() {
|
||||||
|
this.getTableData()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -97,6 +97,8 @@ export default {
|
|||||||
},
|
},
|
||||||
handleSta({hour}) {
|
handleSta({hour}) {
|
||||||
this.handleMouseout()
|
this.handleMouseout()
|
||||||
|
const hourNum = Number(hour?.substring(0, 2) || -2) + 1
|
||||||
|
this.$set(this.$marketBoard, 'saleHour', hourNum < this.search.hourNum ? hourNum : undefined)
|
||||||
const rowIndex = this.tableData.findIndex(e => e.hour == hour)
|
const rowIndex = this.tableData.findIndex(e => e.hour == hour)
|
||||||
const v = this
|
const v = this
|
||||||
const summary = {
|
const summary = {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ export default {
|
|||||||
columns: [
|
columns: [
|
||||||
{label: "重点单品", prop: "goodsName"},
|
{label: "重点单品", prop: "goodsName"},
|
||||||
{label: "销售数量", prop: "saleNum", width: 70},
|
{label: "销售数量", prop: "saleNum", width: 70},
|
||||||
{label: "库存数量", prop: "stockNum", width: 70},
|
{label: "库存数量", prop: "stockNum", width: 70, flash: 1},
|
||||||
{label: "销售目标", prop: "targetSaleNum", width: 70},
|
{label: "销售目标", prop: "targetSaleNum", width: 70},
|
||||||
{label: "销售达成", prop: "saleAchieveRate"},
|
{label: "销售达成", prop: "saleAchieveRate"},
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -16,17 +16,18 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
search: {
|
search: {
|
||||||
deep: true, handler() {
|
deep: true, handler() {
|
||||||
this.getData().then(() => this.refreshData())
|
this.getData().then(() => this.refreshData("watch search"))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
thirdGoods: {
|
thirdGoods: {
|
||||||
deep: true, handler() {
|
deep: true, handler() {
|
||||||
this.getData().then(() => this.refreshData())
|
this.getData().then(() => this.refreshData("watch thirdGoods"))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
loadLib() {
|
loadLib() {
|
||||||
|
const {$loadScript} = window
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
'/presource/datascreen/js/turf.min.js',
|
'/presource/datascreen/js/turf.min.js',
|
||||||
].map(e => $loadScript('js', e)))
|
].map(e => $loadScript('js', e)))
|
||||||
@@ -63,7 +64,7 @@ export default {
|
|||||||
return this.geoJson = {type: 'FeatureCollection', features: maps.flat(1)}
|
return this.geoJson = {type: 'FeatureCollection', features: maps.flat(1)}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
async initMap() {
|
initMap() {
|
||||||
const {echarts, turf, $waitFor} = window
|
const {echarts, turf, $waitFor} = window
|
||||||
const boundary = turf.union(this.geoJson)
|
const boundary = turf.union(this.geoJson)
|
||||||
boundary.properties.name = "boundary"
|
boundary.properties.name = "boundary"
|
||||||
@@ -71,6 +72,7 @@ export default {
|
|||||||
echarts.registerMap('zhengzhou', this.geoJson)
|
echarts.registerMap('zhengzhou', this.geoJson)
|
||||||
$waitFor(this.$el).then(() => {
|
$waitFor(this.$el).then(() => {
|
||||||
this.map = echarts.init(this.$el)
|
this.map = echarts.init(this.$el)
|
||||||
|
if (!this.map) return setTimeout(() => this.initMap(), 500)
|
||||||
const areaColor = {
|
const areaColor = {
|
||||||
type: 'linear', x: 0, y: 0, x2: 0, y2: 1, colorStops: [
|
type: 'linear', x: 0, y: 0, x2: 0, y2: 1, colorStops: [
|
||||||
{offset: 0, color: 'rgba(61,127,255,0.35)'},
|
{offset: 0, color: 'rgba(61,127,255,0.35)'},
|
||||||
@@ -119,7 +121,7 @@ export default {
|
|||||||
this.$marketBoard.screenId = 'a90522ef-869b-40ea-8542-d1fc9674a1e8'
|
this.$marketBoard.screenId = 'a90522ef-869b-40ea-8542-d1fc9674a1e8'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
this.refreshData()
|
this.refreshData("initMap")
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
convertData(layers) {
|
convertData(layers) {
|
||||||
@@ -135,16 +137,16 @@ export default {
|
|||||||
})
|
})
|
||||||
return Object.values(result).map(data => ({data}))
|
return Object.values(result).map(data => ({data}))
|
||||||
},
|
},
|
||||||
refreshData() {
|
refreshData(from) {
|
||||||
|
console.log("refreshData调用位置:", from)
|
||||||
const {thirdGoods: {goodsName}} = this
|
const {thirdGoods: {goodsName}} = this
|
||||||
const title = {left: 20, top: 20, text: goodsName ? `{sub|选择产品:}${goodsName}` : '', textStyle: {color: "#fff", rich: {sub: {color: "#fff", fontSize: 16}}}}
|
const title = {left: 20, top: 20, text: goodsName ? `{sub|选择产品:}${goodsName}` : '', textStyle: {color: "#fff", rich: {sub: {color: "#fff", fontSize: 16}}}}
|
||||||
this.map.setOption({title, series: this.convertData(this.layers)})
|
if (!this.map) return this.initMap()
|
||||||
|
this.map?.setOption({title, series: this.convertData(this.layers)})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.loadLib().then(() => Promise.all([
|
this.loadLib().then(() => this.getData()).then(() => this.initMap())
|
||||||
this.getData(),
|
|
||||||
])).then(() => this.initMap())
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -24,6 +24,13 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
reset() {
|
||||||
|
$http.post("/data-boot/la/screen/multipleStoreBoard/move").then(res => {
|
||||||
|
if (res?.data) {
|
||||||
|
this.$message.success("已重置")
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
'form.interval'(v) {
|
'form.interval'(v) {
|
||||||
@@ -53,6 +60,9 @@ export default {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-form class="AppMultipleStoreBoardFilter flex" size="small" label-width="70px">
|
<el-form class="AppMultipleStoreBoardFilter flex" size="small" label-width="70px">
|
||||||
|
<el-form-item label-width="0">
|
||||||
|
<el-button @click="reset">一键归位</el-button>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="品类">
|
<el-form-item label="品类">
|
||||||
<el-select v-model="form.categoryId" @change="v=>$multipleStoreBoard.search.categoryId=v" clearable placeholder="全部">
|
<el-select v-model="form.categoryId" @change="v=>$multipleStoreBoard.search.categoryId=v" clearable placeholder="全部">
|
||||||
<el-option v-for="item in dicts.品类" :key="item.value" :label="item.label" :value="item.value"/>
|
<el-option v-for="item in dicts.品类" :key="item.value" :label="item.label" :value="item.value"/>
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
<script>
|
<script>
|
||||||
const screens = [
|
const screens = [
|
||||||
{id: '5b1849ac-4fc3-451a-844c-3362b47341ef', label: '市场看板', bg: 'http://10.0.97.209/img/kengee/kengee16.png'},
|
{id: '5b1849ac-4fc3-451a-844c-3362b47341ef', label: '市场看板', bg: 'http://10.0.97.209/img/kengee/kengee16.png', ob: '$marketBoard'},
|
||||||
{id: '7d26854c-769d-418b-9bae-5c1105e716a9', label: '多店监控', bg: 'http://10.0.97.209/img/kengee/kengee17.png'},
|
{id: '7d26854c-769d-418b-9bae-5c1105e716a9', label: '多店监控', bg: 'http://10.0.97.209/img/kengee/kengee17.png', ob: '$multipleStoreBoard'},
|
||||||
{id: 'a90522ef-869b-40ea-8542-d1fc9674a1e8', label: '单店监控', bg: 'http://10.0.97.209/img/kengee/kengee18.png'},
|
{id: 'a90522ef-869b-40ea-8542-d1fc9674a1e8', label: '单店监控', bg: 'http://10.0.97.209/img/kengee/kengee18.png', ob: '$storeBoard'},
|
||||||
]
|
]
|
||||||
export default {
|
export default {
|
||||||
name: "AppNavbar",
|
name: "AppNavbar",
|
||||||
label: "标题栏",
|
label: "标题栏",
|
||||||
data() {
|
data() {
|
||||||
return {screens}
|
return {screens, timer: null}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
groupId: v => v.$marketBoard.screenId,
|
groupId: v => v.$marketBoard.screenId,
|
||||||
@@ -26,6 +26,16 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.timer = setInterval(() => {
|
||||||
|
const screen = this.screens.find(e => e.id === this.groupId)
|
||||||
|
this.$set(this[screen.ob].search, 't', Date.now())
|
||||||
|
console.log(screen.ob, this[screen.ob].search.t)
|
||||||
|
}, 5000)
|
||||||
|
},
|
||||||
|
destroyed() {
|
||||||
|
this.timer && clearInterval(this.timer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ export default {
|
|||||||
{label: "重点单品", prop: "goodsName"},
|
{label: "重点单品", prop: "goodsName"},
|
||||||
{label: "当日目标", prop: "targetNum", width: 70},
|
{label: "当日目标", prop: "targetNum", width: 70},
|
||||||
{label: "销售数量", prop: "saleNum", width: 70},
|
{label: "销售数量", prop: "saleNum", width: 70},
|
||||||
{label: "库存数量", prop: "stockNum", width: 70},
|
{label: "库存数量", prop: "stockNum", width: 70, flash: 1},
|
||||||
{label: "预计销售数量", prop: "preSaleNum", width: 70},
|
{label: "预计销售数量", prop: "preSaleNum", width: 70},
|
||||||
{label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
{label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,4 +1,14 @@
|
|||||||
<script>
|
<script>
|
||||||
|
function throttle(func, limit = 500) {
|
||||||
|
let timer;
|
||||||
|
return function () {
|
||||||
|
if (timer) {
|
||||||
|
clearTimeout(timer)
|
||||||
|
}
|
||||||
|
timer = setTimeout(func, limit);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "AppStoresTable",
|
name: "AppStoresTable",
|
||||||
label: "多店监控",
|
label: "多店监控",
|
||||||
@@ -26,7 +36,7 @@ export default {
|
|||||||
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
|
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
|
||||||
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
|
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
|
||||||
{label: "今日销售数量", prop: "saleNum", width: 70},
|
{label: "今日销售数量", prop: "saleNum", width: 70},
|
||||||
{label: "现在库存数量", prop: "stockNum", width: 70},
|
{label: "现在库存数量", prop: "stockNum", width: 70, flash: 1},
|
||||||
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
|
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
|
||||||
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
|
||||||
],
|
],
|
||||||
@@ -44,7 +54,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
search: v => v.$multipleStoreBoard.search,
|
search: v => {
|
||||||
|
const search = JSON.parse(JSON.stringify(v.$multipleStoreBoard.search))
|
||||||
|
delete search.t
|
||||||
|
return search
|
||||||
|
},
|
||||||
|
refreshTimer: v => v.search.t,
|
||||||
storeList: v => {
|
storeList: v => {
|
||||||
const list = []
|
const list = []
|
||||||
let group = []
|
let group = []
|
||||||
@@ -72,6 +87,15 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
refreshTimer() {
|
||||||
|
console.log("刷新")
|
||||||
|
this.refreshData().then(() => {
|
||||||
|
const v = this.search
|
||||||
|
if (v.interval > 0 && v.changeWay == '1') {
|
||||||
|
this.$refs.carousel?.$forceUpdate()
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -108,21 +132,27 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getStoreKeyGoods() {
|
getStoreKeyGoods() {
|
||||||
return $http.post("/data-boot/la/screen/multipleStoreBoard/storeKeyGoods", {
|
return new Promise(resolve => {
|
||||||
type: "1", ...this.search,
|
throttle(() => $http.post("/data-boot/la/screen/multipleStoreBoard/storeKeyGoods", {
|
||||||
}).then(res => {
|
type: "1", ...this.search,
|
||||||
if (res?.data) {
|
}).then(res => {
|
||||||
this.storeKeyGoods = res.data
|
if (res?.data) {
|
||||||
}
|
this.storeKeyGoods = res.data
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
}))()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getCategorySales() {
|
getCategorySales() {
|
||||||
return $http.post("/data-boot/la/screen/multipleStoreBoard/categorySale", {
|
return new Promise(resolve => {
|
||||||
type: "1", ...this.search,
|
throttle(() => $http.post("/data-boot/la/screen/multipleStoreBoard/categorySale", {
|
||||||
}).then(res => {
|
type: "1", ...this.search,
|
||||||
if (res?.data) {
|
}).then(res => {
|
||||||
this.categorySales = res.data
|
if (res?.data) {
|
||||||
}
|
this.categorySales = res.data
|
||||||
|
resolve()
|
||||||
|
}
|
||||||
|
}))()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
gotoDetail(store, i) {
|
gotoDetail(store, i) {
|
||||||
@@ -164,6 +194,14 @@ export default {
|
|||||||
} else if (e.code == "ArrowRight") {
|
} else if (e.code == "ArrowRight") {
|
||||||
this.$refs.carousel.next()
|
this.$refs.carousel.next()
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
async refreshData() {
|
||||||
|
return Promise.all([this.getStoreKeyGoods(), this.getCategorySales()]).then(() => {
|
||||||
|
this.stores.map(store => {
|
||||||
|
store.keyGoods = this.storeKeyGoods.filter(e => e.storeCode == store.storeCode) || []
|
||||||
|
store.categorySale = this.categorySales.filter(e => e.storeCode == store.storeCode) || []
|
||||||
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|||||||
Reference in New Issue
Block a user