แสดงสังกัดของระบบทดลองงาน

This commit is contained in:
Warunee Tamkoo 2025-04-22 12:35:09 +07:00
parent 3f0b3924d4
commit 55905c8cec
2 changed files with 5 additions and 4 deletions

View file

@ -362,7 +362,9 @@ onMounted(async () => {
<div class="col-xs-6 col-sm-3 row items-center"> <div class="col-xs-6 col-sm-3 row items-center">
<div class="col-12"> <div class="col-12">
<div class="col-12 text-top">งก</div> <div class="col-12 text-top">งก</div>
<div class="col-12 text-detail">{{ organization }}</div> <div class="col-12 text-detail text-html">
{{ organization.replace("\\n", "\n") }}
</div>
</div> </div>
</div> </div>

View file

@ -35,7 +35,6 @@ const router = useRouter();
const route = useRoute(); const route = useRoute();
const id = ref<string>(route.params.id as string); const id = ref<string>(route.params.id as string);
const idEva = ref<string>(route.params.id as string); const idEva = ref<string>(route.params.id as string);
const formData = reactive<any>({ const formData = reactive<any>({
prefix: "", prefix: "",
@ -119,7 +118,7 @@ function onResize(size: any) {
* fetch แมลสวนต * fetch แมลสวนต
*/ */
// .get(config.API.kpiEvaluationUser + `/admin/${id.value}`) // .get(config.API.kpiEvaluationUser + `/admin/${id.value}`)
async function getMain() { async function getMain() {
showLoader(); showLoader();
await http await http
@ -303,7 +302,7 @@ onMounted(async () => {
}} }}
</div> </div>
<div class="col-4 text-html"> <div class="col-4 text-html">
{{ formData.org ? formData.org : "-" }} {{ formData.org ? formData.org.replace("\\n", "\n") : "-" }}
</div> </div>
</div> </div>
</div> </div>