feat: wip
This commit is contained in:
+11
-2
@@ -6,10 +6,18 @@
|
|||||||
{{ date.year }}년 {{ date.month }}월 {{ date.queried ? `선택` : "" }} {{ date.current ? "현재" : "" }}
|
{{ date.year }}년 {{ date.month }}월 {{ date.queried ? `선택` : "" }} {{ date.current ? "현재" : "" }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<pre v-for="(item, idx) in history.global_action" :key="idx">{{item}}</pre>
|
<template v-for="(item, idx) in history.global_action" :key="idx">
|
||||||
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||||
|
<span v-html="formatLog(item)"></span>
|
||||||
|
<br />
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<pre v-for="(item, idx) in history.global_history" :key="idx">{{item}}</pre>
|
<template v-for="(item, idx) in history.global_history" :key="idx">
|
||||||
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||||
|
<span v-html="formatLog(item)"></span>
|
||||||
|
<br />
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -33,6 +41,7 @@ import type { HistoryObj } from "./defs/API/Global";
|
|||||||
import { SammoAPI } from "./SammoAPI";
|
import { SammoAPI } from "./SammoAPI";
|
||||||
import { joinYearMonth } from "./util/joinYearMonth";
|
import { joinYearMonth } from "./util/joinYearMonth";
|
||||||
import { parseYearMonth } from "./util/parseYearMonth";
|
import { parseYearMonth } from "./util/parseYearMonth";
|
||||||
|
import { formatLog } from "./utilGame/formatLog";
|
||||||
|
|
||||||
const queryYearMonth = ref<number>();
|
const queryYearMonth = ref<number>();
|
||||||
const queryServerID = query.serverID;
|
const queryServerID = query.serverID;
|
||||||
|
|||||||
Reference in New Issue
Block a user