ปรับ Form สอบสวนความผิดทางวินัย

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-11-22 15:23:21 +07:00
parent 14c232d589
commit 31883d8794
2 changed files with 413 additions and 176 deletions

View file

@ -158,7 +158,7 @@ onMounted(async () => {
/>
</div>
</div>
<q-card flat bordered class="col-12">
<q-card flat class="col-12">
<q-tabs
v-model="store.tabMenu"
dense
@ -176,10 +176,10 @@ onMounted(async () => {
<q-separator />
<q-tab-panels v-model="store.tabMenu" animated>
<q-tab-panel name="complaints">
<FormComplaints :on-submit="onSubmit" />
<FormComplaints :on-submit="onSubmit" :data="data" />
</q-tab-panel>
<q-tab-panel name="investigatefacts">
<FormInvestigatefacts :on-submit="onSubmit" />
<FormInvestigatefacts :on-submit="onSubmit" :data="data" />
</q-tab-panel>
<q-tab-panel name="disciplinary">
<FormDisciplinary :on-submit="onSubmit" :data="data" />
@ -189,3 +189,10 @@ onMounted(async () => {
<!-- <Form :on-submit="onSubmit" :data="data" /> -->
</div>
</template>
<style scoped>
.q-tab-panel {
padding: 0;
background-color: #f0f3f3;
}
</style>