fix / เงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-22 10:25:25 +07:00
parent 5f0cac12b1
commit 664871b00d
3 changed files with 12 additions and 12 deletions

View file

@ -801,19 +801,19 @@ onMounted(async () => {
{{
`${
props.row.orgChild4Name
? props.row.orgChild4Name + "/"
? props.row.orgChild4Name + " "
: ""
}${
props.row.orgChild3Name
? props.row.orgChild3Name + "/"
? props.row.orgChild3Name + " "
: ""
}${
props.row.orgChild2Name
? props.row.orgChild2Name + "/"
? props.row.orgChild2Name + " "
: ""
}${
props.row.orgChild1Name
? props.row.orgChild1Name + "/"
? props.row.orgChild1Name + " "
: ""
}${props.row.orgRootName ? props.row.orgRootName : ""}`
}}

View file

@ -464,10 +464,10 @@ function onClickViewInfo(type: string, id: string) {
-
</div>
{{
`${props.row.child4 ? props.row.child4 + "/" : ""}${
props.row.child3 ? props.row.child3 + "/" : ""
}${props.row.child2 ? props.row.child2 + "-" : ""}${
props.row.child1 ? props.row.child1 + "/" : ""
`${props.row.child4 ? props.row.child4 + " " : ""}${
props.row.child3 ? props.row.child3 + " " : ""
}${props.row.child2 ? props.row.child2 + " " : ""}${
props.row.child1 ? props.row.child1 + " " : ""
}${props.row.root ? props.row.root : ""}`
}}
</div>

View file

@ -481,10 +481,10 @@ watch(
-
</div>
{{
`${props.row.child4 ? props.row.child4 + "/" : ""}${
props.row.child3 ? props.row.child3 + "/" : ""
}${props.row.child2 ? props.row.child2 + "-" : ""}${
props.row.child1 ? props.row.child1 + "/" : ""
`${props.row.child4 ? props.row.child4 + " " : ""}${
props.row.child3 ? props.row.child3 + " " : ""
}${props.row.child2 ? props.row.child2 + " " : ""}${
props.row.child1 ? props.row.child1 + " " : ""
}${props.row.root ? props.row.root : ""}`
}}
</div>