@lingxiteam/assets 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/es/dealDsl/preprocess/common.js +27 -16
  2. package/es/error/errorDisplay/Web/Drawer/Drawer.less +31 -0
  3. package/es/error/errorDisplay/Web/Drawer/index.js +12 -4
  4. package/es/error/errorDisplay/Web/ErrorMsg/index.js +27 -4
  5. package/es/error/errorDisplay/Web/Notification/index.js +22 -11
  6. package/es/rootConfig/mobile/BusiComp.js +1 -1
  7. package/es/rootConfig/mobile/MobileModal.js +1 -1
  8. package/es/rootConfig/mobile/MobilePopover.js +1 -1
  9. package/es/rootConfig/pc/BusiComp.js +1 -1
  10. package/es/rootConfig/pc/Drawer.js +1 -1
  11. package/es/rootConfig/pc/Modal.js +1 -1
  12. package/es/rootConfig/pc/Popover.js +1 -1
  13. package/es/rootConfig/todoActionList.js +1 -1
  14. package/es/rootConfig/todoOptionList.js +1 -1
  15. package/es/theme/bin/cucc/theme.js +275 -0
  16. package/es/theme/bin/cucc/theme.less +272 -0
  17. package/es/theme/bin/cucc/theme.scss +272 -0
  18. package/es/theme/bin/default/theme.js +275 -0
  19. package/es/theme/bin/default/theme.less +272 -0
  20. package/es/theme/bin/default/theme.scss +272 -0
  21. package/es/theme/build.js +42 -0
  22. package/es/theme/src/cucc/index.js +131 -0
  23. package/es/theme/src/default/index.js +131 -0
  24. package/es/theme/utils/colorPaletteMixin.js +59 -0
  25. package/es/theme/utils/px2Num.js +12 -0
  26. package/es/theme/utils/renderColors.js +16 -0
  27. package/lib/IconSvg/index.d.ts +6 -0
  28. package/lib/IconSvg/index.js +30 -0
  29. package/lib/dealDsl/PropType.d.ts +7 -0
  30. package/lib/dealDsl/PropType.js +5 -0
  31. package/lib/dealDsl/events/actionObj.d.ts +3 -0
  32. package/lib/dealDsl/events/actionObj.js +13 -0
  33. package/lib/dealDsl/events/index.d.ts +6 -0
  34. package/lib/dealDsl/events/index.js +21 -0
  35. package/lib/dealDsl/index.d.ts +2 -0
  36. package/lib/dealDsl/index.js +31 -0
  37. package/lib/dealDsl/preprocess/common.d.ts +9 -0
  38. package/lib/dealDsl/preprocess/common.js +277 -0
  39. package/lib/dealDsl/preprocess/editor.d.ts +9 -0
  40. package/lib/dealDsl/preprocess/editor.js +28 -0
  41. package/lib/dealDsl/preprocess/engine.d.ts +9 -0
  42. package/lib/dealDsl/preprocess/engine.js +26 -0
  43. package/lib/dealDsl/preprocessDSL.d.ts +21 -0
  44. package/lib/dealDsl/preprocessDSL.js +88 -0
  45. package/lib/dealDsl/utils/index.d.ts +13 -0
  46. package/lib/dealDsl/utils/index.js +29 -0
  47. package/lib/error/errorCatch/index.js +48 -0
  48. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.js +115 -0
  49. package/lib/error/errorDisplay/Mobile/Drawer/Drawer.less +201 -0
  50. package/lib/error/errorDisplay/Mobile/Drawer/index.js +140 -0
  51. package/lib/error/errorDisplay/Mobile/ErrorMsg/index.js +207 -0
  52. package/lib/error/errorDisplay/Mobile/Modal/Modal.js +53 -0
  53. package/lib/error/errorDisplay/Mobile/Modal/Modal.less +146 -0
  54. package/lib/error/errorDisplay/Mobile/Modal/index.js +127 -0
  55. package/lib/error/errorDisplay/Mobile/defaultGlobalConfig.js +21 -0
  56. package/lib/error/errorDisplay/SVGstring.js +18 -0
  57. package/lib/error/errorDisplay/Web/Drawer/Drawer.js +274 -0
  58. package/lib/error/errorDisplay/Web/Drawer/Drawer.less +420 -0
  59. package/lib/error/errorDisplay/Web/Drawer/DrawerConnect.js +213 -0
  60. package/lib/error/errorDisplay/Web/Drawer/index.js +142 -0
  61. package/lib/error/errorDisplay/Web/ErrorMsg/index.js +301 -0
  62. package/lib/error/errorDisplay/Web/Notification/Notice.js +161 -0
  63. package/lib/error/errorDisplay/Web/Notification/Notification.js +149 -0
  64. package/lib/error/errorDisplay/Web/Notification/Notification.less +137 -0
  65. package/lib/error/errorDisplay/Web/Notification/index.js +104 -0
  66. package/lib/error/errorDisplay/Web/defaultGlobalConfig.js +29 -0
  67. package/lib/error/errorDisplay/animation.less +112 -0
  68. package/lib/error/errorDisplay/compUtils.js +52 -0
  69. package/lib/error/errorDisplay/const.js +83 -0
  70. package/lib/error/errorDisplay/http.js +103 -0
  71. package/lib/error/errorDisplay/variables.less +1 -0
  72. package/lib/error/index.js +34 -0
  73. package/lib/images/ico-back.png +0 -0
  74. package/lib/index.d.ts +9 -0
  75. package/lib/rootConfig/index.d.ts +5 -0
  76. package/lib/rootConfig/index.js +28 -0
  77. package/lib/rootConfig/mobile/BusiComp.d.ts +66 -0
  78. package/lib/rootConfig/mobile/BusiComp.js +88 -0
  79. package/lib/rootConfig/mobile/MobileModal.d.ts +114 -0
  80. package/lib/rootConfig/mobile/MobileModal.js +140 -0
  81. package/lib/rootConfig/mobile/MobilePopover.d.ts +81 -0
  82. package/lib/rootConfig/mobile/MobilePopover.js +89 -0
  83. package/lib/rootConfig/mobile/index.d.ts +4 -0
  84. package/lib/rootConfig/mobile/index.js +34 -0
  85. package/lib/rootConfig/mobile/page.d.ts +157 -0
  86. package/lib/rootConfig/mobile/page.js +161 -0
  87. package/lib/rootConfig/pc/BusiComp.d.ts +66 -0
  88. package/lib/rootConfig/pc/BusiComp.js +88 -0
  89. package/lib/rootConfig/pc/Drawer.d.ts +150 -0
  90. package/lib/rootConfig/pc/Drawer.js +203 -0
  91. package/lib/rootConfig/pc/Modal.d.ts +160 -0
  92. package/lib/rootConfig/pc/Modal.js +195 -0
  93. package/lib/rootConfig/pc/Popover.d.ts +90 -0
  94. package/lib/rootConfig/pc/Popover.js +104 -0
  95. package/lib/rootConfig/pc/index.d.ts +5 -0
  96. package/lib/rootConfig/pc/index.js +41 -0
  97. package/lib/rootConfig/pc/page.d.ts +146 -0
  98. package/lib/rootConfig/pc/page.js +153 -0
  99. package/lib/rootConfig/todoActionList.d.ts +3082 -0
  100. package/lib/rootConfig/todoActionList.js +3600 -0
  101. package/lib/rootConfig/todoOptionList.d.ts +1466 -0
  102. package/lib/rootConfig/todoOptionList.js +1685 -0
  103. package/lib/security/const.d.ts +22 -0
  104. package/lib/security/const.js +38 -0
  105. package/lib/security/encipher/aes.d.ts +2 -0
  106. package/lib/security/encipher/aes.js +35 -0
  107. package/lib/security/encipher/des.d.ts +2 -0
  108. package/lib/security/encipher/des.js +34 -0
  109. package/lib/security/encipher/rsa.d.ts +2 -0
  110. package/lib/security/encipher/rsa.js +26 -0
  111. package/lib/security/encipher/sign.d.ts +6 -0
  112. package/lib/security/encipher/sign.js +102 -0
  113. package/lib/security/fetch.d.ts +9 -0
  114. package/lib/security/fetch.js +212 -0
  115. package/lib/security/httpEncryption.js +83 -0
  116. package/lib/security/index.d.ts +39 -0
  117. package/lib/security/index.js +29 -0
  118. package/lib/svg/check.svg +10 -0
  119. package/lib/svg/normal-check.svg +10 -0
  120. package/lib/svg/webViewError.svg +40 -0
  121. package/lib/theme/bin/cucc/theme.js +277 -0
  122. package/lib/theme/bin/cucc/theme.less +272 -0
  123. package/lib/theme/bin/cucc/theme.scss +272 -0
  124. package/lib/theme/bin/default/theme.js +277 -0
  125. package/lib/theme/bin/default/theme.less +272 -0
  126. package/lib/theme/bin/default/theme.scss +272 -0
  127. package/lib/theme/build.js +44 -0
  128. package/lib/theme/src/cucc/index.js +133 -0
  129. package/lib/theme/src/default/index.js +133 -0
  130. package/lib/theme/utils/colorPaletteMixin.js +61 -0
  131. package/lib/theme/utils/px2Num.js +14 -0
  132. package/lib/theme/utils/renderColors.js +18 -0
  133. package/lib/utils/img.d.ts +1 -0
  134. package/lib/utils/img.js +10 -0
  135. package/lib/utils/url.d.ts +16 -0
  136. package/lib/utils/url.js +111 -0
  137. package/package.json +6 -3
