提交 2fefbcbdd48f8a3618e822df3bd00dcf8d7babad

作者 guomingshu
1 个父辈 a2aae37b

feat: 主题更改

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