公司级人员及证书的录入
This commit is contained in:
@ -209,6 +209,18 @@ export const deptTreeSelect = (): AxiosPromise<DeptTreeVO[]> => {
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增用户文件关联
|
||||
* @param data 文件关联数据
|
||||
*/
|
||||
export const uploadCertList = (data: { userId: string | number; fileId: string }) => {
|
||||
return request({
|
||||
url: '/system/userFile',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
export default {
|
||||
listUser,
|
||||
getUser,
|
||||
|
@ -46,6 +46,7 @@ export interface UserVO extends BaseEntity {
|
||||
postIds: any;
|
||||
roleId: any;
|
||||
admin: boolean;
|
||||
filePath?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -65,6 +66,7 @@ export interface UserForm {
|
||||
remark?: string;
|
||||
postIds: string[];
|
||||
roleIds: string[];
|
||||
filePath?: string;
|
||||
}
|
||||
|
||||
export interface UserInfoVO {
|
||||
|
Reference in New Issue
Block a user