@@ -0,0 +1,1685 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var SERVICE_KEY = {
8
+ QUERY: '11',
9
+ INNER: '12',
10
+ STD: '13',
11
+ RHIN: '10',
12
+ OBJECT: '2',
13
+ SUPER: '7'
14
+ };
15
+ /**
16
+ * @description: 动作的配置项信息
17
+ * key:配置项的key, 用于dot模板取值
18
+ * label:配置项名称
19
+ * type:配置项交互类型
20
+ * options:配置项数据源
21
+ * visibleFlag:是否显示标志,有值时,则需判断该标志位是否为visibleFlagValue的值,true时才展示
22
+ * visibleFlagValue:用于visibleFlag的判断显示,为hasValue时,表示判断visibleFlag有值即可
23
+ * isRequired:是否必填, 可参照:selectObjectDataSource 配置
24
+ * labelTip:配置项提示语
25
+ * valuePropName:必填时需配置项的取值属性名称。可参照:selectObjectDataSource 配置,因为有些配置项的取值属性名(对应动作节点的 options[valuePropName])与这里的 key 不一致,需要自己指定
26
+ */
27
+ var todoOptionList = {
28
+ url: {
29
+ key: 'url',
30
+ label: '请求地址(URL)',
31
+ type: 'SelectServiceUrl',
32
+ props: {
33
+ isRequired: true,
34
+ valuePropName: 'url'
35
+ }
36
+ },
37
+ sqlServiceCode: {
38
+ key: 'sqlServiceCode',
39
+ label: '选择SQL查询服务',
40
+ type: 'SelectSQLServiceCode'
41
+ },
42
+ sqlServiceFields: {
43
+ key: 'sqlServiceFields',
44
+ label: '导出字段',
45
+ type: 'SelectSQLServiceFields'
46
+ },
47
+ target: {
48
+ key: 'target',
49
+ label: '联动来源',
50
+ type: 'SelectObject'
51
+ },
52
+ arelStaticData: {
53
+ key: 'arelStaticData',
54
+ label: 'A端静态数据',
55
+ type: 'SelectStaticData',
56
+ props: {
57
+ options: {
58
+ noCustom: true
59
+ }
60
+ }
61
+ },
62
+ zrelStaticData: {
63
+ key: 'zrelStaticData',
64
+ label: 'Z端静态数据',
65
+ type: 'SelectStaticData',
66
+ props: {
67
+ options: {
68
+ noCustom: true
69
+ }
70
+ }
71
+ },
72
+ staticData: {
73
+ key: 'staticData',
74
+ label: '静态数据',
75
+ type: 'SelectStaticData'
76
+ },
77
+ custTargetVal: {
78
+ key: 'custTargetVal',
79
+ label: '自定义触发值',
80
+ type: 'SetExpression'
81
+ },
82
+ visible: {
83
+ key: 'visible',
84
+ label: '显隐设置',
85
+ type: 'RadioButton',
86
+ defaultValue: '',
87
+ props: {
88
+ options: [{
89
+ title: '显示',
90
+ value: 'true'
91
+ }, {
92
+ title: '隐藏',
93
+ value: ''
94
+ }, {
95
+ title: '切换',
96
+ value: 'toggle'
97
+ }]
98
+ }
99
+ },
100
+ readonly: {
101
+ key: 'readonly',
102
+ label: '编辑状态设置',
103
+ type: 'RadioButton',
104
+ defaultValue: '',
105
+ props: {
106
+ options: [{
107
+ title: '只读',
108
+ value: 'true'
109
+ }, {
110
+ title: '启用',
111
+ value: ''
112
+ }, {
113
+ title: '切换',
114
+ value: 'toggle'
115
+ }]
116
+ }
117
+ },
118
+ bsSelectType: {
119
+ key: 'selectType',
120
+ label: '控制类型',
121
+ type: 'RadioButton',
122
+ defaultValue: 'id',
123
+ props: {
124
+ options: [{
125
+ title: '唯一字段编码',
126
+ value: 'id'
127
+ }, {
128
+ title: '循环项索引',
129
+ value: 'index'
130
+ }]
131
+ }
132
+ },
133
+ editor: {
134
+ key: 'editor',
135
+ label: '是否可编辑',
136
+ type: 'Select',
137
+ props: {
138
+ options: [{
139
+ title: '是',
140
+ value: false
141
+ }, {
142
+ title: '否',
143
+ value: true
144
+ }]
145
+ }
146
+ },
147
+ value: {
148
+ key: 'value',
149
+ label: '内容',
150
+ type: 'SetExpression'
151
+ },
152
+ valueArray: {
153
+ key: 'value',
154
+ label: '内容',
155
+ type: 'SetValueByArray'
156
+ },
157
+ startVal: {
158
+ key: 'startVal',
159
+ label: '开始值',
160
+ type: 'SetExpression',
161
+ props: {
162
+ placeholder: '请输入YYYY-MM-DD格式的时间'
163
+ }
164
+ },
165
+ endVal: {
166
+ key: 'endVal',
167
+ label: '结束值',
168
+ type: 'SetExpression',
169
+ props: {
170
+ placeholder: '请输入YYYY-MM-DD格式的时间'
171
+ }
172
+ },
173
+ loading: {
174
+ key: 'loading',
175
+ label: '是否加载中',
176
+ type: 'Select',
177
+ props: {
178
+ options: [{
179
+ title: '是',
180
+ value: true
181
+ }, {
182
+ title: '否',
183
+ value: false
184
+ }]
185
+ }
186
+ },
187
+ msgType: {
188
+ key: 'type',
189
+ label: '类型',
190
+ type: 'Select',
191
+ defaultValue: 'success',
192
+ props: {
193
+ options: [{
194
+ title: '成功',
195
+ value: 'success'
196
+ }, {
197
+ title: '提示',
198
+ value: 'info'
199
+ }, {
200
+ title: '警告',
201
+ value: 'warn'
202
+ }, {
203
+ title: '错误',
204
+ value: 'error'
205
+ }, {
206
+ title: '加载动画',
207
+ value: 'loading',
208
+ terminal: ['mobile']
209
+ }]
210
+ }
211
+ },
212
+ duration: {
213
+ key: 'duration',
214
+ label: '加载时长',
215
+ type: 'InputNumber',
216
+ props: {
217
+ unit: '秒'
218
+ }
219
+ },
220
+ swiperIndex: {
221
+ key: 'swiperIndex',
222
+ label: '索引',
223
+ type: 'SwiperIndex'
224
+ },
225
+ validateType: {
226
+ key: 'validateStatus',
227
+ label: '校验类型',
228
+ type: 'RadioButton',
229
+ defaultValue: 'success',
230
+ props: {
231
+ options: [{
232
+ title: '成功',
233
+ value: 'success'
234
+ }, {
235
+ title: '提示',
236
+ value: 'validating'
237
+ }, {
238
+ title: '错误',
239
+ value: 'error'
240
+ }, {
241
+ title: '警告',
242
+ value: 'warning'
243
+ }, {
244
+ title: '正常',
245
+ value: ''
246
+ }]
247
+ }
248
+ },
249
+ validateMsg: {
250
+ key: 'help',
251
+ label: '校验文案',
252
+ type: 'Input',
253
+ props: {
254
+ placeholder: '请输入'
255
+ }
256
+ },
257
+ expType: {
258
+ key: 'type',
259
+ label: '类型',
260
+ type: 'Select',
261
+ props: {
262
+ options: [{
263
+ title: 'PDF',
264
+ value: 'pdf'
265
+ }, {
266
+ title: '图片',
267
+ value: 'png'
268
+ }]
269
+ }
270
+ },
271
+ expFileName: {
272
+ key: 'fileName',
273
+ label: '文件名',
274
+ type: 'input',
275
+ props: {
276
+ placeholder: '请输入导出的文件名'
277
+ }
278
+ },
279
+ modalType: {
280
+ key: 'type',
281
+ label: '类型',
282
+ type: 'Select',
283
+ props: {
284
+ options: [{
285
+ title: '成功',
286
+ value: 'success'
287
+ }, {
288
+ title: '提示',
289
+ value: 'info'
290
+ }, {
291
+ title: '警告',
292
+ value: 'warning'
293
+ }, {
294
+ title: '错误',
295
+ value: 'error'
296
+ }, {
297
+ title: '确认',
298
+ value: 'confirm'
299
+ }]
300
+ }
301
+ },
302
+ okText: {
303
+ key: 'okText',
304
+ label: '确认按钮文本',
305
+ type: 'Input'
306
+ },
307
+ cancelText: {
308
+ key: 'cancelText',
309
+ label: '取消按钮文本',
310
+ type: 'Input',
311
+ visibleFlag: 'type',
312
+ visibleFlagValue: ['confirm']
313
+ },
314
+ historyType: {
315
+ key: 'type',
316
+ label: '类型',
317
+ type: 'Select',
318
+ props: {
319
+ options: [{
320
+ title: '路由跳转',
321
+ value: 'push'
322
+ }, {
323
+ title: '路由替换',
324
+ value: 'replace'
325
+ }]
326
+ }
327
+ },
328
+ timerType: {
329
+ key: 'type',
330
+ label: '定时器类型',
331
+ type: 'Select',
332
+ props: {
333
+ options: [{
334
+ title: '单次定时器',
335
+ value: 'timeout'
336
+ }, {
337
+ title: '循环定时器',
338
+ value: 'interval'
339
+ }]
340
+ }
341
+ },
342
+ title: {
343
+ key: 'title',
344
+ label: '标题',
345
+ type: 'Input'
346
+ },
347
+ content: {
348
+ key: 'content',
349
+ label: '内容',
350
+ type: 'Input'
351
+ },
352
+ params: {
353
+ key: 'params',
354
+ label: '参数赋值',
355
+ // label: '参数',
356
+ type: 'SelectParams'
357
+ },
358
+ // params: {
359
+ // key: 'params',
360
+ // label: '参数赋值',
361
+ // // label: '参数',
362
+ // type: 'apiRequestSetParams',
363
+ // },
364
+ setParams: {
365
+ key: 'params',
366
+ label: '参数',
367
+ type: 'SetExpression'
368
+ },
369
+ actionType: {
370
+ key: 'actionType',
371
+ label: '表单类型',
372
+ // type: 'Select',
373
+ // options: [
374
+ // { title: '新增', value: 'add' },
375
+ // { title: '编辑', value: 'edit' },
376
+ // { title: '详情', value: 'detail' },
377
+ // ],
378
+ type: 'SetExpression',
379
+ props: {
380
+ placeholder: '新增-add, 编辑-edit, 详情-detail'
381
+ }
382
+ },
383
+ tripleFormId: {
384
+ key: 'detailId',
385
+ label: '详情id',
386
+ type: 'SetExpression'
387
+ },
388
+ dataSource: {
389
+ key: 'data',
390
+ label: '内容',
391
+ type: 'SetExpression'
392
+ },
393
+ parentKey: {
394
+ key: 'parentKey',
395
+ label: '操作节点key',
396
+ type: 'SetExpression'
397
+ },
398
+ dataSourceFileId: {
399
+ key: 'data',
400
+ label: '文件ID',
401
+ type: 'SetExpression',
402
+ labelTip: '支持逗号分隔或者数组形式的多文件下载,如:1,2或者$[1,2]$'
403
+ },
404
+ labelKey: {
405
+ key: 'labelKey',
406
+ label: '节点名称取值字段',
407
+ type: 'SetExpressionKey'
408
+ },
409
+ nodeValueKey: {
410
+ key: 'nodeValueKey',
411
+ label: '节点key取值字段',
412
+ type: 'SetExpressionKey'
413
+ },
414
+ urlValueKey: {
415
+ key: 'urlValueKey',
416
+ label: '节点url取值字段',
417
+ type: 'SetExpressionKey'
418
+ },
419
+ selectable: {
420
+ key: 'selectable',
421
+ label: '节点可选字段编码',
422
+ type: 'SetExpressionKey',
423
+ labelTip: "\u9002\u7528\u573A\u666F\uFF1A\u9700\u8981\u63A7\u5236\u5F53\u524D\u8282\u70B9\u662F\u5426\u80FD\u591F\u9009\u62E9\uFF0C\u4E14\u9700\u540E\u7AEF\u670D\u52A1\u6709\u5B57\u6BB5\u6807\u8BC6\u51FA\u662F\u5426\u53EF\u9009\uFF1B\n \u5904\u7406\u903B\u8F91\uFF1A\u5F53\u8282\u70B9\u7684\u5B57\u6BB5\u7F16\u7801\u503C\u4E3A\u5E03\u5C14\u7C7B\u578B\u7684false\uFF0C\u6216\u8005\u5B57\u7B26\u4E32\u7C7B\u578B\u4E3A'false'\u3001\n \u7A7A\u5B57\u7B26\u4E32\u65F6\uFF0C\u90FD\u8BA4\u4E3A\u4E0D\u53EF\u9009\uFF0C\u5426\u5219\u8BA4\u4E3A\u53EF\u9009\u3002"
424
+ },
425
+ childrenKey: {
426
+ key: 'childrenKey',
427
+ label: '下级列表取值字段',
428
+ type: 'SetExpressionKey',
429
+ labelTip: "\u4F7F\u7528\u573A\u666F\uFF1A\u4E00\u6B21\u6027\u67E5\u8BE2\u6240\u6709\u6570\u636E\u65F6\uFF0C\u9700\u8981\u8BBE\u7F6E\u4E0B\u4E00\u7EA7\u5217\u8868\u6570\u636E\u7684\u53D6\u503C\u5B57\u6BB5\uFF1B\n \u793A\u4F8B\u8BF4\u660E\uFF1A\u5982\u4E0B\u53C2\u6570\uFF0C\u5F53\u67E5\u8BE2\u6240\u6709\u6570\u636E\uFF0C\u9700\u8981\u6807\u8BB0\u51FA\u4ECEchildren\u5B57\u6BB5\u83B7\u53D6\u4E0B\u7EA7\u5217\u8868\u7684\u6570\u636E\uFF1B\n {\n \"resultObject\": [{\n \"children\": [{\n \"children\": [],\n \"parent_id\": \"10700\",\n \"name\": \"2-1\",\n \"id\": \"10900\",\n }]\uFF0C\n \"parent_id\": \"-1\",\n \"name\": \"\u7B2C\u4E8C\u68F5\",\n \"id\": \"10700\",\n }]\n }\n "
430
+ },
431
+ selectValueKey: {
432
+ key: 'valueKey',
433
+ label: '选项值字段',
434
+ type: 'SetExpressionKey'
435
+ },
436
+ selectLabelKey: {
437
+ key: 'labelKey',
438
+ label: '选项内容字段',
439
+ type: 'SetExpressionKey'
440
+ },
441
+ selectValueKeyForRC: {
442
+ key: 'valueKey',
443
+ label: '显示值字段',
444
+ type: 'SetExpressionKey'
445
+ },
446
+ selectLabelKeyForRC: {
447
+ key: 'labelKey',
448
+ label: '显示内容字段',
449
+ type: 'SetExpressionKey'
450
+ },
451
+ total: {
452
+ key: 'total',
453
+ label: '总条数',
454
+ type: 'SetExpression'
455
+ },
456
+ curPage: {
457
+ key: 'current',
458
+ label: '更新页码',
459
+ type: 'SetExpression'
460
+ },
461
+ pathname: {
462
+ key: 'pathname',
463
+ label: '页面',
464
+ type: 'SelectPage'
465
+ },
466
+ dropPathname: {
467
+ key: 'dropPathname',
468
+ label: '页面',
469
+ type: 'MultiselectPage'
470
+ },
471
+ searchParams: {
472
+ key: 'search',
473
+ label: 'url参数',
474
+ type: 'SearchParams'
475
+ },
476
+ routerData: {
477
+ key: 'search',
478
+ label: '路由数据',
479
+ type: 'RouterData'
480
+ },
481
+ // TODO: 这个key在todoActionList中没找到,应该是没被使用,暂时注释。
482
+ // search: {
483
+ // key: 'search',
484
+ // type: 'Input',
485
+ // },
486
+ modalname: {
487
+ key: 'modalname',
488
+ label: '弹窗',
489
+ type: 'SelectModal'
490
+ },
491
+ drawerPath: {
492
+ key: 'drawerPath',
493
+ label: '推拉门',
494
+ type: 'SelectDrawer'
495
+ },
496
+ compState: {
497
+ key: 'compState',
498
+ label: '组件状态',
499
+ type: 'CompState'
500
+ },
501
+ activeTabKey: {
502
+ key: 'activeTabKey',
503
+ label: 'Tab选中key',
504
+ type: 'ActiveTabKey'
505
+ },
506
+ downloadUrl: {
507
+ key: 'downloadUrl',
508
+ label: '下载链接地址',
509
+ type: 'DownloadUrl'
510
+ },
511
+ uploadProps: {
512
+ key: 'uploadProps',
513
+ label: '上传参数',
514
+ type: 'SelectParams'
515
+ },
516
+ inlineeditnow: {
517
+ key: 'inlineeditnow',
518
+ label: '新增后启用行内编辑',
519
+ type: 'Select',
520
+ props: {
521
+ options: [{
522
+ title: '否',
523
+ value: false
524
+ }, {
525
+ title: '是',
526
+ value: true
527
+ }]
528
+ }
529
+ },
530
+ disabled: {
531
+ key: 'disabled',
532
+ label: '状态设置',
533
+ type: 'RadioButton',
534
+ defaultValue: 'toggle',
535
+ props: {
536
+ options: [{
537
+ title: '启动',
538
+ value: ''
539
+ }, {
540
+ title: '禁用',
541
+ value: 'true'
542
+ }, {
543
+ title: '切换',
544
+ value: 'toggle'
545
+ }]
546
+ }
547
+ },
548
+ required: {
549
+ key: 'required',
550
+ label: '必填设置',
551
+ type: 'RadioButton',
552
+ defaultValue: 'toggle',
553
+ props: {
554
+ options: [{
555
+ title: '必填',
556
+ value: 'true'
557
+ }, {
558
+ title: '非必填',
559
+ value: ''
560
+ }, {
561
+ title: '切换',
562
+ value: 'toggle'
563
+ }]
564
+ }
565
+ },
566
+ colName: {
567
+ key: 'colName',
568
+ label: '翻译字段',
569
+ type: 'SelectTableCol'
570
+ },
571
+ colNameForEdit: {
572
+ key: 'colNameForEdit',
573
+ label: '字段',
574
+ type: 'SelectTableCol'
575
+ },
576
+ nodeKey: {
577
+ key: 'nodeKey',
578
+ label: '操作节点key',
579
+ type: 'SetExpression'
580
+ },
581
+ valueKey: {
582
+ key: 'key',
583
+ label: '节点key取值字段',
584
+ type: 'SetExpression'
585
+ },
586
+ titleKey: {
587
+ key: 'title',
588
+ label: '节点名称取值字段',
589
+ type: 'SetExpression'
590
+ },
591
+ stateName: {
592
+ key: 'stateName',
593
+ label: '自定义属性名',
594
+ type: 'Input'
595
+ },
596
+ inlineeditrow: {
597
+ key: 'inlineeditrow',
598
+ label: '指定行id',
599
+ type: 'SelectParams'
600
+ },
601
+ stateval: {
602
+ key: 'stateval',
603
+ label: '内容',
604
+ type: 'SetExpression'
605
+ },
606
+ timername: {
607
+ key: 'timername',
608
+ label: '定时器命名(页面内不可重复)',
609
+ type: 'Input'
610
+ },
611
+ interval: {
612
+ key: 'interval',
613
+ label: '时间间隔',
614
+ type: 'InputNumber',
615
+ props: {
616
+ unit: '毫秒'
617
+ }
618
+ },
619
+ targettimer: {
620
+ key: 'targettimer',
621
+ label: '定时器名称',
622
+ type: 'SelectTimer'
623
+ },
624
+ customCallback: {
625
+ key: 'customCallback',
626
+ label: '回调',
627
+ type: 'SelectCustomCallback'
628
+ },
629
+ stepsCurrent: {
630
+ key: 'current',
631
+ label: '当前步骤',
632
+ type: 'SetExpression'
633
+ },
634
+ compId: {
635
+ key: 'compid',
636
+ label: '组件选择',
637
+ type: 'CompTree'
638
+ },
639
+ selectComp: {
640
+ key: 'compid',
641
+ label: '组件选择',
642
+ type: 'SelectComp'
643
+ },
644
+ fileName: {
645
+ key: 'fileName',
646
+ label: '自定义文件名称',
647
+ type: 'SetExpression',
648
+ labelTip: '未设置文件名称时,则为文件原本的名称',
649
+ props: {
650
+ placeholder: '包括后缀,如: 表格.xls'
651
+ }
652
+ },
653
+ loadmoreKey: {
654
+ key: 'loadmoreKey',
655
+ label: '更新参数',
656
+ type: 'SetCustomParams'
657
+ },
658
+ wechatappId: {
659
+ key: 'wechatappId',
660
+ label: 'appId',
661
+ type: 'Input',
662
+ props: {
663
+ placeholder: '如:wx_xxxxx'
664
+ }
665
+ },
666
+ jsonId: {
667
+ key: 'jsonId',
668
+ label: '页面',
669
+ type: 'SelectPage'
670
+ },
671
+ fileId: {
672
+ key: 'fileId',
673
+ label: '文件ID',
674
+ type: 'SetExpression'
675
+ },
676
+ loadMoreTotal: {
677
+ key: 'total',
678
+ label: '总条数',
679
+ type: 'SetExpression'
680
+ },
681
+ loadMoreData: {
682
+ key: 'data',
683
+ label: '数据源',
684
+ type: 'SetExpression'
685
+ },
686
+ aliasPageNum: {
687
+ key: 'pageNum',
688
+ label: '页码字段名',
689
+ type: 'SetExpression'
690
+ },
691
+ jsBridgeMethod: {
692
+ key: 'method',
693
+ label: '方法名',
694
+ type: 'input',
695
+ props: {
696
+ placeholder: '例如:openCamera'
697
+ }
698
+ },
699
+ androidWebName: {
700
+ key: 'androidWebName',
701
+ label: '安卓容器名称',
702
+ type: 'input',
703
+ props: {
704
+ placeholder: '默认:Android'
705
+ }
706
+ },
707
+ androidSuccessFunName: {
708
+ key: 'androidSuccessFunName',
709
+ label: '安卓端成功回调方法名',
710
+ type: 'input',
711
+ props: {
712
+ placeholder: '例如:openCameraSuccess[用于Android成功回调H5]'
713
+ }
714
+ },
715
+ iOSSuccessFunName: {
716
+ key: 'iOSSuccessFunName',
717
+ label: 'iOS端成功回调方法名',
718
+ type: 'input',
719
+ props: {
720
+ placeholder: '例如:openCameraSuccess[用于iOS成功回调H5]'
721
+ }
722
+ },
723
+ androidFailFunName: {
724
+ key: 'androidFailFunName',
725
+ label: '安卓端失败回调方法名',
726
+ type: 'input',
727
+ props: {
728
+ placeholder: '例如:openCameraFail[用于Android失败的回调H5]'
729
+ }
730
+ },
731
+ iOSFailFunName: {
732
+ key: 'iOSFailFunName',
733
+ label: 'iOS端失败回调方法名',
734
+ type: 'input',
735
+ props: {
736
+ placeholder: '例如:openCameraFail[用于iOS失败的回调H5]'
737
+ }
738
+ },
739
+ customParams: {
740
+ key: 'customParams',
741
+ label: '自定义入参',
742
+ type: 'SelectCustomParams'
743
+ },
744
+ selectScene: {
745
+ key: 'scene',
746
+ label: '选择场景',
747
+ type: 'SelectScene'
748
+ },
749
+ flowUrl: {
750
+ key: 'flowUrl',
751
+ label: '流程请求接口',
752
+ type: 'input'
753
+ },
754
+ flowType: {
755
+ key: 'flowType',
756
+ label: '流程类型',
757
+ type: 'Select',
758
+ props: {
759
+ options: [{
760
+ title: '启动',
761
+ value: 'initiate'
762
+ }, {
763
+ title: '通过',
764
+ value: 'pass'
765
+ }, {
766
+ title: '拒绝',
767
+ value: 'refuse'
768
+ }, {
769
+ title: '转派',
770
+ value: 'transfer'
771
+ }, {
772
+ title: '通用',
773
+ value: 'customized'
774
+ }]
775
+ }
776
+ },
777
+ // 流程业务工单 ID
778
+ flowWorkOrderId: {
779
+ key: 'workOrderId',
780
+ label: '业务工单 ID',
781
+ type: 'SelectParams'
782
+ },
783
+ // 这里三个字段没设置type。经协商(gy)为无用类型,先注释
784
+ // 流程页面按钮动作服务响应数据
785
+ // flowSerResp: {
786
+ // key: 'serResp',
787
+ // label: '服务响应数据',
788
+ // },
789
+ // flowSerReq: {
790
+ // key: 'serReq',
791
+ // label: '服务请求数据',
792
+ // },
793
+ // flowButtonId: {
794
+ // key: 'buttonId',
795
+ // label: '流程按钮 ID',
796
+ // },
797
+ // 流程编辑
798
+ flowCode: {
799
+ key: 'flowCode',
800
+ label: '选择流程',
801
+ type: 'SelectFlowCode'
802
+ },
803
+ // 业务工单类型
804
+ workOrderType: {
805
+ key: 'workOrderType',
806
+ label: '业务工单类型',
807
+ type: 'SetExpression'
808
+ },
809
+ flowAuditDesc: {
810
+ key: 'flowAuditDesc',
811
+ label: '审核意见',
812
+ type: 'SetExpression'
813
+ },
814
+ flowFileId: {
815
+ key: 'flowFileId',
816
+ label: '附件ID',
817
+ type: 'SetExpression'
818
+ },
819
+ configDealUserId: {
820
+ key: 'configDealUserId',
821
+ label: '指定处理人',
822
+ type: 'SetExpression'
823
+ },
824
+ flowBtnActionType: {
825
+ key: 'flowBtnActionType',
826
+ label: '按钮动作类型',
827
+ type: 'SetExpression'
828
+ },
829
+ flowWorkId: {
830
+ key: 'flowWorkId',
831
+ label: '流程实例ID',
832
+ type: 'SetExpression'
833
+ },
834
+ flowTabStepVisible: {
835
+ key: 'flowTabStepVisible',
836
+ label: '展示流程实例图',
837
+ type: 'Switch'
838
+ },
839
+ flowTimelineVisible: {
840
+ key: 'flowTimelineVisible',
841
+ label: '展示流程轨迹',
842
+ type: 'Switch'
843
+ },
844
+ flowCustParams: {
845
+ key: 'flowCustParams',
846
+ label: '自定义参数',
847
+ type: 'SetCustomParams'
848
+ },
849
+ workItemId: {
850
+ key: 'workItemId',
851
+ label: '工单ID',
852
+ type: 'SetExpression'
853
+ },
854
+ flowExtraParams: {
855
+ key: 'flowExtraParams',
856
+ label: '目标环节',
857
+ type: 'SetRollbackFlowOptions',
858
+ props: {
859
+ isRequired: true
860
+ }
861
+ },
862
+ // flowOrderId: {
863
+ // key: 'flowOrderId',
864
+ // label: '订单号',
865
+ // type: 'SetExpression',
866
+ // isRequired: true,
867
+ // },
868
+ // flowOrderType: {
869
+ // key: 'flowOrderType',
870
+ // label: '业务单类型',
871
+ // type: 'SetExpression',
872
+ // },
873
+ diagramType: {
874
+ key: 'diagramType',
875
+ label: '选择实例图类型',
876
+ type: 'Select',
877
+ props: {
878
+ options: [{
879
+ title: '当前流程实例图',
880
+ value: 'default'
881
+ }, {
882
+ title: '指定主干流程实例图',
883
+ value: 'custom'
884
+ }]
885
+ }
886
+ },
887
+ diagramFlowCode: {
888
+ key: 'diagramFlowCode',
889
+ label: '选择流程',
890
+ type: 'SelectFlowCode'
891
+ },
892
+ diagramWorkOrderId: {
893
+ key: 'diagramWorkOrderId',
894
+ label: '业务单ID',
895
+ type: 'SetExpression'
896
+ },
897
+ selectServerDataSource: {
898
+ key: 'selectServerDataSource',
899
+ label: '选择数据源',
900
+ props: {
901
+ options: {
902
+ key: 'dataSourceReloadFilter',
903
+ valueKey: 'filterParams'
904
+ }
905
+ },
906
+ // label: '选择数据源(对象/服务类)',
907
+ type: 'SelectServerDataSource'
908
+ },
909
+ selectAllDataSource: {
910
+ key: 'selectAllDataSource',
911
+ label: '选择数据源',
912
+ type: 'SelectAllDataSource',
913
+ props: {
914
+ options: {
915
+ key: 'dataSourceSetValue',
916
+ valueKey: 'outParams',
917
+ markableAction: ['setDataSource']
918
+ }
919
+ }
920
+ },
921
+ selectCompFunc: {
922
+ key: 'selectCompFunc',
923
+ label: '方法',
924
+ type: 'SelectCompFunc'
925
+ },
926
+ setCompParams: {
927
+ key: 'uploadProps',
928
+ label: '参数',
929
+ type: 'SetCompParams'
930
+ },
931
+ dataSourceReloadFilter: {
932
+ key: 'dataSourceReloadFilter',
933
+ // label: '参数',
934
+ label: '数据源赋值',
935
+ // label: '数据源过滤条件',
936
+ type: 'dataSourceReloadFilter'
937
+ },
938
+ dataSourceSetValue: {
939
+ key: 'dataSourceSetValue',
940
+ label: '数据源赋值',
941
+ type: 'dataSourceSetValue'
942
+ },
943
+ // onlySetPatch: {
944
+ // key: 'onlySetPatch',
945
+ // label: '是否只设置局部',
946
+ // type: 'Select',
947
+ // options: [
948
+ // { title: '是', value: true },
949
+ // { title: '否', value: false },
950
+ // ],
951
+ // },
952
+ onlySetPatch: {
953
+ key: 'onlySetPatch',
954
+ label: '赋值范围',
955
+ type: 'Radio',
956
+ props: {
957
+ options: [{
958
+ title: '局部赋值',
959
+ value: true
960
+ }, {
961
+ title: '全部赋值',
962
+ value: false
963
+ }]
964
+ }
965
+ },
966
+ selectObjectDataSource: {
967
+ key: 'selectObjectDataSource',
968
+ label: '选择业务对象数据源',
969
+ type: 'selectObjectDataSource',
970
+ props: {
971
+ isRequired: true,
972
+ valuePropName: 'postDataSource' // 编辑后值存于 options.postDataSource
973
+ }
974
+ },
975
+
976
+ iframeData: {
977
+ key: 'iframeData',
978
+ label: '发送内容',
979
+ type: 'SetExpression'
980
+ },
981
+ iframeOrigin: {
982
+ key: 'iframeOrigin',
983
+ label: '发送目标源',
984
+ type: 'SetExpression'
985
+ },
986
+ rProps: {
987
+ key: 'rProps',
988
+ label: '设置自定义组件属性',
989
+ type: 'SelectCustomParams'
990
+ },
991
+ hasEventExtService: {
992
+ key: 'hasEventExtService',
993
+ label: '需要开启服务扩展',
994
+ type: 'Select',
995
+ props: {
996
+ options: [{
997
+ title: '是',
998
+ value: 'T'
999
+ }, {
1000
+ title: '否',
1001
+ value: 'F'
1002
+ }]
1003
+ }
1004
+ },
1005
+ eventExtService: {
1006
+ key: 'eventExtService',
1007
+ label: '选择业务场景来扩展服务',
1008
+ type: 'SetEventExtService'
1009
+ },
1010
+ tempName: {
1011
+ key: 'name',
1012
+ label: '设置模板名称',
1013
+ type: 'Input',
1014
+ props: {
1015
+ placeholder: '请输入模板名称'
1016
+ }
1017
+ },
1018
+ busiObjectId: {
1019
+ key: 'busiObjectId',
1020
+ label: '选择业务对象',
1021
+ type: 'SelectBusiObjectId',
1022
+ props: {
1023
+ isRequired: true,
1024
+ valuePropName: 'busiObjectId'
1025
+ }
1026
+ },
1027
+ busiObjectFilterParams: {
1028
+ key: 'busiObjectFilterParams',
1029
+ label: '查询条件',
1030
+ type: 'SelectParams'
1031
+ },
1032
+ filterParams: {
1033
+ // 入参
1034
+ key: 'filterParams',
1035
+ label: '查询条件',
1036
+ type: 'SelectParams'
1037
+ },
1038
+ busiObjectFields: {
1039
+ key: 'busiObjectFields',
1040
+ label: '筛选字段',
1041
+ type: 'SelectBusiObjectFields',
1042
+ props: {
1043
+ isRequired: true,
1044
+ valuePropName: 'busiObjectFields'
1045
+ }
1046
+ },
1047
+ showOnly: {
1048
+ key: 'showOnly',
1049
+ label: '只解析不入库',
1050
+ type: 'Select',
1051
+ defaultValue: 'F',
1052
+ props: {
1053
+ options: [{
1054
+ title: '是',
1055
+ value: 'T'
1056
+ }, {
1057
+ title: '否',
1058
+ value: 'F'
1059
+ }]
1060
+ }
1061
+ },
1062
+ objectFields: {
1063
+ key: 'objectFields',
1064
+ label: '导出字段',
1065
+ type: 'SelectServiceObjectFields',
1066
+ props: {
1067
+ isRequired: true,
1068
+ options: {
1069
+ fieldKey: 'serviceData',
1070
+ customKeyMap: {
1071
+ fieldData: '字段数据',
1072
+ attrCode: '字段编码',
1073
+ attrName: '字段名称'
1074
+ }
1075
+ }
1076
+ }
1077
+ },
1078
+ custFileName: {
1079
+ key: 'custFileName',
1080
+ label: '自定义文件名',
1081
+ type: 'SetExpression',
1082
+ props: {
1083
+ isRequired: true,
1084
+ valuePropName: 'custFileName'
1085
+ }
1086
+ },
1087
+ custSheetName: {
1088
+ key: 'custSheetName',
1089
+ label: 'sheet页名称',
1090
+ type: 'SetExpression'
1091
+ },
1092
+ className: {
1093
+ key: 'className',
1094
+ label: '类名称',
1095
+ type: 'Input'
1096
+ },
1097
+ funcName: {
1098
+ key: 'funcName',
1099
+ label: '函数名称',
1100
+ type: 'Input'
1101
+ },
1102
+ funcParams: {
1103
+ key: 'funcParams',
1104
+ label: '自定义入参',
1105
+ type: 'SetExpressionByArray'
1106
+ },
1107
+ valueList: {
1108
+ key: 'valueList',
1109
+ label: '组件赋值',
1110
+ type: 'SetSysExpression'
1111
+ },
1112
+ customFuncName: {
1113
+ key: 'customFuncName',
1114
+ label: '自定义事件',
1115
+ type: 'SelectCustomFunc'
1116
+ },
1117
+ customFuncParams: {
1118
+ key: 'customFuncParams',
1119
+ label: '事件入参',
1120
+ type: 'SelectParams'
1121
+ },
1122
+ // sceneCode: {
1123
+ // key: 'sceneCode',
1124
+ // label: '选择业务场景来扩展服务',
1125
+ // type: 'SelectSceneCode',
1126
+ // },
1127
+ custUrl: {
1128
+ key: 'custUrl',
1129
+ label: '导入服务',
1130
+ type: 'SelectCustomExportService',
1131
+ isRequired: true,
1132
+ valuePropName: 'custUrl',
1133
+ options: {
1134
+ fileUpload: true,
1135
+ refreshKey: ['objectFields'],
1136
+ serviceTabs: [SERVICE_KEY.STD, SERVICE_KEY.INNER]
1137
+ }
1138
+ },
1139
+ custParams: {
1140
+ key: 'custParams',
1141
+ label: '自定义参数',
1142
+ type: 'SetCustomParams'
1143
+ },
1144
+ compToPrint: {
1145
+ key: 'compToPrint',
1146
+ label: '自定义打印区域(可选)',
1147
+ type: 'CompTree'
1148
+ },
1149
+ custTpl: {
1150
+ key: 'custTpl',
1151
+ label: '配置导入模板',
1152
+ type: 'UploadFile'
1153
+ },
1154
+ returnType: {
1155
+ key: 'returnType',
1156
+ label: '返回类型',
1157
+ type: 'RadioButton',
1158
+ labelTip: "\n 1\u3001\u503C\uFF1A\u7528\u4E8E\u6570\u636E\u8FD4\u56DE\uFF0C\u6BD4\u5982\u83B7\u53D6\u9875\u9762\u8868\u5355\u6570\u636E\uFF0C\u9000\u51FA\u540E\u8FDB\u884C\u6570\u636E\u4F20\u9012\uFF1B<br />\n 2\u3001\u6210\u529F\uFF1A\u7528\u4E8E\u6210\u529F\u6807\u5FD7\u8FD4\u56DE\uFF0C\u5C06\u89E6\u53D1\u8C03\u7528\u65B9\u7684\u6210\u529F\u56DE\u8C03\uFF1B<br />\n 3\u3001\u5931\u8D25\uFF1A\u7528\u4E8E\u5931\u8D25\u6807\u5FD7\u8FD4\u56DE\uFF0C\u5C06\u89E6\u53D1\u8C03\u7528\u65B9\u7684\u5931\u8D25\u56DE\u8C03\u3002\n ",
1159
+ props: {
1160
+ options: [{
1161
+ title: '值',
1162
+ value: 'value'
1163
+ }, {
1164
+ title: '成功',
1165
+ value: 'success'
1166
+ }, {
1167
+ title: '失败',
1168
+ value: 'failure'
1169
+ }]
1170
+ }
1171
+ },
1172
+ returnValue: {
1173
+ key: 'returnValue',
1174
+ label: '返回内容(可选)',
1175
+ type: 'SetExpression'
1176
+ },
1177
+ copyText: {
1178
+ key: 'copyText',
1179
+ label: '复制内容',
1180
+ type: 'SetExpression'
1181
+ },
1182
+ isPreventDefault: {
1183
+ key: 'isPreventDefault',
1184
+ label: '中止默认动作(高级)',
1185
+ type: 'Select',
1186
+ props: {
1187
+ options: [{
1188
+ title: '是',
1189
+ value: 'T'
1190
+ }, {
1191
+ title: '否',
1192
+ value: 'F'
1193
+ }]
1194
+ },
1195
+ labelTip: "\n \u6307\u4E2D\u6B62\u6D4F\u89C8\u5668\u9ED8\u8BA4\u884C\u4E3A\uFF1A<br />\n \u6BD4\u5982\u4E2D\u6B62\u6253\u5F00\u6587\u4EF6\u9009\u62E9\u5668\u3001\u4E2D\u6B62\u6587\u4EF6\u4E0B\u8F7D\u7B49\u884C\u4E3A\u3002\n "
1196
+ },
1197
+ isStopPropagation: {
1198
+ key: 'isStopPropagation',
1199
+ label: '阻止事件冒泡(高级)',
1200
+ type: 'Select',
1201
+ labelTip: "\n \u6307\u53EA\u89E6\u53D1\u5F53\u524D\u7EC4\u4EF6\u914D\u7F6E\u7684\u4E8B\u4EF6\uFF1A<br />\n \u6BD4\u5982\u7A7A\u767D\u5BB9\u5668\u91CC\u653E\u7F6E\u6309\u94AE\uFF0C \u7A7A\u767D\u5BB9\u5668\u548C\u6309\u94AE\u90FD\u914D\u7F6E\u70B9\u51FB\u4E8B\u4EF6\uFF0C\u6B63\u5E38\u70B9\u51FB\u6309\u94AE\u7684\u65F6\u5019\u5C31\u89E6\u53D1\u4E24\u4E2A\u70B9\u51FB\u4E8B\u4EF6\uFF0C\u4F46\u963B\u6B62\u4E8B\u4EF6\u5192\u6CE1\u5C31\u4E0D\u4F1A\u6267\u884C\u5230\u7A7A\u767D\u5BB9\u5668\u7684\u70B9\u51FB\u4E8B\u4EF6\u3002\n ",
1202
+ props: {
1203
+ options: [{
1204
+ title: '是',
1205
+ value: 'T'
1206
+ }, {
1207
+ title: '否',
1208
+ value: 'F'
1209
+ }]
1210
+ }
1211
+ },
1212
+ // 支撑 DICT 项目需求, accountDivide 分账计划,后续可能有变动 start
1213
+ payCycle: {
1214
+ key: 'payCycle',
1215
+ label: '出账方式',
1216
+ type: 'SetExpression'
1217
+ },
1218
+ prodCode: {
1219
+ key: 'prodCode',
1220
+ label: '产品编码',
1221
+ type: 'SetExpression'
1222
+ },
1223
+ totalAmount: {
1224
+ key: 'totalAmount',
1225
+ label: '总金额',
1226
+ type: 'SetExpression'
1227
+ },
1228
+ adStartDate: {
1229
+ key: 'adStartDate',
1230
+ label: '开始年月(格式:2021-12)',
1231
+ type: 'SetExpression'
1232
+ },
1233
+ adEndDate: {
1234
+ key: 'adEndDate',
1235
+ label: '结束年月(格式:2021-12)',
1236
+ type: 'SetExpression'
1237
+ },
1238
+ adList: {
1239
+ key: 'adList',
1240
+ label: '计划详情',
1241
+ type: 'SetExpression'
1242
+ },
1243
+ adOperationType: {
1244
+ key: 'adOperationType',
1245
+ label: '操作类型',
1246
+ type: 'Select',
1247
+ props: {
1248
+ options: [{
1249
+ title: '新建分账计划',
1250
+ value: 'new'
1251
+ }, {
1252
+ title: '修改分账计划',
1253
+ value: 'edit'
1254
+ }, {
1255
+ title: '查看计划详情',
1256
+ value: 'detail'
1257
+ }]
1258
+ }
1259
+ },
1260
+ adStartDateAfter: {
1261
+ key: 'adStartDateAfter',
1262
+ label: '变更后开始年月(格式:2021-12)',
1263
+ type: 'SetExpression'
1264
+ },
1265
+ adTitle: {
1266
+ key: 'adTitle',
1267
+ label: '科目名称',
1268
+ type: 'SetExpression'
1269
+ },
1270
+ adOldList: {
1271
+ key: 'adOldList',
1272
+ label: '变更前计划详情',
1273
+ type: 'SetExpression'
1274
+ },
1275
+ adAfterList: {
1276
+ key: 'adAfterList',
1277
+ label: '变更后计划详情',
1278
+ type: 'SetExpression'
1279
+ },
1280
+ payCycleAfter: {
1281
+ key: 'payCycleAfter',
1282
+ label: '变更后出账方式',
1283
+ type: 'SetExpression'
1284
+ },
1285
+ accept: {
1286
+ key: 'accept',
1287
+ label: '文件类型',
1288
+ type: 'SetExpression'
1289
+ },
1290
+ custTplUrl: {
1291
+ key: 'custTplUrl',
1292
+ label: '指定模板地址(可选)',
1293
+ type: 'SetExpression'
1294
+ },
1295
+ name: {
1296
+ key: 'name',
1297
+ label: '修改名称',
1298
+ type: 'Input',
1299
+ props: {
1300
+ placeholder: '请输入名称'
1301
+ }
1302
+ },
1303
+ icon: {
1304
+ key: 'icon',
1305
+ label: '修改图标',
1306
+ type: 'ChooseIcon',
1307
+ props: {
1308
+ placeholder: '请选择图标'
1309
+ }
1310
+ },
1311
+ editorCode: {
1312
+ key: 'editorCode',
1313
+ label: '自定义内容',
1314
+ type: 'CustomActionCode'
1315
+ },
1316
+ actionTitle: {
1317
+ key: 'actionTitle',
1318
+ label: '动作说明',
1319
+ type: 'CustomActionTitle',
1320
+ props: {
1321
+ placeholder: '请输入动作说明',
1322
+ maxLength: 20
1323
+ }
1324
+ },
1325
+ sync: {
1326
+ key: 'sync',
1327
+ label: '数据加载方式',
1328
+ type: 'RadioButton',
1329
+ defaultValue: false,
1330
+ props: {
1331
+ options: [{
1332
+ title: '异步加载',
1333
+ value: false
1334
+ }, {
1335
+ title: '同步加载',
1336
+ value: true
1337
+ }]
1338
+ }
1339
+ },
1340
+ setItemKey: {
1341
+ key: 'key',
1342
+ label: '字段名称',
1343
+ type: 'Input',
1344
+ props: {
1345
+ required: true,
1346
+ placeholder: '请输入字段名值, 必须为英文'
1347
+ }
1348
+ },
1349
+ mapKey: {
1350
+ key: 'mapKey',
1351
+ label: '地图秘钥(百度地图)',
1352
+ type: 'Input',
1353
+ props: {
1354
+ placeholder: '请输入地图的秘钥',
1355
+ valuePropName: 'mapKey',
1356
+ isRequired: true
1357
+ }
1358
+ },
1359
+ locationAlways: {
1360
+ key: 'locationAlways',
1361
+ label: '是否持续定位',
1362
+ type: 'Switch',
1363
+ props: {
1364
+ defaultValue: false
1365
+ }
1366
+ },
1367
+ locationOutputType: {
1368
+ key: 'locationOutputType',
1369
+ label: '定位输出坐标系',
1370
+ type: 'Select',
1371
+ defaultValue: 'BD09',
1372
+ props: {
1373
+ options: [{
1374
+ title: '大地坐标系',
1375
+ value: 'WGS84'
1376
+ }, {
1377
+ title: '火星坐标系',
1378
+ value: 'GCJ02'
1379
+ }, {
1380
+ title: '百度坐标系',
1381
+ value: 'BD09'
1382
+ }]
1383
+ }
1384
+ },
1385
+ appTableData: {
1386
+ key: 'appTableData',
1387
+ label: '表头数据',
1388
+ type: 'SetExpression'
1389
+ },
1390
+ appTableDataSource: {
1391
+ key: 'appTableDataSource',
1392
+ label: '表格数据',
1393
+ type: 'SetExpression'
1394
+ },
1395
+ locationAddress: {
1396
+ key: 'locationAddress',
1397
+ label: '是否需要地址信息',
1398
+ defaultValue: false,
1399
+ type: 'Switch'
1400
+ },
1401
+ exportSheet: {
1402
+ key: 'exportSheet',
1403
+ label: 'sheet页设置',
1404
+ type: 'AddExportSheet',
1405
+ props: {
1406
+ valuePropName: 'exportSheet',
1407
+ isRequired: true,
1408
+ options: [{
1409
+ key: 'custSheetName',
1410
+ label: 'sheet页名称',
1411
+ type: 'SetExpression'
1412
+ }, {
1413
+ key: 'serviceData',
1414
+ label: '数据来源',
1415
+ type: 'SelectCustomExportService',
1416
+ props: {
1417
+ isRequired: true,
1418
+ valuePropName: 'serviceData',
1419
+ options: {
1420
+ refreshKey: ['objectFields'],
1421
+ hideServiceList: [SERVICE_KEY.OBJECT],
1422
+ serviceTabs: [SERVICE_KEY.OBJECT, SERVICE_KEY.QUERY, SERVICE_KEY.STD, SERVICE_KEY.RHIN, SERVICE_KEY.INNER]
1423
+ }
1424
+ }
1425
+ }, {
1426
+ // 入参
1427
+ key: 'filterParams',
1428
+ label: '查询条件',
1429
+ type: 'SelectParams'
1430
+ }, {
1431
+ key: 'objectFields',
1432
+ label: '导出字段',
1433
+ type: 'SelectServiceObjectFields',
1434
+ props: {
1435
+ isRequired: true,
1436
+ options: {
1437
+ fieldKey: 'serviceData',
1438
+ customKeyMap: {
1439
+ fieldData: '字段数据',
1440
+ attrCode: '字段编码',
1441
+ attrName: '字段名称'
1442
+ }
1443
+ }
1444
+ }
1445
+ }]
1446
+ }
1447
+ },
1448
+ serviceData: {
1449
+ key: 'serviceData',
1450
+ label: '数据来源',
1451
+ type: 'SelectCustomExportService',
1452
+ props: {
1453
+ isRequired: true,
1454
+ valuePropName: 'serviceData',
1455
+ options: {
1456
+ refreshKey: ['objectFields'],
1457
+ hideServiceList: [SERVICE_KEY.OBJECT],
1458
+ serviceTabs: [SERVICE_KEY.OBJECT, SERVICE_KEY.QUERY, SERVICE_KEY.STD, SERVICE_KEY.RHIN, SERVICE_KEY.INNER]
1459
+ }
1460
+ }
1461
+ },
1462
+ verificationCodeUrl: {
1463
+ key: 'verificationCodeUrl',
1464
+ label: '验证码图片地址',
1465
+ type: 'SetExpression'
1466
+ },
1467
+ addTransferValue: {
1468
+ key: 'transferValue',
1469
+ label: '内容',
1470
+ type: 'SetExpression',
1471
+ props: {
1472
+ placeholder: '请输入添加值,多个用英文逗号拼接,例如:1,2,3'
1473
+ }
1474
+ },
1475
+ removeTransferValue: {
1476
+ key: 'transferValue',
1477
+ label: '内容',
1478
+ type: 'SetExpression',
1479
+ props: {
1480
+ placeholder: '请输入删除值,多个用英文逗号拼接,例如:1,2,3'
1481
+ }
1482
+ },
1483
+ defaultOpenKey: {
1484
+ key: 'defaultOpenKey',
1485
+ label: '内容',
1486
+ type: 'SetExpression'
1487
+ },
1488
+ inlineCollapsed: {
1489
+ key: 'inlineCollapsed',
1490
+ label: '是否收缩',
1491
+ type: 'Select',
1492
+ props: {
1493
+ options: [{
1494
+ title: '缩起',
1495
+ value: 'true'
1496
+ }, {
1497
+ title: '展开',
1498
+ value: ''
1499
+ }, {
1500
+ title: '切换',
1501
+ value: 'toggle'
1502
+ }]
1503
+ }
1504
+ },
1505
+ xLineName: {
1506
+ key: 'xLineName',
1507
+ label: 'x轴字段名',
1508
+ type: 'SetExpression'
1509
+ },
1510
+ yLineName: {
1511
+ key: 'yLineName',
1512
+ label: 'y轴字段名',
1513
+ type: 'SetExpression'
1514
+ },
1515
+ lineChartData: {
1516
+ key: 'lineChartData',
1517
+ label: '数据源',
1518
+ type: 'SetExpression'
1519
+ },
1520
+ spCount: {
1521
+ key: 'spCount',
1522
+ label: '当前数量',
1523
+ type: 'SetExpression'
1524
+ },
1525
+ spTotal: {
1526
+ key: 'spTotal',
1527
+ label: '总数量',
1528
+ type: 'SetExpression'
1529
+ },
1530
+ spRightNode: {
1531
+ key: 'spRightNode',
1532
+ label: '右侧文字',
1533
+ type: 'SetExpression'
1534
+ },
1535
+ donutX: {
1536
+ key: 'donutX',
1537
+ label: 'x轴字段名',
1538
+ type: 'SetExpression'
1539
+ },
1540
+ donutY: {
1541
+ key: 'donutY',
1542
+ label: 'y轴字段名',
1543
+ type: 'SetExpression'
1544
+ },
1545
+ donutData: {
1546
+ key: 'donutData',
1547
+ label: '数据源',
1548
+ type: 'SetExpression'
1549
+ },
1550
+ donutSumText: {
1551
+ key: 'donutSumText',
1552
+ label: '总数据',
1553
+ type: 'SetExpression'
1554
+ },
1555
+ mpData: {
1556
+ key: 'mpData',
1557
+ label: '数据源',
1558
+ type: 'SetExpression',
1559
+ props: {
1560
+ placeholder: '格式为:[{count:xx, color:xx, label:xx},...]'
1561
+ }
1562
+ },
1563
+ gcXName: {
1564
+ key: 'gcXName',
1565
+ label: 'x轴字段名',
1566
+ type: 'SetExpression'
1567
+ },
1568
+ gcLegendParams: {
1569
+ key: 'gcLegendParams',
1570
+ label: '图例内容',
1571
+ type: 'SetExpression',
1572
+ props: {
1573
+ placeholder: '格式为:[{label:xx(说明), value:xx(对应数据源取值字段)},...]'
1574
+ }
1575
+ },
1576
+ gcData: {
1577
+ key: 'gcData',
1578
+ label: '数据源',
1579
+ type: 'SetExpression',
1580
+ props: {
1581
+ placeholder: '格式为:[{name:xx, xx:xx, xx:xx, ...},...]'
1582
+ }
1583
+ },
1584
+ scXName: {
1585
+ key: 'scXName',
1586
+ label: 'x轴字段名',
1587
+ type: 'SetExpression'
1588
+ },
1589
+ scYName: {
1590
+ key: 'scYName',
1591
+ label: 'y轴字段名',
1592
+ type: 'SetExpression'
1593
+ },
1594
+ scData: {
1595
+ key: 'scData',
1596
+ label: '数据源',
1597
+ type: 'SetExpression',
1598
+ props: {
1599
+ placeholder: '格式为:[{xx:xx, xx:xx, color:xx(需要指定颜色时设置该参数) },...]'
1600
+ }
1601
+ },
1602
+ stcXName: {
1603
+ key: 'stcXName',
1604
+ label: 'x轴字段名',
1605
+ type: 'SetExpression'
1606
+ },
1607
+ stcLegendParams: {
1608
+ key: 'stcLegendParams',
1609
+ label: '图例内容',
1610
+ type: 'SetExpression',
1611
+ props: {
1612
+ placeholder: '格式为:[{label:xx, value:xx},...]'
1613
+ }
1614
+ },
1615
+ stcData: {
1616
+ key: 'stcData',
1617
+ label: '数据源',
1618
+ type: 'SetExpression',
1619
+ props: {
1620
+ placeholder: '格式为:[{xx:xx, xx:xx, ... },...]'
1621
+ }
1622
+ },
1623
+ valueMapKey: {
1624
+ key: 'valueKey',
1625
+ label: '值映射字段',
1626
+ type: 'SetExpressionKey'
1627
+ },
1628
+ labelMapKey: {
1629
+ key: 'labelKey',
1630
+ label: '内容映射字段',
1631
+ type: 'SetExpressionKey'
1632
+ },
1633
+ selectDescriptionKey: {
1634
+ key: 'descriptionKey',
1635
+ label: '选项描述字段',
1636
+ type: 'SetExpressionKey'
1637
+ },
1638
+ selectDisabledKey: {
1639
+ key: 'disabledKey',
1640
+ label: '选项禁用字段',
1641
+ type: 'SetExpressionKey'
1642
+ },
1643
+ setSelectorDisabelItems: {
1644
+ key: 'disabledKeys',
1645
+ label: '值/索引',
1646
+ type: 'SetExpressionKey'
1647
+ },
1648
+ updateMediaState: {
1649
+ key: 'updateMediaState',
1650
+ label: '状态设置',
1651
+ type: 'RadioButton',
1652
+ defaultValue: 'play',
1653
+ props: {
1654
+ options: [{
1655
+ title: '播放',
1656
+ value: 'play'
1657
+ }, {
1658
+ title: '暂停',
1659
+ value: 'pasue'
1660
+ }, {
1661
+ title: '切换',
1662
+ value: 'toggle'
1663
+ }]
1664
+ }
1665
+ },
1666
+ customGroup: {
1667
+ key: 'customGroup',
1668
+ type: 'SettingGroup',
1669
+ label: '自定义表头模板',
1670
+ labelTip: '可以根据选择的字段自定义导出模板的表头'
1671
+ },
1672
+ exception: {
1673
+ key: 'exception',
1674
+ type: 'SwitchGroup',
1675
+ label: '导入异常配置',
1676
+ props: {
1677
+ options: [{
1678
+ title: '支持部分导入',
1679
+ value: 'partialImport'
1680
+ }]
1681
+ }
1682
+ }
1683
+ };
1684
+ var _default = todoOptionList;
1685
+ exports.default = _default;