ยืมคืนเครื่องราชฯ
This commit is contained in:
parent
eac10d3f3a
commit
4a73df7bd8
2 changed files with 26 additions and 6 deletions
|
|
@ -67,8 +67,8 @@
|
|||
icon="mdi-history"
|
||||
@click="clickHistory(props.row)"
|
||||
>
|
||||
<q-tooltip>ประวัติแก้ไขตำแหน่ง/เงินเดือน</q-tooltip>
|
||||
</q-btn>
|
||||
<q-tooltip>ประวัติแก้ไขตำแหน่ง/เงินเดือน</q-tooltip>
|
||||
</q-btn>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
</template>
|
||||
|
|
@ -1566,6 +1566,9 @@ const fetchData = async () => {
|
|||
.get(config.API.profileSalaryId(profileId.value))
|
||||
.then((res) => {
|
||||
let data = res.data.result;
|
||||
console.log(data);
|
||||
|
||||
|
||||
rows.value = [];
|
||||
data.map((e: ResponseObject) => {
|
||||
rows.value.push({
|
||||
|
|
@ -1577,9 +1580,15 @@ const fetchData = async () => {
|
|||
oc: e.oc,
|
||||
ocId: e.ocId,
|
||||
position: e.position,
|
||||
positionId: e.positionId,
|
||||
positionId:
|
||||
e.positionId !== "00000000-0000-0000-0000-000000000000"
|
||||
? e.positionId
|
||||
: "",
|
||||
posNo: e.posNo,
|
||||
posNoId: e.posNoId,
|
||||
posNoId:
|
||||
e.posNoId !== "00000000-0000-0000-0000-000000000000"
|
||||
? e.posNo
|
||||
: "",
|
||||
positionLine: e.positionLine,
|
||||
positionLineId: e.positionLineId,
|
||||
positionPathSide: e.positionPathSide,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue