Przeglądaj źródła

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

zhangweicheng 3 lat temu
rodzic
commit
4b8d23d909
1 zmienionych plików z 2 dodań i 1 usunięć
  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
 }
 }