123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- 'use strict';
- /**
- * 前台页面展示相关
- *
- * @author Ellisran
- * @date
- * @version
- */
- const pageStatus = {
- show: 1,
- hide: 0,
- };
- // const pageControl = [
- // { title: '开启「部位台账」', name: 'bwtz', value: pageStatus.show, type: 'checkbox' },
- // { title: '开启「投资进度」功能', name: 'xxjd', value: pageStatus.show, type: 'checkbox' },
- // { title: '开启「其他台账」功能', name: 'stageExtra', value: pageStatus.show, type: 'checkbox' },
- // { title: '关闭报表「导出PDF」', name: 'closeExportPdf', value: pageStatus.show, type: 'checkbox' },
- // { title: '关闭报表「导出Excel」', name: 'closeExportExcel', value: pageStatus.show, type: 'checkbox' },
- // { title: '关闭报表「水印」', name: 'closeWatermark', value: pageStatus.show, type: 'checkbox' },
- // { title: '开启报表「跨标段批量签名」', name: 'openSign', value: pageStatus.show, type: 'checkbox' },
- // { title: '开启签名「网证通电子签名」', name: 'openNetCaSign', value: pageStatus.show, type: 'checkbox' },
- // ];
- const defaultSetting = {
- bwtz: 0,
- xxjd: 0,
- stageExtra: 1,
- closeExportPdf: 0,
- closeExportExcel: 0,
- closeWatermark: 0,
- openSign: 0,
- openNetCaSign: 0,
- openChangeRevise: 0,
- openMaterialTax: 0,
- addDataCollect: 1,
- closeWapYfSf: 0,
- openManagement: 0,
- openMaterialChecklist: 0,
- close1stStageCheckDealParam: 0,
- openChangeProject: 0,
- openChangeApply: 0,
- };
- module.exports = {
- pageStatus,
- defaultSetting,
- };
|