Procházet zdrojové kódy

feat(types): 综合动态指标修改

zhangweicheng před 4 roky
rodič
revize
4b8d23d909
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      types/src/interface/project.ts

+ 2 - 1
types/src/interface/project.ts

@@ -456,5 +456,6 @@ export interface ICommonIndex {
   unit?: string;
   unit?: string;
   quantity?: string;
   quantity?: string;
   composite: string; // 综合指标
   composite: string; // 综合指标
-  dynamicIndex: Record<string, string>; // 动态指标,年-月为key 综合指标的映射
+  engineeringCost: number;
+  dynamicIndex: Record<string, string>; // 动态指标,年-月为key  这里的值 保存的是动态总造价,动态的综合指标实时算,前端动态计算时不方便拿quantity
 }
 }