แก้ชื่อ
This commit is contained in:
parent
ef998d3e84
commit
24f2cfc57b
2 changed files with 7 additions and 7 deletions
|
|
@ -683,7 +683,7 @@ const tabList = readonly<tabType[]>([
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 15,
|
key: 15,
|
||||||
label: "ใบประกอบวิชาชีพ",
|
label: "ใบอนุญาตประกอบวิชาชีพ",
|
||||||
tag: "certicate",
|
tag: "certicate",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
<!-- card ใบประกอบวิชาชีพ -->
|
<!-- card ใบอนุญาตประกอบวิชาชีพ -->
|
||||||
<template>
|
<template>
|
||||||
<q-card flat bordered class="col-12 q-px-lg q-py-md q-mt-md">
|
<q-card flat bordered class="col-12 q-px-lg q-py-md q-mt-md">
|
||||||
<q-form ref="myForm">
|
<q-form ref="myForm">
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
v-model:inputvisible="visibleColumns"
|
v-model:inputvisible="visibleColumns"
|
||||||
:add="clickAdd"
|
:add="clickAdd"
|
||||||
:name="
|
:name="
|
||||||
profileType == 'employee' ? 'ใบอนุญาตของลูกจ้าง' : 'ใบประกอบวิชาชีพ'
|
profileType == 'employee' ? 'ใบอนุญาตของลูกจ้าง' : 'ใบอนุญาตประกอบวิชาชีพ'
|
||||||
"
|
"
|
||||||
icon="mdi-book"
|
icon="mdi-book"
|
||||||
:statusEdit="statusEdit"
|
:statusEdit="statusEdit"
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
icon="mdi-history"
|
icon="mdi-history"
|
||||||
@click="clickHistory(props.row)"
|
@click="clickHistory(props.row)"
|
||||||
>
|
>
|
||||||
<q-tooltip>ประวัติแก้ไขใบประกอบวิชาชีพ</q-tooltip>
|
<q-tooltip>ประวัติแก้ไขใบอนุญาตประกอบวิชาชีพ</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
</q-td>
|
</q-td>
|
||||||
</q-tr>
|
</q-tr>
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
<q-form ref="myForm">
|
<q-form ref="myForm">
|
||||||
<DialogHeader
|
<DialogHeader
|
||||||
:tittle="
|
:tittle="
|
||||||
profileType == 'employee' ? 'ใบอนุญาตของลูกจ้าง' : 'ใบประกอบวิชาชีพ'
|
profileType == 'employee' ? 'ใบอนุญาตของลูกจ้าง' : 'ใบอนุญาตประกอบวิชาชีพ'
|
||||||
"
|
"
|
||||||
:close="clickClose"
|
:close="clickClose"
|
||||||
/>
|
/>
|
||||||
|
|
@ -329,7 +329,7 @@ const previous = ref<boolean>(); //แสดงปุ่มดูข้อมู
|
||||||
const next = ref<boolean>(); //แสดงปุ่มดูข้อมูลต่อไป
|
const next = ref<boolean>(); //แสดงปุ่มดูข้อมูลต่อไป
|
||||||
const editRow = ref<boolean>(false); //เช็คมีการแก้ไขข้อมูล
|
const editRow = ref<boolean>(false); //เช็คมีการแก้ไขข้อมูล
|
||||||
const rowsHistory = ref<RequestItemsObject[]>([]); //select data history
|
const rowsHistory = ref<RequestItemsObject[]>([]); //select data history
|
||||||
const tittleHistory = ref<string>("ประวัติแก้ไขใบประกอบวิชาชีพ"); //
|
const tittleHistory = ref<string>("ประวัติแก้ไขใบอนุญาตประกอบวิชาชีพ"); //
|
||||||
const filterHistory = ref<string>(""); //search data table history
|
const filterHistory = ref<string>(""); //search data table history
|
||||||
const modalHistory = ref<boolean>(false); //modal ประวัติการแก้ไขข้อมูล
|
const modalHistory = ref<boolean>(false); //modal ประวัติการแก้ไขข้อมูล
|
||||||
const checkValidate = ref<boolean>(false); //validate data ผ่านหรือไม่
|
const checkValidate = ref<boolean>(false); //validate data ผ่านหรือไม่
|
||||||
|
|
@ -796,7 +796,7 @@ const clickHistory = async (row: RequestItemsObject) => {
|
||||||
tittleHistory.value =
|
tittleHistory.value =
|
||||||
props.profileType == "employee"
|
props.profileType == "employee"
|
||||||
? "ประวัติแก้ไขใบอนุญาตของลูกจ้าง"
|
? "ประวัติแก้ไขใบอนุญาตของลูกจ้าง"
|
||||||
: "ประวัติแก้ไขใบประกอบวิชาชีพ";
|
: "ประวัติแก้ไขใบอนุญาตประกอบวิชาชีพ";
|
||||||
modalHistory.value = true;
|
modalHistory.value = true;
|
||||||
showLoader();
|
showLoader();
|
||||||
await http
|
await http
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue