From 76578db02c0fba822fe9e2c539f5ce4b71eb11c0 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期五, 15 十二月 2023 10:10:12 +0800 Subject: [PATCH] 接口基本信息管理-查询无数据默认刷新列表 --- Source/UBCS-WEB/src/views/docking/info.vue | 23 +++-------------------- 1 files changed, 3 insertions(+), 20 deletions(-) diff --git a/Source/UBCS-WEB/src/views/docking/info.vue b/Source/UBCS-WEB/src/views/docking/info.vue index f7cbbc7..e78862f 100644 --- a/Source/UBCS-WEB/src/views/docking/info.vue +++ b/Source/UBCS-WEB/src/views/docking/info.vue @@ -438,26 +438,6 @@ const data = res.data.data; this.page.total = data.total; this.data = data.records; - // const Props = { - // paramType: '', - // returnType: '', - // dataFlowType: '', - // pushType: '', - // classifyName: '', - // sourceSystemName: '', - // targetSystemName: '', - // classPath:'', - // requestMethod:'', - // requestUrl:'', - // interfaceFunction:'', - // nameSpace:'', - // soapAction:'', - // targetName:'', - // cxfaxis:'' - // }; - // this.pushTypeList.forEach(item => { - // Object.assign(item, Props); - // }); this.loading = false; }); }, @@ -471,6 +451,9 @@ if (JSON.stringify(conditionMaps) != '{}') { this.query = conditionMaps; this.onLoad(this.page); + }else { + this.query = {}; + this.onLoad(this.page, this.query); } }, openAdvancedQuery() { -- Gitblit v1.9.3