提交 2bb98dfa 编写于 作者: tony001's avatar tony001

zpc --- 调整搜索表单逻辑

上级 d24c81ff
...@@ -721,7 +721,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators'; ...@@ -721,7 +721,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
if (!this.formValidateStatus()) { if (!this.formValidateStatus()) {
return; return;
} }
this.$emit('load', this.data); this.$emit('search', this.data);
</#if> </#if>
} }
<#-- 搜索表单:Begin --> <#-- 搜索表单:Begin -->
...@@ -737,7 +737,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators'; ...@@ -737,7 +737,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
if (!this.formValidateStatus()) { if (!this.formValidateStatus()) {
return; return;
} }
this.$emit('load', this.data); this.$emit('search', this.data);
} }
/** /**
...@@ -760,7 +760,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators'; ...@@ -760,7 +760,7 @@ import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
if (!this.formValidateStatus()) { if (!this.formValidateStatus()) {
return; return;
} }
this.$emit('load', this.data); this.$emit('search', this.data);
} }
</#if> </#if>
</#if> </#if>
......
...@@ -205,8 +205,10 @@ if(this.formDruipart){ ...@@ -205,8 +205,10 @@ if(this.formDruipart){
* @memberof ${srfclassname('${view.name}')}Base * @memberof ${srfclassname('${view.name}')}Base
*/ */
public qucikGroupValueChange($event:any){ public qucikGroupValueChange($event:any){
this.qucikGroupData = $event; if($event && $event.data){
this.onSearch($event); this.qucikGroupData = $event.data;
this.onSearch($event);
}
} }
</#if> </#if>
<#if view.getQuickPSDESearchForm()??> <#if view.getQuickPSDESearchForm()??>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册