From 0ab38ef48cd6903b8c88172ce49620b64ee28c17 Mon Sep 17 00:00:00 2001 From: FWiiii <843189132@qq.com> Date: Wed, 18 Oct 2023 19:50:46 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E6=A1=86=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MainPages/Search.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/MainPages/Search.vue b/src/components/MainPages/Search.vue index f5059c1..40e7e05 100644 --- a/src/components/MainPages/Search.vue +++ b/src/components/MainPages/Search.vue @@ -266,7 +266,7 @@ export default { width: 45px; background-color: #c10f0f; border-radius: 2px; - font-size: 5px; + font-size: 12px; font-weight: 600; text-align: center; color: #F3F6F8; @@ -279,7 +279,7 @@ export default { width: 45px; background-color: #979797; border-radius: 2px; - font-size: 5px; + font-size: 12px; font-weight: 600; text-align: center; color: #F3F6F8; From f3d355743efcf34fc3edc89d8be2fbde6bd03639 Mon Sep 17 00:00:00 2001 From: FWiiii <843189132@qq.com> Date: Wed, 18 Oct 2023 19:58:07 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=E5=8E=BB=E9=99=A4=E5=85=B3=E6=B3=A8?= =?UTF-8?q?=E9=A1=B5=E7=A9=BA=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Common/RoomList.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/Common/RoomList.vue b/src/components/Common/RoomList.vue index 6eee6f5..0565c81 100644 --- a/src/components/Common/RoomList.vue +++ b/src/components/Common/RoomList.vue @@ -7,7 +7,7 @@ @change="blankChange"> - +
@@ -100,7 +100,13 @@ export default { // _this.colNum = width/250; // console.log(this.colNum); // }; - }, + },computed: { + realRoomList() { + return this.roomList.filter(item => { + return Object.values(item).some(i => !!i) + }) + } + } }