fixing
This commit is contained in:
parent
242af9444d
commit
f5fe7f424c
10 changed files with 23 additions and 19 deletions
|
|
@ -337,7 +337,7 @@ onMounted(async () => {
|
|||
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ probationStore.person.Oc }}
|
||||
{{ probationStore.person.Oc ? probationStore.person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -327,7 +327,8 @@ onMounted(async () => {
|
|||
</div>
|
||||
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span> {{ person.Oc }}
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ person.Oc ? person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -469,7 +469,7 @@ onMounted(async () => {
|
|||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ probationStore.person.Oc }}
|
||||
{{ probationStore.person.Oc ? probationStore.person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
<q-icon name="mdi-label" color="grey-4" class="q-pr-sm" />
|
||||
|
|
|
|||
|
|
@ -444,7 +444,7 @@ watch(lengthdiscipline_level, (newLength) => {
|
|||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ person.Oc }}
|
||||
{{ person.Oc ? person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
<q-icon name="mdi-label" color="grey-4" class="q-pr-sm" />
|
||||
|
|
|
|||
|
|
@ -290,15 +290,15 @@ onMounted(() => {
|
|||
<div class="col-12 q-pl-md q-pb-md">
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">ตำแหน่งในสายงาน</span>
|
||||
{{ person.PositionLineName }}
|
||||
{{ person.positionName }}
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">ระดับ</span>
|
||||
{{ person.PositionLevelName }}
|
||||
{{ person.positionLevelName }}
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ person.Oc }}
|
||||
{{ person.Oc ? person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -400,7 +400,7 @@ onMounted(async () => {
|
|||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ probationStore.person.Oc }}
|
||||
{{ probationStore.person.Oc ? probationStore.person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -393,7 +393,8 @@ onMounted(async () => {
|
|||
{{ person.positionLevelName }}
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span> {{ person.Oc }}
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ person.Oc ? person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -404,7 +404,8 @@ onMounted(async () => {
|
|||
{{ person.positionLevelName }}
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span> {{ person.Oc }}
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ person.Oc ? person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -410,7 +410,7 @@ onMounted(async () => {
|
|||
</div>
|
||||
<div class="col-12">
|
||||
<span class="text-top0 q-pl-sm">สังกัด</span>
|
||||
{{ probationStore.person.Oc }}
|
||||
{{ probationStore.person.Oc ? probationStore.person.Oc : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue