ซ่อนเงินเดือน 3 อัน
This commit is contained in:
parent
35bfa128dc
commit
2b59c01fdf
3 changed files with 19 additions and 0 deletions
|
|
@ -39,6 +39,7 @@ const props = defineProps({
|
||||||
onCheckChangeData: { type: Function, required: true },
|
onCheckChangeData: { type: Function, required: true },
|
||||||
fetchDataCommandList: { type: Function, required: true },
|
fetchDataCommandList: { type: Function, required: true },
|
||||||
commandSysId: { type: String, required: true },
|
commandSysId: { type: String, required: true },
|
||||||
|
formCommandList: { type: Object, required: true },
|
||||||
});
|
});
|
||||||
|
|
||||||
const ListCommandSalary = ref<ListCommandSalaryType[]>([]);
|
const ListCommandSalary = ref<ListCommandSalaryType[]>([]);
|
||||||
|
|
@ -466,5 +467,6 @@ onMounted(async () => {
|
||||||
:command-edit-recive="commandReciveId"
|
:command-edit-recive="commandReciveId"
|
||||||
:get-data="getPersonList"
|
:get-data="getPersonList"
|
||||||
:select-person-data="selectPersonData"
|
:select-person-data="selectPersonData"
|
||||||
|
:issue="formCommandList.issue"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ const { showLoader, hideLoader, dialogConfirm, messageError, success } =
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
getData: Function,
|
getData: Function,
|
||||||
selectPersonData: Object,
|
selectPersonData: Object,
|
||||||
|
issue: String,
|
||||||
});
|
});
|
||||||
const modal = defineModel<boolean>("modal", { required: true });
|
const modal = defineModel<boolean>("modal", { required: true });
|
||||||
const titleName = defineModel<string>("titleName", { required: true });
|
const titleName = defineModel<string>("titleName", { required: true });
|
||||||
|
|
@ -109,6 +110,11 @@ watch(
|
||||||
/> -->
|
/> -->
|
||||||
|
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="
|
||||||
|
issue !==
|
||||||
|
'คำสั่งแต่งตั้งคณะกรรมการประเมินผลการทดลองปฏิบัติหน้าที่ราชการ' &&
|
||||||
|
issue !== 'คำสั่งยกเลิกการลาออก'
|
||||||
|
"
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
lazy-rules
|
lazy-rules
|
||||||
|
|
@ -124,6 +130,11 @@ watch(
|
||||||
|
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="
|
||||||
|
issue !==
|
||||||
|
'คำสั่งแต่งตั้งคณะกรรมการประเมินผลการทดลองปฏิบัติหน้าที่ราชการ' &&
|
||||||
|
issue !== 'คำสั่งยกเลิกการลาออก'
|
||||||
|
"
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
lazy-rules
|
lazy-rules
|
||||||
|
|
@ -145,6 +156,11 @@ watch(
|
||||||
|
|
||||||
<div class="col-xs-6 col-sm-6 col-md-6">
|
<div class="col-xs-6 col-sm-6 col-md-6">
|
||||||
<q-input
|
<q-input
|
||||||
|
v-if="
|
||||||
|
issue !==
|
||||||
|
'คำสั่งแต่งตั้งคณะกรรมการประเมินผลการทดลองปฏิบัติหน้าที่ราชการ' &&
|
||||||
|
issue !== 'คำสั่งยกเลิกการลาออก'
|
||||||
|
"
|
||||||
dense
|
dense
|
||||||
outlined
|
outlined
|
||||||
lazy-rules
|
lazy-rules
|
||||||
|
|
|
||||||
|
|
@ -164,6 +164,7 @@ onMounted(async () => {
|
||||||
:on-check-change-data="onCheckChangeData"
|
:on-check-change-data="onCheckChangeData"
|
||||||
:fetch-data-command-list="fetchDataCommandList"
|
:fetch-data-command-list="fetchDataCommandList"
|
||||||
:command-sys-id="formCommandList?.commandSysId as string"
|
:command-sys-id="formCommandList?.commandSysId as string"
|
||||||
|
:form-command-list="formCommandList"
|
||||||
/>
|
/>
|
||||||
</q-tab-panel>
|
</q-tab-panel>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue