提交 2fefbcbdd48f8a3618e822df3bd00dcf8d7babad

作者 guomingshu
1 个父辈 a2aae37b

feat: 主题更改

... ... @@ -13,7 +13,7 @@ const themeList = {
13 13 imagePath: 'https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/wx6cd2152282abd34c/'
14 14 },
15 15 // 新华网 - 教师
16   - 'xhwttheme': {
  16 + 'wxac18386e35824192': {
17 17 value: [
18 18 {name:'--primary-color',value: '#005DAC'},
19 19 {name:'--primary-color000',value: '#005DAC'},
... ... @@ -23,7 +23,7 @@ const themeList = {
23 23 {name:'--primary-color003',value: 'rgba(0, 93, 172, 0.03)'},
24 24 {name:'--primary-color006',value: 'rgba(0, 93, 172, 0.06)'},
25 25 ],
26   - imagePath: 'https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/xhwttheme/'
  26 + imagePath: 'https://yxlypublic.oss-cn-beijing.aliyuncs.com/WeChat/wxac18386e35824192/'
27 27 }
28 28 }
29 29
... ...
... ... @@ -5,10 +5,10 @@ module.exports = (vm) => {
5 5 /* config 为默认全局配置*/
6 6
7 7 // 测试环境
8   - config.baseURL = "http://47.110.250.177:8000";
  8 + config.baseURL = "http://47.110.250.177:8000";
9 9
10 10 // 预生产环境
11   - // config.baseURL = "https://api-isxpre.workai.com.cn";
  11 + // config.baseURL = "https://api-isxpre.workai.com.cn";
12 12
13 13 // 线上环境
14 14 // config.baseURL = "https://api-isx.workai.com.cn";
... ... @@ -63,6 +63,9 @@ module.exports = (vm) => {
63 63 // 可以在此通过vm引用vuex中的变量,具体值在vm.$store.state中
64 64 config.header.Authorization = vm.$store.state.vuex_token
65 65 }
  66 +
  67 + config.header['Wx-App-Id'] = vm.$store.state.vuex_appId;
  68 +
66 69 return config
67 70 }, config => { // 可使用async await 做异步操作
68 71 return Promise.reject(config)
... ... @@ -102,10 +105,10 @@ module.exports = (vm) => {
102 105 vm.$u.toast('登录失效,请重新登录!');
103 106 setTimeout(() => {
104 107 // 此为uView的方法,详见路由相关文档
105   - // vm.$u.route('/pages/main/my/login/login');
106   -
107   - vm.$u.vuex('hasLogin', false);
108   - vm.$u.vuex('vuex_token', '');
  108 + // vm.$u.route('/pages/main/my/login/login');
  109 +
  110 + vm.$u.vuex('hasLogin', false);
  111 + vm.$u.vuex('vuex_token', '');
109 112
110 113 }, 1500)
111 114 return false;
... ... @@ -114,4 +117,4 @@ module.exports = (vm) => {
114 117
115 118 return Promise.reject(response)
116 119 })
117   -}
  120 +}
... ...
... ... @@ -5,8 +5,10 @@ import home from './modules/home'
5 5 Vue.use(Vuex)
6 6
7 7 let lifeData = {};
8   -let appId = 'xhwttheme';
9   -// let appId = 'wx6cd2152282abd34c'
  8 +let appId = 'wx6cd2152282abd34c';
  9 +// 新华网
  10 +// let appId = 'wxac18386e35824192';
  11 +
10 12
11 13 try {
12 14 // 尝试获取本地是否存在lifeData变量,第一次启动APP时是不存在的
... ...
注册登录 后发表评论