chore(web): sync readconfig only when readSetting unvisible
This commit is contained in:
@@ -192,16 +192,25 @@ import API from "@api";
|
|||||||
const store = useBookStore();
|
const store = useBookStore();
|
||||||
|
|
||||||
//阅读界面设置改变时保存同步配置
|
//阅读界面设置改变时保存同步配置
|
||||||
|
let configChanged = false;
|
||||||
watch(
|
watch(
|
||||||
() => store.config,
|
() => store.config,
|
||||||
(newValue) => {
|
(newValue) => {
|
||||||
localStorage.setItem("config", JSON.stringify(newValue));
|
localStorage.setItem("config", JSON.stringify(newValue));
|
||||||
API.saveReadConfig(newValue);
|
configChanged = true;
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
deep: 2, //深度为2
|
deep: 2, //深度为2
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
// 设置页面关闭时同步设置到阅读APP
|
||||||
|
watch(
|
||||||
|
() => store.readSettingsVisible,
|
||||||
|
(visbile) => {
|
||||||
|
if (!visbile && configChanged)
|
||||||
|
API.saveReadConfig(store.config).then(() => (configChanged = false));
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
//主题颜色
|
//主题颜色
|
||||||
const theme = computed(() => store.theme);
|
const theme = computed(() => store.theme);
|
||||||
|
|||||||
Reference in New Issue
Block a user