page_show.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 'use strict';
  2. /**
  3. * 前台页面展示相关
  4. *
  5. * @author Ellisran
  6. * @date
  7. * @version
  8. */
  9. const pageStatus = {
  10. show: 1,
  11. hide: 0,
  12. };
  13. // const pageControl = [
  14. // { title: '开启「部位台账」', name: 'bwtz', value: pageStatus.show, type: 'checkbox' },
  15. // { title: '开启「投资进度」功能', name: 'xxjd', value: pageStatus.show, type: 'checkbox' },
  16. // { title: '开启「其他台账」功能', name: 'stageExtra', value: pageStatus.show, type: 'checkbox' },
  17. // { title: '关闭报表「导出PDF」', name: 'closeExportPdf', value: pageStatus.show, type: 'checkbox' },
  18. // { title: '关闭报表「导出Excel」', name: 'closeExportExcel', value: pageStatus.show, type: 'checkbox' },
  19. // { title: '关闭报表「水印」', name: 'closeWatermark', value: pageStatus.show, type: 'checkbox' },
  20. // { title: '开启报表「跨标段批量签名」', name: 'openSign', value: pageStatus.show, type: 'checkbox' },
  21. // { title: '开启签名「网证通电子签名」', name: 'openNetCaSign', value: pageStatus.show, type: 'checkbox' },
  22. // ];
  23. const defaultSetting = {
  24. bwtz: 0,
  25. xxjd: 0,
  26. stageExtra: 1,
  27. closeExportPdf: 0,
  28. closeExportExcel: 0,
  29. closeWatermark: 0,
  30. openSign: 0,
  31. openNetCaSign: 0,
  32. openChangeRevise: 0,
  33. openMaterialTax: 0,
  34. addDataCollect: 1,
  35. closeWapYfSf: 0,
  36. openManagement: 0,
  37. openMaterialChecklist: 0,
  38. close1stStageCheckDealParam: 0,
  39. openChangeProject: 0,
  40. openChangeApply: 0,
  41. };
  42. module.exports = {
  43. pageStatus,
  44. defaultSetting,
  45. };