From 79f521ce63909fff82de9f624911d6c63e84fb53 Mon Sep 17 00:00:00 2001 From: zhangzengfei <zhangzengfei@smartai.com> Date: 星期三, 23 三月 2022 21:08:45 +0800 Subject: [PATCH] 修复时间规则新增后视图未动态更新的bug --- src/pages/cameraAccess/components/DataStackInfo.vue | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/pages/cameraAccess/components/DataStackInfo.vue b/src/pages/cameraAccess/components/DataStackInfo.vue index ed5c980..c2b2f4e 100644 --- a/src/pages/cameraAccess/components/DataStackInfo.vue +++ b/src/pages/cameraAccess/components/DataStackInfo.vue @@ -261,6 +261,7 @@ label="鏃堕暱" show-overflow-tooltip align="center" + v-if="form.type != 2" ></el-table-column> <el-table-column prop="uploadTime" @@ -278,9 +279,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