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
import { MobEditViewEngine } from './mob-edit-view-engine';
/**
* 实体移动端工作流操作视图界面引擎
*
* @export
* @class MobWFEditViewEngine
* @extends {MobEditViewEngine}
*/
export class MobWFEditViewEngine extends MobEditViewEngine {
/**
* 表单部件
*
* @protected
* @type {*}
* @memberof MobWFEditViewEngine
*/
protected form: any;
/**
* 工具栏
*
* @protected
* @type {*}
* @memberof MobWFEditViewEngine
*/
protected righttoolbar: any;
/**
* 快速工具栏
*
* @protected
* @type {*}
* @memberof MobWFEditViewEngine
*/
protected quicktoolbar: any;
/**
* 初始化编辑视图引擎
*
* @param {*} [options={}]
* @memberof MobWFEditViewEngine
*/
public init(options: any = {}): void {
super.init(options);
this.righttoolbar = options.righttoolbar;
this.quicktoolbar = options.quicktoolbar;
}
}