แก้ไขประเมิน

This commit is contained in:
Warunee Tamkoo 2023-12-23 10:20:41 +07:00
parent a07cc6d2a2
commit b984caaa3c
10 changed files with 121 additions and 29 deletions

View file

@ -22,9 +22,12 @@ const director = ref<any[]>();
const meeting = ref<any[]>();
const $q = useQuasar();
// onMounted(() => {
// store.step = 1;
// });
const props = defineProps({
data: {
type: Object,
default: {},
},
});
function getList() {
showLoader();
@ -42,6 +45,7 @@ function getList() {
hideLoader();
});
}
onMounted(() => {
getList();
});
@ -52,8 +56,8 @@ onMounted(() => {
<div class="toptitle">กรรมการและการประช</div>
<div class="row col-12 q-gutter-md">
<CardDirector :data="director"/>
<CardMeet :data="meeting"/>
<CardDirector :data="director" :fetchdata="getList" />
<CardMeet :data="meeting" :fetchdata="getList" />
</div>
</div>
</template>