projectConstsEnum.ts 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. let projectConst = {
  2. PROJECT: 'project',
  3. BILLS: 'bills',
  4. RATION: 'ration',
  5. GLJ: 'GLJ',
  6. RATION_GLJ:'ration_glj',
  7. RATION_COE:'ration_coe',
  8. RATION_ASS:'ration_ass',
  9. RATION_INSTALLATION:'ration_installation',
  10. RATION_TEMPLATE:'ration_template',
  11. QUANTITY_DETAIL:'quantity_detail',
  12. PROJECTGLJ: 'projectGLJ',
  13. GLJLIST: 'GLJList',
  14. UNITPRICEFILE: 'unitPriceFile',
  15. PROPERTIES: 'properties',
  16. // VOLUMEPRICE: 'volume_price',
  17. FEERATE:'feeRate',
  18. LABOUR_COE:'labour_coe',
  19. CALC_PROGRAM:'calc_program',
  20. INSTALLATION_FEE:'installation_fee',
  21. PROJECT_INFO: 'project_info',
  22. EVALUATE_LIST:'evaluate_list',
  23. CONTRACTOR_LIST:'contractor_list',
  24. BID_EVALUATION_LIST:'bid_evaluation_list'
  25. };
  26. let projectConstList = [
  27. 'bills',
  28. 'rations',
  29. 'GLJ',
  30. 'ration_glj',
  31. 'ration_coe',
  32. 'ration_ass',
  33. 'quantity_detail',
  34. 'projectGLJ',
  35. 'GLJList',
  36. 'unitPriceFile',
  37. 'properties',
  38. // 'volume_price',
  39. 'feeRate',
  40. 'labour_coe',
  41. 'contractor_list',
  42. 'calc_program'
  43. ];
  44. let summaryConstList = [
  45. `'construct'`,
  46. `'constructDetail'`,
  47. `'segment'`,
  48. `'segmentDetail'`,
  49. `'costTreeData'`
  50. ];
  51. let projectFieldConstList = [
  52. `ProjectInfoFields`, //工程信息指标
  53. `ProjectFeatureFields`, //工程特征指标
  54. `ProjectCostFields`, //工程造价指标
  55. `ProjectEcoFields`, //工程(主要)经济指标
  56. `ProjectLabMaterialFields`, //主要工料指标
  57. `ProjectQtyFields` //主要工程量指标
  58. ];
  59. let commonConst = {
  60. UT_UPDATE: 'ut_update',
  61. UT_CREATE: 'ut_create',
  62. UT_DELETE: 'ut_delete'
  63. };
  64. const gljKeyArray =['code','name','specs','unit','type'];
  65. const rationKeyArray =['code','name','specs','unit','subType'];
  66. const rationType = {
  67. ration: 1,
  68. volumePrice: 2,
  69. gljRation: 3,
  70. install:4,
  71. overHeight: 5, // 超高子目
  72. itemIncrease: 6//子目增加
  73. };
  74. export default {
  75. projectConst,
  76. commonConst,
  77. projectConstList,
  78. gljKeyArray,
  79. rationKeyArray,
  80. rationType,
  81. summaryConstList,
  82. projectFieldConstList
  83. };