From 2af62f40a1525c820e824c23a75f0fa8318372ae Mon Sep 17 00:00:00 2001 From: ZZJ <zzjdsg2300@163.com> Date: 星期五, 18 三月 2022 15:34:07 +0800 Subject: [PATCH] 应用中心部分禁用 --- src/pages/cameraAccess/components/DataStackInfo.vue | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/pages/cameraAccess/components/DataStackInfo.vue b/src/pages/cameraAccess/components/DataStackInfo.vue index ed5c980..e2f42bc 100644 --- a/src/pages/cameraAccess/components/DataStackInfo.vue +++ b/src/pages/cameraAccess/components/DataStackInfo.vue @@ -278,9 +278,20 @@ show-overflow-tooltip align="center" > - <template slot-scope="scope">{{ - scope.row.status | statusFormat - }}</template> + <template slot-scope="scope"> + <div + class="lowHash" + v-if=" + !PollData.stackChannelCount && + (scope.row.status == '1' || scope.row.status == '2') + " + > + 鏁版嵁鏍堢畻鍔涗笉瓒� + </div> + <div class="normal" v-else> + {{ scope.row.status | statusFormat }} + </div> + </template> </el-table-column> <el-table-column label="鎿嶄綔" show-overflow-tooltip align="center"> <template slot-scope="scope"> -- Gitblit v1.8.0