fix: 关闭优惠券按钮状态判定未判定新活动状态导致新活动点击关闭按钮无效
parent
3159c325e3
commit
1ca94d289a
|
@ -169,7 +169,7 @@ export default {
|
||||||
// 开启或关闭活动
|
// 开启或关闭活动
|
||||||
openOrClose(row) {
|
openOrClose(row) {
|
||||||
let name = "开启";
|
let name = "开启";
|
||||||
if (row.promotionStatus === "START") {
|
if (row.promotionStatus === 'NEW' ||row.promotionStatus === "START") {
|
||||||
name = "关闭";
|
name = "关闭";
|
||||||
this.$Modal.confirm({
|
this.$Modal.confirm({
|
||||||
title: "提示",
|
title: "提示",
|
||||||
|
|
Loading…
Reference in New Issue