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
import { AppDefaultViewLayout } from "../app-default-view-layout/app-default-view-layout";
import { Component } from 'vue-property-decorator';
import { ModelTool } from "ibiz-core";
@Component({})
export class AppDefaultEditView2Layout extends AppDefaultViewLayout {
/**
* 引擎初始化
*
* @public
* @memberof AppDefaultEditView2Layout
*/
public engineInit(): void {
if (this.Environment && this.Environment.isPreviewMode) {
return;
}
const editFormInstance = ModelTool.findPSControlByType('FORM', this.containerModel.getPSControls());
const drbarInstance = ModelTool.findPSControlByType('DRBAR', this.containerModel.getPSControls());
this.engine.init({
view: this,
form: (this.$refs[editFormInstance.name] as any).ctrl,
drbar: (this.$refs[drbarInstance.name] as any).ctrl,
p2k: '0',
isLoadDefault: this.viewInstance.loadDefault,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
});
}
/**
* 绘制头部内容
*
* @memberof AppDefaultViewLayout
*/
public renderViewHeader(): any {
return [
<div class="view-header__left">
{this.showCaption ? <div class='view-header__left__caption'>{this.renderViewCaption()}</div> : null}
</div>,
this.viewIsshowToolbar && this.$slots.toolbar ? <div class="view-header__right">
<div class="view-header__right__toolbar">{this.$slots.toolbar}</div>
</div> : null
]
}
}