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
import { IPSAppDEChartExplorerView, IPSChartExpBar } from '@ibiz/dynamic-model-api';
import { ChartExpViewEngine, ModelTool } from 'ibiz-core';
import { ExpViewBase } from './expview-base';
export class ChartExpViewBase extends ExpViewBase {
/**
* 图表导航视图实例对象
*
* @type {IPSAppDEChartExplorerView}
* @memberof ChartExpViewBase
*/
public declare viewInstance: IPSAppDEChartExplorerView;
/**
* 图表导航栏实例对象
*
* @type {IPSChartExpBar}
* @memberof ChartExpViewBase
*/
public declare expBarInstance: IPSChartExpBar;
/**
* 视图模型初始化
*
* @memberof ChartExpViewBase
*/
public async viewModelInit() {
await super.viewModelInit();
this.viewInstance = (this.staticProps?.modeldata) as IPSAppDEChartExplorerView;
this.expBarInstance = ModelTool.findPSControlByType('CHARTEXPBAR', this.viewInstance?.getPSControls?.() || []);
}
/**
* 引擎初始化
*
* @memberof ChartExpViewBase
*/
public engineInit() {
if (this.Environment && this.Environment.isPreviewMode) {
return;
}
let engineOpts = ({
view: this,
p2k: '0',
chartexpbar: (this.$refs[this.expBarInstance.name] as any).ctrl,
keyPSDEField: this.appDeCodeName.toLowerCase(),
majorPSDEField: this.appDeMajorFieldName.toLowerCase(),
isLoadDefault: this.viewInstance.loadDefault,
});
this.engine.init(engineOpts);
}
/**
* 处理占位比例变化
*
* @protected
* @memberof ChartExpViewBase
*/
protected handleSplitChange() {
if (this.split) {
this.$store.commit("setViewSplit", { viewUID: `${this.viewInstance?.codeName}_${this.expBarInstance?.codeName}`, viewSplit: this.split });
if (this.viewState && this.expBarInstance) {
this.viewState.next({ tag: this.expBarInstance.name, action: 'updateSize', data: null });
}
}
}
}