|
@@ -212,7 +212,7 @@ Vue.config.productionTip = false
|
|
|
Http.get('/api/common/configuration').then((res) => {
|
|
|
let config = res.data&&res.data.configurationList;
|
|
|
let configData = configToJson(config);
|
|
|
- this.homeDataNoCache = configToJson(config);
|
|
|
+ this.homeDataNoCache = configData;
|
|
|
setConfig(configData);
|
|
|
storageSave('config', configData);
|
|
|
new Vue({
|
|
@@ -226,6 +226,7 @@ Http.get('/api/common/configuration').then((res) => {
|
|
|
store
|
|
|
})
|
|
|
}).catch((error) => {
|
|
|
+ console.log(error)
|
|
|
notify('error', error.data)
|
|
|
})
|
|
|
|