Ver código fonte

feat(types): 回滚版本

zhangweicheng 4 anos atrás
pai
commit
becf0dda24
2 arquivos alterados com 5 adições e 5 exclusões
  1. 1 1
      types/package.json
  2. 4 4
      types/src/interface/project.ts

+ 1 - 1
types/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@sc/types",
-  "version": "1.0.34",
+  "version": "1.0.35",
   "description": "共用类型文件",
   "main": "./dist/index.cjs.js",
   "module": "./dist/index.esm.js",

+ 4 - 4
types/src/interface/project.ts

@@ -100,8 +100,8 @@ export enum ProcessType {
 }
 
 export enum FileTypeName {
-  SUBMISSION = '预算',
-  INVITATION = '预算',
+  SUBMISSION = '投标',
+  INVITATION = '招标',
   ESTIMATE = '概算',
   SETTLEMENT = '结算',
 }
@@ -408,6 +408,6 @@ export interface IImportLog {
   status: ImportStatus;
   errorMsg: string;
   stack?: any;
-  constructID?:string;
-  constructName?:string;
+  constructID?: string;
+  constructName?: string;
 }