|
@@ -210,8 +210,12 @@ Vue.config.productionTip = false
|
|
|
|
|
|
Http.get('/api/common/configuration').then((res) => {
|
|
|
this.homeDataNoCache = res.data;
|
|
|
- setConfig(res.data);
|
|
|
- storageSave('config', res.data);
|
|
|
+ // console.log(res.data.configurationList.configuration);
|
|
|
+ // console.log(JSON.parse(res.data.configurationList.configuration));
|
|
|
+ // console.log(JSON.parse(res.data.configurationList.configuration).home_searchTypeArr);
|
|
|
+ let config = JSON.parse(res.data.configurationList.configuration);
|
|
|
+ setConfig(config);
|
|
|
+ storageSave('config', config);
|
|
|
new Vue({
|
|
|
el: '#app',
|
|
|
router,
|