setting.js 685 B

123456789101112131415161718192021222324252627282930313233
  1. 'use strict';
  2. /**
  3. * 项目设置 相关常量
  4. *
  5. * @author Mai
  6. * @date 2018/9/25
  7. * @version
  8. */
  9. const cType = {
  10. dropDown: 1,
  11. // radio: 2,
  12. };
  13. const cTypeStr = [];
  14. cTypeStr[cType.dropDown] = '下拉菜单';
  15. // cTypeStr[cType.radio] = '单选框';
  16. // 显示设置-路由列表
  17. const listPath = [
  18. { label_name: '计量进度', path: '/list/progress', is_default: false }, // 计量进度
  19. { label_name: '标段列表', path: '/list', is_default: false }, // 标段列表
  20. { label_name: '金额概况', path: '/list/info', is_default: false }, // 金额概况
  21. ];
  22. module.exports = {
  23. cType: {
  24. key: cType,
  25. text: cTypeStr,
  26. },
  27. listPath,
  28. };