แสดงสังกัดของระบบทดลองงาน
This commit is contained in:
parent
3f0b3924d4
commit
55905c8cec
2 changed files with 5 additions and 4 deletions
|
|
@ -362,7 +362,9 @@ onMounted(async () => {
|
|||
<div class="col-xs-6 col-sm-3 row items-center">
|
||||
<div class="col-12">
|
||||
<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>
|
||||
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@ const router = useRouter();
|
|||
const route = useRoute();
|
||||
const id = ref<string>(route.params.id as string);
|
||||
|
||||
|
||||
const idEva = ref<string>(route.params.id as string);
|
||||
const formData = reactive<any>({
|
||||
prefix: "",
|
||||
|
|
@ -119,7 +118,7 @@ function onResize(size: any) {
|
|||
* fetch ข้แมูลส่วนตัว
|
||||
*/
|
||||
|
||||
// เส้นเก่าที่เคยใช้ .get(config.API.kpiEvaluationUser + `/admin/${id.value}`)
|
||||
// เส้นเก่าที่เคยใช้ .get(config.API.kpiEvaluationUser + `/admin/${id.value}`)
|
||||
async function getMain() {
|
||||
showLoader();
|
||||
await http
|
||||
|
|
@ -303,7 +302,7 @@ onMounted(async () => {
|
|||
}}
|
||||
</div>
|
||||
<div class="col-4 text-html">
|
||||
{{ formData.org ? formData.org : "-" }}
|
||||
{{ formData.org ? formData.org.replace("\\n", "\n") : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue