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
import { AppDefaultViewLayout } from "../app-default-view-layout/app-default-view-layout";
import { Prop,Component } from 'vue-property-decorator';
import './app-default-pickupview-layout.less';
import { ModelTool } from "ibiz-core";
@Component({})
export class AppDefaultPickupViewLayout extends AppDefaultViewLayout {
/**
* 绘制内容
*
* @memberof AppDefaultViewLayout
*/
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 AppDefaultPickupViewLayout
*/
public engineInit(): void {
if (this.Environment && this.Environment.isPreviewMode) {
return;
}
const controls: any[] = this.containerModel.getPSControls() || [];
// 选择视图面板实例
const pickUpViewPanelInstance = ModelTool.findPSControlByType("PICKUPVIEWPANEL", controls);
this.engine.init({
view: this,
pickupViewPanel: (this.$refs[pickUpViewPanelInstance?.name] as any).ctrl,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
});
}
}