123456789101112131415161718192021222324252627282930313233 |
- /*
- * @Author: your name
- * @Date: 2021-07-22 15:04:09
- * @LastEditTime: 2021-08-23 13:55:21
- * @LastEditors: Please set LastEditors
- * @Description: In User Settings Edit
- * @FilePath: /TracerMethodology_PC/config/defaultSettings.js
- */
- export const Settings = {
- navTheme: 'light',
- // 拂晓蓝
- primaryColor: '#00528E',
- layout: 'mix',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: '全成本核算管理系统',
- pwa: false,
- menu:{
- locale:false
- },
- logo:'https://i.postimg.cc/WzYX2nfQ/KC-white.png',
- iconfontUrl: '',
- };
- export const envConfig = {
- host:process.env.NODE_ENV == 'development'?'http://112.124.59.133:8082':'http://112.124.59.133:8082'
- }
|