แก้ layout โครงสร้างและปรับการแสดงผลผังเงินเดือน
This commit is contained in:
parent
b6364c5b2b
commit
4a2f43bbf4
2 changed files with 9 additions and 6 deletions
|
|
@ -215,8 +215,8 @@ function clearForm() {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<q-dialog v-model="modal" full-width persistent>
|
<q-dialog v-model="modal" full-width full-height persistent>
|
||||||
<q-card>
|
<q-card class="column full-height">
|
||||||
<Header
|
<Header
|
||||||
:tittle="'เลือกตำแหน่งที่ต้องการสืบทอดจากโครงสร้างปัจจุบัน'"
|
:tittle="'เลือกตำแหน่งที่ต้องการสืบทอดจากโครงสร้างปัจจุบัน'"
|
||||||
:close="
|
:close="
|
||||||
|
|
@ -227,12 +227,12 @@ function clearForm() {
|
||||||
/>
|
/>
|
||||||
<q-separator />
|
<q-separator />
|
||||||
|
|
||||||
<q-card-section class="q-pt-none q-pa-md">
|
<q-card-section class="q-pt-none q-pa-md bg-grey-2">
|
||||||
<div class="row q-col-gutter-md">
|
<div class="row q-col-gutter-md">
|
||||||
<q-card
|
<q-card
|
||||||
bordered
|
bordered
|
||||||
class="col-12 col-sm-4 scroll q-pa-sm"
|
class="col-12 col-sm-4 scroll q-pa-sm"
|
||||||
style="max-height: 70vh"
|
style="height: 750px"
|
||||||
>
|
>
|
||||||
<q-toolbar style="padding: 0">
|
<q-toolbar style="padding: 0">
|
||||||
<q-toolbar-title class="text-subtitle2 text-bold"
|
<q-toolbar-title class="text-subtitle2 text-bold"
|
||||||
|
|
@ -392,6 +392,8 @@ function clearForm() {
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
||||||
|
<q-separator />
|
||||||
|
|
||||||
<q-card-actions align="right" class="bg-white text-teal">
|
<q-card-actions align="right" class="bg-white text-teal">
|
||||||
<q-btn label="สืบทอดตำแหน่ง" color="public" @click="onClickConfirm" />
|
<q-btn label="สืบทอดตำแหน่ง" color="public" @click="onClickConfirm" />
|
||||||
</q-card-actions>
|
</q-card-actions>
|
||||||
|
|
|
||||||
|
|
@ -286,8 +286,9 @@ watch([() => formQuery.page, () => formQuery.pageSize], async () => {
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="col.name === 'isNext'">
|
<div v-else-if="col.name === 'isNext'">
|
||||||
<q-icon
|
<q-icon
|
||||||
:name="col.value ? 'done' : 'close'"
|
v-if="col.value"
|
||||||
:color="col.value ? 'primary' : 'grey'"
|
name="done"
|
||||||
|
color="primary"
|
||||||
size="24px"
|
size="24px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue