fix: 修复采集器查询失败问题
This commit is contained in:
parent
ca4c364155
commit
a44edbb036
|
@ -157,19 +157,17 @@ const defualtDataSource: any = ref(_.cloneDeep(root));
|
|||
const defualtParams = {
|
||||
paging: false,
|
||||
sorts: [{ name: 'createTime', order: 'desc' }],
|
||||
terms: [
|
||||
terms: !!channelId ? [
|
||||
{
|
||||
terms: !!channelId
|
||||
? [
|
||||
terms: [
|
||||
{
|
||||
column: 'channelId',
|
||||
value: channelId,
|
||||
},
|
||||
]
|
||||
: [],
|
||||
],
|
||||
type: 'and',
|
||||
},
|
||||
],
|
||||
] : [],
|
||||
};
|
||||
const params = ref();
|
||||
|
||||
|
|
Loading…
Reference in New Issue