page_show.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. };
  38. module.exports = {
  39. pageStatus,
  40. defaultSetting,
  41. };