fix filter placemrnt
This commit is contained in:
parent
fc4404a391
commit
f7ed037ba6
7 changed files with 172 additions and 110 deletions
|
|
@ -38,6 +38,7 @@ const {
|
|||
dialogRemove,
|
||||
onSearchDataTable,
|
||||
findOrgNameHtml,
|
||||
findOrgName,
|
||||
} = mixin;
|
||||
|
||||
const status = ref<string>("");
|
||||
|
|
@ -163,7 +164,14 @@ const columns = ref<QTableProps["columns"]>([
|
|||
sort: (a: string, b: string) =>
|
||||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
format: (val, row) => {
|
||||
return `${row.root} (${row.rootShortName}) ${row.nodeName} (${row.nodeShortName}${row.posMasterNo})`;
|
||||
// return `${row.root} (${row.rootShortName}) ${row.nodeName} (${row.nodeShortName}${row.posMasterNo})`;
|
||||
return `${row.position !== null ? row.position : ""}${
|
||||
row.posLevelName !== null ? `${row.posLevelName}` : ""
|
||||
} ${
|
||||
row.nodeShortName !== null
|
||||
? `(${row.nodeShortName}${row.posMasterNo})`
|
||||
: ""
|
||||
} ${findOrgName(row)}`;
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue