fix serch Tree
This commit is contained in:
parent
d55bd1e117
commit
6642e3f25b
5 changed files with 9 additions and 10 deletions
|
|
@ -522,7 +522,7 @@ onMounted(() => {
|
|||
dense
|
||||
:nodes="lazy"
|
||||
node-key="orgTreeId"
|
||||
label-key="orgTreeName"
|
||||
label-key="labelName"
|
||||
:filter="filter"
|
||||
no-results-label="ไม่พบข้อมูลที่ค้นหา"
|
||||
no-nodes-label="ไม่มีข้อมูล"
|
||||
|
|
@ -629,7 +629,6 @@ onMounted(() => {
|
|||
map-options
|
||||
:options="columns"
|
||||
option-value="name"
|
||||
|
||||
style="min-width: 140px"
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -638,9 +637,7 @@ onMounted(() => {
|
|||
<d-table
|
||||
ref="table"
|
||||
:columns="columns"
|
||||
:rows="
|
||||
positionNo.length !== 0 ? positionNo : []
|
||||
"
|
||||
:rows="positionNo.length !== 0 ? positionNo : []"
|
||||
:filter="filters"
|
||||
row-key="id"
|
||||
flat
|
||||
|
|
@ -781,7 +778,9 @@ onMounted(() => {
|
|||
<d-table
|
||||
ref="table"
|
||||
:columns="columnsPostition"
|
||||
:rows="rowsPosition.length !== 0 ? rowsPosition:[]"
|
||||
:rows="
|
||||
rowsPosition.length !== 0 ? rowsPosition : []
|
||||
"
|
||||
row-key="id"
|
||||
flat
|
||||
bordered
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue