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 { Component, Prop } from 'vue-property-decorator';
import { IPSAppDEMapExplorerView } from "@ibiz/dynamic-model-api";
import { ModelTool } from "ibiz-core";
import { AppDefaultViewLayout } from "../app-default-view-layout/app-default-view-layout";
import './app-default-mapexpview-layout.less';
@Component({})
export class AppDefaultMapExpViewLayout extends AppDefaultViewLayout {
/**
* 实体地图导航视图模型对象
*
* @type {IPSAppDEMapExplorerView}
* @memberof AppDefaultMapExpViewLayout
*/
@Prop() public declare viewInstance: IPSAppDEMapExplorerView;
/**
* 引擎初始化
*
* @param {*} [opts={}]
* @memberof AppDefaultMapExpViewLayout
*/
public engineInit(opts: any = {}) {
const controls: any[] = this.containerModel.getPSControls() || [];
const mapExpBar = ModelTool.findPSControlByType('MAPEXPBAR', controls);
if (mapExpBar) {
let engineOpts = Object.assign({
view: this,
p2k: '0',
isLoadDefault: this.viewInstance?.loadDefault,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
mapexpbar: (this.$refs[mapExpBar.name] as any).ctrl,
}, opts);
this.engine.init(engineOpts);
}
}
/**
* 计算目标部件数据
*
* @param {*} controlInstance
* @return {*}
* @memberof AppDefaultMapExpViewLayout
*/
public computeTargetCtrlData(controlInstance: any, args?: any) {
const { targetCtrlName, targetCtrlParam, targetCtrlEvent } = super.computeTargetCtrlData(controlInstance, args);
// 视图级参数
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 });
}
});
return { targetCtrlName, targetCtrlParam, targetCtrlEvent };
}
}