From a49ae63a6f96d10b8ec9fa479a0c28c5df4537e7 Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期四, 31 三月 2022 16:45:59 +0800 Subject: [PATCH] fix --- src/views/safetyproduction/gojudging.vue | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/views/safetyproduction/gojudging.vue b/src/views/safetyproduction/gojudging.vue index a6dfaf0..ef0c5e1 100644 --- a/src/views/safetyproduction/gojudging.vue +++ b/src/views/safetyproduction/gojudging.vue @@ -1,7 +1,7 @@ <template> <div> <div class="box-right"> - <div v-for="(item, index) in lists" :key="index"> + <div v-for="(item, index) in lists" :key="index" style="padding:0 0 20px 0"> <div class="title"> A级要素:<span>{{ item.elementAName }}</span> </div> @@ -40,10 +40,10 @@ ></el-table-column> <el-table-column align="center" label="评审结果"> <template slot-scope="scope"> - <span v-if="(scope.row.safetyInspectionItemResult = 0)" + <span v-if="(scope.row.safetyInspectionItemResult== 0)" >是</span > - <span v-if="(scope.row.safetyInspectionItemResult = 1)" + <span v-if="(scope.row.safetyInspectionItemResult == 1)" >否</span > </template> @@ -169,7 +169,8 @@ this.$router.push({ path: "/review", query: { - id: data.id, + idC: data.id, + id:this.id }, }); }, -- Gitblit v1.9.2