diff --git a/src/components/information/Address.vue b/src/components/information/Address.vue
index 7db4b8410..8a4b32948 100644
--- a/src/components/information/Address.vue
+++ b/src/components/information/Address.vue
@@ -63,7 +63,7 @@
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต/อำเภอ'}`]"
:outlined="edit"
dense
lazy-rules
@@ -73,7 +73,7 @@
option-label="name"
:options="Ops.districtOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value:string) => selectDistrict(value, '1')"
use-input
input-debounce="0"
@@ -89,7 +89,7 @@
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง/ตำบล '}`]"
:outlined="edit"
dense
lazy-rules
@@ -99,7 +99,7 @@
option-label="name"
:options="Ops.subdistrictOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value:string) => selectSubDistrict(value, '1')"
use-input
input-debounce="0"
@@ -195,7 +195,7 @@
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต/อำเภอ'}`]"
:outlined="edit"
dense
lazy-rules
@@ -205,7 +205,7 @@
option-label="name"
:options="Ops.districtCOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value:string) => selectDistrict(value, '2')"
use-input
input-debounce="0"
@@ -221,7 +221,7 @@
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง/ตำบล '}`]"
:outlined="edit"
dense
lazy-rules
@@ -231,7 +231,7 @@
option-label="name"
:options="Ops.subdistrictCOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value:string) => selectSubDistrict(value, '2')"
use-input
input-debounce="0"
diff --git a/src/components/information/Document.vue b/src/components/information/Document.vue
index e7f4795aa..356d057b4 100644
--- a/src/components/information/Document.vue
+++ b/src/components/information/Document.vue
@@ -102,7 +102,7 @@
{{ "[ไฟล์ jpg,png,pdf,csv,doc,docx ขนาดไม่เกิน 10MB]" }}
- {{ scope.uploadSizeLabel }} / {{ scope.uploadProgressLabel }}
+ {{ scope.uploadSizeLabel }}/{{ scope.uploadProgressLabel }}
{
- ยุทธศาสตร์ / แผน
+ ยุทธศาสตร์/แผน
diff --git a/src/modules/03_recruiting/components/Address.vue b/src/modules/03_recruiting/components/Address.vue
index e0410cc50..6544ace9d 100644
--- a/src/modules/03_recruiting/components/Address.vue
+++ b/src/modules/03_recruiting/components/Address.vue
@@ -239,7 +239,7 @@ const getClass = (val: boolean) => {
:class="getClass(status == 'checkRegister' || status == 'payment')"
:readonly="!(status == 'checkRegister' || status == 'payment')"
:borderless="!(status == 'checkRegister' || status == 'payment')"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกเขต/อำเภอ'}`]"
:outlined="status == 'checkRegister' || status == 'payment'"
dense
lazy-rules
@@ -249,7 +249,7 @@ const getClass = (val: boolean) => {
option-label="name"
:options="districtOptions"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value) => selectDistrict(value, '1')"
/>
@@ -258,7 +258,7 @@ const getClass = (val: boolean) => {
:class="getClass(status == 'checkRegister' || status == 'payment')"
:readonly="!(status == 'checkRegister' || status == 'payment')"
:borderless="!(status == 'checkRegister' || status == 'payment')"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล '}`]"
:outlined="status == 'checkRegister' || status == 'payment'"
dense
lazy-rules
@@ -268,7 +268,7 @@ const getClass = (val: boolean) => {
option-label="name"
:options="subdistrictOptions"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value) => selectSubDistrict(value, '1')"
/>
@@ -360,7 +360,7 @@ const getClass = (val: boolean) => {
:class="getClass(status == 'checkRegister' || status == 'payment')"
:readonly="!(status == 'checkRegister' || status == 'payment')"
:borderless="!(status == 'checkRegister' || status == 'payment')"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกเขต/อำเภอ'}`]"
:outlined="status == 'checkRegister' || status == 'payment'"
dense
lazy-rules
@@ -370,7 +370,7 @@ const getClass = (val: boolean) => {
option-label="name"
:options="districtCOptions"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value) => selectDistrict(value, '2')"
/>
@@ -382,7 +382,7 @@ const getClass = (val: boolean) => {
:class="getClass(status == 'checkRegister' || status == 'payment')"
:readonly="!(status == 'checkRegister' || status == 'payment')"
:borderless="!(status == 'checkRegister' || status == 'payment')"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล '}`]"
:outlined="status == 'checkRegister' || status == 'payment'"
dense
lazy-rules
@@ -392,7 +392,7 @@ const getClass = (val: boolean) => {
option-label="name"
:options="subdistrictCOptions"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value) => selectSubDistrict(value, '2')"
/>
diff --git a/src/modules/03_recruiting/components/Document.vue b/src/modules/03_recruiting/components/Document.vue
index 75c1b5478..5db453425 100644
--- a/src/modules/03_recruiting/components/Document.vue
+++ b/src/modules/03_recruiting/components/Document.vue
@@ -170,7 +170,7 @@ onMounted(async () => {
{{ "[ไฟล์ jpg,png,pdf,csv,doc ขนาดไม่เกิน 10MB]" }}
- {{ scope.uploadSizeLabel }} / {{ scope.uploadProgressLabel }}
+ {{ scope.uploadSizeLabel }}/{{ scope.uploadProgressLabel }}
{
- สถานะ: {{ file.fileType }} / {{ file.fileSize }}
+ สถานะ: {{ file.fileType }}/{{ file.fileSize }}
diff --git a/src/modules/03_recruiting/views/03_editor/index.vue b/src/modules/03_recruiting/views/03_editor/index.vue
index 810433e08..b921c7f14 100644
--- a/src/modules/03_recruiting/views/03_editor/index.vue
+++ b/src/modules/03_recruiting/views/03_editor/index.vue
@@ -1026,7 +1026,7 @@ onMounted(async () => {
:class="getClass(enable.about)"
:readonly="!enable.about"
:borderless="!enable.about"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกเขต/อำเภอ'}`]"
:outlined="enable.about"
dense
lazy-rules
@@ -1036,7 +1036,7 @@ onMounted(async () => {
option-label="name"
:options="districtOptions"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value) => selectDistrict(value)"
/>
@@ -1046,7 +1046,7 @@ onMounted(async () => {
:class="getClass(enable.about)"
:readonly="!enable.about"
:borderless="!enable.about"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล '}`]"
:outlined="enable.about"
dense
lazy-rules
@@ -1056,7 +1056,7 @@ onMounted(async () => {
option-label="name"
:options="subdistrictOptions"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value) => selectSubDistrict(value)"
/>
diff --git a/src/modules/04_registryPerson/components/Dialog/02_Address.vue b/src/modules/04_registryPerson/components/Dialog/02_Address.vue
index 35239965f..6c1929610 100644
--- a/src/modules/04_registryPerson/components/Dialog/02_Address.vue
+++ b/src/modules/04_registryPerson/components/Dialog/02_Address.vue
@@ -139,7 +139,7 @@ watch(
v-model="formDataAddress.registrationDistrictId"
:options="storeLinkCenter.OpsAddress.districtOps"
:label="dataLabel.registrationDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
@update:model-value="(value:string) => selectDistrict(value, '1')"
@filter="(inputValue:string,
doneFn:Function) => storeLinkCenter.filterSelector(inputValue, doneFn,'districtOps'
@@ -162,7 +162,7 @@ watch(
v-model="formDataAddress.registrationSubDistrictId"
:options="storeLinkCenter.OpsAddress.subdistrictOps"
:label="dataLabel.registrationSubDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
@update:model-value="(value:string) => selectSubDistrict(value, '1')"
@filter="(inputValue:string,
doneFn:Function) => storeLinkCenter.filterSelector(inputValue, doneFn,'subdistrictOps'
diff --git a/src/modules/04_registryPerson/components/detail/Achievement/05_ResultsPerformance.vue b/src/modules/04_registryPerson/components/detail/Achievement/05_ResultsPerformance.vue
index 0ffb84b5a..02ad096a4 100644
--- a/src/modules/04_registryPerson/components/detail/Achievement/05_ResultsPerformance.vue
+++ b/src/modules/04_registryPerson/components/detail/Achievement/05_ResultsPerformance.vue
@@ -197,7 +197,7 @@ const columnsPlan = ref([
{
name: "name",
align: "left",
- label: "ความรู้ / ทักษะ / สมรรถนะที่ต้องได้รับการพัฒนา",
+ label: "ความรู้/ทักษะ/สมรรถนะที่ต้องได้รับการพัฒนา",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
@@ -992,6 +992,7 @@ onMounted(async () => {
size="xs"
:model-value="props.row.isDevelopment70"
label="70 การลงมือปฏิบัติ (โดยผู้บังคับบัญชามอบหมาย)"
+ reaonly
/>
{
-
+
diff --git a/src/modules/04_registryPerson/components/detail/Achievement/DialogDevelopmance.vue b/src/modules/04_registryPerson/components/detail/Achievement/DialogDevelopmance.vue
index 3442d5fca..54f8ca7fb 100644
--- a/src/modules/04_registryPerson/components/detail/Achievement/DialogDevelopmance.vue
+++ b/src/modules/04_registryPerson/components/detail/Achievement/DialogDevelopmance.vue
@@ -85,12 +85,12 @@ const projectTechniquesOp2 = ref([
const projectTechniquesOp3 = ref([
{
value: "self_learning",
- label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self – learning)",
+ label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self–learning)",
},
{ value: "classroom_training", label: "การฝึกอบรม (Classroom training)" },
{
value: "in_house_training",
- label: "การฝึกอบรมภายในองค์กร (In – house training)",
+ label: "การฝึกอบรมภายในองค์กร (In–house training)",
},
{
value: "public_training",
@@ -98,11 +98,11 @@ const projectTechniquesOp3 = ref([
},
{
value: "e_training",
- label: "การฝึกอบรมผ่าน online (e – training / e – learning)",
+ label: "การฝึกอบรมผ่าน online (e–training/e–learning)",
},
{ value: "meeting", label: "การประชุม (Meeting)" },
{ value: "seminar", label: "การสัมมนา (Seminar)" },
- { value: "other3", label: "อื่น ๆ (ระบุ)" },
+ { value: "other3", label: "อื่นๆ (ระบุ)" },
]);
const choice = ref("MANUAL");
@@ -402,11 +402,11 @@ watch(
readonly
outlined
dense
- :rules="[(val:string) => !!val || `${'กรุณากรอกชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา'}`,]"
+ :rules="[(val:string) => !!val || `${'กรุณากรอกชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา'}`,]"
lazy-rules
hide-bottom-space
class="inputgreen"
- label="ชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา"
+ label="ชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา"
>
diff --git a/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue b/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue
index 4acdc9736..a36fba00b 100644
--- a/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue
+++ b/src/modules/04_registryPerson/components/detail/PersonalInformation/03_Address.vue
@@ -68,12 +68,12 @@ const dataLabel = {
registrationAddress: "ที่อยู่ตามทะเบียนบ้าน",
registrationProvince: "จังหวัด",
registrationDistrict: "เขต/อำเภอ",
- registrationSubDistrict: "แขวง / ตำบล",
+ registrationSubDistrict: "แขวง/ตำบล",
registrationZipCode: "รหัสไปรษณีย์",
currentAddress: "ที่อยู่ปัจจุบัน",
currentProvince: "จังหวัด",
currentDistrict: "เขต/อำเภอ",
- currentSubDistrict: "แขวง / ตำบล",
+ currentSubDistrict: "แขวง/ตำบล",
currentZipCode: "รหัสไปรษณีย์",
registrationSame: "ที่อยู่ปัจจุบันตรงกับที่อยู่ตามทะเบียนบ้าน",
};
@@ -720,7 +720,7 @@ onMounted(async () => {
v-model="formData.registrationDistrictId"
:options="store.Ops.districtOps"
:label="dataLabel.registrationDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกเขต/อำเภอ'}`]"
@update:model-value="(value:string) => selectDistrict(value, '1')"
@filter="(inputValue:string,
doneFn:Function) => filterSelector(inputValue, doneFn,'districtOps'
@@ -743,7 +743,7 @@ onMounted(async () => {
v-model="formData.registrationSubDistrictId"
:options="store.Ops.subdistrictOps"
:label="dataLabel.registrationSubDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
@update:model-value="(value:string) => selectSubDistrict(value, '1')"
@filter="(inputValue:string,
doneFn:Function) => filterSelector(inputValue, doneFn,'subdistrictOps'
@@ -841,7 +841,7 @@ onMounted(async () => {
v-model="formData.currentDistrictId"
:options="store.Ops.districtCOps"
:label="dataLabel.currentDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
@update:model-value="(value:string) => selectDistrict(value, '2')"
@filter="(inputValue:string,
doneFn:Function) => filterSelector(inputValue, doneFn,'districtCOps'
@@ -864,7 +864,7 @@ onMounted(async () => {
v-model="formData.currentSubDistrictId"
:options="store.Ops.subdistrictCOps"
:label="dataLabel.currentSubDistrict"
- :rules="[(val:string) => !!val || `${'กรุณาเลือก แขวง / ตำบล'}`]"
+ :rules="[(val:string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
@update:model-value="(value:string) => selectSubDistrict(value, '2')"
@filter="(inputValue:string,
doneFn:Function) => filterSelector(inputValue, doneFn,'subdistrictCOps'
diff --git a/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue b/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue
index 77a9f0138..554807739 100644
--- a/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue
+++ b/src/modules/04_registryPerson/components/requestEdit/02_TabIDP.vue
@@ -56,7 +56,7 @@ const columns = ref([
{
name: "name",
align: "left",
- label: "ความรู้ / ทักษะ / สมรรถนะที่ต้องได้รับการพัฒนา",
+ label: "ความรู้/ทักษะ/สมรรถนะที่ต้องได้รับการพัฒนา",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
diff --git a/src/modules/05_placement/components/PersonalDetail/CheckInformation/02_FormAddress.vue b/src/modules/05_placement/components/PersonalDetail/CheckInformation/02_FormAddress.vue
index dc2683063..52c8e6eaf 100644
--- a/src/modules/05_placement/components/PersonalDetail/CheckInformation/02_FormAddress.vue
+++ b/src/modules/05_placement/components/PersonalDetail/CheckInformation/02_FormAddress.vue
@@ -371,7 +371,7 @@ onMounted(() => {
{
option-label="name"
:options="Ops.districtOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value: string) => selectDistrict(value, '1')"
use-input
input-debounce="0"
@@ -394,7 +394,7 @@ onMounted(() => {
{
option-label="name"
:options="Ops.subdistrictOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value: string) => selectSubDistrict(value, '1')"
use-input
input-debounce="0"
@@ -496,7 +496,7 @@ onMounted(() => {
{
option-label="name"
:options="Ops.districtCOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value: string) => selectDistrict(value, '2')"
use-input
input-debounce="0"
@@ -522,7 +522,7 @@ onMounted(() => {
{
option-label="name"
:options="Ops.subdistrictCOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value: string) => selectSubDistrict(value, '2')"
use-input
input-debounce="0"
diff --git a/src/modules/05_placement/components/PersonalDetail/Information/Address.vue b/src/modules/05_placement/components/PersonalDetail/Information/Address.vue
index 26af481ea..7c7a7f021 100644
--- a/src/modules/05_placement/components/PersonalDetail/Information/Address.vue
+++ b/src/modules/05_placement/components/PersonalDetail/Information/Address.vue
@@ -560,7 +560,7 @@ onMounted(async () => {
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val: string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val: string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
:outlined="edit"
dense
lazy-rules
@@ -570,7 +570,7 @@ onMounted(async () => {
option-label="name"
:options="Ops.districtOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value: string) => selectDistrict(value, '1')"
use-input
input-debounce="0"
@@ -586,7 +586,7 @@ onMounted(async () => {
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val: string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val: string) => !!val || `${'กรุณาเลือกแขวง/ตำบล '}`]"
:outlined="edit"
dense
lazy-rules
@@ -596,7 +596,7 @@ onMounted(async () => {
option-label="name"
:options="Ops.subdistrictOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value: string) => selectSubDistrict(value, '1')"
use-input
input-debounce="0"
@@ -701,7 +701,7 @@ onMounted(async () => {
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val: string) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
+ :rules="[(val: string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
:outlined="edit"
dense
lazy-rules
@@ -711,7 +711,7 @@ onMounted(async () => {
option-label="name"
:options="Ops.districtCOps"
option-value="id"
- :label="`${'เขต / อำเภอ'}`"
+ :label="`${'เขต/อำเภอ'}`"
@update:model-value="(value: string) => selectDistrict(value, '2')"
use-input
input-debounce="0"
@@ -730,7 +730,7 @@ onMounted(async () => {
:class="getClass(edit)"
:readonly="!edit"
:borderless="!edit"
- :rules="[(val: string) => !!val || `${'กรุณาเลือก แขวง / ตำบล '}`]"
+ :rules="[(val: string) => !!val || `${'กรุณาเลือกแขวง/ตำบล'}`]"
:outlined="edit"
dense
lazy-rules
@@ -740,7 +740,7 @@ onMounted(async () => {
option-label="name"
:options="Ops.subdistrictCOps"
option-value="id"
- :label="`${'แขวง / ตำบล '}`"
+ :label="`${'แขวง/ตำบล '}`"
@update:model-value="(value: string) => selectSubDistrict(value, '2')"
use-input
input-debounce="0"
diff --git a/src/modules/05_placement/components/probation/FormAssign.vue b/src/modules/05_placement/components/probation/FormAssign.vue
index 4cbc54495..5cbb94447 100644
--- a/src/modules/05_placement/components/probation/FormAssign.vue
+++ b/src/modules/05_placement/components/probation/FormAssign.vue
@@ -1450,7 +1450,7 @@ onMounted(async () => {
- 3.1 ชื่องาน / ภารกิจงานที่มอบหมาย (ควรมีมากกว่า 1 ภารกิจงาน)
+ 3.1 ชื่องาน/ภารกิจงานที่มอบหมาย (ควรมีมากกว่า 1 ภารกิจงาน)
{
- รายการสอบแข่งขัน / คัดเลือก
+ รายการสอบแข่งขัน/คัดเลือก
diff --git a/src/modules/13_salary/components/DialogInfoMain.vue b/src/modules/13_salary/components/DialogInfoMain.vue
index 156218414..07ac60a02 100644
--- a/src/modules/13_salary/components/DialogInfoMain.vue
+++ b/src/modules/13_salary/components/DialogInfoMain.vue
@@ -163,7 +163,7 @@ watch(
{{
type === "posSalary"
- ? "ข้อมูลเงินเดือน / ค่าจ้าง"
+ ? "ข้อมูลเงินเดือน/ค่าจ้าง"
: type === "discipline"
? "ข้อมูลวินัย"
: "ข้อมูลการลา"
diff --git a/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue b/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue
index 042bc07f2..7e0e52daa 100644
--- a/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue
+++ b/src/modules/14_KPI/components/Tab/Dialog/01_FormIndicator.vue
@@ -662,7 +662,7 @@ watch(
{{ formDetail.nodeName }}
-
ยุทธศาสตร์ / แผน
+
ยุทธศาสตร์/แผน
{{ formDetail.strategyName }}
diff --git a/src/modules/14_KPI/components/Tab/Dialog/DialogDevelop.vue b/src/modules/14_KPI/components/Tab/Dialog/DialogDevelop.vue
index fbb7fb452..1f491a6bd 100644
--- a/src/modules/14_KPI/components/Tab/Dialog/DialogDevelop.vue
+++ b/src/modules/14_KPI/components/Tab/Dialog/DialogDevelop.vue
@@ -106,12 +106,12 @@ const projectTechniquesOp2 = ref([
const projectTechniquesOp3 = ref([
{
value: "self_learning",
- label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self – learning)",
+ label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self–learning)",
},
{ value: "classroom_training", label: "การฝึกอบรม (Classroom training)" },
{
value: "in_house_training",
- label: "การฝึกอบรมภายในองค์กร (In – house training)",
+ label: "การฝึกอบรมภายในองค์กร (In–house training)",
},
{
value: "public_training",
@@ -119,7 +119,7 @@ const projectTechniquesOp3 = ref([
},
{
value: "e_training",
- label: "การฝึกอบรมผ่าน online (e – training / e – learning)",
+ label: "การฝึกอบรมผ่าน online (e–training/e–learning)",
},
{ value: "meeting", label: "การประชุม (Meeting)" },
{ value: "seminar", label: "การสัมมนา (Seminar)" },
@@ -461,11 +461,11 @@ watch(
v-model="formData.name"
outlined
dense
- :rules="[(val:string) => !!val || `${'กรุณากรอกชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา'}`,]"
+ :rules="[(val:string) => !!val || `${'กรุณากรอกชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา'}`,]"
lazy-rules
hide-bottom-space
class="inputgreen"
- label="ชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา"
+ label="ชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา"
>
diff --git a/src/modules/14_KPI/components/Tab/DialogEvaluate/03_DialogEvalutionDevelop.vue b/src/modules/14_KPI/components/Tab/DialogEvaluate/03_DialogEvalutionDevelop.vue
index 3869e2a9d..69a8858a8 100644
--- a/src/modules/14_KPI/components/Tab/DialogEvaluate/03_DialogEvalutionDevelop.vue
+++ b/src/modules/14_KPI/components/Tab/DialogEvaluate/03_DialogEvalutionDevelop.vue
@@ -27,7 +27,7 @@ const columns = ref([
{
name: "name",
align: "left",
- label: "ชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา",
+ label: "ชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
diff --git a/src/modules/14_KPI/components/Tab/Topic/03_Develop.vue b/src/modules/14_KPI/components/Tab/Topic/03_Develop.vue
index 52d4d26ee..5fe445e7a 100644
--- a/src/modules/14_KPI/components/Tab/Topic/03_Develop.vue
+++ b/src/modules/14_KPI/components/Tab/Topic/03_Develop.vue
@@ -49,7 +49,7 @@ const columns = ref([
{
name: "name",
align: "left",
- label: "ชื่อเรื่อง / เนื้อเรื่อง / หัวข้อการพัฒนา",
+ label: "ชื่อเรื่อง/เนื้อเรื่อง/หัวข้อการพัฒนา",
sortable: true,
field: "name",
headerStyle: "font-size: 14px",
diff --git a/src/modules/14_KPI/components/results/dialogIndividual.vue b/src/modules/14_KPI/components/results/dialogIndividual.vue
index 470af8bf5..8183724ad 100644
--- a/src/modules/14_KPI/components/results/dialogIndividual.vue
+++ b/src/modules/14_KPI/components/results/dialogIndividual.vue
@@ -86,12 +86,12 @@ const projectTechniquesOp2 = ref([
const projectTechniquesOp3 = ref([
{
value: "self_learning",
- label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self – learning)",
+ label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self–learning)",
},
{ value: "classroom_training", label: "การฝึกอบรม (Classroom training)" },
{
value: "in_house_training",
- label: "การฝึกอบรมภายในองค์กร (In – house training)",
+ label: "การฝึกอบรมภายในองค์กร (In–house training)",
},
{
value: "public_training",
@@ -99,7 +99,7 @@ const projectTechniquesOp3 = ref([
},
{
value: "e_training",
- label: "การฝึกอบรมผ่าน online (e – training / e – learning)",
+ label: "การฝึกอบรมผ่าน online (e–training/e–learning)",
},
{ value: "meeting", label: "การประชุม (Meeting)" },
{ value: "seminar", label: "การสัมมนา (Seminar)" },
diff --git a/src/modules/15_development/components/ProjectDetail.vue b/src/modules/15_development/components/ProjectDetail.vue
index db0674c1e..2eaa43624 100644
--- a/src/modules/15_development/components/ProjectDetail.vue
+++ b/src/modules/15_development/components/ProjectDetail.vue
@@ -130,18 +130,18 @@ const projectTechniquesOp2 = ref([
{ value: "team_meeting", label: "การประชุมทีม (Team meeting)" },
{ value: "consulting", label: "การให้คำปรึกษา (Consulting)" },
{ value: "feedback", label: "การให้ข้อคิดเห็น/เสนอแนะ (Feedback)" },
- { value: "other2", label: "อื่น ๆ (ระบุ)" },
+ { value: "other2", label: "อื่นๆ (ระบุ)" },
]);
const projectTechniquesOp3 = ref([
{
value: "self_learning",
- label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self – learning)",
+ label: "การเรียนรู้ด้วยตนเอง แบบ online/offline (Self–learning)",
},
{ value: "classroom_training", label: "การฝึกอบรม (Classroom training)" },
{
value: "in_house_training",
- label: "การฝึกอบรมภายในองค์กร (In – house training)",
+ label: "การฝึกอบรมภายในองค์กร (In–house training)",
},
{
value: "public_training",
@@ -149,7 +149,7 @@ const projectTechniquesOp3 = ref([
},
{
value: "e_training",
- label: "การฝึกอบรมผ่าน online (e – training / e – learning)",
+ label: "การฝึกอบรมผ่าน online (e–training/e–learning)",
},
{ value: "meeting", label: "การประชุม (Meeting)" },
{ value: "seminar", label: "การสัมมนา (Seminar)" },
diff --git a/src/modules/15_development/components/history/AddPage.vue b/src/modules/15_development/components/history/AddPage.vue
index 1ad00f9df..bbbc057e0 100644
--- a/src/modules/15_development/components/history/AddPage.vue
+++ b/src/modules/15_development/components/history/AddPage.vue
@@ -123,7 +123,7 @@ onMounted(async () => {
class="q-mr-sm"
@click="router.go(-1)"
/>
- ประวัติการฝึกอบรม / ดูงานของข้าราชการกรุงเทพมหานครสามัญ
+ ประวัติการฝึกอบรม/ดูงานของข้าราชการกรุงเทพมหานครสามัญ
diff --git a/src/modules/18_command/components/DialogCreateCommand.vue b/src/modules/18_command/components/DialogCreateCommand.vue
index e6b50d5e2..53feb6ebb 100644
--- a/src/modules/18_command/components/DialogCreateCommand.vue
+++ b/src/modules/18_command/components/DialogCreateCommand.vue
@@ -63,7 +63,7 @@ const columns = ref([
sortable: false,
field: "commandNo",
format(val, row) {
- return val ? `${val} / ${row.commandYear + 543}` : "-";
+ return val ? `${val}/${row.commandYear + 543}` : "-";
},
headerStyle: "font-size: 14px",
style: "font-size: 14px",
diff --git a/src/modules/18_command/components/Main/TableMain.vue b/src/modules/18_command/components/Main/TableMain.vue
index e05e976f2..42514d539 100644
--- a/src/modules/18_command/components/Main/TableMain.vue
+++ b/src/modules/18_command/components/Main/TableMain.vue
@@ -43,7 +43,7 @@ const columns = ref([
sortable: false,
field: "commandNo",
format(val, row) {
- return val ? `${val} / ${row.commandYear + 543}` : "-";
+ return val ? `${val}/${row.commandYear + 543}` : "-";
},
headerStyle: "font-size: 14px",
style: "font-size: 14px",