ปรับ ui รอ API แต่งตั้งคณะกรรมการประเมินผลการทดลองปฏิบัติหน้าที่ราชการ
This commit is contained in:
parent
8ce9e0fcab
commit
973dc01108
1 changed files with 14 additions and 1 deletions
|
|
@ -35,6 +35,7 @@ const checkRoutePermisson = ref<boolean>(
|
|||
const id = ref<string>(route.params.id as string);
|
||||
const profileId = ref<string>("");
|
||||
const isSave = ref<boolean>(false);
|
||||
const isDirector = ref<boolean>(false);
|
||||
|
||||
const topic = ref<string>("");
|
||||
const status = ref<string>("");
|
||||
|
|
@ -357,6 +358,9 @@ async function getData() {
|
|||
.finally(() => {});
|
||||
}
|
||||
|
||||
function onDirector() {
|
||||
}
|
||||
|
||||
watch(
|
||||
() => modal.value,
|
||||
() => {
|
||||
|
|
@ -528,7 +532,7 @@ onMounted(async () => {
|
|||
|
||||
<q-card-section>
|
||||
<div class="row q-col-gutter-sm">
|
||||
<div class="col-12">
|
||||
<div class="col-4">
|
||||
<q-select
|
||||
v-model="member"
|
||||
outlined
|
||||
|
|
@ -543,6 +547,15 @@ onMounted(async () => {
|
|||
>
|
||||
</q-select>
|
||||
</div>
|
||||
<q-checkbox
|
||||
keep-color
|
||||
v-model="isDirector"
|
||||
label="แสดงเฉพาะผู้อำนวยการ/หัวหน้า"
|
||||
color="primary"
|
||||
@update:model-value="onDirector"
|
||||
>
|
||||
<q-tooltip>แสดงเฉพาะผู้อำนวยการ/หัวหน้า </q-tooltip>
|
||||
</q-checkbox>
|
||||
<div class="col-12">
|
||||
<d-table
|
||||
ref="table"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue