fix(产品需求): 修复产品需求使用状态和终止态字典的问题。
fix(组织): 修复组织编码下拉框的数据显示问题、修复组织编码负责人无法新增的问题。 fix(管理链路): 修复管理链路高度没固定,节点全部收缩等问题。
This commit is contained in:
15
src/typings/api/product.d.ts
vendored
15
src/typings/api/product.d.ts
vendored
@@ -319,6 +319,21 @@ declare namespace Api {
|
||||
children?: RequirementModule[];
|
||||
}
|
||||
|
||||
// ========== 需求状态字典 ==========
|
||||
|
||||
interface RequirementStatusDict {
|
||||
/** 状态编码 */
|
||||
statusCode: string;
|
||||
/** 状态名称 */
|
||||
statusName: string;
|
||||
/** 排序值 */
|
||||
sort: number;
|
||||
/** 是否初始状态 */
|
||||
initialFlag: boolean;
|
||||
/** 是否终态 */
|
||||
terminalFlag: boolean;
|
||||
}
|
||||
|
||||
// ========== 需求生命周期 ==========
|
||||
|
||||
interface RequirementLifecycleAction {
|
||||
|
||||
6
src/typings/api/system-manage.d.ts
vendored
6
src/typings/api/system-manage.d.ts
vendored
@@ -103,7 +103,7 @@ declare namespace Api {
|
||||
interface OrgLeaderRelation {
|
||||
id: number;
|
||||
deptId: number;
|
||||
userId: number;
|
||||
userId: string;
|
||||
userNickname: string;
|
||||
effectiveFrom?: number | null;
|
||||
effectiveUntil?: number | null;
|
||||
@@ -115,7 +115,7 @@ declare namespace Api {
|
||||
type OrgLeaderRelationList = OrgLeaderRelation[];
|
||||
|
||||
interface OrgLeaderCandidateUser {
|
||||
id: number;
|
||||
id: string;
|
||||
nickname: string;
|
||||
deptId: number;
|
||||
deptName?: string | null;
|
||||
@@ -125,7 +125,7 @@ declare namespace Api {
|
||||
|
||||
type SaveOrgLeaderRelationParams = {
|
||||
deptId: number;
|
||||
userId: number;
|
||||
userId: string | null;
|
||||
effectiveFrom?: number | null;
|
||||
effectiveUntil?: number | null;
|
||||
remark?: string | null;
|
||||
|
||||
Reference in New Issue
Block a user