feat(WIP): processing 선양, 장수대상임관

This commit is contained in:
2021-12-22 00:10:02 +09:00
parent 6dac344a35
commit 50e11f22a1
9 changed files with 295 additions and 100 deletions
+2 -4
View File
@@ -40,13 +40,12 @@ import {
procNationList,
} from "../processingRes";
import { getNpcColor } from "@/common_legacy";
declare const mapTheme: string;
declare const commandName: string;
declare const procRes: {
generals: procGeneralRawItemList;
generalsKey: procGeneralKey[];
nationList: procNationList,
nationList: procNationList;
};
export default defineComponent({
@@ -81,12 +80,11 @@ export default defineComponent({
}
const nationList = new Map<number, procNationItem>();
for(const nationItem of procRes.nationList){
for (const nationItem of procRes.nationList) {
nationList.set(nationItem.id, nationItem);
}
return {
mapTheme: ref(mapTheme),
selectedGeneralID,
generalList,
nationList,