提交 01c43c8c 编写于 作者: KK's avatar KK

update

上级 e13cffc9
......@@ -39,6 +39,36 @@
}
}
/**
* 执行搜索表单
*
* @memberof ${srfclassname('${view.name}')}Base
*/
public onSearch(): void {
this.searchformState = false;
this.isExpandSearchForm = true;
const form: any = this.$refs.${searchform.name};
if (form) {
form.onSearch();
}
this.closeSearchform();
}
/**
* 重置搜索表单
*
* @memberof ${srfclassname('${view.name}')}Base
*/
public onReset(): void {
this.searchformState = false;
this.isExpandSearchForm = false;
const form: any = this.$refs.${searchform.name};
if (form) {
form.onReset();
}
this.closeSearchform();
}
<#ibizinclude>
../@MACRO/VIEW_BOTTOM-BASE.vue.ftl
</#ibizinclude>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册