|
|
|
@ -71,16 +71,24 @@
|
|
|
|
|
:show-overflow-tooltip="true" |
|
|
|
|
@selection-change="handleSelectionChange" |
|
|
|
|
> |
|
|
|
|
<el-table-column type="selection" width="55" /> |
|
|
|
|
<!-- <el-table-column type="selection" width="55" /> --> |
|
|
|
|
|
|
|
|
|
<!-- <el-table-column label="检查记录ID,主键" align="center" prop="id" /> --> |
|
|
|
|
<el-table-column label="企业名称" align="center" prop="enterpriseName" /> |
|
|
|
|
<el-table-column label="企业名称" align="center" prop="enterpriseName" > |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<v-router @click="push({ path: '/enterprises/enterprises', query: { enterpriseId: scope.row.id} })" >{{scope.row.enterpriseName}}</v-router> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="进度状态" align="center" prop="inspectionStatus"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.INSPECTIONS_STATUS" :value="scope.row.inspectionStatus" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="任务名称" align="center" prop="taskName" /> |
|
|
|
|
<el-table-column label="任务名称" align="center" prop="taskName"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<v-router @click="push({ path: '/task/index', query: { taskId: scope.row.taskId} })" >{{scope.row.taskName}}</v-router> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="任务类型" align="center" prop="tagList" /> |
|
|
|
|
<el-table-column label="执法部门" align="center" prop="department" /> |
|
|
|
|
<el-table-column label="执法人员" align="center" prop="inspectName" /> |
|
|
|
@ -160,11 +168,6 @@ const getList = async () => {
|
|
|
|
|
loading.value = true |
|
|
|
|
try { |
|
|
|
|
const data = await EnterpriseInspectionsApi.getEnterpriseInspectionsPage(queryParams) |
|
|
|
|
|
|
|
|
|
data.list.forEach(item => { |
|
|
|
|
item.tagList = item.tagList.join() |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
list.value = data.list |
|
|
|
|
total.value = data.total |
|
|
|
|
} finally { |
|
|
|
|