Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m51s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m51s
This commit is contained in:
commit
20f75d24b0
2 changed files with 8 additions and 4 deletions
|
|
@ -112,9 +112,11 @@ const columns2 = ref<QTableProps["columns"]>([
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
format(val, row) {
|
format(val, row) {
|
||||||
return row.positionTypeOld
|
return row.positionTypeOld && row.positionTypeOl !== "-"
|
||||||
? `${row.positionTypeOld}${
|
? `${row.positionTypeOld}${
|
||||||
row.positionLevelOld ? `(${row.positionLevelOld})` : ""
|
row.positionLevelOld && row.positionLevelOld !== "-"
|
||||||
|
? `(${row.positionLevelOld})`
|
||||||
|
: ""
|
||||||
}`
|
}`
|
||||||
: "";
|
: "";
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -133,9 +133,11 @@ const columns = ref<QTableProps["columns"]>([
|
||||||
headerStyle: "font-size: 14px",
|
headerStyle: "font-size: 14px",
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
format(val, row) {
|
format(val, row) {
|
||||||
return row.positionTypeOld
|
return row.positionTypeOld && row.positionTypeOld !== "-"
|
||||||
? `${row.positionTypeOld}${
|
? `${row.positionTypeOld}${
|
||||||
row.positionLevelOld ? `(${row.positionLevelOld})` : ""
|
row.positionLevelOld && row.positionLevelOld !== "-"
|
||||||
|
? `(${row.positionLevelOld})`
|
||||||
|
: ""
|
||||||
}`
|
}`
|
||||||
: "";
|
: "";
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue