ทะเบียนประวัติ: API โปรไฟล์ (เพิ่มเติม)
This commit is contained in:
parent
f73cbea19a
commit
b53c2c3165
1 changed files with 4 additions and 4 deletions
|
|
@ -26,7 +26,7 @@ const {
|
||||||
} = mixin;
|
} = mixin;
|
||||||
|
|
||||||
const profileId = ref<string>(route.params.id.toString());
|
const profileId = ref<string>(route.params.id.toString());
|
||||||
const formDetail = ref<DataPerson>();
|
const formDetail = ref<any>();
|
||||||
const itemsMenu = ref<DataOption[]>([
|
const itemsMenu = ref<DataOption[]>([
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
|
|
@ -250,19 +250,19 @@ onMounted(async () => {
|
||||||
<div class="col-2">
|
<div class="col-2">
|
||||||
<div class="col-sm-3 col-md-3">
|
<div class="col-sm-3 col-md-3">
|
||||||
<div class="col text-grey-6">ตำแหน่งในสายงาน</div>
|
<div class="col text-grey-6">ตำแหน่งในสายงาน</div>
|
||||||
<div class="col">หัวหน้าสำนักงาน</div>
|
<div class="col">{{ formDetail?.position }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-2">
|
<div class="col-2">
|
||||||
<div class="col-sm-3 col-md-3">
|
<div class="col-sm-3 col-md-3">
|
||||||
<div class="col text-grey-6">ประเภทตำแหน่ง</div>
|
<div class="col text-grey-6">ประเภทตำแหน่ง</div>
|
||||||
<div class="col">บริหาร</div>
|
<div class="col">{{ formDetail?.posType.posTypeName }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-2">
|
<div class="col-2">
|
||||||
<div class="col-sm-3 col-md-3">
|
<div class="col-sm-3 col-md-3">
|
||||||
<div class="col text-grey-6">ระดับตำแหน่ง</div>
|
<div class="col text-grey-6">ระดับตำแหน่ง</div>
|
||||||
<div class="col">ชำนาญการพิเศษ</div>
|
<div class="col">{{ formDetail?.posLevel.posLevelName }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue