แก้ไข display 1.ตรวจสอบคุณสมบัติ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-16 10:33:44 +07:00
parent f33ec8fbc5
commit 0b2bb5f252
12 changed files with 277 additions and 289 deletions

View file

@ -135,6 +135,10 @@ const author = ref<string>("");
const subject = ref<string>("");
const assignedPosition = ref<string>("");
/**
* function เรยกขอมลผลงาน
* @param id ประเม
*/
async function fetcheSigner(id: string) {
showLoader();
await http
@ -151,8 +155,9 @@ async function fetcheSigner(id: string) {
});
}
/** lifecycleHook*/
onMounted(async () => {
await checkDoc();
await checkDoc();
await fetcheSigner(evaluateId.value);
});
</script>