ปรับ 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 id = ref<string>(route.params.id as string);
|
||||||
const profileId = ref<string>("");
|
const profileId = ref<string>("");
|
||||||
const isSave = ref<boolean>(false);
|
const isSave = ref<boolean>(false);
|
||||||
|
const isDirector = ref<boolean>(false);
|
||||||
|
|
||||||
const topic = ref<string>("");
|
const topic = ref<string>("");
|
||||||
const status = ref<string>("");
|
const status = ref<string>("");
|
||||||
|
|
@ -357,6 +358,9 @@ async function getData() {
|
||||||
.finally(() => {});
|
.finally(() => {});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onDirector() {
|
||||||
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => modal.value,
|
() => modal.value,
|
||||||
() => {
|
() => {
|
||||||
|
|
@ -528,7 +532,7 @@ onMounted(async () => {
|
||||||
|
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<div class="row q-col-gutter-sm">
|
<div class="row q-col-gutter-sm">
|
||||||
<div class="col-12">
|
<div class="col-4">
|
||||||
<q-select
|
<q-select
|
||||||
v-model="member"
|
v-model="member"
|
||||||
outlined
|
outlined
|
||||||
|
|
@ -543,6 +547,15 @@ onMounted(async () => {
|
||||||
>
|
>
|
||||||
</q-select>
|
</q-select>
|
||||||
</div>
|
</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">
|
<div class="col-12">
|
||||||
<d-table
|
<d-table
|
||||||
ref="table"
|
ref="table"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue