@lingxiteam/assets 4.3.2-alpha.1 → 4.3.2-alpha.3

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 (55) hide show
  1. package/es/rootConfig/locales/enus/config-locales-es.mobile.js +51 -144
  2. package/es/rootConfig/locales/enus/config-locales-es.pc.js +30 -37
  3. package/es/rootConfig/locales/enus/config-locales-es.todo-actionList.js +293 -721
  4. package/es/rootConfig/locales/enus/config-locales-es.todo-callback.js +8 -9
  5. package/es/rootConfig/locales/enus/config-locales-es.todo-optionList.js +141 -214
  6. package/es/rootConfig/locales/zhcn/config-locales-cn.mobile.js +1 -143
  7. package/es/rootConfig/locales/zhcn/config-locales-cn.pc.js +1 -289
  8. package/es/rootConfig/locales/zhcn/config-locales-cn.todo-actionList.js +0 -714
  9. package/es/rootConfig/locales/zhcn/config-locales-cn.todo-callback.js +0 -8
  10. package/es/rootConfig/locales/zhcn/config-locales-cn.todo-optionList.js +2 -214
  11. package/es/rootConfig/locales/zhhk/config-locales-hk.mobile.js +49 -142
  12. package/es/rootConfig/locales/zhhk/config-locales-hk.pc.js +77 -288
  13. package/es/rootConfig/locales/zhhk/config-locales-hk.todo-actionList.js +287 -715
  14. package/es/rootConfig/locales/zhhk/config-locales-hk.todo-callback.js +8 -9
  15. package/es/rootConfig/locales/zhhk/config-locales-hk.todo-optionList.js +140 -213
  16. package/es/rootConfig/mobile/BusiComp.js +22 -22
  17. package/es/rootConfig/mobile/MobileModal.js +38 -38
  18. package/es/rootConfig/mobile/MobilePopover.js +22 -22
  19. package/es/rootConfig/mobile/page.js +42 -42
  20. package/es/rootConfig/pc/BusiComp.js +41 -41
  21. package/es/rootConfig/pc/Drawer.js +64 -64
  22. package/es/rootConfig/pc/Modal.js +63 -63
  23. package/es/rootConfig/pc/Popover.js +42 -42
  24. package/es/rootConfig/pc/page.js +55 -55
  25. package/es/rootConfig/todoActionList.js +691 -691
  26. package/es/rootConfig/todoCallback.js +9 -9
  27. package/es/rootConfig/todoOptionList.js +203 -203
  28. package/lib/rootConfig/locales/enus/config-locales-es.mobile.js +51 -144
  29. package/lib/rootConfig/locales/enus/config-locales-es.pc.js +30 -37
  30. package/lib/rootConfig/locales/enus/config-locales-es.todo-actionList.js +293 -721
  31. package/lib/rootConfig/locales/enus/config-locales-es.todo-callback.js +8 -9
  32. package/lib/rootConfig/locales/enus/config-locales-es.todo-optionList.js +141 -214
  33. package/lib/rootConfig/locales/zhcn/config-locales-cn.mobile.js +1 -143
  34. package/lib/rootConfig/locales/zhcn/config-locales-cn.pc.js +1 -289
  35. package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-actionList.js +0 -714
  36. package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-callback.js +0 -8
  37. package/lib/rootConfig/locales/zhcn/config-locales-cn.todo-optionList.js +2 -214
  38. package/lib/rootConfig/locales/zhhk/config-locales-hk.mobile.js +49 -142
  39. package/lib/rootConfig/locales/zhhk/config-locales-hk.pc.js +77 -288
  40. package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-actionList.js +287 -715
  41. package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-callback.js +8 -9
  42. package/lib/rootConfig/locales/zhhk/config-locales-hk.todo-optionList.js +140 -213
  43. package/lib/rootConfig/mobile/BusiComp.js +22 -22
  44. package/lib/rootConfig/mobile/MobileModal.js +38 -38
  45. package/lib/rootConfig/mobile/MobilePopover.js +22 -22
  46. package/lib/rootConfig/mobile/page.js +42 -42
  47. package/lib/rootConfig/pc/BusiComp.js +41 -41
  48. package/lib/rootConfig/pc/Drawer.js +64 -64
  49. package/lib/rootConfig/pc/Modal.js +63 -63
  50. package/lib/rootConfig/pc/Popover.js +42 -42
  51. package/lib/rootConfig/pc/page.js +55 -55
  52. package/lib/rootConfig/todoActionList.js +691 -691
  53. package/lib/rootConfig/todoCallback.js +9 -9
  54. package/lib/rootConfig/todoOptionList.js +203 -203
  55. package/package.json +1 -1
