From 86d2171536acf352e76f90ab318499fcf4134de2 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Wed, 1 Mar 2023 03:47:49 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=A9=94=EC=9D=B8=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=EA=B8=B0=ED=83=80=20=EC=84=A4=EC=A0=95=EB=9E=80=20?= =?UTF-8?q?tooltip(wip)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageFront.vue | 5 ++- hwe/ts/components/AutorunInfo.vue | 63 +++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 hwe/ts/components/AutorunInfo.vue diff --git a/hwe/ts/PageFront.vue b/hwe/ts/PageFront.vue index 6cd1e5d0..f474e880 100644 --- a/hwe/ts/PageFront.vue +++ b/hwe/ts/PageFront.vue @@ -25,7 +25,9 @@
NPC선택: {{ ["불가능", "가능", "선택 생성"][globalInfo.npcMode] }}
토너먼트: 경기당 {{ calcTournamentTerm(globalInfo.turnterm) }}분
-
기타 설정: (TODO)자율행동[내정, 훈련/사기진작, 사령턴, 24시간 유효]
+
기타 설정: + +
현재: {{ globalInfo.year }}年 {{ globalInfo.month }}月 ({{ globalInfo.turnterm }}분 턴 서버)
@@ -166,6 +168,7 @@ import { formatTime } from "./util/formatTime"; import { calcTournamentTerm } from "./utilGame"; import MapViewer, { type CityPositionMap, type MapCityParsed, type MapCityParsedRaw } from "./components/MapViewer.vue"; import PartialReservedCommand from "./PartialReservedCommand.vue"; +import AutorunInfo from "./components/AutorunInfo.vue"; const { serverName, serverNick, serverID } = staticValues; diff --git a/hwe/ts/components/AutorunInfo.vue b/hwe/ts/components/AutorunInfo.vue new file mode 100644 index 00000000..ea38c91c --- /dev/null +++ b/hwe/ts/components/AutorunInfo.vue @@ -0,0 +1,63 @@ + + \ No newline at end of file