settings.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. module.exports = {
  2. title: '质量医院数字化管理平台',
  3. /**
  4. * @type {boolean} true | false
  5. * @description Whether show the settings right-panel
  6. */
  7. showSettings: false,
  8. /**
  9. * @type {boolean} true | false
  10. * @description Whether need tagsView
  11. */
  12. tagsView: false,
  13. /**
  14. * @type {boolean} true | false
  15. * @description Whether fix the header
  16. */
  17. fixedHeader: false,
  18. /**
  19. * @type {boolean} true | false
  20. * @description Whether show the logo in sidebar
  21. */
  22. sidebarLogo: true,
  23. openeds: true,
  24. /**
  25. * @type {string | array} 'production' | ['production', 'development']
  26. * @description Need show err logs component.
  27. * The default is only used in the production env
  28. * If you want to also use it in dev, you can pass ['production', 'development']
  29. */
  30. errorLog: 'production',
  31. /**
  32. * 服务API地址
  33. */
  34. serverUrl: 'http://36.137.171.123:7001/', // 正式环境
  35. // devServerUrl: 'http://36.137.171.123:6001', // 开发环境
  36. // serverUrl: 'http://114.116.19.14:8080/', // 正式环境
  37. // devServerUrl: 'http://192.168.3.5:8080',
  38. // devServerUrl: 'http://192.168.3.253:8001/', // 开发环境
  39. devServerUrl: 'http://127.0.0.1:7001/', // 开发环境
  40. /**
  41. * websocket 地址
  42. * dev 开发环境
  43. * pro正式环境
  44. */
  45. appID: '10006',
  46. appKey: '82a8bf439373e310',
  47. appSecret: '82a8bf439373e310',
  48. permitTplId: 7,
  49. mqttUrl: 'mqtt://1.15.92.205:8083/mqtt',
  50. wsServerUrl: {
  51. dev: 'ws://ws.58yunkang.com/websocket/link',
  52. pro: 'ws://ws.58yunkang.com/websocket/link'
  53. }
  54. }