'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, openMaterial: 1, phasePay: 0, stageExtra: 1, closeExportPdf: 0, closeExportExcel: 0, closeWatermark: 0, openSign: 0, openNetCaSign: 0, openChangeRevise: 1, openMaterialTax: 0, addDataCollect: 1, closeWapYfSf: 0, openManagement: 0, openMaterialChecklist: 0, openMaterialSelf: 0, openMaterialEditForAudit: 0, close1stStageCheckDealParam: 0, openChangeProject: 0, openChangeApply: 0, openChangePlan: 0, openChangeWhiteList: 0, openChangeState: 0, isPreset: 0, isOnlyChecked: 1, openSettle: 0, openMultiStageCalc: 0, maxMultiStageCount: 5, openStageStart: 0, openDataCollect: 1, openFile: 1, openBudget: 1, openPayment: 1, openConstruction: 1, openMaterialStageRepeat: 0, openContract: 1, openFinancial: 1, isCommonSetup: 1, isPrivateSetup: 1, }; module.exports = { pageStatus, defaultSetting, };