Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2025-03-18 13:45:12 +07:00
commit 23695d3f9f
11 changed files with 519 additions and 319 deletions

View file

@ -9,7 +9,7 @@ import { useCounterMixin } from "./mixin";
import type { ProfileData } from "@/interface/Main";
export const useDataStore = defineStore("dataMain", () => {
const dataProfile = ref<any>()
const dataProfile = ref<any>();
const storeRegistry = useRegistryInFormationStore();
const $q = useQuasar();
const mixin = useCounterMixin();
@ -112,6 +112,7 @@ export const useDataStore = defineStore("dataMain", () => {
formData.posLevelName = data.posLevelName;
formData.posNo = findPosMasterNo(data);
storeRegistry.profileId = data.profileId;
storeRegistry.citizenId = data.citizenId;
}
async function getProFileType() {
@ -151,7 +152,7 @@ export const useDataStore = defineStore("dataMain", () => {
formData,
officerLink,
getProFileType,
dataProfile
dataProfile,
};
});