luobisheng
2022-12-06 99b614dcaa78b90fe8a680b0606d307a387b321e
src/views/operate/viewEvent/index.vue
@@ -80,7 +80,7 @@
        >
          <el-table-column prop="code" label="事件编号" min-width="18">
            <template slot-scope="scope">
              <el-link>{{ scope.row.code }}</el-link>
              <el-link @click="handleView(scope.row)">{{ scope.row.code }}</el-link>
            </template>
          </el-table-column>
          <el-table-column prop="category" label="问题类别" min-width="8">
@@ -289,9 +289,15 @@
    closeDialog({ flag }) {
      this.dialogExamine = flag;
      this.dialogClosure = flag;
      this.dialogView = false;
      this.getList();
    },
    async handleView(rowData) {
      this.info = await casequery.getBaseCaseDetail(rowData.code);
      this.dialogView = true;
    },
    filterTime(time) {
      return helper(time);
    },