|
@@ -1,13 +1,6 @@
|
|
|
import { ValuationType } from './compilation';
|
|
import { ValuationType } from './compilation';
|
|
|
-import { ILabourCoeFile } from './labourCoe';
|
|
|
|
|
import { IIncreaseSetting } from './increaseFee';
|
|
import { IIncreaseSetting } from './increaseFee';
|
|
|
-import {
|
|
|
|
|
- ITreeScm,
|
|
|
|
|
- IFileRef,
|
|
|
|
|
- DeleteEnum,
|
|
|
|
|
- INumFileRef,
|
|
|
|
|
- IColumnMeta,
|
|
|
|
|
-} from './base';
|
|
|
|
|
|
|
+import { ITreeScm, DeleteEnum, INumFileRef, IColumnMeta } from './base';
|
|
|
import { ICalcOption, ITenderSetting } from './calculation';
|
|
import { ICalcOption, ITenderSetting } from './calculation';
|
|
|
|
|
|
|
|
export enum ProjectType {
|
|
export enum ProjectType {
|
|
@@ -17,6 +10,13 @@ export enum ProjectType {
|
|
|
UNIT, // 单位工程
|
|
UNIT, // 单位工程
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export const projectTextMap = {
|
|
|
|
|
+ [ProjectType.FOLDER]: '文件夹',
|
|
|
|
|
+ [ProjectType.CONSTRUCTION]: '建设项目',
|
|
|
|
|
+ [ProjectType.SINGLE]: '单项工程',
|
|
|
|
|
+ [ProjectType.UNIT]: '单位工程',
|
|
|
|
|
+};
|
|
|
|
|
+
|
|
|
export interface IGLJCol {
|
|
export interface IGLJCol {
|
|
|
showAdjustPrice?: boolean;
|
|
showAdjustPrice?: boolean;
|
|
|
}
|
|
}
|