Kaynağa Gözat

feat(types): 传统结算组件增加费用类型

vian 3 yıl önce
ebeveyn
işleme
cb06773816
1 değiştirilmiş dosya ile 5 ekleme ve 2 silme
  1. 5 2
      types/src/interface/process.ts

+ 5 - 2
types/src/interface/process.ts

@@ -583,14 +583,16 @@ export interface IAuditCommentHistory {
 export interface ISettlementItem {
   // 建设项目ID
   constructionID: string;
-  // 建设项目名称
-  constructionName: string;
+  // 名称
+  name: string;
   // 项目原报金额
   orgFee: string;
   // 当前步骤审核金额
   curFee: string;
   // 清单检测合格率
   billCheckRate: string;
+  // 费用类型
+  type?: AuditMoneyType;
 }
 
 // 传统结算已上报审核数据
@@ -622,4 +624,5 @@ export interface ISettlementAuditItem {
   // 审核状态
   approvalStatus?: string;
   children: ISettlementAuditItem[];
+  type?: AuditMoneyType;
 }