Compare commits

...

2 Commits

Author SHA1 Message Date
aixianling
c2743d926e featMultiple(AppStoreBoardFilter): 添加一键归位功能
- 在组件中添加 reset 方法,用于重置多店看板的位置
- 在模板中添加一键归位按钮,点击时调用 reset 方法
- 优化了组件初始化时的数据加载逻辑
2025-01-07 16:08:35 +08:00
aixianling
4403ec5322 feat(inject): 实现库存数量小于等于0时红色闪烁提醒- 在 main.css 中添加了 flashOpacity 动画样式
- 在 inject.js 中实现了 rowClassName 方法,为符合条件的行添加 flash-opacity 类
- 在多个 Vue 组件中为库存数量列添加了 flash: 1 属性,以触发闪烁效果
2025-01-07 15:19:00 +08:00
7 changed files with 36 additions and 5 deletions

View File

@@ -249,3 +249,20 @@ a, .green {
.AppSubTitle .el-select {
width: 120px;
}
@keyframes flashOpacity {
0%, 100% {
opacity: 1; /* 完全不透明 */
}
50% {
opacity: 0; /* 完全透明 */
}
}
/* 应用动画到元素 */
.flash-opacity {
.cell > span {
animation: flashOpacity 1s infinite; /* 动画名称、持续时间、重复次数 */
color: red
}
}

View File

@@ -135,6 +135,10 @@ Vue.component("scrollTable", {
return h('el-table', {
props: {
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,
}, class: 'scrollTable',
on: {

View File

@@ -23,7 +23,7 @@ export default {
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
{label: "今日销售数量", prop: "saleNum", width: 70},
{label: "现在库存数量", prop: "stockNum", width: 70},
{label: "现在库存数量", prop: "stockNum", width: 70, flash: 1},
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
],

View File

@@ -8,7 +8,7 @@ export default {
columns: [
{label: "重点单品", prop: "goodsName"},
{label: "销售数量", prop: "saleNum", width: 70},
{label: "库存数量", prop: "stockNum", width: 70},
{label: "库存数量", prop: "stockNum", width: 70, flash: 1},
{label: "销售目标", prop: "targetSaleNum", width: 70},
{label: "销售达成", prop: "saleAchieveRate"},
],

View File

@@ -24,6 +24,13 @@ export default {
}
})
},
reset() {
$http.post("/data-boot/la/screen/multipleStoreBoard/move").then(res => {
if (res?.data) {
this.$message.success("已重置")
}
})
}
},
watch: {
'form.interval'(v) {
@@ -52,6 +59,9 @@ export default {
<template>
<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-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"/>

View File

@@ -9,7 +9,7 @@ export default {
{label: "重点单品", prop: "goodsName"},
{label: "当日目标", prop: "targetNum", 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: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
]

View File

@@ -36,7 +36,7 @@ export default {
{label: "昨日销售数量", prop: "yesterdaySaleNum", width: 70},
{label: "上周同天销售数量", prop: "lastWeekSaleNum", width: 70},
{label: "今日销售数量", prop: "saleNum", width: 70},
{label: "现在库存数量", prop: "stockNum", width: 70},
{label: "现在库存数量", prop: "stockNum", width: 70, flash: 1},
{label: "剩余时间预计销售数量", prop: "preSaleNum"},
// {label: "提醒", custom: 1, width: 70, align: 'center', prop: "remind"},
],