From 002022a0a6e68e0e4540bd1f851ca7c98cb04e62 Mon Sep 17 00:00:00 2001 From: liaozetao <1107136310@qq.com> Date: Mon, 15 Apr 2024 11:20:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dtab=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/room/RoomTabHomeView.vue | 34 +++++++++++++++--------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/views/room/RoomTabHomeView.vue b/src/views/room/RoomTabHomeView.vue index ba73cfb..a82949b 100644 --- a/src/views/room/RoomTabHomeView.vue +++ b/src/views/room/RoomTabHomeView.vue @@ -406,23 +406,23 @@ export default { } }); - } - }, - initPartition() { - getPartitionInfoList().then(res => { - let data = res.data; - buildSelectOption( - "#partitionId", - null, - data.map((v) => { - return { - value: v.id, - text: v.desc, - }; - }) - ); - }); - }, + }, + initPartition() { + getPartitionInfoList().then(res => { + let data = res.data; + buildSelectOption( + "#partitionId", + null, + data.map((v) => { + return { + value: v.id, + text: v.desc, + }; + }) + ); + }); + }, + }, };