diff --git a/src/api/registry/api.registry.ts b/src/api/registry/api.registry.ts index 9a82231f3..b23bb1ee7 100644 --- a/src/api/registry/api.registry.ts +++ b/src/api/registry/api.registry.ts @@ -22,6 +22,13 @@ export default { profileNewProfileHisById: (dataId: string) => `${registryNew}history/${dataId}`, + // ข้อมูลที่อยู่ + profileNewAddressByProfileId: (profileId: string) => + `${registryNew}address/${profileId}`, + profileNewAddressById: (dataId: string) => `${registryNew}address/${dataId}`, + profileNewAddressHisById: (dataId: string) => + `${registryNew}address/history/${dataId}`, + // บันทึกวันที่ไม่ได้รับเงินเดือนฯ profileNewNoPaid: `${registryNew}nopaid`, profileNewNoPaidByProfileId: (profileId: string) => diff --git a/src/modules/04_registryNew/components/detail/PersonalInformation/03_Address.vue b/src/modules/04_registryNew/components/detail/PersonalInformation/03_Address.vue index cc16c88a5..16593da7d 100644 --- a/src/modules/04_registryNew/components/detail/PersonalInformation/03_Address.vue +++ b/src/modules/04_registryNew/components/detail/PersonalInformation/03_Address.vue @@ -1,5 +1,5 @@