รายละเอียดงานที่ได้รับมอบหมาย (ส่วนนึง)
This commit is contained in:
parent
a05b234339
commit
244524c0ca
27 changed files with 5092 additions and 8 deletions
27
src/modules/11_probation/component/07_EvaluateReport.vue
Normal file
27
src/modules/11_probation/component/07_EvaluateReport.vue
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<script setup lang="ts">
|
||||
import { useQuasar } from "quasar";
|
||||
import { ref } from "vue";
|
||||
import { useRouter } from "vue-router";
|
||||
|
||||
const router = useRouter();
|
||||
const $q = useQuasar();
|
||||
const mode = ref<any>($q.screen.gt.xs);
|
||||
</script>
|
||||
<template>
|
||||
<div v-if="!$q.screen.gt.xs" class="col-xs-12 col-sm-12 col-md-11">
|
||||
<div class="toptitle text-white col-12 row items-center">
|
||||
<q-btn
|
||||
icon="mdi-arrow-left"
|
||||
unelevated
|
||||
round
|
||||
dense
|
||||
flat
|
||||
color="primary"
|
||||
class="q-mr-sm"
|
||||
@click="router.go(-1)"
|
||||
/>
|
||||
<div>ผลการประเมินการ ฯ</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue