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 {
|
||||
|
||||
Reference in New Issue
Block a user