|
|
@@ -593,16 +593,17 @@
|
|
|
|
|
|
//获取活动参数
|
|
|
async getActivitySetting() {
|
|
|
- if (this.$isNotEmpty(this.vuex_active_setting)) { //有缓存直接从缓存获取
|
|
|
- this.activitySetting = this.vuex_active_setting;
|
|
|
- return;
|
|
|
- }
|
|
|
+ // if (this.$isNotEmpty(this.vuex_active_setting)) { //有缓存直接从缓存获取
|
|
|
+ // this.activitySetting = this.vuex_active_setting;
|
|
|
+ // return;
|
|
|
+ // }
|
|
|
|
|
|
let params = {
|
|
|
activeId: this.activity.activeId,
|
|
|
platformSettingEnum: 'ACTIVE_SETTING'
|
|
|
}
|
|
|
let activeSetting = JSON.parse((await this.$api.platform.getPlatformValue(params)).data.data);
|
|
|
+ this.$config.setTheme(activeSetting.theme, this);
|
|
|
this.activitySetting = activeSetting;
|
|
|
activeSetting.defaultActiveId = this.activity.activeId
|
|
|
this.$u.vuex('vuex_active_setting', activeSetting);
|