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
import { AppDefaultViewLayout } from "../app-default-view-layout/app-default-view-layout";
import { Prop,Component } from 'vue-property-decorator';
import "./app-default-pickuptreeview-layout.less";
import { ModelTool } from "ibiz-core";
@Component({})
export class AppDefaultPickupTreeViewLayout extends AppDefaultViewLayout {
/**
* 绘制内容
*
* @memberof AppDefaultPickupTreeViewLayout
*/
public renderContent() {
let cardClass = {
'view-card': true,
'view-no-caption': true,
'view-no-toolbar': true,
};
return (
<card class={cardClass} disHover={true} bordered={false}>
{ (this.$slots.quickGroupSearch || this.$slots.quickSearch) && <div style="margin-bottom: 6px;">
{this.$slots.quickGroupSearch}
{this.$slots.quickSearch}
</div> }
{this.$slots.searchForm}
{this.$slots.topMessage}
<div class='content-container pickup-view'>
{this.$slots.default}
</div>
{this.$slots.bottomMessage}
</card>
);
}
/**
* 引擎初始化
*
* @public
* @memberof AppDefaultPickupTreeViewLayout
*/
public engineInit(): void {
if (this.Environment && this.Environment.isPreviewMode) {
return;
}
const controls: any[] = this.containerModel.getPSControls() || [];
// 树视图实例
const treeInstance = ModelTool.findPSControlByType("TREEVIEW",controls);
let engineOpts = ({
view: this,
p2k: '0',
tree: (this.$refs[treeInstance.name] as any).ctrl,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
isLoadDefault: this.viewInstance.loadDefault,
});
this.engine.init(engineOpts);
}
}