1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { Prop } from 'vue-property-decorator';
import { ExpControlBase } from './ExpControlBase';
/**
* 表格导航部件基类
*
* @export
* @class GridExpBarControlBase
* @extends {ExpControlBase}
*/
export class GridExpBarControlBase extends ExpControlBase {
/**
* 是否单选
*
* @public
* @type {(boolean)}
* @memberof GridExpBarControlBase
*/
public isGridSingleSelect: boolean = true;
/**
* 部件创建完毕
*
* @memberof GridExpBarControlBase
*/
public ctrlCreated(): void {
if (this.viewState) {
this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => {
if (!Object.is(tag, this.name)) {
return;
}
this.viewState.next({ tag: 'gridexpbar_grid', action: action, data: data });
});
}
}
/**
* 执行搜索
*
* @memberof GridExpBarControlBase
*/
public onSearch($event: any) {
const grid: any = this.$refs.gridexpbar_grid;
if (grid) {
grid.load({ query: this.searchText });
}
}
/**
* gridexpbar的load完成事件
*
* @param {*} args
* @param {*} [e]
* @param {*} [data]
* @memberof GridExpBarControlBase
*/
public gridexpbar_load(args: any, e?: any, data?: any) {
this.$emit('load', args);
}
}