diff --git a/hwe/scss/map.scss b/hwe/scss/map.scss index 26d500ba..178436a7 100644 --- a/hwe/scss/map.scss +++ b/hwe/scss/map.scss @@ -1,3 +1,5 @@ +@charset 'utf-8'; + .map_title_tooltiptext .tooltip-inner { max-width: 220px; width: 220px; diff --git a/hwe/ts/PageFront.vue b/hwe/ts/PageFront.vue index 465dc2ff..020e1109 100644 --- a/hwe/ts/PageFront.vue +++ b/hwe/ts/PageFront.vue @@ -18,34 +18,55 @@
툴바?
시나리오
-
{{globalInfo.scenarioText}}
-
NPC 수, 상성: {{globalInfo.extendedGeneral?'확장':'표준'}} {{globalInfo.isFiction?'가상':'사실'}}
-
NPC선택: {{['불가능','가능','선택 생성'][globalInfo.npcMode]}}
-
토너먼트: 경기당 {{calcTournamentTerm(globalInfo.turnterm)}}분
+
{{ globalInfo.scenarioText }}
+
+ NPC 수, 상성: {{ globalInfo.extendedGeneral ? "확장" : "표준" }} + {{ globalInfo.isFiction ? "가상" : "사실" }} +
+
NPC선택: {{ ["불가능", "가능", "선택 생성"][globalInfo.npcMode] }}
+
토너먼트: 경기당 {{ calcTournamentTerm(globalInfo.turnterm) }}분
기타 설정: (TODO)자율행동[내정, 훈련/사기진작, 사령턴, 24시간 유효]
-
현재: {{globalInfo.year}}年 {{globalInfo.month}}月 ({{globalInfo.turnterm}}분 턴 서버)
-
전체 접속자 수: {{globalInfo.onlineUserCnt.toLocaleString()}}명
-
턴당 갱신횟수: {{globalInfo.apiLimit.toLocaleString()}}회
+
+ 현재: {{ globalInfo.year }}年 {{ globalInfo.month }}月 ({{ globalInfo.turnterm }}분 턴 서버) +
+
전체 접속자 수: {{ globalInfo.onlineUserCnt.toLocaleString() }}명
+
턴당 갱신횟수: {{ globalInfo.apiLimit.toLocaleString() }}회
등록 장수: 유저 - {{globalInfo.genCount.toLocaleString()}} / {{globalInfo.generalCntLimit.toLocaleString()}} + {{ globalInfo.genCount.toLocaleString() }} / {{ globalInfo.generalCntLimit.toLocaleString() }} + NPC TODO:NPC Cnt 명
TODO: tournament Text
-
동작 시각: {{formatTime(lastExecuted).substring(5)}}
-
{{globalInfo.auctionCount.toLocaleString()}}건 거래 진행중
-
진행중인 거래 없음
-
- 설문 진행 중: {{globalInfo.lastVote.title}} +
+ 동작 시각: {{ formatTime(lastExecuted).substring(5) }}
-
진행중인 설문 없음
+
+ {{ globalInfo.auctionCount.toLocaleString() }}건 거래 진행중 +
+
진행중인 거래 없음
+
+ 설문 진행 중: {{ globalInfo.lastVote.title }} +
+
진행중인 설문 없음
-
접속중인 국가: {{globalInfo.onlineNations}}
+
접속중인 국가: {{ globalInfo.onlineNations }}
국가 방침
접속자
갱신
-
지도
+
+ +
예턴
@@ -86,7 +107,14 @@
툴바?
- +
툴바?
@@ -106,6 +134,10 @@ declare const staticValues: { mapName: string; unitSet: string; }; + +declare const getCityPosition: () => CityPositionMap; +declare const formatCityInfo: (city: MapCityParsedRaw) => MapCityParsed; +