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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
| /**
| * @description 获取表单按钮配置信息
| * @param {*} card 编辑按钮
| * @param {*} type 按钮类型,用于区分可选的打开方式
| */
|
| export function getActionForm (card, functip, tableName, usefulFields, modules, anchors, uuid, fields) {
| const appType = sessionStorage.getItem('appType')
| let viewType = sessionStorage.getItem('editMenuType') // 弹窗 popview
| let _type = '提交'
| if (card.type === 'prev') {
| _type = '上一步'
| } else if (card.type === 'next') {
| _type = '下一步'
| } else if (card.type === 'close') {
| _type = '关闭'
| } else if (card.type === 'reset') {
| _type = '重置'
| }
|
| let menulist = []
| if (appType === 'pc' || appType === 'mob') {
| menulist = sessionStorage.getItem('appMenus')
| if (menulist) {
| try {
| menulist = JSON.parse(menulist)
| menulist = menulist.map(item => ({value: item.MenuID, text: item.MenuName}))
| } catch (e) {
| menulist = []
| }
| } else {
| menulist = []
| }
| menulist.push({value: 'goback', text: '返回(上一页)'})
| } else {
| menulist = sessionStorage.getItem('fstMenuList')
| if (menulist) {
| try {
| menulist = JSON.parse(menulist)
| } catch (e) {
| menulist = []
| }
| } else {
| menulist = []
| }
| }
|
| let linkButtons = []
| let filterComponent = (components) => {
| components.forEach(item => {
| if (item.type === 'tabs') {
| item.subtabs.forEach(tab => {
| filterComponent(tab.components)
| })
| } else if (item.type === 'group') {
| filterComponent(item.components)
| } else {
| item.action && item.action.forEach(cell => {
| if (cell.hidden === 'true' || cell.uuid === uuid) return
| if (!['exec', 'prompt', 'pop'].includes(cell.OpenType)) return
|
| linkButtons.push({
| value: cell.uuid,
| label: cell.label + '(' + item.name + ')'
| })
| })
|
| if (item.type === 'card' && item.subcards) {
| item.subcards.forEach(m => {
| if ((item.subtype === 'datacard' || item.subtype === 'dualdatacard') && m.$cardType !== 'extendCard') return
| m.elements.forEach(cell => {
| if (cell.eleType !== 'button' || cell.hidden === 'true' || cell.uuid === uuid) return
| if (!['exec', 'prompt', 'pop'].includes(cell.OpenType)) return
|
| linkButtons.push({
| value: cell.uuid,
| label: cell.label + '(' + item.name + ')'
| })
| })
| })
| } else if (item.type === 'balcony') {
| item.elements.forEach(cell => {
| if (cell.eleType !== 'button' || cell.hidden === 'true' || cell.uuid === uuid) return
| if (!['exec', 'prompt', 'pop'].includes(cell.OpenType)) return
|
| linkButtons.push({
| value: cell.uuid,
| label: cell.label + '(' + item.name + ')'
| })
| })
| } else if (item.type === 'form') {
| item.subcards.forEach(group => {
| if(group.uuid === uuid) return
|
| if (item.subcards.length > 1) {
| linkButtons.push({
| value: group.uuid,
| label: group.subButton.label + '(' + item.name + '-' + group.setting.title + ')'
| })
| } else {
| linkButtons.push({
| value: group.uuid,
| label: group.subButton.label + '(' + item.name + ')'
| })
| }
| })
| }
| }
| })
| }
|
| filterComponent(window.GLOB.customMenu.components)
|
| let refresh = []
| if (viewType === 'popview') { // 弹窗标签
| refresh.push({
| value: 'closepoptab', // 关闭弹窗标签
| text: '关闭弹窗'
| })
| refresh.push({
| value: 'popclose', // 执行弹窗关闭时的刷新
| text: '刷新源组件'
| })
| }
|
| let resets = []
| fields.forEach(item => {
| if (item.type !== 'text' && item.type !== 'number') return
|
| if (item.label !== item.field) {
| resets.push({
| value: item.field,
| text: item.label + ' (' + item.field + ')'
| })
| } else {
| resets.push({
| value: item.field,
| text: item.label
| })
| }
| })
|
| return [
| {
| type: 'tip',
| key: 'type',
| label: '按钮类型',
| initVal: card.type,
| forbid: true
| },
| {
| type: 'tip',
| key: 'typeName',
| label: '按钮类型',
| initVal: _type
| },
| {
| type: 'text',
| key: 'label',
| label: '按钮名称',
| initVal: card.label,
| required: true,
| readonly: false
| },
| {
| type: 'radio',
| key: 'actionType',
| label: '执行操作',
| initVal: card.actionType || 'default',
| tooltip: '关闭功能:管理系统中会关闭当前标签,子应用中为返回上一页。',
| required: true,
| options: [{
| value: 'default',
| text: '默认'
| }, {
| value: 'close',
| text: '关闭'
| }]
| },
| {
| type: 'radio',
| key: 'intertype',
| label: '接口类型',
| initVal: card.intertype || 'system',
| required: true,
| options: [{
| value: 'system',
| text: '系统'
| }, {
| value: 'inner',
| text: '内部'
| }, {
| value: 'outer',
| text: '外部'
| }, {
| value: 'custom',
| text: '自定义'
| }]
| },
| {
| type: 'radio',
| key: 'procMode',
| label: '参数处理',
| initVal: card.procMode || 'system',
| tooltip: '当返回值存在 mk_ex_invoke 且值为 false 时,不会调用外部接口;当返回值存在 mk_ex_data 时,将以此为参数分批请求自定义接口。注:当选“无”时,按钮选行时会传递主键,存在表单时会传递表单字段,存在BID时会传BID字段。',
| required: true,
| options: [{
| value: 'system',
| text: '系统函数'
| }, {
| value: 'inner',
| text: '内部函数'
| }, {
| value: 'none',
| text: '无'
| }]
| },
| {
| type: 'radio',
| key: 'sqlType',
| label: '操作类型',
| initVal: card.sqlType || '',
| required: true,
| options: [{
| value: 'insert',
| text: '添加'
| }, {
| value: 'update',
| text: '修改'
| }, {
| value: 'audit',
| text: '审核'
| }]
| },
| {
| type: 'text',
| key: 'sql',
| label: '表名',
| initVal: card.sql || tableName || '',
| required: true
| },
| {
| type: 'text',
| key: 'innerFunc',
| label: '内部函数',
| initVal: card.innerFunc || '',
| tooltip: functip,
| fields: usefulFields,
| tooltipClass: 'middle',
| required: true,
| readonly: false
| },
| {
| type: 'select',
| key: 'linkTab',
| label: '关联标签',
| initVal: card.linkTab || '',
| required: false,
| options: []
| },
| {
| type: 'text',
| key: 'url',
| label: '页面地址',
| initVal: card.url || '',
| required: true
| },
| {
| type: 'radio',
| key: 'sysInterface',
| label: '系统类型',
| initVal: card.sysInterface || 'false',
| tooltip: '业务系统指同一sso下的其他业务系统',
| required: true,
| options: [{
| value: 'true',
| text: '单点'
| }, {
| value: 'false',
| text: '业务'
| }]
| },
| {
| type: 'text',
| key: 'outerFunc',
| label: '外部函数',
| initVal: card.outerFunc || '',
| required: false,
| readonly: false
| },
| {
| type: 'textarea',
| key: 'interface',
| label: '测试地址',
| initVal: card.sysInterface === 'true' ? (window.GLOB.mainSystemApi || '') : (card.interface || ''),
| required: true,
| readonly: card.sysInterface === 'true'
| },
| {
| type: 'textarea',
| key: 'proInterface',
| label: '正式地址',
| initVal: card.proInterface || '',
| tooltip: '正式系统所使用的接口地址。',
| required: false
| },
| {
| type: 'radio',
| key: 'callbackType',
| label: '回调方式',
| initVal: card.callbackType || 'script',
| tooltip: '使用后台脚本执行时,需要配合计划任务。',
| required: true,
| options: [{
| value: 'script',
| text: '自定义脚本'
| }, {
| value: 'default',
| text: '后台脚本'
| }, {
| value: 'func',
| text: '回调函数'
| }, {
| value: 'none',
| text: '无'
| }]
| },
| {
| type: 'text',
| key: 'cbTable',
| label: '回调表名',
| initVal: card.cbTable || '',
| required: true
| },
| {
| type: 'text',
| key: 'callbackFunc',
| label: '回调函数',
| initVal: card.callbackFunc || '',
| required: true,
| readonly: false
| },
| {
| type: 'radio',
| key: 'method',
| label: '请求方式',
| initVal: card.method || 'post',
| required: true,
| options: [{
| value: 'get',
| text: 'GET'
| }, {
| value: 'post',
| text: 'POST'
| }]
| },
| {
| type: 'radio',
| key: 'cross',
| label: '接口跨域',
| initVal: card.cross || 'true',
| tooltip: '如果自定义接口不支持跨域请求,会通过当前系统转发。',
| required: false,
| options: [{
| value: 'true',
| text: '支持'
| }, {
| value: 'false',
| text: '不支持'
| }]
| },
| {
| type: 'radio',
| key: 'stringify',
| label: '序列化',
| initVal: card.stringify || 'text',
| required: false,
| options: [{
| value: 'text',
| text: 'Text'
| }, {
| value: 'JSON',
| text: 'JSON'
| }, {
| value: 'qs',
| text: 'qs'
| }]
| },
| {
| type: 'text',
| key: 'ContentType',
| label: 'Content-Type',
| initVal: card.ContentType || '',
| tooltip: '默认值:application/x-www-form-urlencoded;charset=UTF-8',
| required: false
| },
| {
| type: 'text',
| key: 'outerBlacklist',
| label: '字段黑名单',
| initVal: card.outerBlacklist || '',
| tooltip: '不需要回传的字段可设置字段黑名单,多个值请用逗号分隔。',
| required: false
| },
| {
| type: 'radio',
| key: 'Ot',
| label: '行设置',
| initVal: card.Ot,
| required: true,
| options: [{
| value: 'notRequired',
| text: '不选择行'
| }, {
| value: 'requiredSgl',
| text: '选择单行'
| }]
| },
| {
| type: 'select',
| key: 'execSuccess',
| label: '成功后',
| initVal: card.execSuccess || 'grid',
| required: true,
| options: [{
| value: 'never',
| text: '不刷新'
| }, {
| value: 'grid',
| text: '刷新当前组件'
| }, {
| value: 'mainline',
| text: '刷新上级组件 - 行'
| }, ...refresh]
| },
| {
| type: (appType === 'pc' || appType === 'mob') ? 'select' : 'cascader',
| key: 'linkmenu',
| label: '下一步操作',
| tooltip: '执行成功后需要打开的菜单。',
| initVal: card.linkmenu,
| help: appType === 'pc' || appType === 'mob' ? '可返回上一页。' : null,
| required: false,
| allowClear: true,
| options: menulist
| },
| {
| type: 'text',
| key: 'output',
| label: '返回值',
| tooltip: '执行成功后的返回值。系统函数可指定返回的变量(以@符开头,返回id时可使用@id@);自定义函数可指定返回字段(如id)。',
| initVal: card.output || '',
| required: false
| },
| {
| type: 'radio',
| key: 'open',
| label: '打开方式',
| initVal: card.open || 'blank',
| required: false,
| forbid: appType !== 'pc' && appType !== 'mob',
| options: [
| {value: 'blank', text: appType !== 'mob' ? '新窗口' : '新页面'},
| {value: 'self', text: appType !== 'mob' ? '当前窗口' : '当前页面'},
| ]
| },
| {
| type: 'cascader',
| key: 'syncComponent',
| label: '同步刷新',
| initVal: card.syncComponent,
| tooltip: '执行成功后需要刷新的组件。注:选择当前组件的上级组件无效,刷新上级组件请选择成功后“刷新上级组件 - 行”。',
| required: false,
| options: modules
| },
| {
| type: 'number',
| key: 'syncDelay',
| label: '刷新延迟',
| initVal: card.syncDelay,
| tooltip: '同步刷新组件的延迟时间,单位毫秒。',
| // placeholder: '单位毫秒',
| required: false
| },
| {
| type: 'cascader',
| key: 'anchors',
| label: '跳转锚点',
| initVal: card.anchors || [],
| tooltip: '执行成功后,需要跳转的锚点。' + (appType === 'mob' ? '注:小程序中无效' : ''),
| required: false,
| options: anchors
| },
| {
| type: 'select',
| key: 'preButton',
| label: '前置按钮',
| tooltip: '当前按钮执行前,需要执行的按钮。',
| initVal: card.preButton || '',
| required: false,
| allowClear: true,
| options: linkButtons
| },
| {
| type: 'select',
| key: 'resetForms',
| label: '重置表单',
| tooltip: '按钮执行成功后需要重置的表单,表单会恢复默认值并聚焦。',
| initVal: card.resetForms || [],
| required: false,
| mode: 'multiple',
| options: resets
| },
| {
| type: 'radio',
| key: 'returnValue',
| label: '更新表单',
| initVal: card.returnValue || 'false',
| tooltip: '与重置表单配合使用,开启时,必须在自定义脚本中返回数据,用于替换字段集和填充表单。',
| options: [{
| value: 'false',
| text: '禁用'
| }, {
| value: 'true',
| text: '启用'
| }]
| },
| {
| type: 'radio',
| key: 'reload',
| label: '上一页',
| initVal: card.reload || 'false',
| tooltip: '成功后是否刷新上页的数据。注:在明科云APP或小程序中有效。',
| forbid: appType !== 'mob',
| options: [{
| value: 'false',
| text: '不刷新'
| }, {
| value: 'true',
| text: '刷新'
| }]
| }
| ]
| }
|
|