update UI - แสดงรายชื่อผู้สอบผ่านในรอบของการสอบคัดเลือก/แข่งขันที่ได้จากระบบ
ปรับในส่วนของการแสดงผลข้อมูลให้ครบตาม design ปรับให้เป็นหน้าฟอร์มกรณีอยู่ในโหมดแก้ไข ปรับการแสดงสถานะและ Action ให้ถกต้อง
This commit is contained in:
parent
b958dfad20
commit
312642f8f6
9 changed files with 576 additions and 575 deletions
28
src/modules/05_placement/components/pass/DialogHeader.vue
Normal file
28
src/modules/05_placement/components/pass/DialogHeader.vue
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<template>
|
||||
<q-toolbar>
|
||||
<q-toolbar-title class="text-subtitle2 text-bold">{{ title }}</q-toolbar-title>
|
||||
<q-btn
|
||||
icon="close"
|
||||
unelevated
|
||||
round
|
||||
dense
|
||||
@click="close"
|
||||
style="color: #ff8080; background-color: #ffdede"
|
||||
/>
|
||||
</q-toolbar>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
|
||||
import { ref, useAttrs } from "vue";
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
close: {
|
||||
type: Function,
|
||||
default: () => console.log("not function"),
|
||||
},
|
||||
});
|
||||
const close = async () => {
|
||||
props.close();
|
||||
};
|
||||
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue