| | |
| | | > |
| | | <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"> |
| | |
| | | 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); |
| | | }, |