diff --git a/src/stores/data.ts b/src/stores/data.ts index 2000d80..dad7009 100644 --- a/src/stores/data.ts +++ b/src/stores/data.ts @@ -100,7 +100,6 @@ export const useDataStore = defineStore("dataMain", () => { async function getData(dataPerson: any) { const data = await dataPerson; isProbation.value = data.isProbation; - formData.profileId = data.profileId; formData.rank = data.rank; formData.prefix = data.prefix; diff --git a/src/stores/mixin.ts b/src/stores/mixin.ts index e232b31..fb73de0 100644 --- a/src/stores/mixin.ts +++ b/src/stores/mixin.ts @@ -1096,7 +1096,7 @@ export const useCounterMixin = defineStore("mixin", () => { ? obj.child1ShortName : obj.rootShortName != null ? obj.rootShortName - : "") + (obj.posMasterNo != null ? obj.posMasterNo : ""); + : "") + (obj.posMasterNo != null ? ` ${obj.posMasterNo}` : ""); return shortName == "" ? "-" : shortName; } else { return "";