This commit is contained in:
kunfei
2023-05-16 14:27:00 +08:00
parent cb6260545b
commit 91c60dcc04
+4 -4
View File
@@ -222,11 +222,11 @@ const onResize = () => {
const checkPageWidth = (readWidth) => { const checkPageWidth = (readWidth) => {
if (store.miniInterface) return; if (store.miniInterface) return;
if (readWidth + 2 * 68 > window.innerWidth) store.config.readWidth -= 160; if (readWidth + 2 * 68 > window.innerWidth) store.config.readWidth -= 160;
} };
watch( watch(
() => store.config.readWidth, () => store.config.readWidth,
(width) => checkPageWidth(width) (width) => checkPageWidth(width)
) );
// 顶部底部跳转 // 顶部底部跳转
const top = ref(); const top = ref();
const bottom = ref(); const bottom = ref();
@@ -469,7 +469,7 @@ onMounted(() => {
localStorage.setItem(bookUrl, JSON.stringify(book)); localStorage.setItem(bookUrl, JSON.stringify(book));
} }
onResize(); onResize();
window.addEventListener('resize', onResize); window.addEventListener("resize", onResize);
loadingWrapper( loadingWrapper(
API.getChapterList(bookUrl).then( API.getChapterList(bookUrl).then(
(res) => { (res) => {
@@ -505,7 +505,7 @@ onMounted(() => {
onUnmounted(() => { onUnmounted(() => {
window.removeEventListener("keyup", handleKeyPress); window.removeEventListener("keyup", handleKeyPress);
window.removeEventListener('resize', onResize); window.removeEventListener("resize", onResize);
// 兼容Safari < 14 // 兼容Safari < 14
document.removeEventListener("visibilitychange", onVisibilityChange); document.removeEventListener("visibilitychange", onVisibilityChange);
readSettingsVisible.value = false; readSettingsVisible.value = false;