shj
2022-03-31 b2c24bfd334bbac0bb02d93de6e865ef7084fb7d
src/views/safetyproduction/review.vue
@@ -132,7 +132,7 @@
            </el-row>
            <div
              v-if="
                list.safetyInspectionItemResult == '0' || null ? false : true
                list.safetyInspectionItemResult == 0 ? false : true
              "
            >
              <el-row style="padding: 15px 1%">
@@ -240,12 +240,12 @@
    };
  },
  created() {
    this.id = this.$route.query;
    this.itemInfo(this.$route.query);
    this.id = this.$route.query.id;
    this.itemInfo(this.$route.query.idC);
  },
  methods: {
    itemInfo(id) {
      safetySelfInspectionItemInfo(id).then((res) => {
      safetySelfInspectionItemInfo({id:id}).then((res) => {
        this.list = res.data.result;
      });
    },
@@ -260,6 +260,9 @@
          });
          this.$router.push({
            path: "/gojudging",
              query:{
          id:this.id
        }
          });
        }
      });
@@ -267,6 +270,9 @@
    back() {
      this.$router.push({
        path: "/gojudging",
        query:{
          id:this.id
        }
      });
    },
    handleClick(data) {