| 123456789101112131415161718192021222324252627282930313233 | 'use strict';/** * 项目设置 相关常量 * * @author Mai * @date 2018/9/25 * @version */const cType = {    dropDown: 1,    // radio: 2,};const cTypeStr = [];cTypeStr[cType.dropDown] = '下拉菜单';// cTypeStr[cType.radio] = '单选框';// 显示设置-路由列表const listPath = [    { label_name: '计量进度', path: '/list/progress', is_default: false }, // 计量进度    { label_name: '标段列表', path: '/list', is_default: false }, // 标段列表    { label_name: '金额概况', path: '/list/info', is_default: false }, // 金额概况];module.exports = {    cType: {        key: cType,        text: cTypeStr,    },    listPath,};
 |