From b1bdac435d4aa9fe34bde1a859490842166b47f7 Mon Sep 17 00:00:00 2001 From: Your Name <123456> Date: 星期五, 26 八月 2022 17:30:48 +0800 Subject: [PATCH] statistics --- src/views/doublePreventAction/hiddenDanger/inspectionRecord/index.vue | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/src/views/doublePreventAction/hiddenDanger/inspectionRecord/index.vue b/src/views/doublePreventAction/hiddenDanger/inspectionRecord/index.vue index 3338837..44ca664 100644 --- a/src/views/doublePreventAction/hiddenDanger/inspectionRecord/index.vue +++ b/src/views/doublePreventAction/hiddenDanger/inspectionRecord/index.vue @@ -19,6 +19,12 @@ <el-option v-for="item in taskTypeList" :key="item.id" :label="item.name" :value="item.id"></el-option> </el-select> </div> + <div class="basic_search"> + <span>部门名称:</span> + <el-select class="analyseUnit_box" v-model="listQuery.execDepId" placeholder="部门名称" filterable clearable> + <el-option v-for="item in departmentList" :key="item.id" :label="item.department" :value="item.id"></el-option> + </el-select> + </div> <el-button class="filter-item" style="margin-left: 10px;margin-top: 10px" type="primary" icon="el-icon-refresh" @click="refreshHandle">搜索</el-button> </div> <div class="table_content"> @@ -58,6 +64,9 @@ {{ parseNumber(scope.row.taskBelong, '认领状态') }} </template> </el-table-column> + <el-table-column prop="startTime" label="开始时间" show-overflow-tooltip></el-table-column> + <el-table-column prop="validTime" label="有效时间" show-overflow-tooltip></el-table-column> + <el-table-column prop="execUserName" label="执行人" show-overflow-tooltip></el-table-column> <el-table-column prop="createUserName" label="创建人" show-overflow-tooltip></el-table-column> <el-table-column prop="gmtCreate" label="创建时间" show-overflow-tooltip></el-table-column> <el-table-column prop="lastEditUserName" label="最后修改人" show-overflow-tooltip></el-table-column> @@ -184,6 +193,7 @@ pageSize: 10, result: null, taskStatus: null, + execDepId: null, taskType: null }, } -- Gitblit v1.9.2