/* * @FilePath: index.ts * @Author: king * @Date: 2023-01-16 11:23:27 * @LastEditors: king * @LastEditTime: 2023-01-16 11:31:04 * Copyright: 2023@king. * @Description: Do not edit */ //部门列表 import request from '@/utils/request' export function getDepartmentList(params: any) { return request({ url: '/base/department/select-options', method: 'get', params, }) } //用户列表 export function getPersonList(params: any) { return request({ url: '/base/admin/select-options', method: 'get', params, }) }