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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
| import zhCN from '@/locales/zh-CN/model.js'
| import enUS from '@/locales/en-US/model.js'
|
| const Formdict = sessionStorage.getItem('lang') !== 'en-US' ? zhCN : enUS
|
| /**
| * @description 获取按钮表单配置信息
| * @param {*} card 编辑按钮
| * @param {*} functip 生成存储过程提示
| * @param {*} setting 组件配置
| * @param {*} usefulFields 存储过程可用的开始字段
| * @param {*} type 按钮类型,用于区分可选的打开方式
| */
| export function getActionForm (card, functip, config, usefulFields, type, menulist = [], modules = []) {
| let appType = sessionStorage.getItem('appType')
| let viewType = sessionStorage.getItem('editMenuType') // 弹窗 popview
| let setting = config.setting || {}
| let columns = config.columns || []
| let appMenus = []
| let opentypes = [
| {
| value: 'pop',
| text: Formdict['model.form.popform']
| }, {
| value: 'prompt',
| text: Formdict['model.form.prompt']
| }, {
| value: 'exec',
| text: Formdict['model.form.exec']
| }, {
| value: 'excelIn',
| text: Formdict['model.form.excelIn']
| }, {
| value: 'excelOut',
| text: Formdict['model.form.excelOut']
| }, {
| value: 'popview',
| text: Formdict['model.form.popview']
| }, {
| value: 'tab',
| text: Formdict['model.form.tab']
| }, {
| value: 'innerpage',
| text: Formdict['model.form.newpage']
| }, {
| value: 'funcbutton',
| text: Formdict['model.form.funcbutton']
| }
| ]
|
| let getTabs = (list) => {
| return list.filter(item => {
| if (item.type !== 'tabs') return false
|
| item.children = item.children.map(cell => {
| cell.children = getTabs(cell.children)
| return cell
| })
| return item
| })
| }
|
| if (type === 'editable') {
| opentypes = [
| {
| value: 'excelIn',
| text: Formdict['model.form.excelIn']
| }, {
| value: 'excelOut',
| text: Formdict['model.form.excelOut']
| }
| ]
| }
|
| let tabs = getTabs(JSON.parse(JSON.stringify(modules)))
|
| let pageTemps = [
| { value: 'billprint', text: '单据打印' },
| { value: 'pay', text: Formdict['model.pay'] },
| { value: 'custom', text: Formdict['header.form.custom'] }
| ]
| const isApp = ['pc', 'mob'].includes(appType)
|
| let funTypes = [
| { value: 'changeuser', text: Formdict['header.form.func.changeuser'] },
| { value: 'print', text: '标签打印' },
| { value: 'closetab', text: '标签关闭' },
| ]
|
| if (isApp) {
| appMenus = sessionStorage.getItem('appMenus')
| if (appMenus) {
| try {
| appMenus = JSON.parse(appMenus)
| } catch (e) {
| appMenus = []
| }
| } else {
| appMenus = []
| }
|
| if (appType === 'mob') {
| opentypes = opentypes.filter(item => ['pop', 'prompt', 'exec', 'innerpage', 'funcbutton'].includes(item.value))
| funTypes = [
| { value: 'mkBinding', text: '开通扫码登录' },
| { value: 'mkUnBinding', text: '用户解绑' },
| { value: 'reAuth', text: '重新授权' },
| { value: 'goBack', text: '返回' },
| ]
| pageTemps = [
| { value: 'linkpage', text: '关联菜单' },
| // { value: 'pay', text: Formdict['model.pay'] },
| { value: 'custom', text: '链接' }
| ]
| } else {
| pageTemps = [
| { value: 'linkpage', text: '关联菜单' },
| { value: 'billprint', text: '单据打印' },
| { value: 'pay', text: Formdict['model.pay'] },
| { value: 'custom', text: '链接' }
| ]
| funTypes = [
| { value: 'changeuser', text: Formdict['header.form.func.changeuser'] },
| ]
| opentypes = opentypes.filter(item => item.value !== 'tab')
| }
| }
|
| if (type === 'chart' && appType !== 'mob') {
| opentypes = opentypes.filter(item => item.value === 'excelIn' || item.value === 'excelOut')
| }
|
| let refresh = []
| if (viewType === 'popview') { // 弹窗标签
| opentypes = opentypes.filter(item => item.value !== 'popview' && item.value !== 'funcbutton')
| refresh.push({
| value: 'popclose',
| text: '标签刷新'
| })
| }
|
| let forms = [
| {
| type: 'select',
| key: 'OpenType',
| label: Formdict['header.form.openType'],
| initVal: card.OpenType,
| required: true,
| options: opentypes
| },
| {
| type: 'select',
| key: 'funcType',
| label: Formdict['header.form.funcType'],
| initVal: card.funcType || '',
| required: true,
| options: funTypes
| },
| {
| type: 'select',
| key: 'execMode',
| label: Formdict['model.form.execMode'],
| initVal: card.execMode || 'exec',
| required: true,
| options: [{
| value: 'exec',
| text: Formdict['model.form.exec']
| }, {
| value: 'prompt',
| text: Formdict['model.form.prompt']
| }, {
| value: 'pop',
| text: Formdict['model.form.popform']
| }]
| },
| {
| type: 'radio',
| key: 'intertype',
| label: Formdict['header.form.intertype'],
| initVal: card.intertype || 'system',
| required: true,
| options: []
| },
| {
| type: 'text',
| key: 'label',
| label: '按钮名称',
| initVal: card.label,
| required: true,
| readonly: false
| },
| {
| type: 'radio',
| key: 'procMode',
| label: '参数处理',
| initVal: card.procMode || 'system',
| required: true,
| options: [{
| value: 'system',
| text: '系统函数'
| }, {
| value: 'inner',
| text: '内部函数'
| }]
| },
| {
| type: 'radio',
| key: 'sqlType',
| label: Formdict['header.form.action.type'],
| initVal: card.sqlType || '',
| required: true,
| options: []
| },
| {
| type: 'text',
| key: 'sql',
| label: Formdict['model.form.tablename'],
| initVal: card.sql || setting.tableName || '',
| required: true
| },
| {
| type: 'text',
| key: 'innerFunc',
| label: Formdict['header.form.innerFunc'],
| initVal: card.innerFunc || '',
| tooltip: functip,
| fields: usefulFields,
| tooltipClass: 'middle',
| required: false,
| readonly: false
| },
| {
| type: 'select',
| key: 'pageTemplate',
| label: Formdict['model.form.newpage.type'],
| initVal: card.pageTemplate || '',
| required: true,
| options: pageTemps
| },
| {
| type: 'select',
| key: 'linkmenu',
| label: '关联菜单',
| initVal: card.linkmenu || '',
| required: true,
| forbid: !isApp,
| options: appMenus
| },
| {
| type: 'textarea',
| key: 'url',
| label: Formdict['model.pageUrl'],
| initVal: card.url || '',
| required: true
| },
| {
| type: 'radio',
| key: 'sysInterface',
| label: Formdict['header.form.sysInterface'],
| initVal: card.sysInterface || 'false',
| required: true,
| options: [{
| value: 'true',
| text: Formdict['model.true']
| }, {
| value: 'false',
| text: Formdict['model.false']
| }]
| },
| {
| type: 'text',
| key: 'outerFunc',
| label: Formdict['header.form.outerFunc'],
| 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: '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: 'callbackType',
| label: '回调方式',
| initVal: card.callbackType || 'script',
| tooltip: '使用后台脚本执行时,需要配合计划任务。',
| required: true,
| options: [{
| value: 'script',
| text: '自定义脚本'
| }, {
| value: 'default',
| text: '后台脚本'
| }]
| },
| {
| type: 'text',
| key: 'cbTable',
| label: '回调表名',
| initVal: card.cbTable || '',
| required: true
| },
| {
| type: 'text',
| key: 'callbackFunc',
| label: Formdict['header.form.callbackFunc'],
| initVal: card.callbackFunc || '',
| required: false,
| readonly: false
| },
| {
| type: 'select',
| key: 'Ot',
| label: Formdict['header.form.isRequired'],
| initVal: card.Ot || 'requiredSgl',
| required: true,
| forbid: card.$type === 'tableButton',
| options: []
| },
| {
| type: 'cascader',
| key: 'linkmenu',
| label: Formdict['model.form.linkmenu'],
| initVal: card.linkmenu || [],
| required: true,
| forbid: isApp,
| options: menulist
| },
| {
| type: 'select',
| key: 'execSuccess',
| label: Formdict['model.form.afterSuccess'],
| initVal: card.execSuccess || 'never',
| tooltip: refresh.length ? '执行标签刷新时,会同步刷新当前组件和上级组件-行。' : '刷新上级组件-行时,会同步刷新当前组件,注:上级组件在数据源中添加。',
| required: true,
| options: [{
| value: 'never',
| text: Formdict['header.form.refresh.never']
| }, {
| value: 'grid',
| text: '刷新当前组件'
| }, {
| value: 'mainline',
| text: '刷新上级组件 - 行'
| }, {
| value: 'closetab',
| text: '关闭标签'
| },
| ...refresh]
| },
| {
| type: 'select',
| key: 'execError',
| label: Formdict['model.form.afterError'],
| initVal: card.execError || 'never',
| tooltip: refresh.length ? '执行标签关闭刷新时,会同步刷新当前组件和上级组件-行。' : '刷新上级组件-行时,会同步刷新当前组件,注:上级组件在数据源中添加。',
| required: true,
| options: [{
| value: 'never',
| text: Formdict['header.form.refresh.never']
| }, {
| value: 'grid',
| text: '刷新当前组件'
| }, {
| value: 'mainline',
| text: '刷新上级组件 - 行'
| },
| ...refresh]
| },
| {
| type: 'select',
| key: 'popClose',
| label: Formdict['header.form.popClose'],
| initVal: card.popClose || 'never',
| required: true,
| options: [{
| value: 'never',
| text: Formdict['header.form.refresh.never']
| }, {
| value: 'grid',
| text: '刷新当前组件'
| }, {
| value: 'mainline',
| text: '刷新上级组件 - 行'
| }]
| },
| {
| type: 'radio',
| key: 'resetPageIndex',
| label: '刷新时',
| initVal: card.resetPageIndex || 'true',
| required: false,
| options: [{
| value: 'true',
| text: '重置页码'
| }, {
| value: 'false',
| text: '不重置'
| }]
| },
| {
| type: 'number',
| key: 'width',
| min: 1,
| max: 24,
| precision: 0,
| label: '宽度',
| initVal: card.width || 12,
| tooltip: '栅格布局,每行等分为24列。',
| forbid: type !== 'card',
| required: true
| },
| {
| type: 'radio',
| key: 'show',
| label: '显示为',
| initVal: card.show || 'button',
| required: true,
| options: [{
| value: 'icon',
| text: '图标'
| }, {
| value: 'button',
| text: '图标+文字'
| }, {
| value: 'link',
| text: '文字+图标'
| }]
| },
| {
| type: 'radio',
| key: 'swipe',
| label: "滑动显示",
| initVal: card.swipe || 'false',
| required: false,
| forbid: (type !== 'datacard' || appType !== 'mob'),
| options: [{
| value: 'false',
| text: '否'
| }, {
| value: 'left',
| text: '左滑'
| }, {
| value: 'right',
| text: '右滑'
| }]
| },
| {
| type: 'icon',
| key: 'icon',
| label: Formdict['model.icon'],
| initVal: card.icon,
| required: false,
| options: []
| },
| {
| type: 'select',
| key: 'class',
| label: Formdict['model.form.color'],
| initVal: card.class,
| tooltip: '此颜色为按钮初始化颜色,可在样式调整中修改。',
| required: false,
| options: []
| },
| {
| type: 'radio',
| key: 'joint',
| label: Formdict['model.form.paramJoint'],
| initVal: card.joint || 'true',
| required: false,
| options: [{
| value: 'true',
| text: Formdict['model.true']
| }, {
| value: 'false',
| text: Formdict['model.false']
| }]
| },
| {
| type: 'text',
| key: 'sheet',
| label: Formdict['model.form.tablename'],
| initVal: card.sheet || setting.tableName || '',
| required: true
| },
| {
| type: 'radio',
| key: 'pagination',
| label: Formdict['header.form.pagination'],
| initVal: card.pagination || 'false',
| required: false,
| options: [{
| value: 'true',
| text: Formdict['model.true']
| }, {
| value: 'false',
| text: Formdict['model.false']
| }]
| },
| {
| type: 'radio',
| key: 'search',
| label: '搜索条件',
| initVal: card.search || 'false',
| required: false,
| options: [{
| value: 'true',
| text: '必填'
| }, {
| value: 'false',
| text: '非必填'
| }]
| },
| {
| type: 'cascader',
| key: 'syncComponent',
| label: '刷新组件',
| initVal: card.syncComponent || [],
| tooltip: '执行成功后,需要同步刷新的组件',
| required: false,
| options: modules
| },
| {
| type: 'cascader',
| key: 'switchTab',
| label: '切换标签',
| initVal: card.switchTab || [],
| tooltip: '执行成功后,需要切换的标签页',
| required: false,
| options: tabs
| },
| {
| type: 'cascader',
| key: 'refreshTab',
| label: '刷新菜单',
| initVal: card.refreshTab || [],
| tooltip: '执行成功后或标签关闭时,需要同步刷新的菜单',
| required: false,
| forbid: isApp || viewType === 'popview',
| options: menulist
| },
| {
| type: 'select',
| key: 'controlField',
| label: '控制字段',
| tooltip: '禁用控制字段,可根据数据控制按钮是否禁用。',
| initVal: card.controlField || '',
| required: false,
| allowClear: true,
| options: columns
| },
| {
| type: 'text',
| key: 'controlVal',
| label: '控制值',
| tooltip: '当选择控制字段,且字段值与控制值相等时,按钮会禁用,多个值用逗号分隔。',
| initVal: card.controlVal || '',
| required: false
| },
| {
| type: 'cascader',
| key: 'linkmenu',
| label: Formdict['model.form.linkmenu'],
| initVal: card.linkmenu || [],
| required: true,
| forbid: isApp,
| options: menulist
| },
| {
| type: !appType ? 'cascader' : 'select',
| key: 'openmenu',
| label: '打开菜单',
| tooltip: '执行成功后需要打开的菜单。',
| initVal: card.openmenu || (!appType ? [] : ''),
| required: false,
| allowClear: true,
| options: appType === 'mob' ? [...appMenus, {value: 'goback', text: '返回'}] : (appType === 'pc' ? appMenus : menulist),
| forbid: viewType === 'popview'
| },
| {
| type: 'text',
| key: 'output',
| label: '返回值',
| tooltip: '执行成功后的返回值。',
| initVal: card.output || '',
| required: false,
| forbid: viewType === 'popview'
| },
| {
| type: 'radio',
| key: 'open',
| label: '打开方式',
| initVal: card.open || 'blank',
| required: true,
| forbid: appType !== 'pc',
| options: [{
| value: 'blank',
| text: '新窗口'
| }, {
| value: 'self',
| text: '当前窗口'
| }]
| },
| {
| type: 'radio',
| key: 'display',
| label: '显示方式',
| initVal: card.display || 'modal',
| required: true,
| options: [{
| value: 'modal',
| text: '模态框'
| }, {
| value: 'drawer',
| text: '抽屉'
| }]
| },
| {
| type: 'number',
| key: 'ratio',
| min: 1,
| max: 24,
| precision: 0,
| label: '比例',
| initVal: card.ratio || 85,
| tooltip: '小于100为宽度(或高度)百分比,大于100为像素值。',
| required: true
| },
| {
| type: 'radio',
| key: 'placement',
| label: '抽屉方向',
| initVal: card.placement || 'right',
| tooltip: '使用抽屉时有效。',
| required: false,
| options: [{
| value: 'right',
| text: '右侧'
| }, {
| value: 'left',
| text: '左侧'
| }, {
| value: 'top',
| text: '上侧'
| }, {
| value: 'bottom',
| text: '下侧'
| }]
| },
| ]
|
| return forms
| }
|
|