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 isAttachment = ref<boolean>(true); // บัญชีแนบท้าย
|
||||
const isSalary = ref<boolean>(true); // แก้ไขเงินเดือน
|
||||
const isAttachmentShow = ref<boolean>(true); // บัญชีแนบท้าย show/off
|
||||
|
||||
const dataCategory = ref<DateOption[]>([]); //ข้อมูล หมวดหมู่
|
||||
|
|
@ -189,6 +190,7 @@ function onSubmit() {
|
|||
commandSysId: category.value,
|
||||
isActive: status.value,
|
||||
isAttachment: isAttachment.value,
|
||||
isSalary: isSalary.value,
|
||||
})
|
||||
.then(async () => {
|
||||
await fetchCommandType();
|
||||
|
|
@ -503,6 +505,11 @@ onMounted(async () => {
|
|||
label="บัญชีแนบท้าย"
|
||||
size="sm"
|
||||
/>
|
||||
<q-checkbox
|
||||
v-model="isSalary"
|
||||
label="แก้ไขเงินเดือน"
|
||||
size="sm"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</q-card-section>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue