From 34a649576de7cc6a728d165992a56c4109cf9579 Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期一, 20 三月 2023 13:45:27 +0800
Subject: [PATCH] 巡检记录修改
---
src/views/intellectInspect/inspectRecordManage/inspectRecord/index.vue | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/src/views/intellectInspect/inspectRecordManage/inspectRecord/index.vue b/src/views/intellectInspect/inspectRecordManage/inspectRecord/index.vue
index 939361f..76515d5 100644
--- a/src/views/intellectInspect/inspectRecordManage/inspectRecord/index.vue
+++ b/src/views/intellectInspect/inspectRecordManage/inspectRecord/index.vue
@@ -23,7 +23,7 @@
</div>
<div class="basic-line">
<span>任务状态:</span>
- <el-select v-model="tableData.params.taskStatus" clearable filterable class="input-box" placeholder="执行班组">
+ <el-select v-model="tableData.params.taskStatus" clearable filterable class="input-box" placeholder="任务状态">
<el-option v-for="item in taskStatusList" :key="item.id" :label="item.name" :value="item.id"></el-option>
</el-select>
</div>
@@ -80,6 +80,21 @@
</el-tag>
</template>
</el-table-column>
+ <el-table-column property="taskClaimTime" label="认领时间">
+ <template #default="scope">
+ {{scope.row.taskClaimTime?scope.row.taskClaimTime:'--'}}
+ </template>
+ </el-table-column>
+ <el-table-column property="reportTime" label="填报时间">
+ <template #default="scope">
+ {{scope.row.reportTime?scope.row.reportTime:'--'}}
+ </template>
+ </el-table-column>
+ <el-table-column property="taskTimeConsuming" label="巡检耗时">
+ <template #default="scope">
+ {{scope.row.taskTimeConsuming?scope.row.taskTimeConsuming:'--'}}
+ </template>
+ </el-table-column>
<el-table-column property="resultStatus" label="巡检结果">
<template #default="scope">
<span>
@@ -180,7 +195,7 @@
pageSize: 10,
taskName: null,
taskType: null,
- taskStatus: 2,
+ taskStatus: null,
execUserId: null,
execClassgroupId: null,
execDepId: null,
--
Gitblit v1.9.2