isSalary
This commit is contained in:
parent
af7b828498
commit
ab5d2b29e6
1 changed files with 7 additions and 0 deletions
|
|
@ -57,6 +57,7 @@ const filteredTabs = computed(() =>
|
||||||
|
|
||||||
const isActive = ref<boolean>(true); // สถานะของรายการคำสั่ง
|
const isActive = ref<boolean>(true); // สถานะของรายการคำสั่ง
|
||||||
const isAttachment = ref<boolean>(true); // บัญชีแนบท้าย
|
const isAttachment = ref<boolean>(true); // บัญชีแนบท้าย
|
||||||
|
const isSalary = ref<boolean>(true); // แก้ไขเงินเดือน
|
||||||
const isAttachmentShow = ref<boolean>(true); // บัญชีแนบท้าย show/off
|
const isAttachmentShow = ref<boolean>(true); // บัญชีแนบท้าย show/off
|
||||||
|
|
||||||
const dataCategory = ref<DateOption[]>([]); //ข้อมูล หมวดหมู่
|
const dataCategory = ref<DateOption[]>([]); //ข้อมูล หมวดหมู่
|
||||||
|
|
@ -189,6 +190,7 @@ function onSubmit() {
|
||||||
commandSysId: category.value,
|
commandSysId: category.value,
|
||||||
isActive: status.value,
|
isActive: status.value,
|
||||||
isAttachment: isAttachment.value,
|
isAttachment: isAttachment.value,
|
||||||
|
isSalary: isSalary.value,
|
||||||
})
|
})
|
||||||
.then(async () => {
|
.then(async () => {
|
||||||
await fetchCommandType();
|
await fetchCommandType();
|
||||||
|
|
@ -503,6 +505,11 @@ onMounted(async () => {
|
||||||
label="บัญชีแนบท้าย"
|
label="บัญชีแนบท้าย"
|
||||||
size="sm"
|
size="sm"
|
||||||
/>
|
/>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="isSalary"
|
||||||
|
label="แก้ไขเงินเดือน"
|
||||||
|
size="sm"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue