แก้ไขการแสดงผลปุ่มขอลงเวลากรณีพิเศษ แก้สี และ UI

This commit is contained in:
Warunee Tamkoo 2025-03-19 15:51:36 +07:00
parent 01f0087beb
commit dce257300b
6 changed files with 66 additions and 38 deletions

View file

@ -30,7 +30,7 @@ const filterYear = ref<number>(stores.year) //ปีงบประมาณ
const titleName = ref<string>('เพิ่มรายการลงเวลากรณีพิเศษ') // popup
const dateMonth = ref<DataDateMonthObject>({
month: new Date().getMonth(),
year: stores.year ? stores.year:new Date().getFullYear(),
year: stores.year ? stores.year : new Date().getFullYear(),
})
const modalPopup = ref<boolean>(false) // modal
@ -154,6 +154,7 @@ watch(
<q-space />
<q-btn
v-if="tab === 'time'"
unelevated
icon="add"
:dense="$q.screen.lt.sm"
@ -168,6 +169,7 @@ watch(
:title="titleName"
:clickClose="onClickClose"
:fetchData="props.fetchData"
action="special"
/>
</template>