diff --git a/src/modules/01_metadata/components/personal/07_Province.vue b/src/modules/01_metadata/components/personal/07_Province.vue index 1db8c9c4..5656e528 100644 --- a/src/modules/01_metadata/components/personal/07_Province.vue +++ b/src/modules/01_metadata/components/personal/07_Province.vue @@ -145,7 +145,7 @@ async function editData(id: string) { } /** - * ไปยังหน้า รายากรเขต/อำเภอ โดย id ของจังหวัด + * ไปยังหน้า รายการเขต/อำเภอ โดย id ของจังหวัด * @param id จังหวัด */ function nextPage(id: string) { diff --git a/src/modules/01_metadata/components/personal/province/01_District.vue b/src/modules/01_metadata/components/personal/province/01_District.vue index 530a7eb3..79d489ae 100644 --- a/src/modules/01_metadata/components/personal/province/01_District.vue +++ b/src/modules/01_metadata/components/personal/province/01_District.vue @@ -169,7 +169,7 @@ async function editData(id: string) { } /** - * ไปยังหน้า รายากรเแขวง/ตำบลโดย id ของเขต/อำเภอ + * ไปยังหน้า รายการเแขวง/ตำบลโดย id ของเขต/อำเภอ * @param idSub เขต/อำเภอ */ function nextPage(idSub: string) { diff --git a/src/modules/01_metadata/components/personal/province/02_SubDistrict.vue b/src/modules/01_metadata/components/personal/province/02_SubDistrict.vue index a6386a16..4fa47220 100644 --- a/src/modules/01_metadata/components/personal/province/02_SubDistrict.vue +++ b/src/modules/01_metadata/components/personal/province/02_SubDistrict.vue @@ -95,7 +95,7 @@ const visibleColumns = ref([ const id = ref(route.params.id as string); // เขต/อำเภอ const rows = ref([]); // ข้อมูลรายการแขวง/ตำบล const rowsMain = ref([]); // ข้อมูลรายการแขวง/ตำบล -const editId = ref(""); // id รายากรแขวง/ตำบล +const editId = ref(""); // id รายการแขวง/ตำบล const filterKeyword = ref(""); // คำค้นหา const dialog = ref(false); // เพิ่มข้อมูล,แก้ไขข้อมูล const subDistrict = ref(""); //แขวง / ตำบล; diff --git a/src/modules/01_metadata/components/position/03_Executive.vue b/src/modules/01_metadata/components/position/03_Executive.vue index 4b59f40e..32018665 100644 --- a/src/modules/01_metadata/components/position/03_Executive.vue +++ b/src/modules/01_metadata/components/position/03_Executive.vue @@ -16,8 +16,8 @@ const { showLoader, hideLoader, messageError, date2Thai, onSearchDataTable } = useCounterMixin(); // Table -const rows = ref([]); // รายากรข้อมูลตำแหน่งทางการบริหาร -const rowsMain = ref([]); // รายากรข้อมูลตำแหน่งทางการบริหาร +const rows = ref([]); // รายการข้อมูลตำแหน่งทางการบริหาร +const rowsMain = ref([]); // รายการข้อมูลตำแหน่งทางการบริหาร const filterKeyword = ref(""); // คำค้นหา const visibleColumns = ref([ "no", @@ -117,14 +117,14 @@ async function getData() { } /** - * เปิด popup เพื่อเพิ่มข้อมูลรายากรตำแหน่งทางการบริหาร + * เปิด popup เพื่อเพิ่มข้อมูลรายการตำแหน่งทางการบริหาร */ function popUpAdd() { modalPosExecutive.value = true; } /** - * เปิด popup เพื่อแก่ไขข้อมูลรายากรตำแหน่งทางการบริหาร + * เปิด popup เพื่อแก่ไขข้อมูลรายการตำแหน่งทางการบริหาร * @param data ข้อมูลรายการตำแหน่งทางการบริหารที่ต้องการแก้ไข */ function editPopUp(data: RowListForm) { diff --git a/src/modules/06_webservices/components/DialogApiKey.vue b/src/modules/06_webservices/components/DialogApiKey.vue index 6948c0a1..3111eeb3 100644 --- a/src/modules/06_webservices/components/DialogApiKey.vue +++ b/src/modules/06_webservices/components/DialogApiKey.vue @@ -39,7 +39,7 @@ const isAPIKey = ref(false); //status API Key const apiKey = ref(""); // API Key const options = ref([]); //รายการ API ที่เข้าถึงได้ -// form การสร้างรายากร API Key +// form การสร้างรายการ API Key const formData = reactive({ name: "", //ชื่อ/คำอธิบาย apiId: [], //id รายการ API ที่เข้าถึงได้ diff --git a/src/modules/06_webservices/view/historyView.vue b/src/modules/06_webservices/view/historyView.vue index 950e5bd7..7112bc20 100644 --- a/src/modules/06_webservices/view/historyView.vue +++ b/src/modules/06_webservices/view/historyView.vue @@ -301,11 +301,11 @@ onMounted(async () => { map-options v-model="apiNameId" :options="options" - label="รายากร Web Services" + label="รายการ Web Services" use-input hide-selected fill-input - :clearable="apiNameId !==''" + :clearable="apiNameId !== ''" @clear="(apiNameId = ''), (options = dataApiName)" @update:modelValue="onSelectType" @filter="(inputValue: string,doneFn: Function) => filterSelector(inputValue, doneFn )"