diff --git a/src/api/enterpriseinspections/index.ts b/src/api/enterpriseinspections/index.ts index 9b799e7..6f3adc3 100644 --- a/src/api/enterpriseinspections/index.ts +++ b/src/api/enterpriseinspections/index.ts @@ -5,6 +5,7 @@ export interface EnterpriseInspectionsVO { id: number // 检查记录ID,主键 taskId: number // 任务ID enterpriseId: number // 企业ID + tagList: String } // 企业检查记录表,用于记录与企业相关的环保检查信息。 API @@ -43,4 +44,10 @@ export const EnterpriseInspectionsApi = { inspectionsLogList: async (params:any) => { return await request.get({ url: `/system/inspections-log/list`, params }) }, + + //根据 用户id和任务名称查询可以转发的任务 + inspectionsLogListByUserAndTaskName: async (params:any) => { + return await request.get({ url: `/system/enterprise-inspections/getListByUserIdAndTaskName`, params }) + }, + } diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 94b67e2..0a440f6 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -4,6 +4,7 @@ export interface UserVO { id: number username: string nickname: string + realName: string deptId: number postIds: string[] email: string @@ -80,7 +81,12 @@ export const updateUserStatus = (id: number, status: number) => { // 获取用户精简信息列表 export const getSimpleUserList = (): Promise => { return request.get({ url: '/system/user/simple-list' }) -} +} + +// 获取用户精简信息列表 +export const getSimpleUserZGList = (): Promise => { + return request.get({ url: '/system/user/simple-zg-list' }) +} /** * 查询审核列表 diff --git a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue index 46a0a9b..1f86e7b 100644 --- a/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue +++ b/src/views/enterpriseinspections/EnterpriseInspectionsForm.vue @@ -1,19 +1,14 @@