提交 8b5efb38 编写于 作者: tony001's avatar tony001

调整工作流动态视图 --- fix2

上级 79a12572
...@@ -32,6 +32,14 @@ ...@@ -32,6 +32,14 @@
*/ */
public isSingleSelect:boolean = true; public isSingleSelect:boolean = true;
/**
* 搜索值
*
* @type {string}
* @memberof ${srfclassname('${view.name}')}Base
*/
public query: string = '';
/** /**
* 左侧树的默认配置 * 左侧树的默认配置
* *
...@@ -106,6 +114,22 @@ ...@@ -106,6 +114,22 @@
tree.setCurrentKey(data.userTaskId); tree.setCurrentKey(data.userTaskId);
}) })
} }
/**
* 快速搜索
*
* @param {*} $event
* @memberof ${srfclassname('${view.name}')}Base
*/
public onSearch($event: any): void {
<#if grid??>
const grid: any = this.$refs.${grid.name};
if (grid) {
grid.load(this.context,true);
}
</#if>
}
<#if view.hasPSControl('grid')> <#if view.hasPSControl('grid')>
<#assign grid = view.getPSControl('grid')> <#assign grid = view.getPSControl('grid')>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册