chore:代码合并,整理功能

This commit is contained in:
2026-02-02 18:04:59 +08:00
parent 15361211b1
commit 54c39259a7
8 changed files with 469 additions and 392 deletions

View File

@@ -416,7 +416,7 @@ const store = new Vuex.Store({
},
// 生成主题颜色CSS变量
themeColorSet() {
console.log('样式颜色设置...');
// console.log('样式颜色设置...');
let theme = this.state.themeStyle;
if (!theme?.main_color || !theme?.aux_color) return;
try {
@@ -440,7 +440,7 @@ const store = new Vuex.Store({
} catch (e) {
console.error('设置主题颜色失败', e);
}
console.log('themeColor => ', this.state.themeColor);
// console.log('themeColor => ', this.state.themeColor);
}
}
})