defaultSettings.js 731 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * @Author: your name
  3. * @Date: 2021-07-22 15:04:09
  4. * @LastEditTime: 2021-08-23 13:55:21
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: /TracerMethodology_PC/config/defaultSettings.js
  8. */
  9. export const Settings = {
  10. navTheme: 'light',
  11. // 拂晓蓝
  12. primaryColor: '#00528E',
  13. layout: 'mix',
  14. contentWidth: 'Fluid',
  15. fixedHeader: false,
  16. fixSiderbar: true,
  17. colorWeak: false,
  18. title: '全成本核算管理系统',
  19. pwa: false,
  20. menu:{
  21. locale:false
  22. },
  23. logo:'https://i.postimg.cc/WzYX2nfQ/KC-white.png',
  24. iconfontUrl: '',
  25. };
  26. export const envConfig = {
  27. host:process.env.NODE_ENV == 'development'?'http://112.124.59.133:8082':'http://112.124.59.133:8082'
  28. }