evaluate => กรรมการและการประชุม
This commit is contained in:
parent
71c1dedd7b
commit
713b818324
3 changed files with 5 additions and 5 deletions
|
|
@ -126,7 +126,7 @@ function returnDirector(data: any) {
|
|||
.then(async () => {
|
||||
await props.fetchdata();
|
||||
await success($q, "บันทึกสำเร็จ");
|
||||
await onClickClose();
|
||||
onClickClose();
|
||||
})
|
||||
.catch((e) => {
|
||||
messageError($q, e);
|
||||
|
|
@ -141,7 +141,7 @@ function returnDirector(data: any) {
|
|||
async function getList() {
|
||||
showLoader();
|
||||
await http
|
||||
.get(config.API.evaluateDirectorMain())
|
||||
.get(config.API.evaluateDirectorMain() + `/admin`)
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
listDirector.value = data.map((item: any) => ({
|
||||
|
|
@ -229,7 +229,7 @@ watch(
|
|||
</q-tr>
|
||||
</template>
|
||||
<template v-slot:body="props">
|
||||
<q-tr :props="props" class="cursor-pointer">
|
||||
<q-tr :props="props">
|
||||
<q-td v-for="col in props.cols" :key="col.name" :props="props">
|
||||
<div v-if="col.name == 'no'">
|
||||
{{ props.rowIndex + 1 }}
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ function returnData(data: any) {
|
|||
async function getList() {
|
||||
showLoader();
|
||||
await http
|
||||
.get(config.API.meeting())
|
||||
.get(config.API.meeting() + `/admin`)
|
||||
.then((res) => {
|
||||
const data = res.data.result;
|
||||
listMeet.value = data.map((item: any) => ({
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ onMounted(async () => {
|
|||
class="q-mr-sm"
|
||||
@click="router.go(-1)"
|
||||
/>
|
||||
<div>รายละเอียดการประเมินบุคคลของ {{ `${prefix}${fullName}` }}</div>
|
||||
<div>รายละเอียดการประเมินบุคคลของ{{ `${prefix}${fullName}` }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<q-card flat bordered class="col-12">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue