From a5325b84aeb6343fdecf5f24aac23657a93d4edd Mon Sep 17 00:00:00 2001 From: kuaifan Date: Tue, 8 Apr 2025 15:04:00 +0800 Subject: [PATCH] no message --- .../pages/manage/components/DialogWrapper.vue | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/resources/assets/js/pages/manage/components/DialogWrapper.vue b/resources/assets/js/pages/manage/components/DialogWrapper.vue index 27009ed9a..9c90a836f 100644 --- a/resources/assets/js/pages/manage/components/DialogWrapper.vue +++ b/resources/assets/js/pages/manage/components/DialogWrapper.vue @@ -872,12 +872,8 @@ export default { 'cacheUserBasic', 'fileLinks', 'cacheEmojis', - 'readLoadNum', 'readTimeout', - 'keyboardType', - 'keyboardHeight', - 'safeAreaBottom', 'formOptions', 'cacheTranslationLanguage' ]), @@ -1061,18 +1057,6 @@ export default { return []; }, - footerPaddingBottom({keyboardType, keyboardHeight, safeAreaBottom, windowScrollY, location, focusLazy}) { - if (windowScrollY < 2 - && location - && focusLazy - && keyboardType === "show" - && keyboardHeight > 0 - && keyboardHeight < 120) { - return keyboardHeight + safeAreaBottom + (location === 'modal' ? 15 : 0); - } - return 0; - }, - msgUnreadOnly() { let num = 0; this.cacheDialogs.some(dialog => { @@ -1415,13 +1399,6 @@ export default { } }, - footerPaddingBottom(val) { - this.$refs.footer.style.paddingBottom = `${val}px`; - requestAnimationFrame(_ => { - this.$refs.input?.updateTools() - }) - }, - readLoadNum() { this.positionShow = true },