123456789101112131415161718192021222324252627282930313233 |
- const getConfig = (theme) => {
- const config = {
-
- "default":{
- themePath: 'default',
- pro_URL: 'https://iscm.360arrow.com/qpls-md/',
- uat_URL: 'https://p.iscm.360arrow.com/qpls-md/',
- dev_URL: 'http://192.168.2.100:88/qpls-md/',
- appName: 'iSCM智慧供应链',
- company: '陕西山海高科信息技术有限公司',
- loadText:{
- loadmore: '轻轻上拉',
- loading: '努力加载中',
- nomore: '没有了'
- },
- primaryColor: '#335fb6',
- warringColor: '#f3bb12',
- errorColor: '#E70012',
- successColor: '#13C442',
- orangeColor: '#FF5500',
- infoColor: '#909399',
- topBarBackground: 'linear-gradient(45deg, #fff, #fff)',
- topBarTitleColors: '#222222',
- },
-
- "other":{}
- }
-
- return config[theme]
- }
- export default getConfig
|