12345678910111213141516171819202122232425262728293031323334 |
- const getConfig = (theme) => {
- const config = {
-
- "zyuxd":{
- themePath: 'zyuxd',
- pro_URL: 'https://aitour.zyucgj.com/at-employee/',
- uat_URL: 'https://aitour.test.zyucgj.com/at-employee/',
- dev_URL: 'http://192.168.16.100:9102/at-employee/',
- appName: '智能巡店系统',
- company: '陕西山海高科信息技术有限公司',
- primaryColors: '#55aaff',
- buttonColors: '#3399ff',
- fixedButtonColors: '#0099FF',
- topBarBackground: '#3399ff',
- },
-
- "qiubxd":{
- themePath: 'qiubxd',
- pro_URL: 'https://aitour.qiubcar.com/at-employee/',
- uat_URL: 'https://aitour.test.qiubcar.com/at-employee/',
- dev_URL: 'http://192.168.16.100:9102/at-employee/',
- appName: '智能巡店系统',
- company: '成都丘比象科技有限公司',
- primaryColors: '#f8a240',
- buttonColors: '#ff6600',
- fixedButtonColors: '#FF9933',
- topBarBackground: '#282828',
- }
- }
- return config[theme]
- }
- export default getConfig
|