อุธร

This commit is contained in:
setthawutttty 2024-12-27 12:07:08 +07:00
parent f38b10becf
commit fde1e9f7ce
4 changed files with 6 additions and 0 deletions

View file

@ -49,6 +49,7 @@ const data = reactive<EditDataList>({
profileId: "",
oc: "",
position: "",
profileType: "",
lastUpdatedAt: "",
historyStatus: [historyStatusOb],
disciplineComplaint_Appeal_Docs: [fileOb],
@ -105,6 +106,7 @@ function getData() {
data.fullname = dataList.fullname;
data.citizenId = dataList.citizenId;
data.profileId = dataList.profileId;
data.profileType = dataList.profileType;
data.oc = dataList.oc;
data.position = dataList.position;
data.lastUpdatedAt = dataList.lastUpdatedAt;

View file

@ -303,6 +303,7 @@ watch(props.data, async () => {
citizenId: props.data.citizenId,
oc: props.data.oc,
position: props.data.position,
profileType: props.data.profileType,
},
]);
}