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
import { MobMainViewInterface } from 'ibiz-core';
import { ViewBase } from './view-base';
import { IPSAppDEView } from '@ibiz/dynamic-model-api';
/**
* 编辑视图基类
*
* @export
* @class MainViewBase
* @extends {ViewBase}
*/
export class MainViewBase extends ViewBase implements MobMainViewInterface {
/**
* 视图实例
*
* @memberof MainViewBase
*/
public declare viewInstance: IPSAppDEView;
/**
* 渲染视图头部
*
* @memberof MainViewBase
*/
public renderViewHeader() {
return [
this.viewInstance.showCaptionBar ? <span class='caption-info'>{this.viewInstance.title}</span> : null
]
}
/**
* 初始化导航栏标题
*
* @param {*} val
* @param {boolean} isCreate
* @returns
* @memberof AppMobWizardPanelService
*/
public initNavCaption(val?: any, isCreate?: boolean) {
}
}