เพิ่มขอแก้ไขใบอนุญาตประกอบวิชาชีพ ในขอแก้ไขทะเบียนประวัติ

This commit is contained in:
Warunee Tamkoo 2025-04-22 15:54:06 +07:00
parent c90e22b037
commit 662e85c2bc

View file

@ -3,16 +3,20 @@ import { ref } from "vue";
import type { DataOption } from "@/modules/04_registryPerson/interface/index/Main"; import type { DataOption } from "@/modules/04_registryPerson/interface/index/Main";
export const useRequestEditStore = defineStore("requestEditStore", () => { export const useRequestEditStore = defineStore("requestEditStore", () => {
const profileId = ref<string>('') const profileId = ref<string>("");
const optionTopic = ref<string[]>([ const optionTopic = ref<string[]>([
"ขอแก้ไขคำนำหน้านาม ชื่อ นามสกุล", "ขอปรับปรุงข้อมูลจากกรมการปกครอง",
"ขอแก้ไขรูปภาพประจำตัว", "ขอแก้ไขรูปภาพประจำตัว",
"ขอแก้ไขชื่อ - นามสกุล คู่สมรส", "ขอแก้ไขข้อมูล คู่สมรส",
"ขอแก้ไขชื่อ - นามสกุล บิดา", "ขอแก้ไขข้อมูล บิดา",
"ขอแก้ไขชื่อ - นามสกุล มารดา", "ขอแก้ไขข้อมูล มารดา",
"ขอแก้ไขข้อมูลการได้รับพระราชทานเครื่องราชอิสริยาภรณ์/เหรียญจักรพรรดิมาลา", "ขอแก้ไขข้อมูลบุตร",
"ขอแก้ไขประกาศเกียรติคุณ", "ขอแก้ไขข้อมูลเครื่องราชฯ เหรียญจักรพรรดิมาลา",
"ขอแก้ไขข้อมูลประวัติการศึกษา", "ขอแก้ไขข้อมูลประวัติการศึกษา",
"ขอแก้ไขข้อมูลประวัติการฝึกอบรม",
"ขอแก้ไขใบอนุญาตประกอบวิชาชีพ",
"ขอแก้ไขที่อยู่ปัจจุบัน",
"ขอแก้ไขใบอนุญาตประกอบวิชาชีพ",
]); ]);
const optionStatus = ref<DataOption[]>([ const optionStatus = ref<DataOption[]>([
{ id: "", name: "ทั้งหมด" }, { id: "", name: "ทั้งหมด" },
@ -59,6 +63,6 @@ export const useRequestEditStore = defineStore("requestEditStore", () => {
optionStatus, optionStatus,
optionStatusIDP, optionStatusIDP,
convertStatusIDP, convertStatusIDP,
profileId profileId,
}; };
}); });