From 02b3d183f55ed5366421fe4104b93d021da86ee9 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 03 四月 2025 19:39:12 +0800 Subject: [PATCH] Merge branch '2.0' of http://120.76.84.145:10101/gitblit/r/java/PlayPai into 2.0 --- cloud-server-management/src/main/webapp/WEB-INF/view/system/tHuiminCard/tHuiminCard.html | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tHuiminCard/tHuiminCard.html b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tHuiminCard/tHuiminCard.html index bda1fca..7a6b43f 100644 --- a/cloud-server-management/src/main/webapp/WEB-INF/view/system/tHuiminCard/tHuiminCard.html +++ b/cloud-server-management/src/main/webapp/WEB-INF/view/system/tHuiminCard/tHuiminCard.html @@ -91,17 +91,17 @@ <el-table-column prop="sort" label="排序"></el-table-column> <el-table-column prop="flag" label="活动状态" > <template slot-scope="scope"> - <span v-if="scope.row.flag === '1'">未开始</span> - <span v-else-if="scope.row.flag === '2'">已开始</span> - <span v-else-if="scope.row.flag === '3'">已结束</span> + <span v-if="scope.row.flag === 1">未开始</span> + <span v-else-if="scope.row.flag === 2">已开始</span> + <span v-else-if="scope.row.flag === 3">已结束</span> <span v-else>未知类型</span> </template> </el-table-column> <el-table-column prop="status" label="可售状态"> <template slot-scope="scope"> - <span v-if="scope.row.status === '1'">已上架</span> - <span v-else-if="scope.row.status === '2'">已下架</span> - <span v-else-if="scope.row.status === '3'">已删除</span> + <span v-if="scope.row.status === 1">已上架</span> + <span v-else-if="scope.row.status === 2">已下架</span> + <span v-else-if="scope.row.status === 3">已删除</span> <span v-else>未知类型</span> </template> </el-table-column> -- Gitblit v1.7.1