main_consts.js 903 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Created by jimiz on 2017/4/19.
  3. */
  4. const ModuleNames = {
  5. bills: 'bills',
  6. ration: 'ration',
  7. GLJ: 'GLJ',
  8. feeRate: 'feeRate',
  9. projectGLJ: 'projectGLJ',
  10. ration_glj:'ration_glj',
  11. ration_coe:'ration_coe',
  12. ration_ass:'ration_ass',
  13. quantity_detail:'quantity_detail',
  14. volume_price: 'volume_price',
  15. projectGLJ: 'project_glj',
  16. labour_coe: 'labour_coe',
  17. calc_program: 'calc_program'
  18. };
  19. const feeRate_consts={
  20. decimal:3
  21. };
  22. const CP_Col_Width = { // 多处计算程序界面的列宽统一设置
  23. rowHeader: 30,
  24. colHeader: 30, // 这个是标题栏高度不是宽度,也写在一起
  25. code: 70,
  26. name: 200,
  27. dispExprUser: 180,
  28. feeRate: 60,
  29. displayFieldName: 120,
  30. statement: 380,
  31. memo: 110,
  32. unitFee: 90,
  33. totalFee: 90
  34. };
  35. const CP_GatherType = {
  36. rations: 'rations',
  37. bills: 'bills'
  38. };