projectConstsEnum.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. ];
  50. let projectFieldConstList = [
  51. `ProjectInfoFields`, //工程信息指标
  52. `ProjectFeatureFields`, //工程特征指标
  53. `ProjectCostFields`, //工程造价指标
  54. `ProjectEcoFields`, //工程(主要)经济指标
  55. `ProjectLabMaterialFields`, //主要工料指标
  56. `ProjectQtyFields` //主要工程量指标
  57. ];
  58. let commonConst = {
  59. UT_UPDATE: 'ut_update',
  60. UT_CREATE: 'ut_create',
  61. UT_DELETE: 'ut_delete'
  62. };
  63. const gljKeyArray =['code','name','specs','unit','type'];
  64. const rationKeyArray =['code','name','specs','unit','subType'];
  65. const rationType = {
  66. ration: 1,
  67. volumePrice: 2,
  68. gljRation: 3,
  69. install:4,
  70. overHeight: 5, // 超高子目
  71. itemIncrease: 6//子目增加
  72. };
  73. export default {
  74. projectConst,
  75. commonConst,
  76. projectConstList,
  77. gljKeyArray,
  78. rationKeyArray,
  79. rationType,
  80. summaryConstList,
  81. projectFieldConstList
  82. };