公司级人员及证书的录入

This commit is contained in:
Teo
2025-06-25 18:48:23 +08:00
parent b7431c6292
commit b6d8f2b851
8 changed files with 230 additions and 20 deletions

View File

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

View File

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