From 79734a6dcfb0ff1f75e68060a5ea3129d082b3e3 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sat, 30 Jul 2022 19:44:30 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=B6=80=EB=8C=80=EB=AA=85=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=EC=9D=B4=20=EC=95=84=EB=AC=B4=EC=97=90=EA=B2=8C?= =?UTF-8?q?=EB=82=98=20=EB=B3=B4=EC=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageTroop.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/hwe/ts/PageTroop.vue b/hwe/ts/PageTroop.vue index 74ce3958..cca4cf6f 100644 --- a/hwe/ts/PageTroop.vue +++ b/hwe/ts/PageTroop.vue @@ -58,7 +58,10 @@ @click="openKickTroopMemberDialog(troop)" >부대원 추방... - 부대명 변경... @@ -221,6 +224,7 @@ type TroopInfo = { }; const me = ref({} as GeneralListItem); +const myPermission = ref<0 | 1 | 2 | 3 | 4>(0); const troopList = ref(new Map()); const generalList = ref(new Map()); @@ -277,6 +281,8 @@ async function refresh() { throw `?? ${permission}`; } + myPermission.value = permission; + me.value = unwrap(generalList.value.get(myGeneralID)); troopList.value = new Map();