hrms-mgt/src/modules/12_Evaluate/components/Detail/step/step8.vue
waruneeta 24adce7fa8 - router ประเมินบุคคล
- ปรับหน้ารายละเอียด
2023-12-14 12:23:34 +07:00

22 lines
483 B
Vue

<script setup lang="ts">
import { ref } from "vue";
const status = ref<string>("WAIT_CHECK_DOC_V2");
</script>
<template>
<div class="row">
<div class="col-12 text-center">
<q-badge
v-if="status == 'WAIT_CHECK_DOC_V2'"
outline
color="orange-5"
label="รอพิจารณาผลการประเมิน"
class="q-pa-sm"
style="font-size: 16px"
/>
</div>
</div>
</template>
<style scoped></style>