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) + }) + } + } } 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;