diff --git a/src/api/system/user/index.ts b/src/api/system/user/index.ts index 9e9a8b4..3c5ca2e 100644 --- a/src/api/system/user/index.ts +++ b/src/api/system/user/index.ts @@ -117,8 +117,15 @@ export const getExamieList = (audit: number) => { * 审核用户 */ export function examineUser(data) { + return request.put({url: '/system/user/user_audit', data}) +} - console.log('data=>', data) +// 专管员列表 +export const getEnterpriseManager = () => { + return request.get({ url: '/system/user/enterprise_manager_list' }) +} - return request.put({url: '/system/user/user_audit', data}) +// 发布列表 +export const deptByMenu = () => { + return request.get({ url: '/system/user/deptByMenu' }) } diff --git a/src/views/enterprises/index.vue b/src/views/enterprises/index.vue index bdb6b79..bf23bd6 100644 --- a/src/views/enterprises/index.vue +++ b/src/views/enterprises/index.vue @@ -161,6 +161,8 @@ import { getStrDictOptions, DICT_TYPE, getDictLabel } from '@/utils/dict' import { dateFormatter } from '@/utils/formatTime' import download from '@/utils/download' import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises' +import { getEnterpriseManager } from '@/api/system/user' + import { TagLibraryApi } from '@/api/system/taglibrary' /** 企业 列表 */ defineOptions({ name: 'Enterprises' }) @@ -245,6 +247,11 @@ const getTypList = async () => { } getTypList() + +const getUserList = async () => { + // awitgetEnterpriseManager +} + /** 初始化 **/ onMounted(() => { getList() diff --git a/src/views/task/index.vue b/src/views/task/index.vue index 78b9168..259520e 100644 --- a/src/views/task/index.vue +++ b/src/views/task/index.vue @@ -32,11 +32,11 @@ - + @@ -153,6 +153,7 @@ import download from '@/utils/download' import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo' import TaskInfoForm from './TaskInfoForm.vue' import { TagLibraryApi } from '@/api/system/taglibrary' +import { deptByMenu } from '@/api/system/user' /** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */ defineOptions({ name: 'TaskList' }) @@ -182,7 +183,8 @@ const queryParams = reactive({ parentType: undefined, taskStep: undefined, taskTotal: undefined, - selectWeek: undefined + selectWeek: undefined, + deptId: undefined }) const queryFormRef = ref() // 搜索的表单 const exportLoading = ref(false) // 导出的加载中 @@ -274,9 +276,16 @@ const handleExport = async () => { } } +const createDeptList = ref() +const getCreateDept = async () => { + const data = await deptByMenu() + createDeptList.value = data +} + /** 初始化 **/ onMounted(() => { getList() + getCreateDept() })