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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import { Emit, Prop, Watch } from 'vue-property-decorator';
import { MEditViewPanelControlBase } from '../../../widgets';
import { throttle, Util } from 'ibiz-core';
/**
* 多编辑面板部件基类
*
* @export
* @class AppListExpBarBase
* @extends {ListExpBarControlBase}
*/
export class AppMEditViewPanelBase extends MEditViewPanelControlBase {
/**
* 部件动态参数
*
* @memberof AppMEditViewPanelBase
*/
@Prop() public declare dynamicProps: any;
/**
* 部件静态参数
*
* @memberof AppMEditViewPanelBase
*/
@Prop() public declare staticProps: any;
/**
* 监听部件动态参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppMEditViewPanelBase
*/
@Watch('dynamicProps', {
immediate: true,
})
public onDynamicPropsChange(newVal: any, oldVal: any) {
if (newVal && !Util.isFieldsSame(newVal, oldVal)) {
super.onDynamicPropsChange(newVal, oldVal);
}
}
/**
* 监听部件静态参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppMEditViewPanelBase
*/
@Watch('staticProps', {
immediate: true,
})
public onStaticPropsChange(newVal: any, oldVal: any) {
if (newVal && !Util.isFieldsSame(newVal, oldVal)) {
super.onStaticPropsChange(newVal, oldVal);
}
}
/**
* 销毁视图回调
*
* @memberof AppMEditViewPanelBase
*/
public destroyed() {
this.ctrlDestroyed();
}
/**
* 部件事件
*
* @param {{ controlname: string; action: string; data: any }} { controlname 部件名称, action 事件名称, data 事件参数 }
* @memberof AppMEditViewPanelBase
*/
@Emit('ctrl-event')
public ctrlEvent({ controlname, action, data }: { controlname: string; action: string; data: any }): void { }
/**
* 绘制内容
*
* @memberof AppMEditViewPanelBase
*/
public renderContent() {
if (!this.controlInstance.getEmbeddedPSAppView()) {
return;
}
if (Object.is(this.controlInstance.panelStyle, 'TAB_TOP')) {
return this.renderTabtop();
}
return this.renderRow();
}
/**
* 绘制上分页样式
*
*
* @memberof AppMEditViewPanelBase
*/
public renderTabtop() {
return (
<tabs value={this.activeTab} name={`${this.controlInstance.codeName}-tabs`}>
{
this.items.map((item: any) => {
return (
<tabPane label={item.srfmajortext} key={item.id} tab={`${this.controlInstance.codeName}-tabs`}>
{
this.$createElement('app-view-shell', {
props: {
staticProps: {
viewDefaultUsage: false,
viewModelData: this.controlInstance.getEmbeddedPSAppView(),
inputState: this.panelState,
},
dynamicProps: {
viewdata: JSON.stringify(item.viewdata),
viewparam: JSON.stringify(item.viewparam),
}
},
class: "viewcontainer2",
on: {
viewdataschange: this.viewDataChange.bind(this),
viewLoaded: this.viewLoaded.bind(this),
viewstatechange: this.viewStateChange.bind(this),
}
})
}
</tabPane>
)
})
}
</tabs>
)
}
/**
* 绘制行记录样式
*
* @memberof AppMEditViewPanelBase
*/
public renderRow() {
return this.items.map((item: any) => {
return <div class="row-panel" key={item.id}>
{[<app-button type="primary" on-onClick={() => throttle(this.handleDelete, [item], this)} class="delete-btn">{this.$t('app.local.delete')}</app-button>,
this.$createElement('app-view-shell', {
props: {
staticProps: {
viewDefaultUsage: false,
viewModelData: this.controlInstance.getEmbeddedPSAppView(),
inputState: this.panelState,
},
dynamicProps: {
viewdata: JSON.stringify(item.viewdata),
viewparam: JSON.stringify(item.viewparam),
}
},
class: "viewcontainer2 rowtype",
on: {
viewdataschange: this.viewDataChange.bind(this),
viewLoaded: this.viewLoaded.bind(this),
viewstatechange: this.viewStateChange.bind(this),
}
}),
<divider />
]}
</div>
})
}
/**
* 绘制部件
*
* @param h
* @memberof AppMEditViewPanelBase
*/
public render(h: any) {
if (!this.controlIsLoaded) {
return null;
}
const { controlClassNames } = this.renderOptions;
return (
<div class={{ ...controlClassNames, 'multieditviewpanel': true }}>
{this.items.length > 0 ? this.renderContent() : null}
{this.showButton ?
<i-button type="primary" on-click={() => throttle(this.handleAdd, [], this)} style="float: right;">
{this.$t('app.local.add')}
</i-button> : null}
</div>
)
}
}