hrms-user/src/modules/06_evaluate/components/step/step8.vue

23 lines
483 B
Vue
Raw Normal View History

2023-12-13 16:56:43 +07:00
<script setup lang="ts">
import { ref } from "vue";
const status = ref<string>("WAIT_CHECK_DOC_V2");
</script>
2023-12-13 15:24:59 +07:00
<template>
2023-12-13 16:56:43 +07:00
<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>
2023-12-13 15:24:59 +07:00
</template>
<style scoped></style>