Browse Source

执法记录记录

master
DX 2 months ago
parent
commit
057303a09d
  1. 19
      src/views/enterpriseinspections/index.vue
  2. 2
      src/views/system/user/examine.vue
  3. 8
      src/views/system/user/index.vue

19
src/views/enterpriseinspections/index.vue

@ -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 {

2
src/views/system/user/examine.vue

@ -153,7 +153,7 @@ const queryParams = reactive({
status: undefined,
deptId: undefined,
audit: [1,3],
userType: "1,2",
userType: "2, 3",
createTime: []
})

8
src/views/system/user/index.vue

@ -100,13 +100,7 @@
<el-table-column
label="用户名称"
align="center"
prop="username"
:show-overflow-tooltip="true"
/>
<el-table-column
label="用户昵称"
align="center"
prop="nickname"
prop="realName"
:show-overflow-tooltip="true"
/>
<el-table-column

Loading…
Cancel
Save