| 123456789101112131415161718192021222324 | 'use strict';/** * 项目设置 相关常量 * * @author Mai * @date 2018/9/25 * @version */const cType = {    dropDown: 1,    // radio: 2,};const cTypeStr = [];cTypeStr[cType.dropDown] = '下拉菜单';// cTypeStr[cType.radio] = '单选框';module.exports = {    cType: {        key: cType,        text: cTypeStr,    },}
 |