完成合同管理模块和公共参数模块

This commit is contained in:
gxwebsoft
2023-06-08 19:33:24 +08:00
parent 7ee10c16c7
commit f5cb3dc489
31 changed files with 3195 additions and 140 deletions

View File

@@ -0,0 +1,35 @@
import type { PageParam } from '@/api';
/**
* 项目成员
*/
export interface ProjectUser {
// 项目成员id
id?: number;
role?: number;
userId?: number;
username?: string;
nickname?: string;
avatar?: string;
email?: string;
phone?: string;
projectId?: number;
status?: string;
createTime?: string;
}
/**
* 项目成员搜索条件
*/
export interface ProjectUserParam extends PageParam {
userId?: number;
projectId?: number;
}
export interface UserItem {
key: string;
isEdit?: boolean;
number?: string;
name?: string;
department?: string;
}