@@ -30,37 +30,37 @@ var todoActionObject = {
30
30
  label: localeKey('showMessage.label'),
31
31
  todoOptions: [{
32
32
  key: 'type',
33
- label: localeKey('showMessage.todoOptions.type.label'),
33
+ label: '类型',
34
34
  type: 'Select',
35
35
  defaultValue: 'success',
36
36
  props: {
37
37
  options: [{
38
- title: localeKey('showMessage.todoOptions.type.props.options.0.title'),
38
+ title: '成功',
39
39
  value: 'success'
40
40
  }, {
41
- title: localeKey('showMessage.todoOptions.type.props.options.1.title'),
41
+ title: '提示',
42
42
  value: 'info'
43
43
  }, {
44
- title: localeKey('showMessage.todoOptions.type.props.options.2.title'),
44
+ title: '警告',
45
45
  value: 'warn'
46
46
  }, {
47
- title: localeKey('showMessage.todoOptions.type.props.options.3.title'),
47
+ title: '错误',
48
48
  value: 'error'
49
49
  }, {
50
- title: localeKey('showMessage.todoOptions.type.props.options.4.title'),
50
+ title: '加载动画',
51
51
  value: 'loading'
52
52
  }]
53
53
  }
54
54
  }, {
55
55
  key: 'value',
56
- label: localeKey('showMessage.todoOptions.value.label'),
56
+ label: '内容',
57
57
  type: 'SetExpression'
58
58
  }, {
59
59
  key: 'duration',
60
- label: localeKey('showMessage.todoOptions.duration.label'),
60
+ label: '加载时长',
61
61
  type: 'InputNumber',
62
62
  props: {
63
- addonAfter: localeKey('showMessage.todoOptions.duration.props.addonAfter'),
63
+ addonAfter: '',
64
64
  step: '0.01',
65
65
  formatter: function formatter(val) {
66
66
  return val ? val.match(/^\d+(?:\.\d{0,2})?/) : undefined;
@@ -72,7 +72,7 @@ var todoActionObject = {
72
72
  value: 'modal'
73
73
  }],
74
74
  remarks: [{
75
- label: localeKey('showMessage.remarks.0.label'),
75
+ label: '注意事项',
76
76
  content: localeKey('showMessage.remarks.0.content')
77
77
  }]
78
78
  },
@@ -86,10 +86,10 @@ var todoActionObject = {
86
86
  },
87
87
  apiRequest: {
88
88
  key: 'apiRequest',
89
- label: localeKey('apiRequest.label'),
89
+ label: '发送请求',
90
90
  todoOptions: [{
91
91
  key: 'actionTitle',
92
- label: localeKey('apiRequest.todoOptions.actionTitle.label'),
92
+ label: '动作说明',
93
93
  type: 'CustomActionTitle',
94
94
  props: {
95
95
  placeholder: localeKey('apiRequest.todoOptions.actionTitle.props.placeholder'),
@@ -103,10 +103,10 @@ var todoActionObject = {
103
103
  defaultValue: false,
104
104
  props: {
105
105
  options: [{
106
- title: localeKey('apiRequest.todoOptions.sync.props.options.0.title'),
106
+ title: '异步加载',
107
107
  value: false
108
108
  }, {
109
- title: localeKey('apiRequest.todoOptions.sync.props.options.1.title'),
109
+ title: '同步加载',
110
110
  value: true
111
111
  }]
112
112
  }
@@ -131,10 +131,10 @@ var todoActionObject = {
131
131
  visibleFlagValue: [true]
132
132
  }, {
133
133
  key: 'params',
134
- label: localeKey('apiRequest.todoOptions.params.label'),
134
+ label: '参数赋值',
135
135
  type: 'SetRequestParam',
136
136
  extraGroups: [{
137
- subLabel: localeKey('apiRequest.todoOptions.params.extraGroups.0.subLabel'),
137
+ subLabel: '清空赋值',
138
138
  subClickFunName: 'cleanValue'
139
139
  }]
140
140
  }],
@@ -145,10 +145,10 @@ var todoActionObject = {
145
145
  key: 'callback2'
146
146
  }],
147
147
  classification: [{
148
- label: localeKey('apiRequest.classification.0.label'),
148
+ label: '常用',
149
149
  value: 'common'
150
150
  }, {
151
- label: localeKey('apiRequest.classification.1.label'),
151
+ label: '服务请求类',
152
152
  value: 'request'
153
153
  }],
154
154
  isAsync: true
@@ -158,7 +158,7 @@ var todoActionObject = {
158
158
  label: localeKey('JSBridge.label'),
159
159
  todoOptions: [{
160
160
  key: 'method',
161
- label: localeKey('JSBridge.todoOptions.method.label'),
161
+ label: '方法名',
162
162
  type: 'input',
163
163
  props: {
164
164
  placeholder: localeKey('JSBridge.todoOptions.method.props.placeholder')
@@ -200,7 +200,7 @@ var todoActionObject = {
200
200
  }
201
201
  }, {
202
202
  key: 'flowCustParams',
203
- label: localeKey('JSBridge.todoOptions.flowCustParams.label'),
203
+ label: '自定义参数',
204
204
  type: 'SetCustomParams'
205
205
  }],
206
206
  todoCallbacks: [{
@@ -215,13 +215,13 @@ var todoActionObject = {
215
215
  }
216
216
  }],
217
217
  classification: [{
218
- label: localeKey('JSBridge.classification.others.label'),
218
+ label: '其他',
219
219
  value: 'others'
220
220
  }]
221
221
  },
222
222
  apiRequestByFlow: {
223
223
  key: 'apiRequestByFlow',
224
- label: localeKey('apiRequestByFlow.label'),
224
+ label: '触发流程',
225
225
  todoOptions: [{
226
226
  key: 'sync',
227
227
  label: localeKey('apiRequestByFlow.todoOptions.sync.label'),
@@ -229,10 +229,10 @@ var todoActionObject = {
229
229
  defaultValue: false,
230
230
  props: {
231
231
  options: [{
232
- title: localeKey('apiRequestByFlow.todoOptions.sync.props.options.0.title'),
232
+ title: '异步加载',
233
233
  value: false
234
234
  }, {
235
- title: localeKey('apiRequestByFlow.todoOptions.sync.props.options.1.title'),
235
+ title: '同步加载',
236
236
  value: true
237
237
  }]
238
238
  }
@@ -242,29 +242,29 @@ var todoActionObject = {
242
242
  type: 'input'
243
243
  }, {
244
244
  key: 'flowType',
245
- label: localeKey('apiRequestByFlow.todoOptions.flowType.label'),
245
+ label: '流程类型',
246
246
  type: 'Select',
247
247
  props: {
248
248
  options: [{
249
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.0.title'),
249
+ title: '启动',
250
250
  value: 'initiate'
251
251
  }, {
252
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.1.title'),
252
+ title: '通过',
253
253
  value: 'pass'
254
254
  }, {
255
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.2.title'),
255
+ title: '拒绝',
256
256
  value: 'refuse'
257
257
  }, {
258
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.3.title'),
258
+ title: '转派',
259
259
  value: 'transfer'
260
260
  }, {
261
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.4.title'),
261
+ title: '通用',
262
262
  value: 'customized'
263
263
  }]
264
264
  }
265
265
  }, {
266
266
  key: 'flowCode',
267
- label: localeKey('apiRequestByFlow.todoOptions.flowCode.label'),
267
+ label: '选择流程',
268
268
  type: 'SelectFlowCode'
269
269
  }, {
270
270
  key: 'workOrderId',
@@ -277,7 +277,7 @@ var todoActionObject = {
277
277
  type: 'SetExpression'
278
278
  }, {
279
279
  key: 'configDealUserId',
280
- label: localeKey('apiRequestByFlow.todoOptions.configDealUserId.label'),
280
+ label: '指定处理人',
281
281
  type: 'SetExpression'
282
282
  }, {
283
283
  key: 'flowBtnActionType',
@@ -285,7 +285,7 @@ var todoActionObject = {
285
285
  type: 'SetExpression'
286
286
  }, {
287
287
  key: 'flowAuditDesc',
288
- label: localeKey('apiRequestByFlow.todoOptions.flowAuditDesc.label'),
288
+ label: '审核意见',
289
289
  type: 'SetExpression'
290
290
  }, {
291
291
  key: 'flowFileId',
@@ -294,7 +294,7 @@ var todoActionObject = {
294
294
  }],
295
295
  todoCallbacks: ['callback1', 'callback2'],
296
296
  classification: [{
297
- label: localeKey('apiRequestByFlow.classification.request.label'),
297
+ label: '服务请求类',
298
298
  value: 'request'
299
299
  }]
300
300
  },
@@ -319,21 +319,21 @@ var todoActionObject = {
319
319
  type: 'Switch'
320
320
  }, {
321
321
  key: 'flowCustParams',
322
- label: localeKey('openFlowPage.todoOptions.flowCustParams.label'),
322
+ label: '自定义参数',
323
323
  type: 'SetCustomParams'
324
324
  }],
325
325
  todoCallbacks: ['callback1', 'callback2'],
326
326
  classification: [{
327
- label: localeKey('openFlowPage.classification.page.label'),
327
+ label: '页面类',
328
328
  value: 'page'
329
329
  }]
330
330
  },
331
331
  rollbackFlow: {
332
332
  key: 'rollbackFlow',
333
- label: localeKey('rollbackFlow.label'),
333
+ label: '流程回退',
334
334
  todoOptions: [{
335
335
  key: 'flowExtraParams',
336
- label: localeKey('rollbackFlow.todoOptions.flowExtraParams.label'),
336
+ label: '目标环节',
337
337
  type: 'SetRollbackFlowOptions',
338
338
  props: {
339
339
  isRequired: true
@@ -341,7 +341,7 @@ var todoActionObject = {
341
341
  }],
342
342
  todoCallbacks: ['callback1', 'callback2'],
343
343
  classification: [{
344
- label: localeKey('rollbackFlow.classification.page.label'),
344
+ label: '页面类',
345
345
  value: 'page'
346
346
  }]
347
347
  },
@@ -363,7 +363,7 @@ var todoActionObject = {
363
363
  }
364
364
  }, {
365
365
  key: 'diagramFlowCode',
366
- label: localeKey('openFlowDiagram.todoOptions.diagramFlowCode.label'),
366
+ label: '选择流程',
367
367
  type: 'SelectFlowCode'
368
368
  }, {
369
369
  key: 'diagramWorkOrderId',
@@ -371,59 +371,59 @@ var todoActionObject = {
371
371
  type: 'SetExpression'
372
372
  }],
373
373
  classification: [{
374
- label: localeKey('openFlowDiagram.classification.page.label'),
374
+ label: '页面类',
375
375
  value: 'page'
376
376
  }]
377
377
  },
378
378
  console: {
379
379
  key: 'console',
380
- label: localeKey('console.label'),
380
+ label: '打印日志',
381
381
  todoOptions: [{
382
382
  key: 'value',
383
- label: localeKey('console.todoOptions.value.label'),
383
+ label: '内容',
384
384
  aliasKey: 'valueArray',
385
385
  type: 'SetValueByArray'
386
386
  }],
387
387
  classification: [{
388
- label: localeKey('console.classification.debug.label'),
388
+ label: '调试类',
389
389
  value: 'debug'
390
390
  }]
391
391
  },
392
392
  sysSetVisible: {
393
393
  key: 'sysSetVisible',
394
- label: localeKey('sysSetVisible.label'),
394
+ label: '控制显隐',
395
395
  todoOptions: [{
396
396
  key: 'compid',
397
- label: localeKey('sysSetVisible.todoOptions.compid.label'),
397
+ label: '组件选择',
398
398
  type: 'CompTree',
399
399
  aliasKey: 'compId',
400
400
  props: {
401
401
  checkable: true,
402
402
  titleLink: [{
403
- title: localeKey('sysSetVisible.todoOptions.compid.props.titleLink.0.title'),
403
+ title: '清空已选',
404
404
  value: 'cleanValue'
405
405
  }]
406
406
  }
407
407
  }, {
408
408
  key: 'compValueList',
409
- label: localeKey('sysSetVisible.todoOptions.compValueList.label'),
409
+ label: '是否显隐',
410
410
  type: 'SetBatchProps',
411
411
  props: {
412
412
  defaultValue: '',
413
413
  options: [{
414
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.0.title'),
414
+ title: '显示',
415
415
  value: 'true'
416
416
  }, {
417
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.1.title'),
417
+ title: '隐藏',
418
418
  value: ''
419
419
  }, {
420
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.2.title'),
420
+ title: '切换',
421
421
  value: 'toggle'
422
422
  }]
423
423
  }
424
424
  }],
425
425
  classification: [{
426
- label: localeKey('sysSetVisible.classification.0.label'),
426
+ label: '常用',
427
427
  value: 'common'
428
428
  }, {
429
429
  label: localeKey('sysSetVisible.classification.1.label'),
@@ -432,154 +432,154 @@ var todoActionObject = {
432
432
  },
433
433
  sysSetValue: {
434
434
  key: 'sysSetValue',
435
- label: localeKey('sysSetValue.label'),
435
+ label: '控件赋值',
436
436
  todoOptions: [{
437
437
  key: 'compid',
438
- label: localeKey('sysSetValue.todoOptions.compid.label'),
438
+ label: '组件选择',
439
439
  type: 'CompTree',
440
440
  aliasKey: 'compId',
441
441
  props: {
442
442
  titleLink: [{
443
- title: localeKey('sysSetValue.todoOptions.compid.props.titleLink.0.title'),
443
+ title: '清空已选',
444
444
  value: 'cleanValue'
445
445
  }]
446
446
  }
447
447
  }, {
448
448
  key: 'valueList',
449
- label: localeKey('sysSetValue.todoOptions.valueList.label'),
449
+ label: '组件赋值',
450
450
  type: 'SetSysExpression',
451
451
  props: {
452
452
  titleLink: [{
453
- title: localeKey('sysSetValue.todoOptions.valueList.props.titleLink.0.title'),
453
+ title: '清空赋值',
454
454
  value: 'clearValue'
455
455
  }]
456
456
  }
457
457
  }],
458
458
  todoCallbacks: ['callback1'],
459
459
  classification: [{
460
- label: localeKey('sysSetValue.classification.0.label'),
460
+ label: '常用',
461
461
  value: 'common'
462
462
  }, {
463
- label: localeKey('sysSetValue.classification.1.label'),
463
+ label: '数据设置',
464
464
  value: 'setData'
465
465
  }],
466
466
  initClose: true
467
467
  },
468
468
  sysSetDisable: {
469
469
  key: 'sysSetDisable',
470
- label: localeKey('sysSetDisable.label'),
470
+ label: '禁用状态',
471
471
  todoOptions: [{
472
472
  key: 'compid',
473
- label: localeKey('sysSetDisable.todoOptions.compid.label'),
473
+ label: '组件选择',
474
474
  type: 'CompTree',
475
475
  aliasKey: 'compId',
476
476
  props: {
477
477
  checkable: true,
478
478
  titleLink: [{
479
- title: localeKey('sysSetDisable.todoOptions.compid.props.titleLink.0.title'),
479
+ title: '清空已选',
480
480
  value: 'cleanValue'
481
481
  }]
482
482
  }
483
483
  }, {
484
484
  key: 'compValueList',
485
- label: localeKey('sysSetDisable.todoOptions.compValueList.label'),
485
+ label: '是否禁用',
486
486
  type: 'SetBatchProps',
487
487
  props: {
488
488
  defaultValue: 'toggle',
489
489
  options: [{
490
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.0.title'),
490
+ title: '启动',
491
491
  value: ''
492
492
  }, {
493
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.1.title'),
493
+ title: '禁用',
494
494
  value: 'true'
495
495
  }, {
496
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.2.title'),
496
+ title: '切换',
497
497
  value: 'toggle'
498
498
  }]
499
499
  }
500
500
  }],
501
501
  classification: [{
502
- label: localeKey('sysSetDisable.classification.0.label'),
502
+ label: '常用',
503
503
  value: 'common'
504
504
  }, {
505
- label: localeKey('sysSetDisable.classification.1.label'),
505
+ label: '数据设置',
506
506
  value: 'setData'
507
507
  }]
508
508
  },
509
509
  sysSetRequired: {
510
510
  key: 'sysSetRequired',
511
- label: localeKey('sysSetRequired.label'),
511
+ label: '设置必填',
512
512
  todoOptions: [{
513
513
  key: 'compid',
514
- label: localeKey('sysSetRequired.todoOptions.compid.label'),
514
+ label: '组件选择',
515
515
  type: 'CompTree',
516
516
  aliasKey: 'compId',
517
517
  props: {
518
518
  checkable: true,
519
519
  titleLink: [{
520
- title: localeKey('sysSetRequired.todoOptions.compid.props.titleLink.0.title'),
520
+ title: '清空已选',
521
521
  value: 'cleanValue'
522
522
  }]
523
523
  }
524
524
  }, {
525
525
  key: 'compValueList',
526
- label: localeKey('sysSetRequired.todoOptions.compValueList.label'),
526
+ label: '是否必填',
527
527
  type: 'SetBatchProps',
528
528
  props: {
529
529
  defaultValue: 'toggle',
530
530
  options: [{
531
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.0.title'),
531
+ title: '必填',
532
532
  value: 'true'
533
533
  }, {
534
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.1.title'),
534
+ title: '非必填',
535
535
  value: ''
536
536
  }, {
537
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.2.title'),
537
+ title: '切换',
538
538
  value: 'toggle'
539
539
  }]
540
540
  }
541
541
  }],
542
542
  classification: [{
543
- label: localeKey('sysSetRequired.classification.0.label'),
543
+ label: '常用',
544
544
  value: 'common'
545
545
  }, {
546
- label: localeKey('sysSetRequired.classification.1.label'),
546
+ label: '数据设置',
547
547
  value: 'setData'
548
548
  }]
549
549
  },
550
550
  showModal: {
551
551
  key: 'showModal',
552
- label: localeKey('showModal.label'),
552
+ label: '打开提示框',
553
553
  todoOptions: [{
554
554
  key: 'type',
555
- label: localeKey('showModal.todoOptions.type.label'),
555
+ label: '类型',
556
556
  type: 'Select',
557
557
  aliasKey: 'modalType',
558
558
  props: {
559
559
  options: [{
560
- title: localeKey('showModal.todoOptions.type.props.options.0.title'),
560
+ title: '成功',
561
561
  value: 'success'
562
562
  }, {
563
- title: localeKey('showModal.todoOptions.type.props.options.1.title'),
563
+ title: '提示',
564
564
  value: 'info'
565
565
  }, {
566
- title: localeKey('showModal.todoOptions.type.props.options.2.title'),
566
+ title: '警告',
567
567
  value: 'warning'
568
568
  }, {
569
- title: localeKey('showModal.todoOptions.type.props.options.3.title'),
569
+ title: '错误',
570
570
  value: 'error'
571
571
  }, {
572
- title: localeKey('showModal.todoOptions.type.props.options.4.title'),
572
+ title: '确认',
573
573
  value: 'confirm'
574
574
  }]
575
575
  }
576
576
  }, {
577
577
  key: 'title',
578
- label: localeKey('showModal.todoOptions.title.label'),
578
+ label: '标题',
579
579
  type: 'SetExpression'
580
580
  }, {
581
581
  key: 'content',
582
- label: localeKey('showModal.todoOptions.content.label'),
582
+ label: '内容',
583
583
  type: 'SetExpression'
584
584
  }, {
585
585
  key: 'okText',
@@ -594,7 +594,7 @@ var todoActionObject = {
594
594
  }],
595
595
  todoCallbacks: ['callback1', 'callback2'],
596
596
  classification: [{
597
- label: localeKey('showModal.classification.0.label'),
597
+ label: '常用',
598
598
  value: 'common'
599
599
  }, {
600
600
  label: localeKey('showModal.classification.1.label'),
@@ -610,16 +610,16 @@ var todoActionObject = {
610
610
  type: 'SetSelectedPage'
611
611
  }, {
612
612
  key: 'componentState',
613
- label: localeKey('showCustomModal.todoOptions.componentState.label'),
613
+ label: '组件状态',
614
614
  type: 'ComponentState',
615
615
  extraGroups: [{
616
- subLabel: localeKey('showCustomModal.todoOptions.componentState.extraGroups.0.subLabel'),
616
+ subLabel: '组件刷新',
617
617
  subClickFunName: 'refreshCompsStateData'
618
618
  }]
619
619
  }],
620
620
  todoCallbacks: ['callback1', 'callback2'],
621
621
  classification: [{
622
- label: localeKey('showCustomModal.classification.0.label'),
622
+ label: '常用',
623
623
  value: 'common'
624
624
  }, {
625
625
  label: localeKey('showCustomModal.classification.1.label'),
@@ -629,17 +629,17 @@ var todoActionObject = {
629
629
  },
630
630
  showAppCustomModal: {
631
631
  key: 'showAppCustomModal',
632
- label: localeKey('showAppCustomModal.label'),
632
+ label: '打开弹窗',
633
633
  todoOptions: [{
634
634
  key: 'modalname',
635
- label: localeKey('showAppCustomModal.todoOptions.modalname.label'),
635
+ label: '弹窗',
636
636
  type: 'SelectModal'
637
637
  }, {
638
638
  key: 'componentState',
639
- label: localeKey('showAppCustomModal.todoOptions.componentState.label'),
639
+ label: '组件状态',
640
640
  type: 'ComponentState',
641
641
  extraGroups: [{
642
- subLabel: localeKey('showAppCustomModal.todoOptions.componentState.extraGroups.0.subLabel'),
642
+ subLabel: '组件刷新',
643
643
  subClickFunName: 'refreshCompsStateData'
644
644
  }]
645
645
  }],
@@ -649,7 +649,7 @@ var todoActionObject = {
649
649
  value: 'modal'
650
650
  }],
651
651
  remarks: [{
652
- label: localeKey('showAppCustomModal.remarks.0.label'),
652
+ label: '配置建议',
653
653
  content: localeKey('showAppCustomModal.remarks.0.content')
654
654
  }],
655
655
  isAsync: true
@@ -659,7 +659,7 @@ var todoActionObject = {
659
659
  label: localeKey('setModalTitle.label'),
660
660
  todoOptions: [{
661
661
  key: 'title',
662
- label: localeKey('setModalTitle.todoOptions.title.label'),
662
+ label: '弹窗标题',
663
663
  type: 'SetExpression'
664
664
  }],
665
665
  classification: [{
@@ -676,7 +676,7 @@ var todoActionObject = {
676
676
  type: 'SetSelectedPage'
677
677
  }, {
678
678
  key: 'compState',
679
- label: localeKey('showDrawer.todoOptions.compState.label'),
679
+ label: '组件状态',
680
680
  type: 'CompState'
681
681
  }],
682
682
  todoCallbacks: ['callback1', 'callback2'],
@@ -685,7 +685,7 @@ var todoActionObject = {
685
685
  value: 'modal'
686
686
  }],
687
687
  remarks: [{
688
- label: localeKey('showDrawer.remarks.0.label'),
688
+ label: '配置建议',
689
689
  content: localeKey('showDrawer.remarks.0.content')
690
690
  }],
691
691
  hidden: true
@@ -695,7 +695,7 @@ var todoActionObject = {
695
695
  label: localeKey('setDrawerTitle.label'),
696
696
  todoOptions: [{
697
697
  key: 'title',
698
- label: localeKey('setDrawerTitle.todoOptions.title.label'),
698
+ label: '推拉门标题',
699
699
  type: 'SetExpression'
700
700
  }],
701
701
  classification: [{
@@ -708,7 +708,7 @@ var todoActionObject = {
708
708
  label: localeKey('setPublicState.label'),
709
709
  todoOptions: [{
710
710
  key: 'value',
711
- label: localeKey('setPublicState.todoOptions.value.label'),
711
+ label: '内容',
712
712
  type: 'SetExpression'
713
713
  }]
714
714
  },
@@ -717,21 +717,21 @@ var todoActionObject = {
717
717
  label: localeKey('getPublicState.label'),
718
718
  todoOptions: [{
719
719
  key: 'jsonId',
720
- label: localeKey('getPublicState.todoOptions.jsonId.label'),
720
+ label: '页面',
721
721
  type: 'SelectPage'
722
722
  }],
723
723
  todoCallbacks: ['callback1'],
724
724
  classification: [{
725
- label: localeKey('getPublicState.classification.setData.label'),
725
+ label: '数据设置',
726
726
  value: 'setData'
727
727
  }]
728
728
  },
729
729
  historyPush: {
730
730
  key: 'historyPush',
731
- label: localeKey('historyPush.label'),
731
+ label: '路由跳转',
732
732
  todoOptions: [{
733
733
  key: 'pathname',
734
- label: localeKey('historyPush.todoOptions.pathname.label'),
734
+ label: '页面',
735
735
  type: 'SelectPage'
736
736
  }, {
737
737
  key: 'search',
@@ -740,17 +740,17 @@ var todoActionObject = {
740
740
  type: 'SearchParams'
741
741
  }, {
742
742
  key: 'routerData',
743
- label: localeKey('historyPush.todoOptions.routerData.label'),
743
+ label: '路由数据',
744
744
  type: 'RouterData',
745
745
  labelTip: localeKey('historyPush.todoOptions.routerData.labelTip')
746
746
  }]
747
747
  },
748
748
  historyReplace: {
749
749
  key: 'historyReplace',
750
- label: localeKey('historyReplace.label'),
750
+ label: '路由替换',
751
751
  todoOptions: [{
752
752
  key: 'pathname',
753
- label: localeKey('historyReplace.todoOptions.pathname.label'),
753
+ label: '页面',
754
754
  type: 'SelectPage'
755
755
  }, {
756
756
  key: 'search',
@@ -759,36 +759,36 @@ var todoActionObject = {
759
759
  type: 'SearchParams'
760
760
  }, {
761
761
  key: 'routerData',
762
- label: localeKey('historyReplace.todoOptions.routerData.label'),
762
+ label: '路由数据',
763
763
  type: 'RouterData'
764
764
  }]
765
765
  },
766
766
  history: {
767
767
  key: 'history',
768
- label: localeKey('history.label'),
768
+ label: '页面跳转',
769
769
  todoOptions: [{
770
770
  key: 'type',
771
771
  aliasKey: 'historyType',
772
- label: localeKey('history.todoOptions.type.label'),
772
+ label: '类型',
773
773
  type: 'Select',
774
774
  props: {
775
775
  options: [{
776
- title: localeKey('history.todoOptions.type.props.options.0.title'),
776
+ title: '路由跳转',
777
777
  value: 'push'
778
778
  }, {
779
- title: localeKey('history.todoOptions.type.props.options.1.title'),
779
+ title: '路由替换',
780
780
  value: 'replace'
781
781
  }, {
782
- title: localeKey('history.todoOptions.type.props.options.2.title'),
782
+ title: '新窗口',
783
783
  value: 'window'
784
784
  }, {
785
- title: localeKey('history.todoOptions.type.props.options.3.title'),
785
+ title: '门户跳转',
786
786
  value: 'portal'
787
787
  }]
788
788
  }
789
789
  }, {
790
790
  key: 'pathname',
791
- label: localeKey('history.todoOptions.pathname.label'),
791
+ label: '页面',
792
792
  type: 'SelectPage'
793
793
  }, {
794
794
  key: 'search',
@@ -797,15 +797,15 @@ var todoActionObject = {
797
797
  type: 'SearchParams'
798
798
  }, {
799
799
  key: 'routerData',
800
- label: localeKey('history.todoOptions.routerData.label'),
800
+ label: '路由数据',
801
801
  type: 'RouterData'
802
802
  }],
803
803
  classification: [{
804
- label: localeKey('history.classification.page.label'),
804
+ label: '页面类',
805
805
  value: 'page'
806
806
  }],
807
807
  remarks: [{
808
- label: localeKey('history.remarks.0.label'),
808
+ label: '配置说明',
809
809
  content: localeKey('history.remarks.0.content')
810
810
  }]
811
811
  },
@@ -814,24 +814,24 @@ var todoActionObject = {
814
814
  label: localeKey('dropPageByCatch.label'),
815
815
  todoOptions: [{
816
816
  key: 'dropPathname',
817
- label: localeKey('dropPageByCatch.todoOptions.dropPathname.label'),
817
+ label: '页面',
818
818
  type: 'MultiselectPage'
819
819
  }],
820
820
  classification: [{
821
- label: localeKey('dropPageByCatch.classification.page.label'),
821
+ label: '页面类',
822
822
  value: 'page'
823
823
  }]
824
824
  },
825
825
  historyGoBack: {
826
826
  key: 'historyGoBack',
827
- label: localeKey('historyGoBack.label'),
827
+ label: '页面返回',
828
828
  todoOptions: [{
829
829
  key: 'custParams',
830
- label: localeKey('historyGoBack.todoOptions.custParams.label'),
830
+ label: '自定义参数',
831
831
  type: 'SetCustomParams'
832
832
  }],
833
833
  classification: [{
834
- label: localeKey('historyGoBack.classification.page.label'),
834
+ label: '页面类',
835
835
  value: 'page'
836
836
  }]
837
837
  },
@@ -844,11 +844,11 @@ var todoActionObject = {
844
844
  type: 'Input'
845
845
  }, {
846
846
  key: 'stateval',
847
- label: localeKey('setCustomState.todoOptions.stateval.label'),
847
+ label: '内容',
848
848
  type: 'SetExpression'
849
849
  }],
850
850
  classification: [{
851
- label: localeKey('setCustomState.classification.setData.label'),
851
+ label: '数据设置',
852
852
  value: 'setData'
853
853
  }],
854
854
  hidden: true
@@ -871,7 +871,7 @@ var todoActionObject = {
871
871
  }]
872
872
  }],
873
873
  classification: [{
874
- label: localeKey('getCustomState.classification.setData.label'),
874
+ label: '数据设置',
875
875
  value: 'setData'
876
876
  }],
877
877
  hidden: true
@@ -885,11 +885,11 @@ var todoActionObject = {
885
885
  type: 'Input'
886
886
  }, {
887
887
  key: 'stateval',
888
- label: localeKey('setCompNestedState.todoOptions.stateval.label'),
888
+ label: '内容',
889
889
  type: 'SetExpression'
890
890
  }],
891
891
  classification: [{
892
- label: localeKey('setCompNestedState.classification.setData.label'),
892
+ label: '数据设置',
893
893
  value: 'setData'
894
894
  }],
895
895
  hidden: true
@@ -904,7 +904,7 @@ var todoActionObject = {
904
904
  }],
905
905
  todoCallbacks: ['callback1'],
906
906
  classification: [{
907
- label: localeKey('getCompNestedState.classification.setData.label'),
907
+ label: '数据设置',
908
908
  value: 'setData'
909
909
  }],
910
910
  hidden: true
@@ -915,11 +915,11 @@ var todoActionObject = {
915
915
  todoOptions: [{
916
916
  key: 'params',
917
917
  aliasKey: 'setParams',
918
- label: localeKey('okCallbackData.todoOptions.params.label'),
918
+ label: '参数',
919
919
  type: 'SetExpression'
920
920
  }],
921
921
  classification: [{
922
- label: localeKey('okCallbackData.classification.callback.label'),
922
+ label: '回调',
923
923
  value: 'callback'
924
924
  }]
925
925
  },
@@ -948,7 +948,7 @@ var todoActionObject = {
948
948
  },
949
949
  getFormValue: {
950
950
  key: 'getFormValue',
951
- label: localeKey('getFormValue.label'),
951
+ label: '表单取值',
952
952
  todoCallbacks: [{
953
953
  key: 'callback1',
954
954
  fields: [{
@@ -964,19 +964,19 @@ var todoActionObject = {
964
964
  label: localeKey('setFormValues.label'),
965
965
  todoOptions: [{
966
966
  key: 'params',
967
- label: localeKey('setFormValues.todoOptions.params.label'),
967
+ label: '参数赋值',
968
968
  type: 'SelectLink',
969
969
  props: {
970
970
  titleLink: [{
971
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.0.title'),
971
+ title: '切换到属性',
972
972
  value: 'object',
973
973
  key: 'object'
974
974
  }, {
975
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.1.title'),
975
+ title: '切换根节点',
976
976
  value: '',
977
977
  key: 'root'
978
978
  }, {
979
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.2.title'),
979
+ title: '清空赋值',
980
980
  value: 'cleanValue',
981
981
  key: 'cleanValue'
982
982
  }],
@@ -986,14 +986,14 @@ var todoActionObject = {
986
986
  },
987
987
  resetForm: {
988
988
  key: 'resetForm',
989
- label: localeKey('resetForm.label')
989
+ label: '重置表单'
990
990
  },
991
991
  setTripleFormAction: {
992
992
  key: 'setTripleFormAction',
993
993
  label: localeKey('setTripleFormAction.label'),
994
994
  todoOptions: [{
995
995
  key: 'actionType',
996
- label: localeKey('setTripleFormAction.todoOptions.actionType.label'),
996
+ label: '表单类型',
997
997
  type: 'SetExpression',
998
998
  props: {
999
999
  placeholder: localeKey('setTripleFormAction.todoOptions.actionType.props.placeholder')
@@ -1037,19 +1037,19 @@ var todoActionObject = {
1037
1037
  label: localeKey('setCurrentFormValues.label'),
1038
1038
  todoOptions: [{
1039
1039
  key: 'params',
1040
- label: localeKey('setCurrentFormValues.todoOptions.params.label'),
1040
+ label: '参数赋值',
1041
1041
  type: 'SelectLink',
1042
1042
  props: {
1043
1043
  titleLink: [{
1044
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.0.title'),
1044
+ title: '切换到属性',
1045
1045
  value: 'object',
1046
1046
  key: 'object'
1047
1047
  }, {
1048
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.1.title'),
1048
+ title: '切换根节点',
1049
1049
  value: '',
1050
1050
  key: 'root'
1051
1051
  }, {
1052
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.2.title'),
1052
+ title: '清空赋值',
1053
1053
  value: 'cleanValue',
1054
1054
  key: 'cleanValue'
1055
1055
  }],
@@ -1081,7 +1081,7 @@ var todoActionObject = {
1081
1081
  key: 'callback2'
1082
1082
  }],
1083
1083
  classification: [{
1084
- label: localeKey('validateAllForm.classification.setData.label'),
1084
+ label: '数据设置',
1085
1085
  value: 'setData'
1086
1086
  }]
1087
1087
  },
@@ -1103,7 +1103,7 @@ var todoActionObject = {
1103
1103
  }]
1104
1104
  }],
1105
1105
  classification: [{
1106
- label: localeKey('getAllFormValues.classification.setData.label'),
1106
+ label: '数据设置',
1107
1107
  value: 'setData'
1108
1108
  }]
1109
1109
  },
@@ -1111,7 +1111,7 @@ var todoActionObject = {
1111
1111
  key: 'resetAllForm',
1112
1112
  label: localeKey('resetAllForm.label'),
1113
1113
  classification: [{
1114
- label: localeKey('resetAllForm.classification.setData.label'),
1114
+ label: '数据设置',
1115
1115
  value: 'setData'
1116
1116
  }]
1117
1117
  },
@@ -1137,20 +1137,20 @@ var todoActionObject = {
1137
1137
  },
1138
1138
  reloadTableData: {
1139
1139
  key: 'reloadTableData',
1140
- label: localeKey('reloadTableData.label'),
1140
+ label: '加载数据',
1141
1141
  todoOptions: [{
1142
1142
  key: 'data',
1143
1143
  aliasKey: 'dataSource',
1144
- label: localeKey('reloadTableData.todoOptions.data.label'),
1144
+ label: '内容',
1145
1145
  type: 'SetExpression'
1146
1146
  }, {
1147
1147
  key: 'total',
1148
- label: localeKey('reloadTableData.todoOptions.total.label'),
1148
+ label: '总条数',
1149
1149
  type: 'SetExpression'
1150
1150
  }, {
1151
1151
  key: 'current',
1152
1152
  aliasKey: 'curPage',
1153
- label: localeKey('reloadTableData.todoOptions.current.label'),
1153
+ label: '更新页码',
1154
1154
  type: 'SetExpression'
1155
1155
  }],
1156
1156
  todoCallbacks: ['callback1']
@@ -1160,12 +1160,12 @@ var todoActionObject = {
1160
1160
  label: localeKey('reloadColServiceData.label'),
1161
1161
  todoOptions: [{
1162
1162
  key: 'colName',
1163
- label: localeKey('reloadColServiceData.todoOptions.colName.label'),
1163
+ label: '翻译字段',
1164
1164
  type: 'SelectTableCol'
1165
1165
  }, {
1166
1166
  key: 'data',
1167
1167
  aliasKey: 'dataSource',
1168
- label: localeKey('reloadColServiceData.todoOptions.data.label'),
1168
+ label: '内容',
1169
1169
  type: 'SetExpression'
1170
1170
  }]
1171
1171
  },
@@ -1174,21 +1174,21 @@ var todoActionObject = {
1174
1174
  label: localeKey('reloadColServiceDataForEdit.label'),
1175
1175
  todoOptions: [{
1176
1176
  key: 'colNameForEdit',
1177
- label: localeKey('reloadColServiceDataForEdit.todoOptions.colNameForEdit.label'),
1177
+ label: '字段',
1178
1178
  type: 'SelectTableCol'
1179
1179
  }, {
1180
1180
  key: 'data',
1181
- label: localeKey('reloadColServiceDataForEdit.todoOptions.data.label'),
1181
+ label: '内容',
1182
1182
  type: 'SetExpression'
1183
1183
  }]
1184
1184
  },
1185
1185
  reloadRCData: {
1186
1186
  key: 'reloadRCData',
1187
- label: localeKey('reloadRCData.label'),
1187
+ label: '加载数据',
1188
1188
  todoOptions: [{
1189
1189
  key: 'data',
1190
1190
  aliasKey: 'dataSource',
1191
- label: localeKey('reloadRCData.todoOptions.data.label'),
1191
+ label: '内容',
1192
1192
  type: 'SetExpression'
1193
1193
  }, {
1194
1194
  key: 'labelKey',
@@ -1202,7 +1202,7 @@ var todoActionObject = {
1202
1202
  }, {
1203
1203
  key: 'valueKey',
1204
1204
  aliasKey: 'selectValueKeyForRC',
1205
- label: localeKey('reloadRCData.todoOptions.valueKey.label'),
1205
+ label: '显示值字段',
1206
1206
  type: 'SetExpressionKey',
1207
1207
  props: {
1208
1208
  // Only fill child data for the selected parameter key; do not fill the expression
@@ -1213,11 +1213,11 @@ var todoActionObject = {
1213
1213
  },
1214
1214
  reloadSelectData: {
1215
1215
  key: 'reloadSelectData',
1216
- label: localeKey('reloadSelectData.label'),
1216
+ label: '加载数据',
1217
1217
  todoOptions: [{
1218
1218
  key: 'data',
1219
1219
  aliasKey: 'dataSource',
1220
- label: localeKey('reloadSelectData.todoOptions.data.label'),
1220
+ label: '内容',
1221
1221
  type: 'SetExpression'
1222
1222
  }, {
1223
1223
  key: 'labelKey',
@@ -1231,7 +1231,7 @@ var todoActionObject = {
1231
1231
  }, {
1232
1232
  key: 'valueKey',
1233
1233
  aliasKey: 'selectValueKey',
1234
- label: localeKey('reloadSelectData.todoOptions.valueKey.label'),
1234
+ label: '选项值字段',
1235
1235
  type: 'SetExpressionKey',
1236
1236
  props: {
1237
1237
  // Only fill child data for the selected parameter key; do not fill the expression
@@ -1242,20 +1242,20 @@ var todoActionObject = {
1242
1242
  },
1243
1243
  reloadDescData: {
1244
1244
  key: 'reloadDescData',
1245
- label: localeKey('reloadDescData.label'),
1245
+ label: '加载数据',
1246
1246
  todoOptions: [{
1247
1247
  key: 'data',
1248
1248
  aliasKey: 'dataSource',
1249
- label: localeKey('reloadDescData.todoOptions.data.label'),
1249
+ label: '内容',
1250
1250
  type: 'SetExpression'
1251
1251
  }]
1252
1252
  },
1253
1253
  reloadData: {
1254
1254
  key: 'reloadData',
1255
- label: localeKey('reloadData.label'),
1255
+ label: '加载数据',
1256
1256
  todoOptions: [{
1257
1257
  key: 'data',
1258
- label: localeKey('reloadData.todoOptions.data.label'),
1258
+ label: '内容',
1259
1259
  aliasKey: 'dataSource',
1260
1260
  type: 'SetExpression'
1261
1261
  }, {
@@ -1301,7 +1301,7 @@ var todoActionObject = {
1301
1301
  todoOptions: [{
1302
1302
  key: 'data',
1303
1303
  aliasKey: 'dataSource',
1304
- label: localeKey('reloadChildData.todoOptions.data.label'),
1304
+ label: '内容',
1305
1305
  type: 'SetExpression'
1306
1306
  }, {
1307
1307
  key: 'parentKey',
@@ -1346,11 +1346,11 @@ var todoActionObject = {
1346
1346
  },
1347
1347
  reloadMenuData: {
1348
1348
  key: 'reloadMenuData',
1349
- label: localeKey('reloadMenuData.label'),
1349
+ label: '加载数据',
1350
1350
  todoOptions: [{
1351
1351
  key: 'data',
1352
1352
  aliasKey: 'dataSource',
1353
- label: localeKey('reloadMenuData.todoOptions.data.label'),
1353
+ label: '内容',
1354
1354
  type: 'SetExpression'
1355
1355
  }, {
1356
1356
  key: 'labelKey',
@@ -1403,7 +1403,7 @@ var todoActionObject = {
1403
1403
  todoOptions: [{
1404
1404
  key: 'data',
1405
1405
  aliasKey: 'dataSource',
1406
- label: localeKey('appendTreeNode.todoOptions.data.label'),
1406
+ label: '内容',
1407
1407
  type: 'SetExpression'
1408
1408
  }, {
1409
1409
  key: 'nodeKey',
@@ -1448,7 +1448,7 @@ var todoActionObject = {
1448
1448
  todoOptions: [{
1449
1449
  key: 'data',
1450
1450
  aliasKey: 'dataSource',
1451
- label: localeKey('appendMenuNodeData.todoOptions.data.label'),
1451
+ label: '内容',
1452
1452
  type: 'SetExpression'
1453
1453
  }, {
1454
1454
  key: 'title',
@@ -1542,14 +1542,14 @@ var todoActionObject = {
1542
1542
  label: localeKey('setTreeSelectedKey.label'),
1543
1543
  todoOptions: [{
1544
1544
  key: 'value',
1545
- label: localeKey('setTreeSelectedKey.todoOptions.value.label'),
1545
+ label: '内容',
1546
1546
  type: 'SetExpression'
1547
1547
  }],
1548
1548
  todoCallbacks: ['callback1']
1549
1549
  },
1550
1550
  clearTreeSelectedKey: {
1551
1551
  key: 'clearTreeSelectedKey',
1552
- label: localeKey('clearTreeSelectedKey.label')
1552
+ label: '清空选中项'
1553
1553
  },
1554
1554
  getTreeEditingKey: {
1555
1555
  key: 'getTreeEditingKey',
@@ -1589,7 +1589,7 @@ var todoActionObject = {
1589
1589
  label: localeKey('setCheckedKey.label'),
1590
1590
  todoOptions: [{
1591
1591
  key: 'value',
1592
- label: localeKey('setCheckedKey.todoOptions.value.label'),
1592
+ label: '内容',
1593
1593
  type: 'SetExpression'
1594
1594
  }],
1595
1595
  todoCallbacks: ['callback1']
@@ -1605,7 +1605,7 @@ var todoActionObject = {
1605
1605
  },
1606
1606
  getTableSelected: {
1607
1607
  key: 'getTableSelected',
1608
- label: localeKey('getTableSelected.label'),
1608
+ label: '获取选中行',
1609
1609
  todoCallbacks: [{
1610
1610
  key: 'callback1',
1611
1611
  fields: [{
@@ -1718,10 +1718,10 @@ var todoActionObject = {
1718
1718
  type: 'Select',
1719
1719
  props: {
1720
1720
  options: [{
1721
- title: localeKey('addTableRow.todoOptions.inlineeditnow.props.options.0.title'),
1721
+ title: '',
1722
1722
  value: false
1723
1723
  }, {
1724
- title: localeKey('addTableRow.todoOptions.inlineeditnow.props.options.1.title'),
1724
+ title: '',
1725
1725
  value: true
1726
1726
  }]
1727
1727
  }
@@ -1732,19 +1732,19 @@ var todoActionObject = {
1732
1732
  label: localeKey('addTableRowData.label'),
1733
1733
  todoOptions: [{
1734
1734
  key: 'params',
1735
- label: localeKey('addTableRowData.todoOptions.params.label'),
1735
+ label: '参数赋值',
1736
1736
  type: 'SelectLink',
1737
1737
  props: {
1738
1738
  titleLink: [{
1739
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.0.title'),
1739
+ title: '切换到属性',
1740
1740
  value: 'object',
1741
1741
  key: 'object'
1742
1742
  }, {
1743
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.1.title'),
1743
+ title: '切换根节点',
1744
1744
  value: '',
1745
1745
  key: 'root'
1746
1746
  }, {
1747
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.2.title'),
1747
+ title: '清空赋值',
1748
1748
  value: 'cleanValue',
1749
1749
  key: 'cleanValue'
1750
1750
  }],
@@ -1757,16 +1757,16 @@ var todoActionObject = {
1757
1757
  label: localeKey('delTableRow.label'),
1758
1758
  todoOptions: [{
1759
1759
  key: 'params',
1760
- label: localeKey('delTableRow.todoOptions.params.label'),
1760
+ label: '参数赋值',
1761
1761
  type: 'SetExpression'
1762
1762
  }]
1763
1763
  },
1764
1764
  setSelectedRowKeys: {
1765
1765
  key: 'setSelectedRowKeys',
1766
- label: localeKey('setSelectedRowKeys.label'),
1766
+ label: '设置选中行',
1767
1767
  todoOptions: [{
1768
1768
  key: 'value',
1769
- label: localeKey('setSelectedRowKeys.todoOptions.value.label'),
1769
+ label: '内容',
1770
1770
  type: 'SetExpression'
1771
1771
  }],
1772
1772
  todoCallbacks: ['callback1']
@@ -1786,33 +1786,33 @@ var todoActionObject = {
1786
1786
  },
1787
1787
  setDisable: {
1788
1788
  key: 'setDisable',
1789
- label: localeKey('setDisable.label'),
1789
+ label: '禁用状态',
1790
1790
  todoOptions: [{
1791
1791
  key: 'compid',
1792
- label: localeKey('setDisable.todoOptions.compid.label'),
1792
+ label: '组件选择',
1793
1793
  type: 'CompTree',
1794
1794
  aliasKey: 'compId',
1795
1795
  props: {
1796
1796
  checkable: true,
1797
1797
  titleLink: [{
1798
- title: localeKey('setDisable.todoOptions.compid.props.titleLink.0.title'),
1798
+ title: '清空已选',
1799
1799
  value: 'cleanValue'
1800
1800
  }]
1801
1801
  }
1802
1802
  }, {
1803
1803
  key: 'compValueList',
1804
- label: localeKey('setDisable.todoOptions.compValueList.label'),
1804
+ label: '是否必填',
1805
1805
  type: 'SetBatchProps',
1806
1806
  props: {
1807
1807
  defaultValue: 'toggle',
1808
1808
  options: [{
1809
- title: localeKey('setDisable.todoOptions.compValueList.props.options.0.title'),
1809
+ title: '启动',
1810
1810
  value: ''
1811
1811
  }, {
1812
- title: localeKey('setDisable.todoOptions.compValueList.props.options.1.title'),
1812
+ title: '禁用',
1813
1813
  value: 'true'
1814
1814
  }, {
1815
- title: localeKey('setDisable.todoOptions.compValueList.props.options.2.title'),
1815
+ title: '切换',
1816
1816
  value: 'toggle'
1817
1817
  }]
1818
1818
  }
@@ -1820,33 +1820,33 @@ var todoActionObject = {
1820
1820
  },
1821
1821
  setRequired: {
1822
1822
  key: 'setRequired',
1823
- label: localeKey('setRequired.label'),
1823
+ label: '设置必填',
1824
1824
  todoOptions: [{
1825
1825
  key: 'compid',
1826
- label: localeKey('setRequired.todoOptions.compid.label'),
1826
+ label: '组件选择',
1827
1827
  type: 'CompTree',
1828
1828
  aliasKey: 'compId',
1829
1829
  props: {
1830
1830
  checkable: true,
1831
1831
  titleLink: [{
1832
- title: localeKey('setRequired.todoOptions.compid.props.titleLink.0.title'),
1832
+ title: '清空已选',
1833
1833
  value: 'cleanValue'
1834
1834
  }]
1835
1835
  }
1836
1836
  }, {
1837
1837
  key: 'compValueList',
1838
- label: localeKey('setRequired.todoOptions.compValueList.label'),
1838
+ label: '是否必填',
1839
1839
  type: 'SetBatchProps',
1840
1840
  props: {
1841
1841
  defaultValue: 'toggle',
1842
1842
  options: [{
1843
- title: localeKey('setRequired.todoOptions.compValueList.props.options.0.title'),
1843
+ title: '必填',
1844
1844
  value: 'true'
1845
1845
  }, {
1846
- title: localeKey('setRequired.todoOptions.compValueList.props.options.1.title'),
1846
+ title: '非必填',
1847
1847
  value: ''
1848
1848
  }, {
1849
- title: localeKey('setRequired.todoOptions.compValueList.props.options.2.title'),
1849
+ title: '切换',
1850
1850
  value: 'toggle'
1851
1851
  }]
1852
1852
  }
@@ -1854,33 +1854,33 @@ var todoActionObject = {
1854
1854
  },
1855
1855
  setVisible: {
1856
1856
  key: 'setVisible',
1857
- label: localeKey('setVisible.label'),
1857
+ label: '控制显隐',
1858
1858
  todoOptions: [{
1859
1859
  key: 'compid',
1860
- label: localeKey('setVisible.todoOptions.compid.label'),
1860
+ label: '组件选择',
1861
1861
  type: 'CompTree',
1862
1862
  aliasKey: 'compId',
1863
1863
  props: {
1864
1864
  checkable: true,
1865
1865
  titleLink: [{
1866
- title: localeKey('setVisible.todoOptions.compid.props.titleLink.0.title'),
1866
+ title: '清空已选',
1867
1867
  value: 'cleanValue'
1868
1868
  }]
1869
1869
  }
1870
1870
  }, {
1871
1871
  key: 'compValueList',
1872
- label: localeKey('setVisible.todoOptions.compValueList.label'),
1872
+ label: '是否必填',
1873
1873
  type: 'SetBatchProps',
1874
1874
  props: {
1875
1875
  defaultValue: '',
1876
1876
  options: [{
1877
- title: localeKey('setVisible.todoOptions.compValueList.props.options.0.title'),
1877
+ title: '显示',
1878
1878
  value: 'true'
1879
1879
  }, {
1880
- title: localeKey('setVisible.todoOptions.compValueList.props.options.1.title'),
1880
+ title: '隐藏',
1881
1881
  value: ''
1882
1882
  }, {
1883
- title: localeKey('setVisible.todoOptions.compValueList.props.options.2.title'),
1883
+ title: '切换',
1884
1884
  value: 'toggle'
1885
1885
  }]
1886
1886
  }
@@ -1888,17 +1888,17 @@ var todoActionObject = {
1888
1888
  },
1889
1889
  setLoading: {
1890
1890
  key: 'setLoading',
1891
- label: localeKey('setLoading.label'),
1891
+ label: '控制加载中',
1892
1892
  todoOptions: [{
1893
1893
  key: 'loading',
1894
- label: localeKey('setLoading.todoOptions.loading.label'),
1894
+ label: '是否加载中',
1895
1895
  type: 'Select',
1896
1896
  props: {
1897
1897
  options: [{
1898
- title: localeKey('setLoading.todoOptions.loading.props.options.0.title'),
1898
+ title: '',
1899
1899
  value: true
1900
1900
  }, {
1901
- title: localeKey('setLoading.todoOptions.loading.props.options.1.title'),
1901
+ title: '',
1902
1902
  value: false
1903
1903
  }]
1904
1904
  }
@@ -1906,25 +1906,25 @@ var todoActionObject = {
1906
1906
  },
1907
1907
  setValue: {
1908
1908
  key: 'setValue',
1909
- label: localeKey('setValue.label'),
1909
+ label: '控件赋值',
1910
1910
  todoOptions: [{
1911
1911
  key: 'compid',
1912
- label: localeKey('setValue.todoOptions.compid.label'),
1912
+ label: '组件选择',
1913
1913
  type: 'CompTree',
1914
1914
  aliasKey: 'compId',
1915
1915
  props: {
1916
1916
  titleLink: [{
1917
- title: localeKey('setValue.todoOptions.compid.props.titleLink.0.title'),
1917
+ title: '清空已选',
1918
1918
  value: 'cleanValue'
1919
1919
  }]
1920
1920
  }
1921
1921
  }, {
1922
1922
  key: 'valueList',
1923
- label: localeKey('setValue.todoOptions.valueList.label'),
1923
+ label: '组件赋值',
1924
1924
  type: 'SetSysExpression',
1925
1925
  props: {
1926
1926
  titleLink: [{
1927
- title: localeKey('setValue.todoOptions.valueList.props.titleLink.0.title'),
1927
+ title: '清空赋值',
1928
1928
  value: 'clearValue'
1929
1929
  }]
1930
1930
  }
@@ -1937,10 +1937,10 @@ var todoActionObject = {
1937
1937
  },
1938
1938
  setModalSelectValue: {
1939
1939
  key: 'setModalSelectValue',
1940
- label: localeKey('setModalSelectValue.label'),
1940
+ label: '控件赋值',
1941
1941
  todoOptions: [{
1942
1942
  key: 'value',
1943
- label: localeKey('setModalSelectValue.todoOptions.value.label'),
1943
+ label: '内容',
1944
1944
  type: 'SetExpression'
1945
1945
  }, {
1946
1946
  key: 'labelKey',
@@ -1953,7 +1953,7 @@ var todoActionObject = {
1953
1953
  }
1954
1954
  }, {
1955
1955
  key: 'valueKey',
1956
- label: localeKey('setModalSelectValue.todoOptions.valueKey.label'),
1956
+ label: '值映射字段',
1957
1957
  type: 'SetExpressionKey',
1958
1958
  aliasKey: 'valueMapKey',
1959
1959
  props: {
@@ -1966,17 +1966,17 @@ var todoActionObject = {
1966
1966
  },
1967
1967
  setBadgeValue: {
1968
1968
  key: 'setBadgeValue',
1969
- label: localeKey('setBadgeValue.label'),
1969
+ label: '设置角标值',
1970
1970
  todoOptions: [{
1971
1971
  key: 'value',
1972
- label: localeKey('setBadgeValue.todoOptions.value.label'),
1972
+ label: '内容',
1973
1973
  type: 'SetExpression'
1974
1974
  }],
1975
1975
  todoCallbacks: ['callback1']
1976
1976
  },
1977
1977
  getValue: {
1978
1978
  key: 'getValue',
1979
- label: localeKey('getValue.label'),
1979
+ label: '获取当前值',
1980
1980
  todoCallbacks: [{
1981
1981
  key: 'callback1',
1982
1982
  getFields: function getFields(kv) {
@@ -2003,7 +2003,7 @@ var todoActionObject = {
2003
2003
  }];
2004
2004
  default:
2005
2005
  return [{
2006
- title: "".concat(localeKey('getValue.todoCallbacks.callback1.fields.default.titlePrefix'), "(").concat(name, ")"),
2006
+ title: '当前值'.concat("(", name, ")"),
2007
2007
  value: "$value_".concat(id, "$"),
2008
2008
  dataId: dataId
2009
2009
  }];
@@ -2021,11 +2021,11 @@ var todoActionObject = {
2021
2021
  },
2022
2022
  clearOptions: {
2023
2023
  key: 'clearOptions',
2024
- label: localeKey('clearOptions.label')
2024
+ label: '清空选项'
2025
2025
  },
2026
2026
  clearValue: {
2027
2027
  key: 'clearValue',
2028
- label: localeKey('clearValue.label'),
2028
+ label: '清空值',
2029
2029
  todoOptions: []
2030
2030
  // labelMap: {
2031
2031
  // Transfer: '清空右侧列表',
@@ -2041,7 +2041,7 @@ var todoActionObject = {
2041
2041
  label: localeKey('triggerRelDataSource.label'),
2042
2042
  todoOptions: [{
2043
2043
  key: 'target',
2044
- label: localeKey('triggerRelDataSource.todoOptions.target.label'),
2044
+ label: '联动来源',
2045
2045
  type: 'SelectObject'
2046
2046
  }, {
2047
2047
  key: 'arelStaticData',
@@ -2069,38 +2069,38 @@ var todoActionObject = {
2069
2069
  },
2070
2070
  validateMsg: {
2071
2071
  key: 'validateMsg',
2072
- label: localeKey('validateMsg.label'),
2072
+ label: '校验提示',
2073
2073
  todoOptions: [{
2074
2074
  key: 'validateStatus',
2075
2075
  aliasKey: 'validateType',
2076
- label: localeKey('validateMsg.todoOptions.validateStatus.label'),
2076
+ label: '校验类型',
2077
2077
  type: 'RadioButton',
2078
2078
  defaultValue: 'success',
2079
2079
  props: {
2080
2080
  options: [{
2081
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.0.title'),
2081
+ title: '成功',
2082
2082
  value: 'success'
2083
2083
  }, {
2084
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.1.title'),
2084
+ title: '提示',
2085
2085
  value: 'validating'
2086
2086
  }, {
2087
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.2.title'),
2087
+ title: '错误',
2088
2088
  value: 'error'
2089
2089
  }, {
2090
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.3.title'),
2090
+ title: '警告',
2091
2091
  value: 'warning'
2092
2092
  }, {
2093
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.4.title'),
2093
+ title: '正常',
2094
2094
  value: ''
2095
2095
  }]
2096
2096
  }
2097
2097
  }, {
2098
2098
  key: 'help',
2099
- label: localeKey('validateMsg.todoOptions.help.label'),
2099
+ label: '校验文案',
2100
2100
  type: 'Input',
2101
2101
  aliasKey: 'validateMsg',
2102
2102
  props: {
2103
- placeholder: localeKey('validateMsg.todoOptions.help.props.placeholder')
2103
+ placeholder: '请输入'
2104
2104
  }
2105
2105
  }]
2106
2106
  },
@@ -2132,17 +2132,17 @@ var todoActionObject = {
2132
2132
  type: 'DownloadUrl'
2133
2133
  }],
2134
2134
  classification: [{
2135
- label: localeKey('setDownloadResponse.classification.0.label'),
2135
+ label: '下载',
2136
2136
  value: 'download'
2137
2137
  }]
2138
2138
  },
2139
2139
  saveBlobFile: {
2140
2140
  key: 'saveBlobFile',
2141
- label: localeKey('saveBlobFile.label'),
2141
+ label: '文件保存',
2142
2142
  todoOptions: [{
2143
2143
  key: 'data',
2144
2144
  aliasKey: 'dataSource',
2145
- label: localeKey('saveBlobFile.todoOptions.data.label'),
2145
+ label: '内容',
2146
2146
  type: 'SetExpression'
2147
2147
  }, {
2148
2148
  key: 'fileName',
@@ -2154,13 +2154,13 @@ var todoActionObject = {
2154
2154
  }
2155
2155
  }],
2156
2156
  classification: [{
2157
- label: localeKey('saveBlobFile.classification.0.label'),
2157
+ label: '下载',
2158
2158
  value: 'download'
2159
2159
  }]
2160
2160
  },
2161
2161
  downloadByFileId: {
2162
2162
  key: 'downloadByFileId',
2163
- label: localeKey('downloadByFileId.label'),
2163
+ label: '文件下载',
2164
2164
  todoOptions: [{
2165
2165
  key: 'fileResourceType',
2166
2166
  label: localeKey('downloadByFileId.todoOptions.fileResourceType.label'),
@@ -2168,16 +2168,16 @@ var todoActionObject = {
2168
2168
  defaultValue: 'server',
2169
2169
  props: {
2170
2170
  options: [{
2171
- title: localeKey('downloadByFileId.todoOptions.fileResourceType.props.options.0.title'),
2171
+ title: '服务器资源',
2172
2172
  value: 'server'
2173
2173
  }, {
2174
- title: localeKey('downloadByFileId.todoOptions.fileResourceType.props.options.1.title'),
2174
+ title: '文件资源',
2175
2175
  value: 'file'
2176
2176
  }]
2177
2177
  }
2178
2178
  }, {
2179
2179
  key: 'fileCode',
2180
- label: localeKey('downloadByFileId.todoOptions.fileCode.label'),
2180
+ label: '文件编码',
2181
2181
  type: 'FileResourceSelect',
2182
2182
  visibleFlag: 'fileResourceType',
2183
2183
  visibleFlagValue: ['file'],
@@ -2202,7 +2202,7 @@ var todoActionObject = {
2202
2202
  }
2203
2203
  }, {
2204
2204
  key: 'zip',
2205
- label: localeKey('downloadByFileId.todoOptions.zip.label'),
2205
+ label: '单文件压缩',
2206
2206
  type: 'Switch',
2207
2207
  labelTip: localeKey('downloadByFileId.todoOptions.zip.labelTip'),
2208
2208
  props: {
@@ -2212,14 +2212,14 @@ var todoActionObject = {
2212
2212
  visibleFlagValue: ['server']
2213
2213
  }],
2214
2214
  classification: [{
2215
- label: localeKey('downloadByFileId.classification.0.label'),
2215
+ label: '下载',
2216
2216
  value: 'download'
2217
2217
  }],
2218
2218
  remarks: [{
2219
- label: localeKey('downloadByFileId.remarks.0.label'),
2219
+ label: '配置提示',
2220
2220
  content: localeKey('downloadByFileId.remarks.0.content')
2221
2221
  }, {
2222
- label: localeKey('downloadByFileId.remarks.1.label'),
2222
+ label: '注意事项',
2223
2223
  content: localeKey('downloadByFileId.remarks.1.content')
2224
2224
  }]
2225
2225
  },
@@ -2236,13 +2236,13 @@ var todoActionObject = {
2236
2236
  }
2237
2237
  }, {
2238
2238
  key: 'uploadProps',
2239
- label: localeKey('setUploadProps.todoOptions.uploadProps.label'),
2239
+ label: '上传参数',
2240
2240
  type: 'SelectParams'
2241
2241
  }]
2242
2242
  },
2243
2243
  setUploadChange: {
2244
2244
  key: 'setUploadChange',
2245
- label: localeKey('setUploadChange.label'),
2245
+ label: '上传值改变',
2246
2246
  todoOptions: [{
2247
2247
  key: 'url',
2248
2248
  label: localeKey('setUploadChange.todoOptions.url.label'),
@@ -2268,15 +2268,15 @@ var todoActionObject = {
2268
2268
  type: 'Input'
2269
2269
  }, {
2270
2270
  key: 'interval',
2271
- label: localeKey('setTimeout.todoOptions.interval.label'),
2271
+ label: '时间间隔',
2272
2272
  type: 'InputNumber',
2273
2273
  props: {
2274
- addonAfter: localeKey('setTimeout.todoOptions.interval.props.addonAfter')
2274
+ addonAfter: '毫秒'
2275
2275
  }
2276
2276
  }],
2277
2277
  todoCallbacks: ['callback1'],
2278
2278
  classification: [{
2279
- label: localeKey('setTimeout.classification.0.label'),
2279
+ label: '定时器',
2280
2280
  value: 'timer'
2281
2281
  }],
2282
2282
  hidden: true,
@@ -2291,10 +2291,10 @@ var todoActionObject = {
2291
2291
  type: 'Input'
2292
2292
  }, {
2293
2293
  key: 'interval',
2294
- label: localeKey('setInterval.todoOptions.interval.label'),
2294
+ label: '时间间隔',
2295
2295
  type: 'InputNumber',
2296
2296
  props: {
2297
- addonAfter: localeKey('setInterval.todoOptions.interval.props.addonAfter')
2297
+ addonAfter: '毫秒'
2298
2298
  }
2299
2299
  }],
2300
2300
  todoCallbacks: ['callback1'],
@@ -2302,18 +2302,18 @@ var todoActionObject = {
2302
2302
  },
2303
2303
  setTimer: {
2304
2304
  key: 'setTimer',
2305
- label: localeKey('setTimer.label'),
2305
+ label: '定时器',
2306
2306
  todoOptions: [{
2307
2307
  key: 'type',
2308
2308
  aliasKey: 'timerType',
2309
- label: localeKey('setTimer.todoOptions.type.label'),
2309
+ label: '定时器类型',
2310
2310
  type: 'Select',
2311
2311
  props: {
2312
2312
  options: [{
2313
- title: localeKey('setTimer.todoOptions.type.props.options.0.title'),
2313
+ title: '单次定时器',
2314
2314
  value: 'timeout'
2315
2315
  }, {
2316
- title: localeKey('setTimer.todoOptions.type.props.options.1.title'),
2316
+ title: '循环定时器',
2317
2317
  value: 'interval'
2318
2318
  }]
2319
2319
  }
@@ -2323,45 +2323,45 @@ var todoActionObject = {
2323
2323
  type: 'Input'
2324
2324
  }, {
2325
2325
  key: 'interval',
2326
- label: localeKey('setTimer.todoOptions.interval.label'),
2326
+ label: '时间间隔',
2327
2327
  type: 'InputNumber',
2328
2328
  props: {
2329
- addonAfter: localeKey('setTimer.todoOptions.interval.props.addonAfter')
2329
+ addonAfter: '毫秒'
2330
2330
  }
2331
2331
  }],
2332
2332
  todoCallbacks: ['callback1'],
2333
2333
  classification: [{
2334
- label: localeKey('setTimer.classification.0.label'),
2334
+ label: '定时器',
2335
2335
  value: 'timer'
2336
2336
  }],
2337
2337
  isAsync: true
2338
2338
  },
2339
2339
  clearTimer: {
2340
2340
  key: 'clearTimer',
2341
- label: localeKey('clearTimer.label'),
2341
+ label: '关闭定时器',
2342
2342
  todoOptions: [{
2343
2343
  key: 'targettimer',
2344
- label: localeKey('clearTimer.todoOptions.targettimer.label'),
2344
+ label: '定时器名称',
2345
2345
  type: 'SelectTimer'
2346
2346
  }],
2347
2347
  classification: [{
2348
- label: localeKey('clearTimer.classification.0.label'),
2348
+ label: '定时器',
2349
2349
  value: 'timer'
2350
2350
  }]
2351
2351
  },
2352
2352
  clearData: {
2353
2353
  key: 'clearData',
2354
- label: localeKey('clearData.label')
2354
+ label: '清空数据'
2355
2355
  },
2356
2356
  setCompState: {
2357
2357
  key: 'setCompState',
2358
2358
  label: localeKey('setCompState.label'),
2359
2359
  todoOptions: [{
2360
2360
  key: 'componentState',
2361
- label: localeKey('setCompState.todoOptions.componentState.label'),
2361
+ label: '组件状态',
2362
2362
  type: 'ComponentState',
2363
2363
  extraGroups: [{
2364
- subLabel: localeKey('setCompState.todoOptions.componentState.extraGroups.0.subLabel'),
2364
+ subLabel: '组件刷新',
2365
2365
  subClickFunName: 'refreshCompsStateData'
2366
2366
  }]
2367
2367
  }]
@@ -2372,7 +2372,7 @@ var todoActionObject = {
2372
2372
  todoOptions: [{
2373
2373
  key: 'current',
2374
2374
  aliasKey: 'stepsCurrent',
2375
- label: localeKey('setStepsCurrentValue.todoOptions.current.label'),
2375
+ label: '当前步骤',
2376
2376
  type: 'SetExpression'
2377
2377
  }],
2378
2378
  todoCallbacks: ['callback1']
@@ -2383,7 +2383,7 @@ var todoActionObject = {
2383
2383
  todoCallbacks: [{
2384
2384
  key: 'callback1',
2385
2385
  fields: [{
2386
- title: localeKey('getStepsCurrentValue.todoCallbacks.callback1.fields.0.title'),
2386
+ title: '当前步骤',
2387
2387
  value: '$current_@{options.id}$',
2388
2388
  description: localeKey('getStepsCurrentValue.todoCallbacks.callback1.fields.0.description'),
2389
2389
  type: 'number'
@@ -2395,7 +2395,7 @@ var todoActionObject = {
2395
2395
  label: localeKey('refreshLoadMore.label'),
2396
2396
  todoOptions: [{
2397
2397
  key: 'loadmoreKey',
2398
- label: localeKey('refreshLoadMore.todoOptions.loadmoreKey.label'),
2398
+ label: '更新参数',
2399
2399
  type: 'SetCustomParams'
2400
2400
  }]
2401
2401
  },
@@ -2404,7 +2404,7 @@ var todoActionObject = {
2404
2404
  label: localeKey('setDynamicFormValues.label'),
2405
2405
  todoOptions: [{
2406
2406
  key: 'params',
2407
- label: localeKey('setDynamicFormValues.todoOptions.params.label'),
2407
+ label: '参数赋值',
2408
2408
  type: 'SetExpression'
2409
2409
  }]
2410
2410
  },
@@ -2443,7 +2443,7 @@ var todoActionObject = {
2443
2443
  }]
2444
2444
  }],
2445
2445
  classification: [{
2446
- label: localeKey('validateAllAppForm.classification.0.label'),
2446
+ label: '数据设置',
2447
2447
  value: 'setData'
2448
2448
  }]
2449
2449
  },
@@ -2469,18 +2469,18 @@ var todoActionObject = {
2469
2469
  }
2470
2470
  }, {
2471
2471
  key: 'params',
2472
- label: localeKey('loadMoreRequest.todoOptions.params.label'),
2472
+ label: '参数赋值',
2473
2473
  type: 'ApiRequestSetParams',
2474
2474
  props: {
2475
2475
  titleLink: [{
2476
- title: localeKey('loadMoreRequest.todoOptions.params.props.titleLink.0.title'),
2476
+ title: '清空赋值',
2477
2477
  value: 'cleanValue',
2478
2478
  optionKey: 'apiRequestSetParams'
2479
2479
  }]
2480
2480
  }
2481
2481
  }, {
2482
2482
  key: 'pageNum',
2483
- label: localeKey('loadMoreRequest.todoOptions.pageNum.label'),
2483
+ label: '页码字段名',
2484
2484
  type: 'SetExpression',
2485
2485
  aliasKey: 'aliasPageNum'
2486
2486
  }],
@@ -2494,16 +2494,16 @@ var todoActionObject = {
2494
2494
  },
2495
2495
  loadMoreDataSource: {
2496
2496
  key: 'loadMoreDataSource',
2497
- label: localeKey('loadMoreDataSource.label'),
2497
+ label: '加载数据源',
2498
2498
  todoOptions: [{
2499
2499
  key: 'total',
2500
2500
  aliasKey: 'loadMoreTotal',
2501
- label: localeKey('loadMoreDataSource.todoOptions.total.label'),
2501
+ label: '总条数',
2502
2502
  type: 'SetExpression'
2503
2503
  }, {
2504
2504
  key: 'data',
2505
2505
  aliasKey: 'loadMoreData',
2506
- label: localeKey('loadMoreDataSource.todoOptions.data.label'),
2506
+ label: '数据源',
2507
2507
  type: 'SetExpression'
2508
2508
  }]
2509
2509
  },
@@ -2524,7 +2524,7 @@ var todoActionObject = {
2524
2524
  },
2525
2525
  dFormGetFieldsValue: {
2526
2526
  key: 'dFormGetFieldsValue',
2527
- label: localeKey('dFormGetFieldsValue.label'),
2527
+ label: '获取表单值',
2528
2528
  todoCallbacks: [{
2529
2529
  key: 'callback1',
2530
2530
  getFields: function getFields(kv, ctx) {
@@ -2542,14 +2542,14 @@ var todoActionObject = {
2542
2542
  label: localeKey('dFormAllDisabled.label'),
2543
2543
  todoOptions: [{
2544
2544
  key: 'editor',
2545
- label: localeKey('dFormAllDisabled.todoOptions.editor.label'),
2545
+ label: '是否可编辑',
2546
2546
  type: 'Select',
2547
2547
  props: {
2548
2548
  options: [{
2549
- title: localeKey('dFormAllDisabled.todoOptions.editor.props.options.0.title'),
2549
+ title: '',
2550
2550
  value: false
2551
2551
  }, {
2552
- title: localeKey('dFormAllDisabled.todoOptions.editor.props.options.1.title'),
2552
+ title: '',
2553
2553
  value: true
2554
2554
  }]
2555
2555
  }
@@ -2559,10 +2559,10 @@ var todoActionObject = {
2559
2559
  // 废弃,禁止使用
2560
2560
  setCompChildrenValue: {
2561
2561
  key: 'setCompChildrenValue',
2562
- label: localeKey('setCompChildrenValue.label'),
2562
+ label: '赋值',
2563
2563
  todoOptions: [{
2564
2564
  key: 'value',
2565
- label: localeKey('setCompChildrenValue.todoOptions.value.label'),
2565
+ label: '内容',
2566
2566
  type: 'SetExpression'
2567
2567
  }],
2568
2568
  todoCallbacks: ['callback1'],
@@ -2571,10 +2571,10 @@ var todoActionObject = {
2571
2571
  // 废弃,禁止使用
2572
2572
  setCompContentValue: {
2573
2573
  key: 'setCompContentValue',
2574
- label: localeKey('setCompContentValue.label'),
2574
+ label: '设置内容',
2575
2575
  todoOptions: [{
2576
2576
  key: 'value',
2577
- label: localeKey('setCompContentValue.todoOptions.value.label'),
2577
+ label: '内容',
2578
2578
  type: 'SetExpression'
2579
2579
  }],
2580
2580
  todoCallbacks: ['callback1'],
@@ -2585,14 +2585,14 @@ var todoActionObject = {
2585
2585
  label: localeKey('setPageSrc.label'),
2586
2586
  todoOptions: [{
2587
2587
  key: 'pathname',
2588
- label: localeKey('setPageSrc.todoOptions.pathname.label'),
2588
+ label: '页面',
2589
2589
  type: 'SelectPage'
2590
2590
  }, {
2591
2591
  key: 'componentState',
2592
- label: localeKey('setPageSrc.todoOptions.componentState.label'),
2592
+ label: '组件状态',
2593
2593
  type: 'ComponentState',
2594
2594
  extraGroups: [{
2595
- subLabel: localeKey('setPageSrc.todoOptions.componentState.extraGroups.0.subLabel'),
2595
+ subLabel: '组件刷新',
2596
2596
  subClickFunName: 'refreshCompsStateData'
2597
2597
  }]
2598
2598
  }]
@@ -2602,24 +2602,24 @@ var todoActionObject = {
2602
2602
  label: localeKey('setSrc.label'),
2603
2603
  todoOptions: [{
2604
2604
  key: 'value',
2605
- label: localeKey('setSrc.todoOptions.value.label'),
2605
+ label: '内容',
2606
2606
  type: 'SetExpression'
2607
2607
  }],
2608
2608
  todoCallbacks: ['callback1']
2609
2609
  },
2610
2610
  setRangeValue: {
2611
2611
  key: 'setRangeValue',
2612
- label: localeKey('setRangeValue.label'),
2612
+ label: '设置时间段',
2613
2613
  todoOptions: [{
2614
2614
  key: 'startVal',
2615
- label: localeKey('setRangeValue.todoOptions.startVal.label'),
2615
+ label: '开始值',
2616
2616
  type: 'SetExpression',
2617
2617
  props: {
2618
2618
  placeholder: localeKey('setRangeValue.todoOptions.startVal.props.placeholder')
2619
2619
  }
2620
2620
  }, {
2621
2621
  key: 'endVal',
2622
- label: localeKey('setRangeValue.todoOptions.endVal.label'),
2622
+ label: '结束值',
2623
2623
  type: 'SetExpression',
2624
2624
  props: {
2625
2625
  placeholder: localeKey('setRangeValue.todoOptions.endVal.props.placeholder')
@@ -2629,25 +2629,25 @@ var todoActionObject = {
2629
2629
  },
2630
2630
  pushScenePage: {
2631
2631
  key: 'pushScenePage',
2632
- label: localeKey('pushScenePage.label'),
2632
+ label: '跳转到场景',
2633
2633
  todoOptions: [{
2634
2634
  key: 'scene',
2635
2635
  aliasKey: 'selectScene',
2636
- label: localeKey('pushScenePage.todoOptions.scene.label'),
2636
+ label: '选择场景',
2637
2637
  type: 'SelectScene'
2638
2638
  }],
2639
2639
  classification: [{
2640
- label: localeKey('pushScenePage.classification.0.label'),
2640
+ label: '场景类',
2641
2641
  value: 'scene'
2642
2642
  }],
2643
2643
  hidden: true
2644
2644
  },
2645
2645
  reloadDataSource: {
2646
2646
  key: 'reloadDataSource',
2647
- label: localeKey('reloadDataSource.label'),
2647
+ label: '刷新数据源',
2648
2648
  todoOptions: [{
2649
2649
  key: 'selectServerDataSource',
2650
- label: localeKey('reloadDataSource.todoOptions.selectServerDataSource.label'),
2650
+ label: '选择数据源',
2651
2651
  props: {
2652
2652
  isRequired: true,
2653
2653
  valuePropName: 'dataSourceName',
@@ -2664,30 +2664,30 @@ var todoActionObject = {
2664
2664
  defaultValue: false,
2665
2665
  props: {
2666
2666
  options: [{
2667
- title: localeKey('reloadDataSource.todoOptions.sync.props.options.0.title'),
2667
+ title: '异步加载',
2668
2668
  value: false
2669
2669
  }, {
2670
- title: localeKey('reloadDataSource.todoOptions.sync.props.options.1.title'),
2670
+ title: '同步加载',
2671
2671
  value: true
2672
2672
  }]
2673
2673
  }
2674
2674
  }, {
2675
2675
  key: 'dataSourceReloadFilter',
2676
- label: localeKey('reloadDataSource.todoOptions.dataSourceReloadFilter.label'),
2676
+ label: '数据源赋值',
2677
2677
  type: 'dataSourceReloadFilter',
2678
2678
  props: {
2679
2679
  titleLink: [{
2680
- title: localeKey('reloadDataSource.todoOptions.dataSourceReloadFilter.props.titleLink.0.title'),
2680
+ title: '清空赋值',
2681
2681
  value: 'cleanValue'
2682
2682
  }]
2683
2683
  }
2684
2684
  }],
2685
2685
  todoCallbacks: ['callback1', 'callback2'],
2686
2686
  classification: [{
2687
- label: localeKey('reloadDataSource.classification.0.label'),
2687
+ label: '常用',
2688
2688
  value: 'common'
2689
2689
  }, {
2690
- label: localeKey('reloadDataSource.classification.1.label'),
2690
+ label: '数据源',
2691
2691
  value: 'dataSource'
2692
2692
  }],
2693
2693
  isAsync: true
@@ -2697,7 +2697,7 @@ var todoActionObject = {
2697
2697
  label: localeKey('setDataSource.label'),
2698
2698
  todoOptions: [{
2699
2699
  key: 'selectAllDataSource',
2700
- label: localeKey('setDataSource.todoOptions.selectAllDataSource.label'),
2700
+ label: '选择数据源',
2701
2701
  type: 'SelectAllDataSource',
2702
2702
  props: {
2703
2703
  isRequired: true,
@@ -2710,34 +2710,34 @@ var todoActionObject = {
2710
2710
  }
2711
2711
  }, {
2712
2712
  key: 'dataSourceSetValue',
2713
- label: localeKey('setDataSource.todoOptions.dataSourceSetValue.label'),
2713
+ label: '数据源赋值',
2714
2714
  type: 'dataSourceSetValue',
2715
2715
  props: {
2716
2716
  titleLink: [{
2717
- title: localeKey('setDataSource.todoOptions.dataSourceSetValue.props.titleLink.0.title'),
2717
+ title: '清空赋值',
2718
2718
  value: 'cleanValue'
2719
2719
  }]
2720
2720
  }
2721
2721
  }, {
2722
2722
  key: 'onlySetPatch',
2723
- label: localeKey('setDataSource.todoOptions.onlySetPatch.label'),
2723
+ label: '赋值范围',
2724
2724
  type: 'Radio',
2725
2725
  props: {
2726
2726
  options: [{
2727
- title: localeKey('setDataSource.todoOptions.onlySetPatch.props.options.0.title'),
2727
+ title: '局部赋值',
2728
2728
  value: true
2729
2729
  }, {
2730
- title: localeKey('setDataSource.todoOptions.onlySetPatch.props.options.1.title'),
2730
+ title: '全部赋值',
2731
2731
  value: false
2732
2732
  }]
2733
2733
  }
2734
2734
  }],
2735
2735
  todoCallbacks: ['callback1', 'callback2'],
2736
2736
  classification: [{
2737
- label: localeKey('setDataSource.classification.0.label'),
2737
+ label: '常用',
2738
2738
  value: 'common'
2739
2739
  }, {
2740
- label: localeKey('setDataSource.classification.1.label'),
2740
+ label: '数据源',
2741
2741
  value: 'dataSource'
2742
2742
  }],
2743
2743
  initClose: true
@@ -2747,7 +2747,7 @@ var todoActionObject = {
2747
2747
  label: localeKey('resetDataSource.label'),
2748
2748
  todoOptions: [{
2749
2749
  key: 'selectAllDataSource',
2750
- label: localeKey('resetDataSource.todoOptions.selectAllDataSource.label'),
2750
+ label: '选择数据源',
2751
2751
  type: 'SelectAllDataSource',
2752
2752
  props: {
2753
2753
  isRequired: true,
@@ -2761,10 +2761,10 @@ var todoActionObject = {
2761
2761
  }],
2762
2762
  todoCallbacks: ['callback1', 'callback2'],
2763
2763
  classification: [{
2764
- label: localeKey('resetDataSource.classification.0.label'),
2764
+ label: '常用',
2765
2765
  value: 'common'
2766
2766
  }, {
2767
- label: localeKey('resetDataSource.classification.1.label'),
2767
+ label: '数据源',
2768
2768
  value: 'dataSource'
2769
2769
  }]
2770
2770
  },
@@ -2773,11 +2773,11 @@ var todoActionObject = {
2773
2773
  label: localeKey('sendMessageIframe.label'),
2774
2774
  todoOptions: [{
2775
2775
  key: 'value',
2776
- label: localeKey('sendMessageIframe.todoOptions.value.label'),
2776
+ label: '内容',
2777
2777
  type: 'SetExpression'
2778
2778
  }],
2779
2779
  remarks: [{
2780
- label: localeKey('sendMessageIframe.remarks.0.label'),
2780
+ label: '适用场景',
2781
2781
  content: localeKey('sendMessageIframe.remarks.0.content')
2782
2782
  }]
2783
2783
  },
@@ -2791,10 +2791,10 @@ var todoActionObject = {
2791
2791
  defaultValue: false,
2792
2792
  props: {
2793
2793
  options: [{
2794
- title: localeKey('postObjectData.todoOptions.sync.props.options.0.title'),
2794
+ title: '异步加载',
2795
2795
  value: false
2796
2796
  }, {
2797
- title: localeKey('postObjectData.todoOptions.sync.props.options.1.title'),
2797
+ title: '同步加载',
2798
2798
  value: true
2799
2799
  }]
2800
2800
  }
@@ -2812,10 +2812,10 @@ var todoActionObject = {
2812
2812
  type: 'Select',
2813
2813
  props: {
2814
2814
  options: [{
2815
- title: localeKey('postObjectData.todoOptions.hasEventExtService.props.options.0.title'),
2815
+ title: '',
2816
2816
  value: 'T'
2817
2817
  }, {
2818
- title: localeKey('postObjectData.todoOptions.hasEventExtService.props.options.1.title'),
2818
+ title: '',
2819
2819
  value: 'F'
2820
2820
  }]
2821
2821
  }
@@ -2833,18 +2833,18 @@ var todoActionObject = {
2833
2833
  key: 'callback2'
2834
2834
  }],
2835
2835
  classification: [{
2836
- label: localeKey('postObjectData.classification.0.label'),
2836
+ label: '常用',
2837
2837
  value: 'common'
2838
2838
  }, {
2839
- label: localeKey('postObjectData.classification.1.label'),
2839
+ label: '服务请求类',
2840
2840
  value: 'request'
2841
2841
  }],
2842
2842
  isAsync: true,
2843
2843
  remarks: [{
2844
- label: localeKey('postObjectData.remarks.0.label'),
2844
+ label: '适用场景',
2845
2845
  content: localeKey('postObjectData.remarks.0.content')
2846
2846
  }, {
2847
- label: localeKey('postObjectData.remarks.1.label'),
2847
+ label: '配置说明',
2848
2848
  content: localeKey('postObjectData.remarks.1.content')
2849
2849
  }]
2850
2850
  },
@@ -2853,15 +2853,15 @@ var todoActionObject = {
2853
2853
  label: localeKey('postParentMessage.label'),
2854
2854
  todoOptions: [{
2855
2855
  key: 'iframeData',
2856
- label: localeKey('postParentMessage.todoOptions.iframeData.label'),
2856
+ label: '发送内容',
2857
2857
  type: 'SetExpression'
2858
2858
  }, {
2859
2859
  key: 'iframeOrigin',
2860
- label: localeKey('postParentMessage.todoOptions.iframeOrigin.label'),
2860
+ label: '发送目标源',
2861
2861
  type: 'SetExpression'
2862
2862
  }],
2863
2863
  classification: [{
2864
- label: localeKey('postParentMessage.classification.communicate.label'),
2864
+ label: '数据通信',
2865
2865
  value: 'communicate'
2866
2866
  }]
2867
2867
  },
@@ -2870,12 +2870,12 @@ var todoActionObject = {
2870
2870
  label: localeKey('callFuncComp.label'),
2871
2871
  todoOptions: [{
2872
2872
  key: 'selectCompFunc',
2873
- label: localeKey('callFuncComp.todoOptions.selectCompFunc.label'),
2873
+ label: '方法',
2874
2874
  type: 'SelectCompFunc'
2875
2875
  }, {
2876
2876
  key: 'uploadProps',
2877
2877
  aliasKey: 'setCompParams',
2878
- label: localeKey('callFuncComp.todoOptions.uploadProps.label'),
2878
+ label: '参数',
2879
2879
  type: 'SetCompParams'
2880
2880
  }],
2881
2881
  todoCallbacks: [{
@@ -2898,7 +2898,7 @@ var todoActionObject = {
2898
2898
  key: 'callback2'
2899
2899
  }],
2900
2900
  classification: [{
2901
- label: localeKey('callFuncComp.classification.communicate.label'),
2901
+ label: '数据通信',
2902
2902
  value: 'communicate'
2903
2903
  }],
2904
2904
  hidden: true
@@ -2916,7 +2916,7 @@ var todoActionObject = {
2916
2916
  }]
2917
2917
  }],
2918
2918
  classification: [{
2919
- label: localeKey('addEventListenerParentMessage.classification.communicate.label'),
2919
+ label: '数据通信',
2920
2920
  value: 'communicate'
2921
2921
  }],
2922
2922
  isAsync: true
@@ -2936,7 +2936,7 @@ var todoActionObject = {
2936
2936
  todoOptions: [{
2937
2937
  key: 'data',
2938
2938
  aliasKey: 'dataSource',
2939
- label: localeKey('setSubTabsData.todoOptions.data.label'),
2939
+ label: '内容',
2940
2940
  type: 'SetExpression'
2941
2941
  }],
2942
2942
  todoCallbacks: ['callback1']
@@ -2946,7 +2946,7 @@ var todoActionObject = {
2946
2946
  label: localeKey('setTabsData.label'),
2947
2947
  todoOptions: [{
2948
2948
  key: 'data',
2949
- label: localeKey('setTabsData.todoOptions.data.label'),
2949
+ label: '内容',
2950
2950
  type: 'SetExpression'
2951
2951
  }, {
2952
2952
  key: 'key',
@@ -2954,22 +2954,22 @@ var todoActionObject = {
2954
2954
  type: 'SetExpression'
2955
2955
  }, {
2956
2956
  key: 'title',
2957
- label: localeKey('setTabsData.todoOptions.title.label'),
2957
+ label: '标题字段',
2958
2958
  type: 'SetExpression'
2959
2959
  }, {
2960
2960
  key: 'status',
2961
- label: localeKey('setTabsData.todoOptions.status.label'),
2961
+ label: '状态字段',
2962
2962
  type: 'SetExpression'
2963
2963
  }, {
2964
2964
  key: 'badge',
2965
- label: localeKey('setTabsData.todoOptions.badge.label'),
2965
+ label: '角标值字段',
2966
2966
  type: 'SetExpression'
2967
2967
  }],
2968
2968
  remarks: [{
2969
- label: localeKey('setTabsData.remarks.0.label'),
2969
+ label: '适用场景',
2970
2970
  content: localeKey('setTabsData.remarks.0.content')
2971
2971
  }, {
2972
- label: localeKey('setTabsData.remarks.1.label'),
2972
+ label: '配置说明',
2973
2973
  content: localeKey('setTabsData.remarks.1.content')
2974
2974
  }],
2975
2975
  todoCallbacks: ['callback1'],
@@ -2980,16 +2980,16 @@ var todoActionObject = {
2980
2980
  label: localeKey('setHref.label'),
2981
2981
  todoOptions: [{
2982
2982
  key: 'value',
2983
- label: localeKey('setHref.todoOptions.value.label'),
2983
+ label: '内容',
2984
2984
  type: 'SetExpression'
2985
2985
  }] // 后续废除,请使用setSrc
2986
2986
  },
2987
2987
  setData: {
2988
2988
  key: 'setData',
2989
- label: localeKey('setData.label'),
2989
+ label: '设置数据',
2990
2990
  todoOptions: [{
2991
2991
  key: 'value',
2992
- label: localeKey('setData.todoOptions.value.label'),
2992
+ label: '内容',
2993
2993
  type: 'SetExpression'
2994
2994
  }],
2995
2995
  todoCallbacks: ['callback1']
@@ -2999,20 +2999,20 @@ var todoActionObject = {
2999
2999
  label: localeKey('callFishParentFunc.label'),
3000
3000
  todoOptions: [{
3001
3001
  key: 'funcName',
3002
- label: localeKey('callFishParentFunc.todoOptions.funcName.label'),
3002
+ label: '函数名称',
3003
3003
  type: 'Input'
3004
3004
  }, {
3005
3005
  key: 'funcParams',
3006
- label: localeKey('callFishParentFunc.todoOptions.funcParams.label'),
3006
+ label: '自定义入参',
3007
3007
  type: 'SetExpressionByArray'
3008
3008
  }],
3009
3009
  todoCallbacks: ['callback1', 'callback2'],
3010
3010
  classification: [{
3011
- label: localeKey('callFishParentFunc.classification.communicate.label'),
3011
+ label: '数据通信',
3012
3012
  value: 'communicate'
3013
3013
  }],
3014
3014
  remarks: [{
3015
- label: localeKey('callFishParentFunc.remarks.0.label'),
3015
+ label: '注意事项',
3016
3016
  content: localeKey('callFishParentFunc.remarks.0.content')
3017
3017
  }],
3018
3018
  isAsync: true
@@ -3022,24 +3022,24 @@ var todoActionObject = {
3022
3022
  label: localeKey('callSelfFunc.label'),
3023
3023
  todoOptions: [{
3024
3024
  key: 'customFuncName',
3025
- label: localeKey('callSelfFunc.todoOptions.customFuncName.label'),
3025
+ label: '自定义事件',
3026
3026
  type: 'SelectCustomFunc'
3027
3027
  }, {
3028
3028
  key: 'customFuncParams',
3029
- label: localeKey('callSelfFunc.todoOptions.customFuncParams.label'),
3029
+ label: '事件入参',
3030
3030
  type: 'SelectLink',
3031
3031
  defaultValue: 'object',
3032
3032
  props: {
3033
3033
  titleLink: [{
3034
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3034
+ title: '切换到属性',
3035
3035
  value: 'object',
3036
3036
  key: 'object'
3037
3037
  }, {
3038
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3038
+ title: '切换根节点',
3039
3039
  value: '',
3040
3040
  key: 'root'
3041
3041
  }, {
3042
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3042
+ title: '清空赋值',
3043
3043
  value: 'cleanValue',
3044
3044
  key: 'cleanValue'
3045
3045
  }],
@@ -3058,7 +3058,7 @@ var todoActionObject = {
3058
3058
  key: 'callback2'
3059
3059
  }],
3060
3060
  classification: [{
3061
- label: localeKey('callSelfFunc.classification.communicate.label'),
3061
+ label: '数据通信',
3062
3062
  value: 'communicate'
3063
3063
  }],
3064
3064
  isAsync: true
@@ -3068,35 +3068,35 @@ var todoActionObject = {
3068
3068
  label: localeKey('callParentCustomFunc.label'),
3069
3069
  todoOptions: [{
3070
3070
  key: 'pathname',
3071
- label: localeKey('callParentCustomFunc.todoOptions.pathname.label'),
3071
+ label: '页面',
3072
3072
  type: 'SelectPage'
3073
3073
  }, {
3074
3074
  key: 'customFuncName',
3075
- label: localeKey('callParentCustomFunc.todoOptions.customFuncName.label'),
3075
+ label: '自定义事件',
3076
3076
  type: 'SelectCustomFunc',
3077
3077
  props: {
3078
3078
  titleLink: [{
3079
- title: localeKey('callParentCustomFunc.todoOptions.customFuncName.props.titleLink.0.title'),
3079
+ title: '刷新',
3080
3080
  value: 'refresh',
3081
3081
  key: 'refresh'
3082
3082
  }]
3083
3083
  }
3084
3084
  }, {
3085
3085
  key: 'customFuncParams',
3086
- label: localeKey('callParentCustomFunc.todoOptions.customFuncParams.label'),
3086
+ label: '事件入参',
3087
3087
  type: 'SelectLink',
3088
3088
  defaultValue: 'object',
3089
3089
  props: {
3090
3090
  titleLink: [{
3091
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3091
+ title: '切换到属性',
3092
3092
  value: 'object',
3093
3093
  key: 'object'
3094
3094
  }, {
3095
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3095
+ title: '切换根节点',
3096
3096
  value: '',
3097
3097
  key: 'root'
3098
3098
  }, {
3099
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3099
+ title: '清空赋值',
3100
3100
  value: 'cleanValue',
3101
3101
  key: 'cleanValue'
3102
3102
  }],
@@ -3115,12 +3115,12 @@ var todoActionObject = {
3115
3115
  key: 'callback2'
3116
3116
  }],
3117
3117
  classification: [{
3118
- label: localeKey('callParentCustomFunc.classification.communicate.label'),
3118
+ label: '数据通信',
3119
3119
  value: 'communicate'
3120
3120
  }],
3121
3121
  isAsync: true,
3122
3122
  remarks: [{
3123
- label: localeKey('callParentCustomFunc.remarks.0.label'),
3123
+ label: '适用场景',
3124
3124
  content: localeKey('callParentCustomFunc.remarks.0.content')
3125
3125
  }]
3126
3126
  },
@@ -3129,7 +3129,7 @@ var todoActionObject = {
3129
3129
  label: localeKey('callCustomPageFunc.label'),
3130
3130
  todoOptions: [{
3131
3131
  key: 'actionTitle',
3132
- label: localeKey('callCustomPageFunc.todoOptions.actionTitle.label'),
3132
+ label: '动作说明',
3133
3133
  type: 'CustomActionTitle',
3134
3134
  props: {
3135
3135
  placeholder: localeKey('callCustomPageFunc.todoOptions.actionTitle.props.placeholder'),
@@ -3138,35 +3138,35 @@ var todoActionObject = {
3138
3138
  }
3139
3139
  }, {
3140
3140
  key: 'pathname',
3141
- label: localeKey('callCustomPageFunc.todoOptions.pathname.label'),
3141
+ label: '页面',
3142
3142
  type: 'SelectPage'
3143
3143
  }, {
3144
3144
  key: 'customFuncName',
3145
- label: localeKey('callCustomPageFunc.todoOptions.customFuncName.label'),
3145
+ label: '自定义事件',
3146
3146
  type: 'SelectCustomFunc',
3147
3147
  props: {
3148
3148
  titleLink: [{
3149
- label: localeKey('callCustomPageFunc.todoOptions.customFuncName.props.titleLink.0.title'),
3149
+ label: '刷新',
3150
3150
  value: 'refresh',
3151
3151
  key: 'refresh'
3152
3152
  }]
3153
3153
  }
3154
3154
  }, {
3155
3155
  key: 'customFuncParams',
3156
- label: localeKey('callCustomPageFunc.todoOptions.customFuncParams.label'),
3156
+ label: '事件入参',
3157
3157
  type: 'SelectLink',
3158
3158
  defaultValue: 'object',
3159
3159
  props: {
3160
3160
  titleLink: [{
3161
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3161
+ title: '切换到属性',
3162
3162
  value: 'object',
3163
3163
  key: 'object'
3164
3164
  }, {
3165
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3165
+ title: '切换根节点',
3166
3166
  value: '',
3167
3167
  key: 'root'
3168
3168
  }, {
3169
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3169
+ title: '清空赋值',
3170
3170
  value: 'cleanValue',
3171
3171
  key: 'cleanValue'
3172
3172
  }],
@@ -3185,11 +3185,11 @@ var todoActionObject = {
3185
3185
  key: 'callback2'
3186
3186
  }],
3187
3187
  classification: [{
3188
- label: localeKey('callCustomPageFunc.classification.communicate.label'),
3188
+ label: '数据通信',
3189
3189
  value: 'communicate'
3190
3190
  }],
3191
3191
  remarks: [{
3192
- label: localeKey('callCustomPageFunc.remarks.0.label'),
3192
+ label: '注意事项',
3193
3193
  content: localeKey('callCustomPageFunc.remarks.0.content')
3194
3194
  }],
3195
3195
  isAsync: true
@@ -3219,35 +3219,35 @@ var todoActionObject = {
3219
3219
  visibleFlagValue: [true]
3220
3220
  }, {
3221
3221
  key: 'async',
3222
- label: localeKey('exportBusiObjectData.todoOptions.async.label'),
3222
+ label: '异步导出',
3223
3223
  type: 'RadioButton',
3224
3224
  labelTip: localeKey('exportBusiObjectData.todoOptions.async.labelTip'),
3225
3225
  defaultValue: 'sync',
3226
3226
  props: {
3227
3227
  options: [{
3228
- title: localeKey('exportBusiObjectData.todoOptions.async.props.options.0.title'),
3228
+ title: '开启',
3229
3229
  value: 'async'
3230
3230
  }, {
3231
- title: localeKey('exportBusiObjectData.todoOptions.async.props.options.1.title'),
3231
+ title: '关闭',
3232
3232
  value: 'sync'
3233
3233
  }]
3234
3234
  }
3235
3235
  }, {
3236
3236
  key: 'busiObjectFilterParams',
3237
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.label'),
3237
+ label: '导出条件',
3238
3238
  type: 'ExportParamFields',
3239
3239
  props: {
3240
3240
  isFetch: true
3241
3241
  },
3242
3242
  extraMenus: [{
3243
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.0.label'),
3243
+ label: '查询条件',
3244
3244
  value: 'normal'
3245
3245
  }, {
3246
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.1.label'),
3246
+ label: '行主键',
3247
3247
  value: 'primaryValues'
3248
3248
  }],
3249
3249
  extraGroups: [{
3250
- subLabel: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3250
+ subLabel: '清空赋值',
3251
3251
  subClickFunName: 'cleanValue'
3252
3252
  }]
3253
3253
  }, {
@@ -3261,7 +3261,7 @@ var todoActionObject = {
3261
3261
  }],
3262
3262
  todoCallbacks: ['callback1', 'callback2'],
3263
3263
  classification: [{
3264
- label: localeKey('exportBusiObjectData.classification.export.label'),
3264
+ label: '导入导出',
3265
3265
  value: 'export'
3266
3266
  }]
3267
3267
  },
@@ -3278,16 +3278,16 @@ var todoActionObject = {
3278
3278
  }
3279
3279
  }, {
3280
3280
  key: 'async',
3281
- label: localeKey('exportCustomData.todoOptions.async.label'),
3281
+ label: '异步导出',
3282
3282
  type: 'RadioButton',
3283
3283
  labelTip: localeKey('exportCustomData.todoOptions.async.labelTip'),
3284
3284
  defaultValue: 'sync',
3285
3285
  props: {
3286
3286
  options: [{
3287
- title: localeKey('exportCustomData.todoOptions.async.props.options.0.title'),
3287
+ title: '开启',
3288
3288
  value: 'async'
3289
3289
  }, {
3290
- title: localeKey('exportCustomData.todoOptions.async.props.options.1.title'),
3290
+ title: '关闭',
3291
3291
  value: 'sync'
3292
3292
  }]
3293
3293
  }
@@ -3304,7 +3304,7 @@ var todoActionObject = {
3304
3304
  type: 'SetExpression'
3305
3305
  }, {
3306
3306
  key: 'serviceData',
3307
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.1.serviceData.label'),
3307
+ label: '数据来源',
3308
3308
  type: 'SelectCustomExportService',
3309
3309
  props: {
3310
3310
  isRequired: true,
@@ -3318,20 +3318,20 @@ var todoActionObject = {
3318
3318
  }, {
3319
3319
  // 入参
3320
3320
  key: 'filterParams',
3321
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.2.filterParams.label'),
3321
+ label: '查询条件',
3322
3322
  type: 'ApiRequestSetParams'
3323
3323
  }, {
3324
3324
  key: 'objectFields',
3325
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.label'),
3325
+ label: '导出字段',
3326
3326
  type: 'SelectServiceObjectFields',
3327
3327
  props: {
3328
3328
  isRequired: true,
3329
3329
  options: {
3330
3330
  fieldKey: 'serviceData',
3331
3331
  customKeyMap: {
3332
- fieldData: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.fieldData'),
3333
- attrCode: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.attrCode'),
3334
- attrName: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.attrName')
3332
+ fieldData: '字段数据',
3333
+ attrCode: '字段编码',
3334
+ attrName: '字段名称'
3335
3335
  }
3336
3336
  }
3337
3337
  }
@@ -3350,7 +3350,7 @@ var todoActionObject = {
3350
3350
  }],
3351
3351
  todoCallbacks: ['callback1', 'callback2'],
3352
3352
  classification: [{
3353
- label: localeKey('exportCustomData.classification.export.label'),
3353
+ label: '导入导出',
3354
3354
  value: 'export'
3355
3355
  }]
3356
3356
  },
@@ -3413,7 +3413,7 @@ var todoActionObject = {
3413
3413
  key: 'callback2'
3414
3414
  }],
3415
3415
  classification: [{
3416
- label: localeKey('importBusiObjectData.classification.export.label'),
3416
+ label: '导入导出',
3417
3417
  value: 'export'
3418
3418
  }],
3419
3419
  isAsync: true
@@ -3430,22 +3430,22 @@ var todoActionObject = {
3430
3430
  }
3431
3431
  }, {
3432
3432
  key: 'async',
3433
- label: localeKey('exportSQLServiceData.todoOptions.async.label'),
3433
+ label: '异步导出',
3434
3434
  type: 'RadioButton',
3435
3435
  labelTip: localeKey('exportSQLServiceData.todoOptions.async.labelTip'),
3436
3436
  defaultValue: 'sync',
3437
3437
  props: {
3438
3438
  options: [{
3439
- title: localeKey('exportSQLServiceData.todoOptions.async.props.options.0.title'),
3439
+ title: '开启',
3440
3440
  value: 'async'
3441
3441
  }, {
3442
- title: localeKey('exportSQLServiceData.todoOptions.async.props.options.1.title'),
3442
+ title: '关闭',
3443
3443
  value: 'sync'
3444
3444
  }]
3445
3445
  }
3446
3446
  }, {
3447
3447
  key: 'sqlServiceFields',
3448
- label: localeKey('exportSQLServiceData.todoOptions.sqlServiceFields.label'),
3448
+ label: '导出字段',
3449
3449
  type: 'SelectExportFields',
3450
3450
  props: {
3451
3451
  isRequired: true,
@@ -3457,11 +3457,11 @@ var todoActionObject = {
3457
3457
  }
3458
3458
  }, {
3459
3459
  key: 'busiObjectFilterParams',
3460
- label: localeKey('exportSQLServiceData.todoOptions.busiObjectFilterParams.label'),
3460
+ label: '查询条件',
3461
3461
  type: 'ExportParamFields',
3462
3462
  props: {},
3463
3463
  extraGroups: [{
3464
- subLabel: localeKey('exportSQLServiceData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3464
+ subLabel: '清空赋值',
3465
3465
  subClickFunName: 'cleanValue'
3466
3466
  }]
3467
3467
  }, {
@@ -3475,7 +3475,7 @@ var todoActionObject = {
3475
3475
  }],
3476
3476
  todoCallbacks: ['callback1', 'callback2'],
3477
3477
  classification: [{
3478
- label: localeKey('exportSQLServiceData.classification.export.label'),
3478
+ label: '导入导出',
3479
3479
  value: 'export'
3480
3480
  }]
3481
3481
  },
@@ -3519,7 +3519,7 @@ var todoActionObject = {
3519
3519
  valuePropName: 'busiObjectFields',
3520
3520
  titleLink: [{
3521
3521
  title: function title(dataOptions) {
3522
- return dataOptions !== null && dataOptions !== void 0 && dataOptions.allOpen ? localeKey('importCustomBusiObjectData.todoOptions.busiObjectFields.props.titleLink.0.title.collapse') : localeKey('importCustomBusiObjectData.todoOptions.busiObjectFields.props.titleLink.0.title.expand');
3522
+ return dataOptions !== null && dataOptions !== void 0 && dataOptions.allOpen ? '快速收起' : '快速展开';
3523
3523
  },
3524
3524
  value: 'allOpen'
3525
3525
  }]
@@ -3531,10 +3531,10 @@ var todoActionObject = {
3531
3531
  defaultValue: 'F',
3532
3532
  props: {
3533
3533
  options: [{
3534
- title: localeKey('importCustomBusiObjectData.todoOptions.showOnly.props.options.0.title'),
3534
+ title: '',
3535
3535
  value: 'T'
3536
3536
  }, {
3537
- title: localeKey('importCustomBusiObjectData.todoOptions.showOnly.props.options.1.title'),
3537
+ title: '',
3538
3538
  value: 'F'
3539
3539
  }]
3540
3540
  }
@@ -3576,7 +3576,7 @@ var todoActionObject = {
3576
3576
  key: 'callback2'
3577
3577
  }],
3578
3578
  classification: [{
3579
- label: localeKey('importCustomBusiObjectData.classification.export.label'),
3579
+ label: '导入导出',
3580
3580
  value: 'export'
3581
3581
  }],
3582
3582
  isAsync: true
@@ -3606,22 +3606,22 @@ var todoActionObject = {
3606
3606
  visibleFlagValue: [true]
3607
3607
  }, {
3608
3608
  key: 'async',
3609
- label: localeKey('exportCustomBusiObjectData.todoOptions.async.label'),
3609
+ label: '异步导出',
3610
3610
  type: 'RadioButton',
3611
3611
  labelTip: localeKey('exportCustomBusiObjectData.todoOptions.async.labelTip'),
3612
3612
  defaultValue: 'sync',
3613
3613
  props: {
3614
3614
  options: [{
3615
- title: localeKey('exportCustomBusiObjectData.todoOptions.async.props.options.0.title'),
3615
+ title: '开启',
3616
3616
  value: 'async'
3617
3617
  }, {
3618
- title: localeKey('exportCustomBusiObjectData.todoOptions.async.props.options.1.title'),
3618
+ title: '关闭',
3619
3619
  value: 'sync'
3620
3620
  }]
3621
3621
  }
3622
3622
  }, {
3623
3623
  key: 'busiObjectFields',
3624
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFields.label'),
3624
+ label: '导出字段',
3625
3625
  type: 'SelectExportFields',
3626
3626
  props: {
3627
3627
  isRequired: true,
@@ -3632,18 +3632,18 @@ var todoActionObject = {
3632
3632
  }
3633
3633
  }, {
3634
3634
  key: 'busiObjectFilterParams',
3635
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.label'),
3635
+ label: '查询条件',
3636
3636
  type: 'ExportParamFields',
3637
3637
  props: {},
3638
3638
  extraMenus: [{
3639
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.0.label'),
3639
+ label: '查询条件',
3640
3640
  value: 'normal'
3641
3641
  }, {
3642
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.1.label'),
3642
+ label: '行主键',
3643
3643
  value: 'primaryValues'
3644
3644
  }],
3645
3645
  extraGroups: [{
3646
- subLabel: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3646
+ subLabel: '清空赋值',
3647
3647
  subClickFunName: 'cleanValue'
3648
3648
  }]
3649
3649
  }, {
@@ -3657,17 +3657,17 @@ var todoActionObject = {
3657
3657
  }],
3658
3658
  todoCallbacks: ['callback1', 'callback2'],
3659
3659
  classification: [{
3660
- label: localeKey('exportCustomBusiObjectData.classification.export.label'),
3660
+ label: '导入导出',
3661
3661
  value: 'export'
3662
3662
  }]
3663
3663
  },
3664
3664
  exportPage: {
3665
3665
  key: 'exportPage',
3666
- label: localeKey('exportPage.label'),
3666
+ label: '页面导出',
3667
3667
  todoOptions: [{
3668
3668
  key: 'fileName',
3669
3669
  aliasKey: 'expFileName',
3670
- label: localeKey('exportPage.todoOptions.fileName.label'),
3670
+ label: '文件名',
3671
3671
  type: 'Input',
3672
3672
  props: {
3673
3673
  placeholder: localeKey('exportPage.todoOptions.fileName.props.placeholder')
@@ -3675,21 +3675,21 @@ var todoActionObject = {
3675
3675
  }, {
3676
3676
  key: 'type',
3677
3677
  aliasKey: 'expType',
3678
- label: localeKey('exportPage.todoOptions.type.label'),
3678
+ label: '类型',
3679
3679
  type: 'Select',
3680
3680
  props: {
3681
3681
  options: [{
3682
3682
  title: 'PDF',
3683
3683
  value: 'pdf'
3684
3684
  }, {
3685
- title: localeKey('exportPage.todoOptions.type.props.options.1.title'),
3685
+ title: '图片',
3686
3686
  value: 'png'
3687
3687
  }]
3688
3688
  }
3689
3689
  }],
3690
3690
  todoCallbacks: ['callback1', 'callback2'],
3691
3691
  classification: [{
3692
- label: localeKey('exportPage.classification.export.label'),
3692
+ label: '导入导出',
3693
3693
  value: 'export'
3694
3694
  }]
3695
3695
  },
@@ -3698,7 +3698,7 @@ var todoActionObject = {
3698
3698
  label: localeKey('importCustomData.label'),
3699
3699
  todoOptions: [{
3700
3700
  key: 'custUrl',
3701
- label: localeKey('importCustomData.todoOptions.custUrl.label'),
3701
+ label: '导入服务',
3702
3702
  type: 'SelectCustomExportService',
3703
3703
  props: {
3704
3704
  isRequired: true,
@@ -3730,7 +3730,7 @@ var todoActionObject = {
3730
3730
  type: 'UploadFile'
3731
3731
  }, {
3732
3732
  key: 'custParams',
3733
- label: localeKey('importCustomData.todoOptions.custParams.label'),
3733
+ label: '自定义参数',
3734
3734
  type: 'SetCustomParams'
3735
3735
  }, {
3736
3736
  key: 'custTplUrl',
@@ -3754,27 +3754,27 @@ var todoActionObject = {
3754
3754
  key: 'callback2'
3755
3755
  }],
3756
3756
  classification: [{
3757
- label: localeKey('importCustomData.classification.export.label'),
3757
+ label: '导入导出',
3758
3758
  value: 'export'
3759
3759
  }],
3760
3760
  isAsync: true
3761
3761
  },
3762
3762
  previewFile: {
3763
3763
  key: 'previewFile',
3764
- label: localeKey('previewFile.label'),
3764
+ label: '文件预览',
3765
3765
  todoOptions: [{
3766
3766
  key: 'fileId',
3767
3767
  label: localeKey('previewFile.todoOptions.fileId.label'),
3768
3768
  type: 'SetExpression'
3769
3769
  }],
3770
3770
  classification: [{
3771
- label: localeKey('previewFile.classification.page.label'),
3771
+ label: '页面类',
3772
3772
  value: 'page'
3773
3773
  }]
3774
3774
  },
3775
3775
  print: {
3776
3776
  key: 'print',
3777
- label: localeKey('print.label'),
3777
+ label: '页面打印',
3778
3778
  todoOptions: [{
3779
3779
  key: 'compToPrint',
3780
3780
  label: localeKey('print.todoOptions.compToPrint.label'),
@@ -3782,33 +3782,33 @@ var todoActionObject = {
3782
3782
  props: {
3783
3783
  selectType: 'free',
3784
3784
  titleLink: [{
3785
- title: localeKey('print.todoOptions.compToPrint.props.titleLink.0.title'),
3785
+ title: '清空已选',
3786
3786
  value: 'cleanValue'
3787
3787
  }]
3788
3788
  }
3789
3789
  }],
3790
3790
  classification: [{
3791
- label: localeKey('print.classification.page.label'),
3791
+ label: '页面类',
3792
3792
  value: 'page'
3793
3793
  }]
3794
3794
  },
3795
3795
  return: {
3796
3796
  key: 'return',
3797
- label: localeKey('return.label'),
3797
+ label: '退出事件',
3798
3798
  todoOptions: [{
3799
3799
  key: 'returnType',
3800
- label: localeKey('return.todoOptions.returnType.label'),
3800
+ label: '返回类型',
3801
3801
  type: 'RadioButton',
3802
3802
  labelTip: localeKey('return.todoOptions.returnType.labelTip'),
3803
3803
  props: {
3804
3804
  options: [{
3805
- title: localeKey('return.todoOptions.returnType.props.options.0.title'),
3805
+ title: '',
3806
3806
  value: 'value'
3807
3807
  }, {
3808
- title: localeKey('return.todoOptions.returnType.props.options.1.title'),
3808
+ title: '成功',
3809
3809
  value: 'success'
3810
3810
  }, {
3811
- title: localeKey('return.todoOptions.returnType.props.options.2.title'),
3811
+ title: '失败',
3812
3812
  value: 'failure'
3813
3813
  }]
3814
3814
  }
@@ -3822,10 +3822,10 @@ var todoActionObject = {
3822
3822
  type: 'Select',
3823
3823
  props: {
3824
3824
  options: [{
3825
- title: localeKey('return.todoOptions.isPreventDefault.props.options.0.title'),
3825
+ title: '',
3826
3826
  value: 'T'
3827
3827
  }, {
3828
- title: localeKey('return.todoOptions.isPreventDefault.props.options.1.title'),
3828
+ title: '',
3829
3829
  value: 'F'
3830
3830
  }]
3831
3831
  },
@@ -3837,16 +3837,16 @@ var todoActionObject = {
3837
3837
  labelTip: localeKey('return.todoOptions.isStopPropagation.labelTip'),
3838
3838
  props: {
3839
3839
  options: [{
3840
- title: localeKey('return.todoOptions.isStopPropagation.props.options.0.title'),
3840
+ title: '',
3841
3841
  value: 'T'
3842
3842
  }, {
3843
- title: localeKey('return.todoOptions.isStopPropagation.props.options.1.title'),
3843
+ title: '',
3844
3844
  value: 'F'
3845
3845
  }]
3846
3846
  }
3847
3847
  }],
3848
3848
  classification: [{
3849
- label: localeKey('return.classification.others.label'),
3849
+ label: '其他',
3850
3850
  value: 'others'
3851
3851
  }]
3852
3852
  },
@@ -3855,18 +3855,18 @@ var todoActionObject = {
3855
3855
  label: localeKey('copyToClipboard.label'),
3856
3856
  todoOptions: [{
3857
3857
  key: 'copyText',
3858
- label: localeKey('copyToClipboard.todoOptions.copyText.label'),
3858
+ label: '复制内容',
3859
3859
  type: 'SetExpression'
3860
3860
  }],
3861
3861
  todoCallbacks: ['callback1'],
3862
3862
  classification: [{
3863
- label: localeKey('copyToClipboard.classification.others.label'),
3863
+ label: '常用',
3864
3864
  value: 'others'
3865
3865
  }]
3866
3866
  },
3867
3867
  getBlockSelectValues: {
3868
3868
  key: 'getBlockSelectValues',
3869
- label: localeKey('getBlockSelectValues.label'),
3869
+ label: '获取选中项',
3870
3870
  todoCallbacks: [{
3871
3871
  key: 'callback1',
3872
3872
  fields: [{
@@ -3887,18 +3887,18 @@ var todoActionObject = {
3887
3887
  label: localeKey('setBlockSelectData.label'),
3888
3888
  todoOptions: [{
3889
3889
  key: 'value',
3890
- label: localeKey('setBlockSelectData.todoOptions.value.label'),
3890
+ label: '内容',
3891
3891
  type: 'SetExpression'
3892
3892
  }],
3893
3893
  todoCallbacks: ['callback1']
3894
3894
  },
3895
3895
  setBlockSelectSelectedData: {
3896
3896
  key: 'setBlockSelectSelectedData',
3897
- label: localeKey('setBlockSelectSelectedData.label'),
3897
+ label: '设置选中项',
3898
3898
  todoOptions: [{
3899
3899
  key: 'selectType',
3900
3900
  aliasKey: 'bsSelectType',
3901
- label: localeKey('setBlockSelectSelectedData.todoOptions.selectType.label'),
3901
+ label: '控制类型',
3902
3902
  type: 'RadioButton',
3903
3903
  defaultValue: 'id',
3904
3904
  props: {
@@ -3906,41 +3906,41 @@ var todoActionObject = {
3906
3906
  title: localeKey('setBlockSelectSelectedData.todoOptions.selectType.props.options.0.title'),
3907
3907
  value: 'id'
3908
3908
  }, {
3909
- title: localeKey('setBlockSelectSelectedData.todoOptions.selectType.props.options.1.title'),
3909
+ title: '循环项索引',
3910
3910
  value: 'index'
3911
3911
  }]
3912
3912
  }
3913
3913
  }, {
3914
3914
  key: 'value',
3915
- label: localeKey('setBlockSelectSelectedData.todoOptions.value.label'),
3915
+ label: '内容',
3916
3916
  type: 'SetExpression'
3917
3917
  }],
3918
3918
  todoCallbacks: ['callback1']
3919
3919
  },
3920
3920
  setBlockSelectHiddenData: {
3921
3921
  key: 'setBlockSelectHiddenData',
3922
- label: localeKey('setBlockSelectHiddenData.label'),
3922
+ label: '控制显隐',
3923
3923
  todoOptions: [{
3924
3924
  key: 'visible',
3925
- label: localeKey('setBlockSelectHiddenData.todoOptions.visible.label'),
3925
+ label: '显隐设置',
3926
3926
  type: 'RadioButton',
3927
3927
  defaultValue: '',
3928
3928
  props: {
3929
3929
  options: [{
3930
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.0.title'),
3930
+ title: '显示',
3931
3931
  value: 'true'
3932
3932
  }, {
3933
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.1.title'),
3933
+ title: '隐藏',
3934
3934
  value: ''
3935
3935
  }, {
3936
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.2.title'),
3936
+ title: '切换',
3937
3937
  value: 'toggle'
3938
3938
  }]
3939
3939
  }
3940
3940
  }, {
3941
3941
  key: 'selectType',
3942
3942
  aliasKey: 'bsSelectType',
3943
- label: localeKey('setBlockSelectHiddenData.todoOptions.selectType.label'),
3943
+ label: '控制类型',
3944
3944
  type: 'RadioButton',
3945
3945
  defaultValue: 'id',
3946
3946
  props: {
@@ -3948,13 +3948,13 @@ var todoActionObject = {
3948
3948
  title: localeKey('setBlockSelectHiddenData.todoOptions.selectType.props.options.0.title'),
3949
3949
  value: 'id'
3950
3950
  }, {
3951
- title: localeKey('setBlockSelectHiddenData.todoOptions.selectType.props.options.1.title'),
3951
+ title: '循环项索引',
3952
3952
  value: 'index'
3953
3953
  }]
3954
3954
  }
3955
3955
  }, {
3956
3956
  key: 'value',
3957
- label: localeKey('setBlockSelectHiddenData.todoOptions.value.label'),
3957
+ label: '内容',
3958
3958
  type: 'SetExpression'
3959
3959
  }],
3960
3960
  todoCallbacks: ['callback1']
@@ -3964,25 +3964,25 @@ var todoActionObject = {
3964
3964
  label: localeKey('setBlockSelectStateData.label'),
3965
3965
  todoOptions: [{
3966
3966
  key: 'disabled',
3967
- label: localeKey('setBlockSelectStateData.todoOptions.disabled.label'),
3967
+ label: '状态设置',
3968
3968
  type: 'RadioButton',
3969
3969
  defaultValue: 'toggle',
3970
3970
  props: {
3971
3971
  options: [{
3972
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.0.title'),
3972
+ title: '启动',
3973
3973
  value: ''
3974
3974
  }, {
3975
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.1.title'),
3975
+ title: '禁用',
3976
3976
  value: 'true'
3977
3977
  }, {
3978
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.2.title'),
3978
+ title: '切换',
3979
3979
  value: 'toggle'
3980
3980
  }]
3981
3981
  }
3982
3982
  }, {
3983
3983
  key: 'selectType',
3984
3984
  aliasKey: 'bsSelectType',
3985
- label: localeKey('setBlockSelectStateData.todoOptions.selectType.label'),
3985
+ label: '控制类型',
3986
3986
  type: 'RadioButton',
3987
3987
  defaultValue: 'id',
3988
3988
  props: {
@@ -3990,13 +3990,13 @@ var todoActionObject = {
3990
3990
  title: localeKey('setBlockSelectStateData.todoOptions.selectType.props.options.0.title'),
3991
3991
  value: 'id'
3992
3992
  }, {
3993
- title: localeKey('setBlockSelectStateData.todoOptions.selectType.props.options.1.title'),
3993
+ title: '循环项索引',
3994
3994
  value: 'index'
3995
3995
  }]
3996
3996
  }
3997
3997
  }, {
3998
3998
  key: 'value',
3999
- label: localeKey('setBlockSelectStateData.todoOptions.value.label'),
3999
+ label: '内容',
4000
4000
  type: 'SetExpression'
4001
4001
  }],
4002
4002
  todoCallbacks: ['callback1']
@@ -4102,13 +4102,13 @@ var todoActionObject = {
4102
4102
  todoOptions: [{
4103
4103
  key: 'data',
4104
4104
  aliasKey: 'dataSource',
4105
- label: localeKey('reloadGanttData.todoOptions.data.label'),
4105
+ label: '内容',
4106
4106
  type: 'SetExpression'
4107
4107
  }]
4108
4108
  },
4109
4109
  value: {
4110
4110
  key: 'value',
4111
- label: localeKey('value.label'),
4111
+ label: '获取值',
4112
4112
  todoCallbacks: [{
4113
4113
  key: 'callback1',
4114
4114
  fields: [{
@@ -4124,29 +4124,29 @@ var todoActionObject = {
4124
4124
  },
4125
4125
  clearMobileValue: {
4126
4126
  key: 'clearMobileValue',
4127
- label: localeKey('clearMobileValue.label')
4127
+ label: '清空值'
4128
4128
  },
4129
4129
  setMobileValue: {
4130
4130
  key: 'setMobileValue',
4131
- label: localeKey('setMobileValue.label'),
4131
+ label: '控件赋值',
4132
4132
  todoOptions: [{
4133
4133
  key: 'compid',
4134
4134
  aliasKey: 'compId',
4135
- label: localeKey('setMobileValue.todoOptions.compid.label'),
4135
+ label: '组件选择',
4136
4136
  type: 'CompTree',
4137
4137
  props: {
4138
4138
  titleLink: [{
4139
- title: localeKey('setMobileValue.todoOptions.compid.props.titleLink.0.title'),
4139
+ title: '清空已选',
4140
4140
  value: 'cleanValue'
4141
4141
  }]
4142
4142
  }
4143
4143
  }, {
4144
4144
  key: 'valueList',
4145
- label: localeKey('setMobileValue.todoOptions.valueList.label'),
4145
+ label: '组件赋值',
4146
4146
  type: 'SetSysExpression',
4147
4147
  props: {
4148
4148
  titleLink: [{
4149
- title: localeKey('setMobileValue.todoOptions.valueList.props.titleLink.0.title'),
4149
+ title: '清空赋值',
4150
4150
  value: 'clearValue'
4151
4151
  }]
4152
4152
  }
@@ -4156,36 +4156,36 @@ var todoActionObject = {
4156
4156
  },
4157
4157
  setMobileFormDisabled: {
4158
4158
  key: 'setMobileFormDisabled',
4159
- label: localeKey('setMobileFormDisabled.label'),
4159
+ label: '禁用状态',
4160
4160
  todoCallbacks: ['callback1']
4161
4161
  },
4162
4162
  setMobileFormEditor: {
4163
4163
  key: 'setMobileFormEditor',
4164
- label: localeKey('setMobileFormEditor.label'),
4164
+ label: '编辑状态',
4165
4165
  todoCallbacks: ['callback1']
4166
4166
  },
4167
4167
  setEditor: {
4168
4168
  key: 'setEditor',
4169
- label: localeKey('setEditor.label'),
4169
+ label: '编辑状态',
4170
4170
  todoCallbacks: ['callback1']
4171
4171
  },
4172
4172
  setMobileFormVisible: {
4173
4173
  key: 'setMobileFormVisible',
4174
- label: localeKey('setMobileFormVisible.label'),
4174
+ label: '控制显隐',
4175
4175
  todoOptions: [{
4176
4176
  key: 'visible',
4177
- label: localeKey('setMobileFormVisible.todoOptions.visible.label'),
4177
+ label: '显隐设置',
4178
4178
  type: 'RadioButton',
4179
4179
  defaultValue: '',
4180
4180
  props: {
4181
4181
  options: [{
4182
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.0.title'),
4182
+ title: '显示',
4183
4183
  value: 'true'
4184
4184
  }, {
4185
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.1.title'),
4185
+ title: '隐藏',
4186
4186
  value: ''
4187
4187
  }, {
4188
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.2.title'),
4188
+ title: '切换',
4189
4189
  value: 'toggle'
4190
4190
  }]
4191
4191
  }
@@ -4194,11 +4194,11 @@ var todoActionObject = {
4194
4194
  },
4195
4195
  setFormItemDataSource: {
4196
4196
  key: 'setFormItemDataSource',
4197
- label: localeKey('setFormItemDataSource.label'),
4197
+ label: '设置选项值',
4198
4198
  todoOptions: [{
4199
4199
  key: 'data',
4200
4200
  aliasKey: 'dataSource',
4201
- label: localeKey('setFormItemDataSource.todoOptions.data.label'),
4201
+ label: '内容',
4202
4202
  type: 'SetExpression'
4203
4203
  }],
4204
4204
  todoCallbacks: ['callback1']
@@ -4220,25 +4220,25 @@ var todoActionObject = {
4220
4220
  key: 'addDebugger',
4221
4221
  label: localeKey('addDebugger.label'),
4222
4222
  classification: [{
4223
- label: localeKey('addDebugger.classification.debug.label'),
4223
+ label: '调试类',
4224
4224
  value: 'debug'
4225
4225
  }],
4226
4226
  hidden: true
4227
4227
  },
4228
4228
  reload: {
4229
4229
  key: 'reload',
4230
- label: localeKey('reload.label'),
4230
+ label: '页面刷新',
4231
4231
  classification: [{
4232
- label: localeKey('reload.classification.page.label'),
4232
+ label: '页面类',
4233
4233
  value: 'page'
4234
4234
  }]
4235
4235
  },
4236
4236
  switchAppTabs: {
4237
4237
  key: 'switchAppTabs',
4238
- label: localeKey('switchAppTabs.label'),
4238
+ label: '切换页面',
4239
4239
  todoOptions: [{
4240
4240
  key: 'value',
4241
- label: localeKey('switchAppTabs.todoOptions.value.label'),
4241
+ label: '内容',
4242
4242
  type: 'SetExpression'
4243
4243
  }],
4244
4244
  todoCallbacks: [{
@@ -4253,20 +4253,20 @@ var todoActionObject = {
4253
4253
  },
4254
4254
  changeContent: {
4255
4255
  key: 'changeContent',
4256
- label: localeKey('changeContent.label'),
4256
+ label: '修改内容',
4257
4257
  todoOptions: [{
4258
4258
  key: 'name',
4259
- label: localeKey('changeContent.todoOptions.name.label'),
4259
+ label: '修改名称',
4260
4260
  type: 'Input',
4261
4261
  props: {
4262
- placeholder: localeKey('changeContent.todoOptions.name.props.placeholder')
4262
+ placeholder: '请输入名称'
4263
4263
  }
4264
4264
  }, {
4265
4265
  key: 'icon',
4266
- label: localeKey('changeContent.todoOptions.icon.label'),
4266
+ label: '修改图标',
4267
4267
  type: 'ChooseIcon',
4268
4268
  props: {
4269
- placeholder: localeKey('changeContent.todoOptions.icon.props.placeholder')
4269
+ placeholder: '请选择图标'
4270
4270
  }
4271
4271
  }]
4272
4272
  },
@@ -4288,7 +4288,7 @@ var todoActionObject = {
4288
4288
  label: localeKey('customActionCode.label'),
4289
4289
  todoOptions: [{
4290
4290
  key: 'actionTitle',
4291
- label: localeKey('customActionCode.todoOptions.actionTitle.label'),
4291
+ label: '动作说明',
4292
4292
  type: 'CustomActionTitle',
4293
4293
  props: {
4294
4294
  placeholder: localeKey('customActionCode.todoOptions.actionTitle.props.placeholder'),
@@ -4296,13 +4296,13 @@ var todoActionObject = {
4296
4296
  }
4297
4297
  }, {
4298
4298
  key: 'editorCode',
4299
- label: localeKey('customActionCode.todoOptions.editorCode.label'),
4299
+ label: '自定义内容',
4300
4300
  type: 'CustomActionCode'
4301
4301
  }],
4302
4302
  todoCallbacks: [{
4303
4303
  key: 'callback1',
4304
4304
  fields: [{
4305
- title: localeKey('customActionCode.todoCallbacks.callback1.fields.0.title'),
4305
+ title: '成功回调值',
4306
4306
  value: '$data_@{options.id}$',
4307
4307
  description: '',
4308
4308
  type: 'unknown',
@@ -4315,7 +4315,7 @@ var todoActionObject = {
4315
4315
  }, {
4316
4316
  key: 'callback2',
4317
4317
  fields: [{
4318
- title: localeKey('customActionCode.todoCallbacks.callback2.fields.0.title'),
4318
+ title: '失败回调值',
4319
4319
  value: '$fail_@{options.id}$',
4320
4320
  description: '',
4321
4321
  type: 'unknown',
@@ -4327,11 +4327,11 @@ var todoActionObject = {
4327
4327
  }]
4328
4328
  }],
4329
4329
  classification: [{
4330
- label: localeKey('customActionCode.classification.others.label'),
4330
+ label: '其他',
4331
4331
  value: 'others'
4332
4332
  }],
4333
4333
  remarks: [{
4334
- label: localeKey('customActionCode.remarks.0.label'),
4334
+ label: '注意事项',
4335
4335
  content: localeKey('customActionCode.remarks.0.content')
4336
4336
  }],
4337
4337
  isAsync: true
@@ -4348,14 +4348,14 @@ var todoActionObject = {
4348
4348
  todoCallbacks: [{
4349
4349
  key: 'callback1',
4350
4350
  fields: [{
4351
- title: localeKey('getItemFromLocalStorage.todoCallbacks.callback1.fields.0.title'),
4351
+ title: '本地数据值',
4352
4352
  value: '$thirdValue_@{options.id}$',
4353
4353
  type: 'string',
4354
4354
  description: ''
4355
4355
  }]
4356
4356
  }],
4357
4357
  classification: [{
4358
- label: localeKey('getItemFromLocalStorage.classification.others.label'),
4358
+ label: '其他',
4359
4359
  value: 'others'
4360
4360
  }]
4361
4361
  },
@@ -4365,7 +4365,7 @@ var todoActionObject = {
4365
4365
  todoOptions: [{
4366
4366
  key: 'key',
4367
4367
  aliasKey: 'setItemKey',
4368
- label: localeKey('setItemToLocalStorage.todoOptions.key.label'),
4368
+ label: '字段名称',
4369
4369
  type: 'Input',
4370
4370
  props: {
4371
4371
  required: true,
@@ -4373,28 +4373,28 @@ var todoActionObject = {
4373
4373
  }
4374
4374
  }, {
4375
4375
  key: 'value',
4376
- label: localeKey('setItemToLocalStorage.todoOptions.value.label'),
4376
+ label: '内容',
4377
4377
  type: 'SetExpression'
4378
4378
  }],
4379
4379
  classification: [{
4380
- label: localeKey('setItemToLocalStorage.classification.others.label'),
4380
+ label: '其他',
4381
4381
  value: 'others'
4382
4382
  }]
4383
4383
  },
4384
4384
  prev: {
4385
4385
  key: 'prev',
4386
- label: localeKey('prev.label')
4386
+ label: '上一张'
4387
4387
  },
4388
4388
  next: {
4389
4389
  key: 'next',
4390
- label: localeKey('next.label')
4390
+ label: '下一张'
4391
4391
  },
4392
4392
  goTo: {
4393
4393
  key: 'goTo',
4394
- label: localeKey('goTo.label'),
4394
+ label: '去第几页',
4395
4395
  todoOptions: [{
4396
4396
  key: 'value',
4397
- label: localeKey('goTo.todoOptions.value.label'),
4397
+ label: '内容',
4398
4398
  type: 'SetExpression'
4399
4399
  }]
4400
4400
  },
@@ -4403,22 +4403,22 @@ var todoActionObject = {
4403
4403
  label: localeKey('getLocalLocation.label'),
4404
4404
  todoOptions: [{
4405
4405
  key: 'mapType',
4406
- label: localeKey('getLocalLocation.todoOptions.mapType.label'),
4406
+ label: '预览方式',
4407
4407
  type: 'RadioButton',
4408
4408
  defaultValue: 'baidu',
4409
4409
  props: {
4410
4410
  valuePropName: 'mapType',
4411
4411
  options: [{
4412
- title: localeKey('getLocalLocation.todoOptions.mapType.props.options.0.title'),
4412
+ title: '百度地图',
4413
4413
  value: 'baidu'
4414
4414
  }, {
4415
- title: localeKey('getLocalLocation.todoOptions.mapType.props.options.1.title'),
4415
+ title: '高德地图',
4416
4416
  value: 'gaode'
4417
4417
  }]
4418
4418
  }
4419
4419
  }, {
4420
4420
  key: 'mapKey',
4421
- label: localeKey('getLocalLocation.todoOptions.mapKey.label'),
4421
+ label: '地图秘钥',
4422
4422
  type: 'Input',
4423
4423
  props: {
4424
4424
  placeholder: localeKey('getLocalLocation.todoOptions.mapKey.props.placeholder'),
@@ -4446,13 +4446,13 @@ var todoActionObject = {
4446
4446
  defaultValue: 'BD09',
4447
4447
  props: {
4448
4448
  options: [{
4449
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.0.title'),
4449
+ title: '大地坐标系',
4450
4450
  value: 'WGS84'
4451
4451
  }, {
4452
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.1.title'),
4452
+ title: '火星坐标系',
4453
4453
  value: 'GCJ02'
4454
4454
  }, {
4455
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.2.title'),
4455
+ title: '百度坐标系',
4456
4456
  value: 'BD09'
4457
4457
  }]
4458
4458
  }
@@ -4480,14 +4480,14 @@ var todoActionObject = {
4480
4480
  }]
4481
4481
  }],
4482
4482
  classification: [{
4483
- label: localeKey('getLocalLocation.classification.others.label'),
4483
+ label: '其他',
4484
4484
  value: 'others'
4485
4485
  }],
4486
4486
  remarks: [{
4487
- label: localeKey('getLocalLocation.remarks.0.label'),
4487
+ label: '适用场景',
4488
4488
  content: localeKey('getLocalLocation.remarks.0.content')
4489
4489
  }, {
4490
- label: localeKey('getLocalLocation.remarks.1.label'),
4490
+ label: '注意事项',
4491
4491
  content: localeKey('getLocalLocation.remarks.1.content')
4492
4492
  }],
4493
4493
  isAsync: true
@@ -4517,11 +4517,11 @@ var todoActionObject = {
4517
4517
  label: localeKey('reloadAppTableData.label'),
4518
4518
  todoOptions: [{
4519
4519
  key: 'appTableData',
4520
- label: localeKey('reloadAppTableData.todoOptions.appTableData.label'),
4520
+ label: '表头数据',
4521
4521
  type: 'SetExpression'
4522
4522
  }, {
4523
4523
  key: 'appTableDataSource',
4524
- label: localeKey('reloadAppTableData.todoOptions.appTableDataSource.label'),
4524
+ label: '表格数据',
4525
4525
  type: 'SetExpression'
4526
4526
  }],
4527
4527
  todoCallbacks: []
@@ -4549,12 +4549,12 @@ var todoActionObject = {
4549
4549
  },
4550
4550
  startVerificationCodeCountdown: {
4551
4551
  key: 'startVerificationCodeCountdown',
4552
- label: localeKey('startVerificationCodeCountdown.label'),
4552
+ label: '开始倒计时',
4553
4553
  todoCallbacks: ['callback1']
4554
4554
  },
4555
4555
  resetVerificationCodeCountdown: {
4556
4556
  key: 'resetVerificationCodeCountdown',
4557
- label: localeKey('resetVerificationCodeCountdown.label'),
4557
+ label: '重置倒计时',
4558
4558
  todoCallbacks: ['callback1']
4559
4559
  },
4560
4560
  setVerificationCodeImageUrl: {
@@ -4573,7 +4573,7 @@ var todoActionObject = {
4573
4573
  todoOptions: [{
4574
4574
  key: 'transferValue',
4575
4575
  aliasKey: 'removeTransferValue',
4576
- label: localeKey('removeTransferKeys.todoOptions.transferValue.label'),
4576
+ label: '内容',
4577
4577
  type: 'SetExpression',
4578
4578
  props: {
4579
4579
  placeholder: localeKey('removeTransferKeys.todoOptions.transferValue.props.placeholder')
@@ -4587,7 +4587,7 @@ var todoActionObject = {
4587
4587
  todoOptions: [{
4588
4588
  key: 'transferValue',
4589
4589
  aliasKey: 'addTransferValue',
4590
- label: localeKey('addTransferKeys.todoOptions.transferValue.label'),
4590
+ label: '内容',
4591
4591
  type: 'SetExpression',
4592
4592
  props: {
4593
4593
  placeholder: localeKey('addTransferKeys.todoOptions.transferValue.props.placeholder')
@@ -4597,27 +4597,27 @@ var todoActionObject = {
4597
4597
  },
4598
4598
  setTransferLeftTitle: {
4599
4599
  key: 'setTransferLeftTitle',
4600
- label: localeKey('setTransferLeftTitle.label'),
4600
+ label: '设置左标题',
4601
4601
  todoOptions: [{
4602
4602
  key: 'value',
4603
- label: localeKey('setTransferLeftTitle.todoOptions.value.label'),
4603
+ label: '内容',
4604
4604
  type: 'SetExpression'
4605
4605
  }],
4606
4606
  todoCallbacks: ['callback1']
4607
4607
  },
4608
4608
  setTransferRightTitle: {
4609
4609
  key: 'setTransferRightTitle',
4610
- label: localeKey('setTransferRightTitle.label'),
4610
+ label: '设置右标题',
4611
4611
  todoOptions: [{
4612
4612
  key: 'value',
4613
- label: localeKey('setTransferRightTitle.todoOptions.value.label'),
4613
+ label: '内容',
4614
4614
  type: 'SetExpression'
4615
4615
  }],
4616
4616
  todoCallbacks: ['callback1']
4617
4617
  },
4618
4618
  loadLineChartData: {
4619
4619
  key: 'loadLineChartData',
4620
- label: localeKey('loadLineChartData.label'),
4620
+ label: '加载数据',
4621
4621
  todoOptions: [{
4622
4622
  key: 'xLineName',
4623
4623
  label: localeKey('loadLineChartData.todoOptions.xLineName.label'),
@@ -4628,30 +4628,30 @@ var todoActionObject = {
4628
4628
  type: 'SetExpression'
4629
4629
  }, {
4630
4630
  key: 'lineChartData',
4631
- label: localeKey('loadLineChartData.todoOptions.lineChartData.label'),
4631
+ label: '数据源',
4632
4632
  type: 'SetExpression'
4633
4633
  }]
4634
4634
  },
4635
4635
  loadSingleProgressData: {
4636
4636
  key: 'loadSingleProgressData',
4637
- label: localeKey('loadSingleProgressData.label'),
4637
+ label: '加载数据',
4638
4638
  todoOptions: [{
4639
4639
  key: 'spCount',
4640
- label: localeKey('loadSingleProgressData.todoOptions.spCount.label'),
4640
+ label: '当前数量',
4641
4641
  type: 'SetExpression'
4642
4642
  }, {
4643
4643
  key: 'spTotal',
4644
- label: localeKey('loadSingleProgressData.todoOptions.spTotal.label'),
4644
+ label: '总数量',
4645
4645
  type: 'SetExpression'
4646
4646
  }, {
4647
4647
  key: 'spRightNode',
4648
- label: localeKey('loadSingleProgressData.todoOptions.spRightNode.label'),
4648
+ label: '右侧文字',
4649
4649
  type: 'SetExpression'
4650
4650
  }]
4651
4651
  },
4652
4652
  loadDonutChartData: {
4653
4653
  key: 'loadDonutChartData',
4654
- label: localeKey('loadDonutChartData.label'),
4654
+ label: '加载数据',
4655
4655
  todoOptions: [{
4656
4656
  key: 'donutX',
4657
4657
  label: localeKey('loadDonutChartData.todoOptions.donutX.label'),
@@ -4662,20 +4662,20 @@ var todoActionObject = {
4662
4662
  type: 'SetExpression'
4663
4663
  }, {
4664
4664
  key: 'donutData',
4665
- label: localeKey('loadDonutChartData.todoOptions.donutData.label'),
4665
+ label: '数据源',
4666
4666
  type: 'SetExpression'
4667
4667
  }, {
4668
4668
  key: 'donutSumText',
4669
- label: localeKey('loadDonutChartData.todoOptions.donutSumText.label'),
4669
+ label: '总数据',
4670
4670
  type: 'SetExpression'
4671
4671
  }]
4672
4672
  },
4673
4673
  loadMultipleProgressData: {
4674
4674
  key: 'loadMultipleProgressData',
4675
- label: localeKey('loadMultipleProgressData.label'),
4675
+ label: '加载数据',
4676
4676
  todoOptions: [{
4677
4677
  key: 'mpData',
4678
- label: localeKey('loadMultipleProgressData.todoOptions.mpData.label'),
4678
+ label: '数据源',
4679
4679
  type: 'SetExpression',
4680
4680
  props: {
4681
4681
  placeholder: localeKey('loadMultipleProgressData.todoOptions.mpData.props.placeholder')
@@ -4684,21 +4684,21 @@ var todoActionObject = {
4684
4684
  },
4685
4685
  loadGroupColumnData: {
4686
4686
  key: 'loadGroupColumnData',
4687
- label: localeKey('loadGroupColumnData.label'),
4687
+ label: '加载数据',
4688
4688
  todoOptions: [{
4689
4689
  key: 'gcXName',
4690
4690
  label: localeKey('loadGroupColumnData.todoOptions.gcXName.label'),
4691
4691
  type: 'SetExpression'
4692
4692
  }, {
4693
4693
  key: 'gcLegendParams',
4694
- label: localeKey('loadGroupColumnData.todoOptions.gcLegendParams.label'),
4694
+ label: '图例内容',
4695
4695
  type: 'SetExpression',
4696
4696
  props: {
4697
4697
  placeholder: localeKey('loadGroupColumnData.todoOptions.gcLegendParams.props.placeholder')
4698
4698
  }
4699
4699
  }, {
4700
4700
  key: 'gcData',
4701
- label: localeKey('loadGroupColumnData.todoOptions.gcData.label'),
4701
+ label: '数据源',
4702
4702
  type: 'SetExpression',
4703
4703
  props: {
4704
4704
  placeholder: localeKey('loadGroupColumnData.todoOptions.gcData.props.placeholder')
@@ -4707,7 +4707,7 @@ var todoActionObject = {
4707
4707
  },
4708
4708
  loadSmallColumnarData: {
4709
4709
  key: 'loadSmallColumnarData',
4710
- label: localeKey('loadSmallColumnarData.label'),
4710
+ label: '加载数据',
4711
4711
  todoOptions: [{
4712
4712
  key: 'scXName',
4713
4713
  label: localeKey('loadSmallColumnarData.todoOptions.scXName.label'),
@@ -4718,7 +4718,7 @@ var todoActionObject = {
4718
4718
  type: 'SetExpression'
4719
4719
  }, {
4720
4720
  key: 'scData',
4721
- label: localeKey('loadSmallColumnarData.todoOptions.scData.label'),
4721
+ label: '数据源',
4722
4722
  type: 'SetExpression',
4723
4723
  props: {
4724
4724
  placeholder: localeKey('loadSmallColumnarData.todoOptions.scData.props.placeholder')
@@ -4727,21 +4727,21 @@ var todoActionObject = {
4727
4727
  },
4728
4728
  loadStackColumnData: {
4729
4729
  key: 'loadStackColumnData',
4730
- label: localeKey('loadStackColumnData.label'),
4730
+ label: '加载数据',
4731
4731
  todoOptions: [{
4732
4732
  key: 'stcXName',
4733
4733
  label: localeKey('loadStackColumnData.todoOptions.stcXName.label'),
4734
4734
  type: 'SetExpression'
4735
4735
  }, {
4736
4736
  key: 'stcLegendParams',
4737
- label: localeKey('loadStackColumnData.todoOptions.stcLegendParams.label'),
4737
+ label: '图例内容',
4738
4738
  type: 'SetExpression',
4739
4739
  props: {
4740
4740
  placeholder: localeKey('loadStackColumnData.todoOptions.stcLegendParams.props.placeholder')
4741
4741
  }
4742
4742
  }, {
4743
4743
  key: 'stcData',
4744
- label: localeKey('loadStackColumnData.todoOptions.stcData.label'),
4744
+ label: '数据源',
4745
4745
  type: 'SetExpression',
4746
4746
  props: {
4747
4747
  placeholder: localeKey('loadStackColumnData.todoOptions.stcData.props.placeholder')
@@ -4750,33 +4750,33 @@ var todoActionObject = {
4750
4750
  },
4751
4751
  setMenuOpenKey: {
4752
4752
  key: 'setMenuOpenKey',
4753
- label: localeKey('setMenuOpenKey.label'),
4753
+ label: '设置展开项',
4754
4754
  todoOptions: [{
4755
4755
  key: 'value',
4756
- label: localeKey('setMenuOpenKey.todoOptions.value.label'),
4756
+ label: '内容',
4757
4757
  type: 'SetExpression'
4758
4758
  }]
4759
4759
  },
4760
4760
  clearMenuOpenKey: {
4761
4761
  key: 'clearMenuOpenKey',
4762
- label: localeKey('clearMenuOpenKey.label')
4762
+ label: '清空展开项'
4763
4763
  },
4764
4764
  setInlineCollapsed: {
4765
4765
  key: 'setInlineCollapsed',
4766
4766
  label: localeKey('setInlineCollapsed.label'),
4767
4767
  todoOptions: [{
4768
4768
  key: 'inlineCollapsed',
4769
- label: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.label'),
4769
+ label: '是否收缩',
4770
4770
  type: 'Select',
4771
4771
  props: {
4772
4772
  options: [{
4773
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.0.title'),
4773
+ title: '缩起',
4774
4774
  value: 'true'
4775
4775
  }, {
4776
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.1.title'),
4776
+ title: '展开',
4777
4777
  value: ''
4778
4778
  }, {
4779
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.2.title'),
4779
+ title: '切换',
4780
4780
  value: 'toggle'
4781
4781
  }]
4782
4782
  }
@@ -4784,10 +4784,10 @@ var todoActionObject = {
4784
4784
  },
4785
4785
  reloadTransferData: {
4786
4786
  key: 'reloadTransferData',
4787
- label: localeKey('reloadTransferData.label'),
4787
+ label: '加载数据',
4788
4788
  todoOptions: [{
4789
4789
  key: 'data',
4790
- label: localeKey('reloadTransferData.todoOptions.data.label'),
4790
+ label: '内容',
4791
4791
  type: 'SetExpression',
4792
4792
  aliasKey: 'dataSource'
4793
4793
  }],
@@ -4795,7 +4795,7 @@ var todoActionObject = {
4795
4795
  },
4796
4796
  getLoopListValues: {
4797
4797
  key: 'getLoopListValues',
4798
- label: localeKey('getLoopListValues.label'),
4798
+ label: '获取选中项',
4799
4799
  todoCallbacks: [{
4800
4800
  key: 'callback1',
4801
4801
  fields: [{
@@ -4826,7 +4826,7 @@ var todoActionObject = {
4826
4826
  label: localeKey('setExpandedKey.label'),
4827
4827
  todoOptions: [{
4828
4828
  key: 'value',
4829
- label: localeKey('setExpandedKey.todoOptions.value.label'),
4829
+ label: '内容',
4830
4830
  type: 'SetExpression'
4831
4831
  }]
4832
4832
  },
@@ -4835,17 +4835,17 @@ var todoActionObject = {
4835
4835
  label: localeKey('closeExpandedKey.label'),
4836
4836
  todoOptions: [{
4837
4837
  key: 'value',
4838
- label: localeKey('closeExpandedKey.todoOptions.value.label'),
4838
+ label: '内容',
4839
4839
  type: 'SetExpression'
4840
4840
  }]
4841
4841
  },
4842
4842
  reloadSelectorData: {
4843
4843
  key: 'reloadSelectorData',
4844
- label: localeKey('reloadSelectorData.label'),
4844
+ label: '加载数据',
4845
4845
  todoOptions: [{
4846
4846
  key: 'data',
4847
4847
  aliasKey: 'dataSource',
4848
- label: localeKey('reloadSelectorData.todoOptions.data.label'),
4848
+ label: '内容',
4849
4849
  type: 'SetExpression'
4850
4850
  }, {
4851
4851
  key: 'labelKey',
@@ -4859,7 +4859,7 @@ var todoActionObject = {
4859
4859
  }, {
4860
4860
  key: 'valueKey',
4861
4861
  aliasKey: 'selectValueKey',
4862
- label: localeKey('reloadSelectorData.todoOptions.valueKey.label'),
4862
+ label: '选项值字段',
4863
4863
  type: 'SetExpressionKey',
4864
4864
  props: {
4865
4865
  // 选择后只回填参数key选项对应的子级数据,不回填表达式
@@ -4933,10 +4933,10 @@ var todoActionObject = {
4933
4933
  label: localeKey('swipeTo.label'),
4934
4934
  todoOptions: [{
4935
4935
  key: 'swiperIndex',
4936
- label: localeKey('swipeTo.todoOptions.swiperIndex.label'),
4936
+ label: '索引',
4937
4937
  type: 'InputNumber',
4938
4938
  props: {
4939
- placeholder: localeKey('swipeTo.todoOptions.swiperIndex.props.placeholder'),
4939
+ placeholder: '请输入',
4940
4940
  formatter: function formatter(val) {
4941
4941
  return val ? val.match(/0|\d+/g) : undefined;
4942
4942
  }
@@ -4946,26 +4946,26 @@ var todoActionObject = {
4946
4946
  },
4947
4947
  refreshPictureVerifyCode: {
4948
4948
  key: 'refreshPictureVerifyCode',
4949
- label: localeKey('refreshPictureVerifyCode.label'),
4949
+ label: '刷新验证码',
4950
4950
  todoCallbacks: ['callback1']
4951
4951
  },
4952
4952
  mediaControl: {
4953
4953
  key: 'mediaControl',
4954
- label: localeKey('mediaControl.label'),
4954
+ label: '播放控制',
4955
4955
  todoOptions: [{
4956
4956
  key: 'updateMediaState',
4957
- label: localeKey('mediaControl.todoOptions.updateMediaState.label'),
4957
+ label: '状态设置',
4958
4958
  type: 'RadioButton',
4959
4959
  defaultValue: 'play',
4960
4960
  props: {
4961
4961
  options: [{
4962
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.0.title'),
4962
+ title: '播放',
4963
4963
  value: 'play'
4964
4964
  }, {
4965
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.1.title'),
4965
+ title: '暂停',
4966
4966
  value: 'pasue'
4967
4967
  }, {
4968
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.2.title'),
4968
+ title: '切换',
4969
4969
  value: 'toggle'
4970
4970
  }]
4971
4971
  }
@@ -4976,14 +4976,14 @@ var todoActionObject = {
4976
4976
  label: localeKey('sysSetState.label'),
4977
4977
  todoOptions: [{
4978
4978
  key: 'compid',
4979
- label: localeKey('sysSetState.todoOptions.compid.label'),
4979
+ label: '组件选择',
4980
4980
  type: 'CompTree',
4981
4981
  aliasKey: 'compId',
4982
4982
  labelTip: localeKey('sysSetState.todoOptions.compid.labelTip'),
4983
4983
  props: {
4984
4984
  checkable: true,
4985
4985
  titleLink: [{
4986
- title: localeKey('sysSetState.todoOptions.compid.props.titleLink.0.title'),
4986
+ title: '清空已选',
4987
4987
  value: 'cleanValue'
4988
4988
  }]
4989
4989
  }
@@ -4994,22 +4994,22 @@ var todoActionObject = {
4994
4994
  labelTip: localeKey('sysSetState.todoOptions.compValueList.labelTip'),
4995
4995
  props: {
4996
4996
  options: [{
4997
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.0.title'),
4997
+ title: '普通',
4998
4998
  value: '1'
4999
4999
  }, {
5000
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.1.title'),
5000
+ title: '隐藏',
5001
5001
  value: '2'
5002
5002
  }, {
5003
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.2.title'),
5003
+ title: '禁用',
5004
5004
  value: '3'
5005
5005
  }, {
5006
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.3.title'),
5006
+ title: '只读',
5007
5007
  value: '4'
5008
5008
  }]
5009
5009
  }
5010
5010
  }],
5011
5011
  classification: [{
5012
- label: localeKey('sysSetState.classification.0.label'),
5012
+ label: '常用',
5013
5013
  value: 'common'
5014
5014
  }, {
5015
5015
  label: localeKey('sysSetState.classification.1.label'),
@@ -5021,7 +5021,7 @@ var todoActionObject = {
5021
5021
  label: localeKey('callCurrentFunc.label'),
5022
5022
  todoOptions: [{
5023
5023
  key: 'pathname',
5024
- label: localeKey('callCurrentFunc.todoOptions.pathname.label'),
5024
+ label: '页面',
5025
5025
  type: 'SelectPage',
5026
5026
  visibleFlag: function (_ref) {
5027
5027
  var DSLCore = _ref.DSLCore,
@@ -5035,31 +5035,31 @@ var todoActionObject = {
5035
5035
  }.toString()
5036
5036
  }, {
5037
5037
  key: 'customFuncName',
5038
- label: localeKey('callCurrentFunc.todoOptions.customFuncName.label'),
5038
+ label: '自定义事件',
5039
5039
  type: 'SelectCustomFunc',
5040
5040
  props: {
5041
5041
  titleLink: [{
5042
- title: localeKey('callCurrentFunc.todoOptions.customFuncName.props.titleLink.0.title'),
5042
+ title: '刷新',
5043
5043
  value: 'refresh',
5044
5044
  key: 'refresh'
5045
5045
  }]
5046
5046
  }
5047
5047
  }, {
5048
5048
  key: 'customFuncParams',
5049
- label: localeKey('callCurrentFunc.todoOptions.customFuncParams.label'),
5049
+ label: '事件入参',
5050
5050
  type: 'SelectLink',
5051
5051
  defaultValue: 'object',
5052
5052
  props: {
5053
5053
  titleLink: [{
5054
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
5054
+ title: '切换到属性',
5055
5055
  value: 'object',
5056
5056
  key: 'object'
5057
5057
  }, {
5058
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
5058
+ title: '切换根节点',
5059
5059
  value: '',
5060
5060
  key: 'root'
5061
5061
  }, {
5062
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
5062
+ title: '清空赋值',
5063
5063
  value: 'cleanValue',
5064
5064
  key: 'cleanValue'
5065
5065
  }],
@@ -5083,16 +5083,16 @@ var todoActionObject = {
5083
5083
  key: 'sysSetFormItemStatus',
5084
5084
  label: localeKey('sysSetFormItemStatus.label'),
5085
5085
  classification: [{
5086
- label: localeKey('sysSetFormItemStatus.classification.0.label'),
5086
+ label: '常用',
5087
5087
  value: 'common'
5088
5088
  }, {
5089
- label: localeKey('sysSetFormItemStatus.classification.1.label'),
5089
+ label: '数据设置',
5090
5090
  value: 'setData'
5091
5091
  }],
5092
5092
  todoOptions: [{
5093
5093
  key: 'compid',
5094
5094
  type: 'ListGroup',
5095
- label: localeKey('sysSetFormItemStatus.todoOptions.compid.label'),
5095
+ label: '组件配置',
5096
5096
  props: {
5097
5097
  showAdd: true,
5098
5098
  noRepeatSelect: {
@@ -5101,17 +5101,17 @@ var todoActionObject = {
5101
5101
  options: [{
5102
5102
  key: 'compid',
5103
5103
  type: 'SelectComp',
5104
- label: localeKey('sysSetFormItemStatus.todoOptions.compid.props.options.0.label'),
5104
+ label: '组件选择',
5105
5105
  description: localeKey('sysSetFormItemStatus.todoOptions.compid.props.options.0.description'),
5106
5106
  props: {
5107
5107
  includeType: ['Form', 'DForm'],
5108
5108
  required: true,
5109
5109
  titleLink: [{
5110
- title: localeKey('sysSetFormItemStatus.todoOptions.compid.props.titleLink.0.title'),
5110
+ title: '清空已选',
5111
5111
  value: 'cleanValue'
5112
5112
  }, {
5113
5113
  title: function title(dataOptions) {
5114
- return dataOptions !== null && dataOptions !== void 0 && dataOptions.isShowAll ? localeKey('sysSetFormItemStatus.todoOptions.compid.props.titleLink.1.title.selected') : localeKey('sysSetFormItemStatus.todoOptions.compid.props.titleLink.1.title.all');
5114
+ return dataOptions !== null && dataOptions !== void 0 && dataOptions.isShowAll ? '显示已选' : '显示全部';
5115
5115
  },
5116
5116
  value: 'isShowAll'
5117
5117
  }]
@@ -5119,7 +5119,7 @@ var todoActionObject = {
5119
5119
  }, {
5120
5120
  key: 'formItemList',
5121
5121
  type: 'SetExpression',
5122
- label: localeKey('sysSetFormItemStatus.todoOptions.formItemList.label'),
5122
+ label: '内容',
5123
5123
  description: localeKey('sysSetFormItemStatus.todoOptions.formItemList.description'),
5124
5124
  props: {
5125
5125
  required: true
@@ -5133,19 +5133,19 @@ var todoActionObject = {
5133
5133
  }, {
5134
5134
  key: 'valueKey',
5135
5135
  type: 'SetExpression',
5136
- label: localeKey('sysSetFormItemStatus.todoOptions.valueKey.label'),
5136
+ label: '选项值字段',
5137
5137
  description: localeKey('sysSetFormItemStatus.todoOptions.valueKey.description'),
5138
5138
  props: {}
5139
5139
  }],
5140
- titlePrefix: localeKey('sysSetFormItemStatus.todoOptions.compid.props.titlePrefix')
5140
+ titlePrefix: '内容配置'
5141
5141
  },
5142
5142
  hideLabel: true
5143
5143
  }],
5144
5144
  remarks: [{
5145
- label: localeKey('sysSetFormItemStatus.remarks.0.label'),
5145
+ label: '适用场景',
5146
5146
  content: localeKey('sysSetFormItemStatus.remarks.0.content')
5147
5147
  }, {
5148
- label: localeKey('sysSetFormItemStatus.remarks.1.label'),
5148
+ label: '配置说明',
5149
5149
  content: localeKey('sysSetFormItemStatus.remarks.1.content')
5150
5150
  }]
5151
5151
  },
@@ -5154,7 +5154,7 @@ var todoActionObject = {
5154
5154
  label: localeKey('customPrintOrExport.label'),
5155
5155
  todoOptions: [{
5156
5156
  key: 'operateType',
5157
- label: localeKey('customPrintOrExport.todoOptions.operateType.label'),
5157
+ label: '操作类型',
5158
5158
  type: 'CustomOperateType'
5159
5159
  }, {
5160
5160
  key: 'customSelectComp',
@@ -5165,7 +5165,7 @@ var todoActionObject = {
5165
5165
  }
5166
5166
  }, {
5167
5167
  key: 'waterMarkFlag',
5168
- label: localeKey('customPrintOrExport.todoOptions.waterMarkFlag.label'),
5168
+ label: '导出水印',
5169
5169
  type: 'Switch',
5170
5170
  defaultValue: false,
5171
5171
  labelTip: localeKey('customPrintOrExport.todoOptions.waterMarkFlag.labelTip')
@@ -5177,7 +5177,7 @@ var todoActionObject = {
5177
5177
  }],
5178
5178
  todoCallbacks: ['callback1', 'callback2'],
5179
5179
  classification: [{
5180
- label: localeKey('customPrintOrExport.classification.0.label'),
5180
+ label: '常用',
5181
5181
  value: 'common'
5182
5182
  }]
5183
5183
  },
@@ -5186,43 +5186,43 @@ var todoActionObject = {
5186
5186
  label: localeKey('scanCode.label'),
5187
5187
  todoOptions: [{
5188
5188
  key: 'scanType',
5189
- label: localeKey('scanCode.todoOptions.scanType.label'),
5189
+ label: '图形类型',
5190
5190
  type: 'RadioButton',
5191
5191
  defaultValue: 'qrcode',
5192
5192
  labelTip: localeKey('scanCode.todoOptions.scanType.labelTip'),
5193
5193
  props: {
5194
5194
  options: [{
5195
- title: localeKey('scanCode.todoOptions.scanType.props.options.0.title'),
5195
+ title: '二维码',
5196
5196
  value: 'qrcode'
5197
5197
  }, {
5198
- title: localeKey('scanCode.todoOptions.scanType.props.options.1.title'),
5198
+ title: '条形码',
5199
5199
  value: 'barcode'
5200
5200
  }]
5201
5201
  }
5202
5202
  }, {
5203
5203
  key: 'scanTarget',
5204
- label: localeKey('scanCode.todoOptions.scanTarget.label'),
5204
+ label: '识别目标',
5205
5205
  type: 'RadioButton',
5206
5206
  defaultValue: 'comp',
5207
5207
  labelTip: localeKey('scanCode.todoOptions.scanTarget.labelTip'),
5208
5208
  props: {
5209
5209
  options: [{
5210
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.0.title'),
5210
+ title: '页面组件',
5211
5211
  value: 'comp'
5212
5212
  }, {
5213
5213
  title: localeKey('scanCode.todoOptions.scanTarget.props.options.1.title'),
5214
5214
  value: 'fileId'
5215
5215
  }, {
5216
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.2.title'),
5216
+ title: '图片地址',
5217
5217
  value: 'url'
5218
5218
  }, {
5219
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.3.title'),
5219
+ title: '其他',
5220
5220
  value: 'other'
5221
5221
  }]
5222
5222
  }
5223
5223
  }, {
5224
5224
  key: 'scanSource',
5225
- label: localeKey('scanCode.todoOptions.scanSource.comp.label'),
5225
+ label: '页面组件',
5226
5226
  type: 'CompTree',
5227
5227
  visibleFlag: 'scanTarget',
5228
5228
  visibleFlagValue: ['comp'],
@@ -5230,7 +5230,7 @@ var todoActionObject = {
5230
5230
  selectableCompType: ['Image', 'Img'],
5231
5231
  placeholder: localeKey('scanCode.todoOptions.scanSource.comp.props.placeholder'),
5232
5232
  titleLink: [{
5233
- title: localeKey('scanCode.todoOptions.scanSource.comp.props.titleLink.0.title'),
5233
+ title: '清空已选',
5234
5234
  value: 'cleanValue'
5235
5235
  }]
5236
5236
  }
@@ -5242,13 +5242,13 @@ var todoActionObject = {
5242
5242
  visibleFlagValue: ['fileId']
5243
5243
  }, {
5244
5244
  key: 'scanSource',
5245
- label: localeKey('scanCode.todoOptions.scanSource.url.label'),
5245
+ label: '图片地址',
5246
5246
  type: 'SetExpression',
5247
5247
  visibleFlag: 'scanTarget',
5248
5248
  visibleFlagValue: ['url']
5249
5249
  }, {
5250
5250
  key: 'scanSource',
5251
- label: localeKey('scanCode.todoOptions.scanSource.other.label'),
5251
+ label: '其他',
5252
5252
  type: 'SetExpression',
5253
5253
  visibleFlag: 'scanTarget',
5254
5254
  visibleFlagValue: ['other']
@@ -5256,18 +5256,18 @@ var todoActionObject = {
5256
5256
  todoCallbacks: [{
5257
5257
  key: 'callback1',
5258
5258
  fields: [{
5259
- title: localeKey('scanCode.todoCallbacks.callback1.fields.0.title'),
5259
+ title: '扫描内容',
5260
5260
  value: '$scanInfo_@{options.id}$',
5261
5261
  type: 'unknown',
5262
5262
  description: '-'
5263
5263
  }]
5264
5264
  }, 'callback2'],
5265
5265
  classification: [{
5266
- label: localeKey('scanCode.classification.scan.label'),
5266
+ label: '扫描类',
5267
5267
  value: 'scan'
5268
5268
  }],
5269
5269
  remarks: [{
5270
- label: localeKey('scanCode.remarks.0.label'),
5270
+ label: '适用场景',
5271
5271
  content: localeKey('scanCode.remarks.0.content')
5272
5272
  }]
5273
5273
  },
@@ -5281,10 +5281,10 @@ var todoActionObject = {
5281
5281
  defaultValue: false,
5282
5282
  props: {
5283
5283
  options: [{
5284
- title: localeKey('postObjectAndStartFlow.todoOptions.sync.props.options.0.title'),
5284
+ title: '异步加载',
5285
5285
  value: false
5286
5286
  }, {
5287
- title: localeKey('postObjectAndStartFlow.todoOptions.sync.props.options.1.title'),
5287
+ title: '同步加载',
5288
5288
  value: true
5289
5289
  }]
5290
5290
  }
@@ -5298,7 +5298,7 @@ var todoActionObject = {
5298
5298
  }
5299
5299
  }, {
5300
5300
  key: 'packageCode',
5301
- label: localeKey('postObjectAndStartFlow.todoOptions.packageCode.label'),
5301
+ label: '流程编码',
5302
5302
  type: 'FlowCodeSelect',
5303
5303
  props: {
5304
5304
  isRequired: true,
@@ -5310,13 +5310,13 @@ var todoActionObject = {
5310
5310
  type: 'SetExpression'
5311
5311
  }, {
5312
5312
  key: 'flowForm',
5313
- label: localeKey('postObjectAndStartFlow.todoOptions.flowForm.label'),
5313
+ label: '业务表单',
5314
5314
  type: 'CompTree',
5315
5315
  props: {
5316
5316
  selectableCompType: ['Form'],
5317
5317
  placeholder: localeKey('postObjectAndStartFlow.todoOptions.flowForm.props.placeholder'),
5318
5318
  titleLink: [{
5319
- title: localeKey('postObjectAndStartFlow.todoOptions.flowForm.props.titleLink.0.title'),
5319
+ title: '清空已选',
5320
5320
  value: 'cleanValue'
5321
5321
  }]
5322
5322
  }
@@ -5327,13 +5327,13 @@ var todoActionObject = {
5327
5327
  defaultValue: 'STA',
5328
5328
  props: {
5329
5329
  options: [{
5330
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.0.title'),
5330
+ title: '人员',
5331
5331
  value: 'STA'
5332
5332
  }, {
5333
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.1.title'),
5333
+ title: '组织',
5334
5334
  value: 'ORG'
5335
5335
  }, {
5336
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.2.title'),
5336
+ title: '岗位',
5337
5337
  value: 'JOB'
5338
5338
  }]
5339
5339
  }
@@ -5347,10 +5347,10 @@ var todoActionObject = {
5347
5347
  type: 'Select',
5348
5348
  props: {
5349
5349
  options: [{
5350
- title: localeKey('postObjectAndStartFlow.todoOptions.hasEventExtService.props.options.0.title'),
5350
+ title: '',
5351
5351
  value: 'T'
5352
5352
  }, {
5353
- title: localeKey('postObjectAndStartFlow.todoOptions.hasEventExtService.props.options.1.title'),
5353
+ title: '',
5354
5354
  value: 'F'
5355
5355
  }]
5356
5356
  }
@@ -5363,14 +5363,14 @@ var todoActionObject = {
5363
5363
  }],
5364
5364
  todoCallbacks: ['callback1', 'callback2'],
5365
5365
  classification: [{
5366
- label: localeKey('postObjectAndStartFlow.classification.flow.label'),
5366
+ label: '流程类',
5367
5367
  value: 'flow'
5368
5368
  }],
5369
5369
  remarks: [{
5370
- label: localeKey('postObjectAndStartFlow.remarks.0.label'),
5370
+ label: '适用场景',
5371
5371
  content: localeKey('postObjectAndStartFlow.remarks.0.content')
5372
5372
  }, {
5373
- label: localeKey('postObjectAndStartFlow.remarks.1.label'),
5373
+ label: '配置规则',
5374
5374
  content: localeKey('postObjectAndStartFlow.remarks.1.content')
5375
5375
  }]
5376
5376
  },
@@ -5384,10 +5384,10 @@ var todoActionObject = {
5384
5384
  defaultValue: false,
5385
5385
  props: {
5386
5386
  options: [{
5387
- title: localeKey('updateObjectAndChangeFlow.todoOptions.sync.props.options.0.title'),
5387
+ title: '异步加载',
5388
5388
  value: false
5389
5389
  }, {
5390
- title: localeKey('updateObjectAndChangeFlow.todoOptions.sync.props.options.1.title'),
5390
+ title: '同步加载',
5391
5391
  value: true
5392
5392
  }]
5393
5393
  }
@@ -5401,26 +5401,26 @@ var todoActionObject = {
5401
5401
  }
5402
5402
  }, {
5403
5403
  key: 'runType',
5404
- label: localeKey('updateObjectAndChangeFlow.todoOptions.runType.label'),
5404
+ label: '流转动作',
5405
5405
  type: 'Select',
5406
5406
  defaultValue: '1',
5407
5407
  props: {
5408
5408
  isRequired: true,
5409
5409
  valuePropName: 'runType',
5410
5410
  options: [{
5411
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.0.title'),
5411
+ title: '正常流转',
5412
5412
  value: '1'
5413
5413
  }, {
5414
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.1.title'),
5414
+ title: '回退',
5415
5415
  value: '2'
5416
5416
  }, {
5417
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.2.title'),
5417
+ title: '自由流转',
5418
5418
  value: '3'
5419
5419
  }]
5420
5420
  }
5421
5421
  }, {
5422
5422
  key: 'operType',
5423
- label: localeKey('updateObjectAndChangeFlow.todoOptions.operType.label'),
5423
+ label: '回退类型',
5424
5424
  labelTip: localeKey('updateObjectAndChangeFlow.todoOptions.operType.labelTip'),
5425
5425
  type: 'SetExpression',
5426
5426
  // defaultValue: 'ra',
@@ -5467,25 +5467,25 @@ var todoActionObject = {
5467
5467
  }
5468
5468
  }, {
5469
5469
  key: 'flowForm',
5470
- label: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.label'),
5470
+ label: '业务表单',
5471
5471
  type: 'CompTree',
5472
5472
  props: {
5473
5473
  selectableCompType: ['Form'],
5474
5474
  placeholder: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.props.placeholder'),
5475
5475
  titleLink: [{
5476
- title: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.props.titleLink.0.title'),
5476
+ title: '清空已选',
5477
5477
  value: 'cleanValue'
5478
5478
  }]
5479
5479
  }
5480
5480
  }, {
5481
5481
  key: 'approvalForm',
5482
- label: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.label'),
5482
+ label: '审批表单',
5483
5483
  type: 'CompTree',
5484
5484
  props: {
5485
5485
  selectableCompType: ['Form'],
5486
5486
  placeholder: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.props.placeholder'),
5487
5487
  titleLink: [{
5488
- title: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.props.titleLink.0.title'),
5488
+ title: '清空已选',
5489
5489
  value: 'cleanValue'
5490
5490
  }]
5491
5491
  }
@@ -5495,10 +5495,10 @@ var todoActionObject = {
5495
5495
  type: 'Select',
5496
5496
  props: {
5497
5497
  options: [{
5498
- title: localeKey('updateObjectAndChangeFlow.todoOptions.directReceiptFlag.props.options.0.title'),
5498
+ title: '',
5499
5499
  value: true
5500
5500
  }, {
5501
- title: localeKey('updateObjectAndChangeFlow.todoOptions.directReceiptFlag.props.options.1.title'),
5501
+ title: '',
5502
5502
  value: false
5503
5503
  }]
5504
5504
  },
@@ -5535,13 +5535,13 @@ var todoActionObject = {
5535
5535
  defaultValue: 'STA',
5536
5536
  props: {
5537
5537
  options: [{
5538
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.0.title'),
5538
+ title: '人员',
5539
5539
  value: 'STA'
5540
5540
  }, {
5541
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.1.title'),
5541
+ title: '组织',
5542
5542
  value: 'ORG'
5543
5543
  }, {
5544
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.2.title'),
5544
+ title: '岗位',
5545
5545
  value: 'JOB'
5546
5546
  }]
5547
5547
  }
@@ -5555,10 +5555,10 @@ var todoActionObject = {
5555
5555
  type: 'Select',
5556
5556
  props: {
5557
5557
  options: [{
5558
- title: localeKey('updateObjectAndChangeFlow.todoOptions.hasEventExtService.props.options.0.title'),
5558
+ title: '',
5559
5559
  value: 'T'
5560
5560
  }, {
5561
- title: localeKey('updateObjectAndChangeFlow.todoOptions.hasEventExtService.props.options.1.title'),
5561
+ title: '',
5562
5562
  value: 'F'
5563
5563
  }]
5564
5564
  }
@@ -5571,14 +5571,14 @@ var todoActionObject = {
5571
5571
  }],
5572
5572
  todoCallbacks: ['callback1', 'callback2'],
5573
5573
  classification: [{
5574
- label: localeKey('updateObjectAndChangeFlow.classification.flow.label'),
5574
+ label: '流程类',
5575
5575
  value: 'flow'
5576
5576
  }],
5577
5577
  remarks: [{
5578
- label: localeKey('updateObjectAndChangeFlow.remarks.0.label'),
5578
+ label: '适用场景',
5579
5579
  content: localeKey('updateObjectAndChangeFlow.remarks.0.content')
5580
5580
  }, {
5581
- label: localeKey('updateObjectAndChangeFlow.remarks.1.label'),
5581
+ label: '配置规则',
5582
5582
  content: localeKey('updateObjectAndChangeFlow.remarks.1.content')
5583
5583
  }]
5584
5584
  },
@@ -5597,7 +5597,7 @@ var todoActionObject = {
5597
5597
  todoCallbacks: ['callback1', {
5598
5598
  key: 'callback2',
5599
5599
  fields: [{
5600
- title: localeKey('applyWeChatUserInfo.todoCallbacks.callback2.fields.0.title'),
5600
+ title: '失败回调',
5601
5601
  value: '$error_@{options.id}$',
5602
5602
  type: 'string',
5603
5603
  description: ''
@@ -5608,10 +5608,10 @@ var todoActionObject = {
5608
5608
  value: 'wxAbility'
5609
5609
  }],
5610
5610
  remarks: [{
5611
- label: localeKey('applyWeChatUserInfo.remarks.0.label'),
5611
+ label: '适用场景',
5612
5612
  content: localeKey('applyWeChatUserInfo.remarks.0.content')
5613
5613
  }, {
5614
- label: localeKey('applyWeChatUserInfo.remarks.1.label'),
5614
+ label: '配置说明',
5615
5615
  content: localeKey('applyWeChatUserInfo.remarks.1.content')
5616
5616
  }]
5617
5617
  },
@@ -5620,21 +5620,21 @@ var todoActionObject = {
5620
5620
  label: localeKey('wxUpdateAppMessageShareData.label'),
5621
5621
  todoOptions: [{
5622
5622
  key: 'title',
5623
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.title.label'),
5623
+ label: '分享标题',
5624
5624
  type: 'SetExpression',
5625
5625
  props: {
5626
5626
  valuePropName: 'title'
5627
5627
  }
5628
5628
  }, {
5629
5629
  key: 'desc',
5630
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.desc.label'),
5630
+ label: '分享描述',
5631
5631
  type: 'SetExpression',
5632
5632
  props: {
5633
5633
  valuePropName: 'desc'
5634
5634
  }
5635
5635
  }, {
5636
5636
  key: 'link',
5637
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.link.label'),
5637
+ label: '分享链接',
5638
5638
  type: 'SetExpression',
5639
5639
  props: {
5640
5640
  isRequired: true,
@@ -5651,7 +5651,7 @@ var todoActionObject = {
5651
5651
  todoCallbacks: ['callback1', {
5652
5652
  key: 'callback2',
5653
5653
  fields: [{
5654
- title: localeKey('wxUpdateAppMessageShareData.todoCallbacks.callback2.fields.0.title'),
5654
+ title: '失败回调',
5655
5655
  value: '$error_@{options.id}$',
5656
5656
  type: 'string',
5657
5657
  description: ''
@@ -5662,10 +5662,10 @@ var todoActionObject = {
5662
5662
  value: 'wxAbility'
5663
5663
  }],
5664
5664
  remarks: [{
5665
- label: localeKey('wxUpdateAppMessageShareData.remarks.0.label'),
5665
+ label: '适用场景',
5666
5666
  content: localeKey('wxUpdateAppMessageShareData.remarks.0.content')
5667
5667
  }, {
5668
- label: localeKey('wxUpdateAppMessageShareData.remarks.1.label'),
5668
+ label: '配置说明',
5669
5669
  content: localeKey('wxUpdateAppMessageShareData.remarks.1.content')
5670
5670
  }]
5671
5671
  },
@@ -5674,14 +5674,14 @@ var todoActionObject = {
5674
5674
  label: localeKey('wxUpdateTimelineShareData.label'),
5675
5675
  todoOptions: [{
5676
5676
  key: 'title',
5677
- label: localeKey('wxUpdateTimelineShareData.todoOptions.title.label'),
5677
+ label: '分享标题',
5678
5678
  type: 'SetExpression',
5679
5679
  props: {
5680
5680
  valuePropName: 'title'
5681
5681
  }
5682
5682
  }, {
5683
5683
  key: 'link',
5684
- label: localeKey('wxUpdateTimelineShareData.todoOptions.link.label'),
5684
+ label: '分享链接',
5685
5685
  type: 'SetExpression',
5686
5686
  props: {
5687
5687
  valuePropName: 'link'
@@ -5697,7 +5697,7 @@ var todoActionObject = {
5697
5697
  todoCallbacks: ['callback1', {
5698
5698
  key: 'callback2',
5699
5699
  fields: [{
5700
- title: localeKey('wxUpdateTimelineShareData.todoCallbacks.callback2.fields.0.title'),
5700
+ title: '失败回调',
5701
5701
  value: '$error_@{options.id}$',
5702
5702
  type: 'string',
5703
5703
  description: ''
@@ -5708,10 +5708,10 @@ var todoActionObject = {
5708
5708
  value: 'wxAbility'
5709
5709
  }],
5710
5710
  remarks: [{
5711
- label: localeKey('wxUpdateTimelineShareData.remarks.0.label'),
5711
+ label: '适用场景',
5712
5712
  content: localeKey('wxUpdateTimelineShareData.remarks.0.content')
5713
5713
  }, {
5714
- label: localeKey('wxUpdateTimelineShareData.remarks.1.label'),
5714
+ label: '配置说明',
5715
5715
  content: localeKey('wxUpdateTimelineShareData.remarks.1.content')
5716
5716
  }]
5717
5717
  },
@@ -5720,21 +5720,21 @@ var todoActionObject = {
5720
5720
  label: localeKey('wxOpenLocation.label'),
5721
5721
  todoOptions: [{
5722
5722
  key: 'latitude',
5723
- label: localeKey('wxOpenLocation.todoOptions.latitude.label'),
5723
+ label: '纬度',
5724
5724
  type: 'SetExpression',
5725
5725
  props: {
5726
5726
  valuePropName: 'latitude'
5727
5727
  }
5728
5728
  }, {
5729
5729
  key: 'longitude',
5730
- label: localeKey('wxOpenLocation.todoOptions.longitude.label'),
5730
+ label: '经度',
5731
5731
  type: 'SetExpression',
5732
5732
  props: {
5733
5733
  valuePropName: 'longitude'
5734
5734
  }
5735
5735
  }, {
5736
5736
  key: 'name',
5737
- label: localeKey('wxOpenLocation.todoOptions.name.label'),
5737
+ label: '位置名称',
5738
5738
  type: 'SetExpression',
5739
5739
  props: {
5740
5740
  valuePropName: 'name'
@@ -5767,7 +5767,7 @@ var todoActionObject = {
5767
5767
  todoCallbacks: ['callback1', {
5768
5768
  key: 'callback2',
5769
5769
  fields: [{
5770
- title: localeKey('wxOpenLocation.todoCallbacks.callback2.fields.0.title'),
5770
+ title: '失败回调',
5771
5771
  value: '$error_@{options.id}$',
5772
5772
  type: 'string',
5773
5773
  description: ''
@@ -5778,7 +5778,7 @@ var todoActionObject = {
5778
5778
  value: 'wxAbility'
5779
5779
  }],
5780
5780
  remarks: [{
5781
- label: localeKey('wxOpenLocation.remarks.0.label'),
5781
+ label: '适用场景',
5782
5782
  content: localeKey('wxOpenLocation.remarks.0.content')
5783
5783
  }]
5784
5784
  },
@@ -5787,7 +5787,7 @@ var todoActionObject = {
5787
5787
  label: localeKey('wxGetLocation.label'),
5788
5788
  todoOptions: [{
5789
5789
  key: 'locationType',
5790
- label: localeKey('wxGetLocation.todoOptions.locationType.label'),
5790
+ label: '坐标类型',
5791
5791
  type: 'Select',
5792
5792
  defaultValue: 'wgs84',
5793
5793
  props: {
@@ -5795,7 +5795,7 @@ var todoActionObject = {
5795
5795
  title: localeKey('wxGetLocation.todoOptions.locationType.props.options.0.title'),
5796
5796
  value: 'wgs84'
5797
5797
  }, {
5798
- title: localeKey('wxGetLocation.todoOptions.locationType.props.options.1.title'),
5798
+ title: '火星坐标',
5799
5799
  value: 'gcj02'
5800
5800
  }]
5801
5801
  }
@@ -5803,7 +5803,7 @@ var todoActionObject = {
5803
5803
  todoCallbacks: [{
5804
5804
  key: 'callback1',
5805
5805
  fields: [{
5806
- title: localeKey('wxGetLocation.todoCallbacks.callback1.fields.0.title'),
5806
+ title: '成功败回调',
5807
5807
  value: '$success_@{options.id}$',
5808
5808
  type: 'object',
5809
5809
  description: localeKey('wxGetLocation.todoCallbacks.callback1.fields.0.description')
@@ -5811,7 +5811,7 @@ var todoActionObject = {
5811
5811
  }, {
5812
5812
  key: 'callback2',
5813
5813
  fields: [{
5814
- title: localeKey('wxGetLocation.todoCallbacks.callback2.fields.0.title'),
5814
+ title: '失败回调',
5815
5815
  value: '$error_@{options.id}$',
5816
5816
  type: 'string',
5817
5817
  description: ''
@@ -5822,7 +5822,7 @@ var todoActionObject = {
5822
5822
  value: 'wxAbility'
5823
5823
  }],
5824
5824
  remarks: [{
5825
- label: localeKey('wxGetLocation.remarks.0.label'),
5825
+ label: '适用场景',
5826
5826
  content: localeKey('wxGetLocation.remarks.0.content')
5827
5827
  }]
5828
5828
  },
@@ -5837,15 +5837,15 @@ var todoActionObject = {
5837
5837
  props: {}
5838
5838
  }, {
5839
5839
  key: 'sourceType',
5840
- label: localeKey('wxChooseImage.todoOptions.sourceType.label'),
5840
+ label: '图片来源',
5841
5841
  type: 'MultiSelect',
5842
5842
  defaultValue: ['album', 'camera'],
5843
5843
  props: {
5844
5844
  options: [{
5845
- title: localeKey('wxChooseImage.todoOptions.sourceType.props.options.0.title'),
5845
+ title: '相册',
5846
5846
  value: 'album'
5847
5847
  }, {
5848
- title: localeKey('wxChooseImage.todoOptions.sourceType.props.options.1.title'),
5848
+ title: '相机',
5849
5849
  value: 'camera'
5850
5850
  }]
5851
5851
  }
@@ -5853,7 +5853,7 @@ var todoActionObject = {
5853
5853
  todoCallbacks: [{
5854
5854
  key: 'callback1',
5855
5855
  fields: [{
5856
- title: localeKey('wxChooseImage.todoCallbacks.callback1.fields.0.title'),
5856
+ title: '成功败回调',
5857
5857
  value: '$success_@{options.id}$',
5858
5858
  type: 'object',
5859
5859
  description: localeKey('wxChooseImage.todoCallbacks.callback1.fields.0.description')
@@ -5861,7 +5861,7 @@ var todoActionObject = {
5861
5861
  }, {
5862
5862
  key: 'callback2',
5863
5863
  fields: [{
5864
- title: localeKey('wxChooseImage.todoCallbacks.callback2.fields.0.title'),
5864
+ title: '失败回调',
5865
5865
  value: '$error_@{options.id}$',
5866
5866
  type: 'string',
5867
5867
  description: ''
@@ -5872,7 +5872,7 @@ var todoActionObject = {
5872
5872
  value: 'wxAbility'
5873
5873
  }],
5874
5874
  remarks: [{
5875
- label: localeKey('wxChooseImage.remarks.0.label'),
5875
+ label: '适用场景',
5876
5876
  content: localeKey('wxChooseImage.remarks.0.content')
5877
5877
  }]
5878
5878
  },
@@ -5895,7 +5895,7 @@ var todoActionObject = {
5895
5895
  todoCallbacks: ['callback1', {
5896
5896
  key: 'callback2',
5897
5897
  fields: [{
5898
- title: localeKey('wxPreviewImage.todoCallbacks.callback2.fields.0.title'),
5898
+ title: '失败回调',
5899
5899
  value: '$error_@{options.id}$',
5900
5900
  type: 'string',
5901
5901
  description: ''
@@ -5906,7 +5906,7 @@ var todoActionObject = {
5906
5906
  value: 'wxAbility'
5907
5907
  }],
5908
5908
  remarks: [{
5909
- label: localeKey('wxPreviewImage.remarks.0.label'),
5909
+ label: '适用场景',
5910
5910
  content: localeKey('wxPreviewImage.remarks.0.content')
5911
5911
  }]
5912
5912
  },
@@ -5929,7 +5929,7 @@ var todoActionObject = {
5929
5929
  todoCallbacks: [{
5930
5930
  key: 'callback1',
5931
5931
  fields: [{
5932
- title: localeKey('wxUploadImage.todoCallbacks.callback1.fields.0.title'),
5932
+ title: '成功败回调',
5933
5933
  value: '$success_@{options.id}$',
5934
5934
  type: 'object',
5935
5935
  description: localeKey('wxUploadImage.todoCallbacks.callback1.fields.0.description')
@@ -5937,7 +5937,7 @@ var todoActionObject = {
5937
5937
  }, {
5938
5938
  key: 'callback2',
5939
5939
  fields: [{
5940
- title: localeKey('wxUploadImage.todoCallbacks.callback2.fields.0.title'),
5940
+ title: '失败回调',
5941
5941
  value: '$error_@{options.id}$',
5942
5942
  type: 'string',
5943
5943
  description: ''
@@ -5948,7 +5948,7 @@ var todoActionObject = {
5948
5948
  value: 'wxAbility'
5949
5949
  }],
5950
5950
  remarks: [{
5951
- label: localeKey('wxUploadImage.remarks.0.label'),
5951
+ label: '适用场景',
5952
5952
  content: localeKey('wxUploadImage.remarks.0.content')
5953
5953
  }]
5954
5954
  },
@@ -5971,7 +5971,7 @@ var todoActionObject = {
5971
5971
  todoCallbacks: [{
5972
5972
  key: 'callback1',
5973
5973
  fields: [{
5974
- title: localeKey('wxDownloadImage.todoCallbacks.callback1.fields.0.title'),
5974
+ title: '成功败回调',
5975
5975
  value: '$success_@{options.id}$',
5976
5976
  type: 'object',
5977
5977
  description: localeKey('wxDownloadImage.todoCallbacks.callback1.fields.0.description')
@@ -5979,7 +5979,7 @@ var todoActionObject = {
5979
5979
  }, {
5980
5980
  key: 'callback2',
5981
5981
  fields: [{
5982
- title: localeKey('wxDownloadImage.todoCallbacks.callback2.fields.0.title'),
5982
+ title: '失败回调',
5983
5983
  value: '$error_@{options.id}$',
5984
5984
  type: 'string',
5985
5985
  description: ''
@@ -5990,7 +5990,7 @@ var todoActionObject = {
5990
5990
  value: 'wxAbility'
5991
5991
  }],
5992
5992
  remarks: [{
5993
- label: localeKey('wxDownloadImage.remarks.0.label'),
5993
+ label: '适用场景',
5994
5994
  content: localeKey('wxDownloadImage.remarks.0.content')
5995
5995
  }]
5996
5996
  },
@@ -6013,7 +6013,7 @@ var todoActionObject = {
6013
6013
  todoCallbacks: [{
6014
6014
  key: 'callback1',
6015
6015
  fields: [{
6016
- title: localeKey('wxGetLocalImgData.todoCallbacks.callback1.fields.0.title'),
6016
+ title: '成功败回调',
6017
6017
  value: '$success_@{options.id}$',
6018
6018
  type: 'object',
6019
6019
  description: localeKey('wxGetLocalImgData.todoCallbacks.callback1.fields.0.description')
@@ -6021,7 +6021,7 @@ var todoActionObject = {
6021
6021
  }, {
6022
6022
  key: 'callback2',
6023
6023
  fields: [{
6024
- title: localeKey('wxGetLocalImgData.todoCallbacks.callback2.fields.0.title'),
6024
+ title: '失败回调',
6025
6025
  value: '$error_@{options.id}$',
6026
6026
  type: 'string',
6027
6027
  description: ''
@@ -6032,7 +6032,7 @@ var todoActionObject = {
6032
6032
  value: 'wxAbility'
6033
6033
  }],
6034
6034
  remarks: [{
6035
- label: localeKey('wxGetLocalImgData.remarks.0.label'),
6035
+ label: '注意',
6036
6036
  content: localeKey('wxGetLocalImgData.remarks.0.content')
6037
6037
  }]
6038
6038
  },
@@ -6041,21 +6041,21 @@ var todoActionObject = {
6041
6041
  label: localeKey('openFloatWindow.label'),
6042
6042
  todoOptions: [{
6043
6043
  key: 'location',
6044
- label: localeKey('openFloatWindow.todoOptions.location.label'),
6044
+ label: '浮窗位置',
6045
6045
  type: 'RadioButton',
6046
6046
  defaultValue: 'right',
6047
6047
  props: {
6048
6048
  options: [{
6049
- title: localeKey('openFloatWindow.todoOptions.location.props.options.0.title'),
6049
+ title: '左侧',
6050
6050
  value: 'left'
6051
6051
  }, {
6052
- title: localeKey('openFloatWindow.todoOptions.location.props.options.1.title'),
6052
+ title: '右侧',
6053
6053
  value: 'right'
6054
6054
  }]
6055
6055
  }
6056
6056
  }, {
6057
6057
  key: 'size',
6058
- label: localeKey('openFloatWindow.todoOptions.size.label'),
6058
+ label: '窗口尺寸',
6059
6059
  type: 'WindowSize',
6060
6060
  defaultValue: {
6061
6061
  size: {
@@ -6065,7 +6065,7 @@ var todoActionObject = {
6065
6065
  }
6066
6066
  }, {
6067
6067
  key: 'windowPage',
6068
- label: localeKey('openFloatWindow.todoOptions.windowPage.label'),
6068
+ label: '选择页面',
6069
6069
  type: 'SelectWindow',
6070
6070
  props: {
6071
6071
  isRequired: true,
@@ -6073,7 +6073,7 @@ var todoActionObject = {
6073
6073
  }
6074
6074
  }, {
6075
6075
  key: 'componentState',
6076
- label: localeKey('openFloatWindow.todoOptions.componentState.label'),
6076
+ label: '组件状态',
6077
6077
  type: 'ComponentState',
6078
6078
  visibleFlag: function (_ref2) {
6079
6079
  var _dataOptions$windowPa;
@@ -6081,16 +6081,16 @@ var todoActionObject = {
6081
6081
  return (dataOptions === null || dataOptions === void 0 || (_dataOptions$windowPa = dataOptions.windowPage) === null || _dataOptions$windowPa === void 0 ? void 0 : _dataOptions$windowPa.type) === 'page';
6082
6082
  }.toString(),
6083
6083
  extraGroups: [{
6084
- subLabel: localeKey('openFloatWindow.todoOptions.componentState.extraGroups.0.subLabel'),
6084
+ subLabel: '组件刷新',
6085
6085
  subClickFunName: 'refreshCompsStateData'
6086
6086
  }]
6087
6087
  }],
6088
6088
  classification: [{
6089
- label: localeKey('openFloatWindow.classification.page.label'),
6089
+ label: '页面类',
6090
6090
  value: 'page'
6091
6091
  }],
6092
6092
  remarks: [{
6093
- label: localeKey('openFloatWindow.remarks.0.label'),
6093
+ label: '配置说明',
6094
6094
  content: localeKey('openFloatWindow.remarks.0.content')
6095
6095
  }]
6096
6096
  },
@@ -6099,7 +6099,7 @@ var todoActionObject = {
6099
6099
  label: localeKey('callAiService.label'),
6100
6100
  todoOptions: [{
6101
6101
  key: 'actionTitle',
6102
- label: localeKey('callAiService.todoOptions.actionTitle.label'),
6102
+ label: '动作说明',
6103
6103
  type: 'CustomActionTitle',
6104
6104
  props: {
6105
6105
  placeholder: localeKey('callAiService.todoOptions.actionTitle.props.placeholder'),
@@ -6108,7 +6108,7 @@ var todoActionObject = {
6108
6108
  }
6109
6109
  }, {
6110
6110
  key: 'url',
6111
- label: localeKey('callAiService.todoOptions.url.label'),
6111
+ label: '选择服务',
6112
6112
  type: 'SelectAiServiceUrl',
6113
6113
  props: {
6114
6114
  isRequired: true,
@@ -6123,7 +6123,7 @@ var todoActionObject = {
6123
6123
  selectableCompType: ['RichTextEditor'],
6124
6124
  placeholder: localeKey('callAiService.todoOptions.compid.props.placeholder'),
6125
6125
  titleLink: [{
6126
- title: localeKey('callAiService.todoOptions.compid.props.titleLink.0.title'),
6126
+ title: '清空已选',
6127
6127
  value: 'cleanValue'
6128
6128
  }]
6129
6129
  },
@@ -6134,10 +6134,10 @@ var todoActionObject = {
6134
6134
  }.toString()
6135
6135
  }, {
6136
6136
  key: 'params',
6137
- label: localeKey('callAiService.todoOptions.params.label'),
6137
+ label: '参数赋值',
6138
6138
  type: 'SetAiServiceRequestParam',
6139
6139
  extraGroups: [{
6140
- subLabel: localeKey('callAiService.todoOptions.params.extraGroups.0.subLabel'),
6140
+ subLabel: '清空赋值',
6141
6141
  subClickFunName: 'cleanValue'
6142
6142
  }]
6143
6143
  }],
@@ -6148,7 +6148,7 @@ var todoActionObject = {
6148
6148
  key: 'callback2'
6149
6149
  }],
6150
6150
  classification: [{
6151
- label: localeKey('callAiService.classification.request.label'),
6151
+ label: '服务请求类',
6152
6152
  value: 'request'
6153
6153
  }]
6154
6154
  },
@@ -6157,7 +6157,7 @@ var todoActionObject = {
6157
6157
  label: localeKey('closeAiService.label'),
6158
6158
  todoOptions: [{
6159
6159
  key: 'actionTitle',
6160
- label: localeKey('closeAiService.todoOptions.actionTitle.label'),
6160
+ label: '动作说明',
6161
6161
  type: 'CustomActionTitle',
6162
6162
  props: {
6163
6163
  placeholder: localeKey('closeAiService.todoOptions.actionTitle.props.placeholder'),
@@ -6166,7 +6166,7 @@ var todoActionObject = {
6166
6166
  }
6167
6167
  }, {
6168
6168
  key: 'url',
6169
- label: localeKey('closeAiService.todoOptions.url.label'),
6169
+ label: '选择服务',
6170
6170
  type: 'SelectAiServiceUrl',
6171
6171
  props: {
6172
6172
  isRequired: true,
@@ -6176,7 +6176,7 @@ var todoActionObject = {
6176
6176
  }],
6177
6177
  todoCallbacks: ['callback1', 'classback2'],
6178
6178
  classification: [{
6179
- label: localeKey('closeAiService.classification.request.label'),
6179
+ label: '服务请求类',
6180
6180
  value: 'request'
6181
6181
  }]
6182
6182
  }