From bb99c0d44e7b30fa5013d7d67853aa3ce3df1e35 Mon Sep 17 00:00:00 2001 From: Burt <1020103647@qq.com> Date: Sat, 23 Dec 2023 10:19:38 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"fix(weixin):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E4=B8=8D=E8=83=BD=E4=BD=BF=E7=94=A8?= =?UTF-8?q?v-bind()=E7=9A=84BUG"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0058be3dde9082e8b634c9fcc8e5c9d0afc992f2. --- src/manifest.json | 1 - src/pages/index/index.vue | 9 --------- 2 files changed, 10 deletions(-) diff --git a/src/manifest.json b/src/manifest.json index 35cc907..c38e717 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -54,7 +54,6 @@ "setting": { "urlCheck": false }, - "styleIsolation": "shared", "usingComponents": true }, "mp-alipay": { diff --git a/src/pages/index/index.vue b/src/pages/index/index.vue index c1a2a88..f37a8c7 100644 --- a/src/pages/index/index.vue +++ b/src/pages/index/index.vue @@ -17,14 +17,6 @@ import { useCountStore } from '@/store/count' const countStore = useCountStore() const title = ref('Hello') - -// 获取屏幕边界到安全区域距离 -const { safeAreaInsets } = uni.getSystemInfoSync() -console.log(safeAreaInsets) -const rect = { - top: `${safeAreaInsets.top}px`, - bottom: `${safeAreaInsets.bottom}px`, -}