fix: bug#19132
This commit is contained in:
parent
369b8484ac
commit
a00232ce24
|
@ -208,10 +208,17 @@ const columns = [
|
|||
},
|
||||
{
|
||||
dataIndex: 'id$dim-assets',
|
||||
key: 'id$dim-assets',
|
||||
title: '所属组织',
|
||||
hideInTable: true,
|
||||
search: {
|
||||
type: 'treeSelect',
|
||||
componentProps: {
|
||||
fieldNames: {
|
||||
label: 'name',
|
||||
value: 'value',
|
||||
},
|
||||
},
|
||||
options: () =>
|
||||
new Promise((resolve) => {
|
||||
getTreeData_api({ paging: false }).then((resp: any) => {
|
||||
|
@ -256,6 +263,7 @@ const productQuery = (p: any) => {
|
|||
}
|
||||
sorts.push({ name: 'createTime', order: 'desc' });
|
||||
p.sorts = sorts;
|
||||
console.log('productQuery',p)
|
||||
return queryProductList(p);
|
||||
};
|
||||
|
||||
|
@ -289,4 +297,4 @@ onMounted(() => {
|
|||
padding-right: 0px;
|
||||
padding-left: 0px;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue