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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
import { Prop, Component } from 'vue-property-decorator';
import { IPSAppDETabSearchView } from "@ibiz/dynamic-model-api";
import { ModelTool } from "ibiz-core";
import { AppDefaultMDViewLayout } from '../app-default-mdview-layout/app-default-mdview-layout';
@Component({})
export class AppDefaultTabSearchViewLayout extends AppDefaultMDViewLayout {
/**
* 分页搜索视图模型对象
*
* @type {IPSAppDETabSearchView}
* @memberof AppDefaultTabSearchViewLayout
*/
@Prop() public declare viewInstance: IPSAppDETabSearchView;
/**
* 引擎初始化
*
* @param {*} [opts={}]
* @memberof AppDefaultTabSearchViewLayout
*/
public engineInit(opts: any = {}) {
const controls: any[] = this.containerModel.getPSControls() || [];
const engineOpts = Object.assign({
view: this,
p2k: '0',
isLoadDefault: this.viewInstance?.loadDefault,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase()
}, opts);
// 分页导航面板
const tabexppanel = ModelTool.findPSControlByType('TABEXPPANEL', controls);
if (tabexppanel) {
Object.assign(engineOpts, {
tabexppanel: (this.$refs[tabexppanel.name] as any).ctrl
});
}
// 搜索表单
const searchForm = ModelTool.findPSControlByType('SEARCHFORM', controls);
if (searchForm) {
Object.assign(engineOpts, {
searchform: (this.$refs[searchForm.name] as any).ctrl
});
}
// 搜索栏
const searchBar = ModelTool.findPSControlByType('SEARCHBAR', controls);
if (searchBar) {
Object.assign(engineOpts, {
searchform: (this.$refs[searchBar.name] as any).ctrl
});
}
this.engine.init(engineOpts);
}
/**
* 计算目标部件所需参数
*
* @param controlInstance 部件模型
* @param args 额外参数 {staticProps:{xxx},dynamicProps:{xxx},customEvent:{xxx}}
* @memberof AppDefaultTabSearchViewLayout
*/
public computeTargetCtrlData(controlInstance: any, args?: any) {
let targetCtrlName: string = `app-control-shell`;
let targetCtrlParam: any = {
staticProps: {
containerInstance: this.containerModel,
modelData: controlInstance,
ref: controlInstance.name,
viewLoadingService: this.viewLoadingService,
layoutLoadingService: this.layoutLoadingService
},
dynamicProps: {
viewparams: this.viewparams,
context: this.context,
viewCtx: this.viewCtx
}
};
if (!Object.is(controlInstance?.controlType, 'SEARCHFORM') &&
!Object.is(controlInstance?.controlType, 'FORM') &&
!Object.is(controlInstance?.controlType, 'TOOLBAR') &&
!Object.is(controlInstance?.controlType, 'SEARCHBAR')) {
Object.assign(targetCtrlParam.staticProps, {
opendata: this.opendata,
newdata: this.newdata,
});
}
Object.defineProperty(targetCtrlParam.staticProps, 'containerInstance', { enumerable: false, writable: true });
Object.defineProperty(targetCtrlParam.staticProps, 'modelData', { enumerable: false, writable: true });
let targetCtrlEvent: any = {
'ctrl-event': ({ controlname, action, data }: { controlname: string, action: string, data: any }) => {
this.onCtrlEvent(controlname, action, data);
}
}
// 合并视图级参数
Object.assign(targetCtrlParam.staticProps, { viewState: this.viewState, viewtag: this.viewtag, viewIsProxyMode: this.viewProxyMode });
Object.assign(targetCtrlEvent, {
closeView: ($event: any) => {
this.$emit('view-event', { viewName: this.viewInstance.codeName, action: 'viewClosed', data: $event });
}
})
// 合并多数据视图级参数
if (Object.is(controlInstance.controlType, 'SEARCHFORM') || Object.is(controlInstance.controlType, 'SEARCHBAR')) {
Object.assign(targetCtrlParam.dynamicProps, {
isExpandSearchForm: this.isExpandSearchForm
});
// 分页搜索视图下搜索表单和搜索栏走正常模式
Object.assign(targetCtrlParam.staticProps, {
viewIsProxyMode: false
});
} else {
Object.assign(targetCtrlParam.staticProps, {
mDCtrlActiveMode: (this.viewInstance as any).mDCtrlActiveMode,
});
}
// 合并传入自定义参数
if (args && args.staticProps && Object.keys(args.staticProps).length > 0) {
Object.assign(targetCtrlParam.staticProps, args.staticProps);
}
if (args && args.dynamicProps && Object.keys(args.dynamicProps).length > 0) {
Object.assign(targetCtrlParam.dynamicProps, args.dynamicProps);
}
if (args && args.customEvent && Object.keys(args.customEvent).length > 0) {
Object.assign(targetCtrlEvent, args.customEvent);
}
return { targetCtrlName: targetCtrlName, targetCtrlParam: targetCtrlParam, targetCtrlEvent: targetCtrlEvent };
}
/**
* 渲染快速搜索
*
* @return {*}
* @memberof AppDefaultMDViewLayout
*/
public renderQuickSearch() {
if (this.viewInstance.enableQuickSearch && !this.viewInstance.expandSearchForm) {
const content = this.$scopedSlots.quickSearchFilter?.(this.$slots.searchForm ? this.$slots.searchForm : null);
return content;
} else {
return this.$slots.quickSearch;
}
}
/**
* 绘制正文内容
*
* @memberof AppDefaultTabSearchViewLayout
*/
public renderViewContent(): any {
return [
this.$slots.topMessage || this.$slots.searchBar || (this.$slots.searchForm && !(this.viewInstance.enableQuickSearch && !this.viewInstance.expandSearchForm)) ? <div class="view-content__top">
{this.$slots.topMessage}
{this.viewInstance.enableQuickSearch && !this.viewInstance.expandSearchForm ? null : this.$slots.searchForm}
{this.$slots.searchBar}
</div> : null,
<div class="view-content__body">
{this.$slots.bodyMessage}
{this.$slots.default}
</div>,
this.$slots.bottomMessage ? <div class="view-content__bottom">
{this.$slots.bottomMessage}
</div> : null
]
}
}