1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- '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,
- };
- module.exports = {
- pageStatus,
- defaultSetting,
- };
|