@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
@@ -27,37 +27,37 @@ var todoActionObject = {
27
27
  label: localeKey('showMessage.label'),
28
28
  todoOptions: [{
29
29
  key: 'type',
30
- label: localeKey('showMessage.todoOptions.type.label'),
30
+ label: '类型',
31
31
  type: 'Select',
32
32
  defaultValue: 'success',
33
33
  props: {
34
34
  options: [{
35
- title: localeKey('showMessage.todoOptions.type.props.options.0.title'),
35
+ title: '成功',
36
36
  value: 'success'
37
37
  }, {
38
- title: localeKey('showMessage.todoOptions.type.props.options.1.title'),
38
+ title: '提示',
39
39
  value: 'info'
40
40
  }, {
41
- title: localeKey('showMessage.todoOptions.type.props.options.2.title'),
41
+ title: '警告',
42
42
  value: 'warn'
43
43
  }, {
44
- title: localeKey('showMessage.todoOptions.type.props.options.3.title'),
44
+ title: '错误',
45
45
  value: 'error'
46
46
  }, {
47
- title: localeKey('showMessage.todoOptions.type.props.options.4.title'),
47
+ title: '加载动画',
48
48
  value: 'loading'
49
49
  }]
50
50
  }
51
51
  }, {
52
52
  key: 'value',
53
- label: localeKey('showMessage.todoOptions.value.label'),
53
+ label: '内容',
54
54
  type: 'SetExpression'
55
55
  }, {
56
56
  key: 'duration',
57
- label: localeKey('showMessage.todoOptions.duration.label'),
57
+ label: '加载时长',
58
58
  type: 'InputNumber',
59
59
  props: {
60
- addonAfter: localeKey('showMessage.todoOptions.duration.props.addonAfter'),
60
+ addonAfter: '',
61
61
  step: '0.01',
62
62
  formatter: function formatter(val) {
63
63
  return val ? val.match(/^\d+(?:\.\d{0,2})?/) : undefined;
@@ -69,7 +69,7 @@ var todoActionObject = {
69
69
  value: 'modal'
70
70
  }],
71
71
  remarks: [{
72
- label: localeKey('showMessage.remarks.0.label'),
72
+ label: '注意事项',
73
73
  content: localeKey('showMessage.remarks.0.content')
74
74
  }]
75
75
  },
@@ -83,10 +83,10 @@ var todoActionObject = {
83
83
  },
84
84
  apiRequest: {
85
85
  key: 'apiRequest',
86
- label: localeKey('apiRequest.label'),
86
+ label: '发送请求',
87
87
  todoOptions: [{
88
88
  key: 'actionTitle',
89
- label: localeKey('apiRequest.todoOptions.actionTitle.label'),
89
+ label: '动作说明',
90
90
  type: 'CustomActionTitle',
91
91
  props: {
92
92
  placeholder: localeKey('apiRequest.todoOptions.actionTitle.props.placeholder'),
@@ -100,10 +100,10 @@ var todoActionObject = {
100
100
  defaultValue: false,
101
101
  props: {
102
102
  options: [{
103
- title: localeKey('apiRequest.todoOptions.sync.props.options.0.title'),
103
+ title: '异步加载',
104
104
  value: false
105
105
  }, {
106
- title: localeKey('apiRequest.todoOptions.sync.props.options.1.title'),
106
+ title: '同步加载',
107
107
  value: true
108
108
  }]
109
109
  }
@@ -128,10 +128,10 @@ var todoActionObject = {
128
128
  visibleFlagValue: [true]
129
129
  }, {
130
130
  key: 'params',
131
- label: localeKey('apiRequest.todoOptions.params.label'),
131
+ label: '参数赋值',
132
132
  type: 'SetRequestParam',
133
133
  extraGroups: [{
134
- subLabel: localeKey('apiRequest.todoOptions.params.extraGroups.0.subLabel'),
134
+ subLabel: '清空赋值',
135
135
  subClickFunName: 'cleanValue'
136
136
  }]
137
137
  }],
@@ -142,10 +142,10 @@ var todoActionObject = {
142
142
  key: 'callback2'
143
143
  }],
144
144
  classification: [{
145
- label: localeKey('apiRequest.classification.0.label'),
145
+ label: '常用',
146
146
  value: 'common'
147
147
  }, {
148
- label: localeKey('apiRequest.classification.1.label'),
148
+ label: '服务请求类',
149
149
  value: 'request'
150
150
  }],
151
151
  isAsync: true
@@ -155,7 +155,7 @@ var todoActionObject = {
155
155
  label: localeKey('JSBridge.label'),
156
156
  todoOptions: [{
157
157
  key: 'method',
158
- label: localeKey('JSBridge.todoOptions.method.label'),
158
+ label: '方法名',
159
159
  type: 'input',
160
160
  props: {
161
161
  placeholder: localeKey('JSBridge.todoOptions.method.props.placeholder')
@@ -197,7 +197,7 @@ var todoActionObject = {
197
197
  }
198
198
  }, {
199
199
  key: 'flowCustParams',
200
- label: localeKey('JSBridge.todoOptions.flowCustParams.label'),
200
+ label: '自定义参数',
201
201
  type: 'SetCustomParams'
202
202
  }],
203
203
  todoCallbacks: [{
@@ -212,13 +212,13 @@ var todoActionObject = {
212
212
  }
213
213
  }],
214
214
  classification: [{
215
- label: localeKey('JSBridge.classification.others.label'),
215
+ label: '其他',
216
216
  value: 'others'
217
217
  }]
218
218
  },
219
219
  apiRequestByFlow: {
220
220
  key: 'apiRequestByFlow',
221
- label: localeKey('apiRequestByFlow.label'),
221
+ label: '触发流程',
222
222
  todoOptions: [{
223
223
  key: 'sync',
224
224
  label: localeKey('apiRequestByFlow.todoOptions.sync.label'),
@@ -226,10 +226,10 @@ var todoActionObject = {
226
226
  defaultValue: false,
227
227
  props: {
228
228
  options: [{
229
- title: localeKey('apiRequestByFlow.todoOptions.sync.props.options.0.title'),
229
+ title: '异步加载',
230
230
  value: false
231
231
  }, {
232
- title: localeKey('apiRequestByFlow.todoOptions.sync.props.options.1.title'),
232
+ title: '同步加载',
233
233
  value: true
234
234
  }]
235
235
  }
@@ -239,29 +239,29 @@ var todoActionObject = {
239
239
  type: 'input'
240
240
  }, {
241
241
  key: 'flowType',
242
- label: localeKey('apiRequestByFlow.todoOptions.flowType.label'),
242
+ label: '流程类型',
243
243
  type: 'Select',
244
244
  props: {
245
245
  options: [{
246
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.0.title'),
246
+ title: '启动',
247
247
  value: 'initiate'
248
248
  }, {
249
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.1.title'),
249
+ title: '通过',
250
250
  value: 'pass'
251
251
  }, {
252
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.2.title'),
252
+ title: '拒绝',
253
253
  value: 'refuse'
254
254
  }, {
255
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.3.title'),
255
+ title: '转派',
256
256
  value: 'transfer'
257
257
  }, {
258
- title: localeKey('apiRequestByFlow.todoOptions.flowType.props.options.4.title'),
258
+ title: '通用',
259
259
  value: 'customized'
260
260
  }]
261
261
  }
262
262
  }, {
263
263
  key: 'flowCode',
264
- label: localeKey('apiRequestByFlow.todoOptions.flowCode.label'),
264
+ label: '选择流程',
265
265
  type: 'SelectFlowCode'
266
266
  }, {
267
267
  key: 'workOrderId',
@@ -274,7 +274,7 @@ var todoActionObject = {
274
274
  type: 'SetExpression'
275
275
  }, {
276
276
  key: 'configDealUserId',
277
- label: localeKey('apiRequestByFlow.todoOptions.configDealUserId.label'),
277
+ label: '指定处理人',
278
278
  type: 'SetExpression'
279
279
  }, {
280
280
  key: 'flowBtnActionType',
@@ -282,7 +282,7 @@ var todoActionObject = {
282
282
  type: 'SetExpression'
283
283
  }, {
284
284
  key: 'flowAuditDesc',
285
- label: localeKey('apiRequestByFlow.todoOptions.flowAuditDesc.label'),
285
+ label: '审核意见',
286
286
  type: 'SetExpression'
287
287
  }, {
288
288
  key: 'flowFileId',
@@ -291,7 +291,7 @@ var todoActionObject = {
291
291
  }],
292
292
  todoCallbacks: ['callback1', 'callback2'],
293
293
  classification: [{
294
- label: localeKey('apiRequestByFlow.classification.request.label'),
294
+ label: '服务请求类',
295
295
  value: 'request'
296
296
  }]
297
297
  },
@@ -316,21 +316,21 @@ var todoActionObject = {
316
316
  type: 'Switch'
317
317
  }, {
318
318
  key: 'flowCustParams',
319
- label: localeKey('openFlowPage.todoOptions.flowCustParams.label'),
319
+ label: '自定义参数',
320
320
  type: 'SetCustomParams'
321
321
  }],
322
322
  todoCallbacks: ['callback1', 'callback2'],
323
323
  classification: [{
324
- label: localeKey('openFlowPage.classification.page.label'),
324
+ label: '页面类',
325
325
  value: 'page'
326
326
  }]
327
327
  },
328
328
  rollbackFlow: {
329
329
  key: 'rollbackFlow',
330
- label: localeKey('rollbackFlow.label'),
330
+ label: '流程回退',
331
331
  todoOptions: [{
332
332
  key: 'flowExtraParams',
333
- label: localeKey('rollbackFlow.todoOptions.flowExtraParams.label'),
333
+ label: '目标环节',
334
334
  type: 'SetRollbackFlowOptions',
335
335
  props: {
336
336
  isRequired: true
@@ -338,7 +338,7 @@ var todoActionObject = {
338
338
  }],
339
339
  todoCallbacks: ['callback1', 'callback2'],
340
340
  classification: [{
341
- label: localeKey('rollbackFlow.classification.page.label'),
341
+ label: '页面类',
342
342
  value: 'page'
343
343
  }]
344
344
  },
@@ -360,7 +360,7 @@ var todoActionObject = {
360
360
  }
361
361
  }, {
362
362
  key: 'diagramFlowCode',
363
- label: localeKey('openFlowDiagram.todoOptions.diagramFlowCode.label'),
363
+ label: '选择流程',
364
364
  type: 'SelectFlowCode'
365
365
  }, {
366
366
  key: 'diagramWorkOrderId',
@@ -368,59 +368,59 @@ var todoActionObject = {
368
368
  type: 'SetExpression'
369
369
  }],
370
370
  classification: [{
371
- label: localeKey('openFlowDiagram.classification.page.label'),
371
+ label: '页面类',
372
372
  value: 'page'
373
373
  }]
374
374
  },
375
375
  console: {
376
376
  key: 'console',
377
- label: localeKey('console.label'),
377
+ label: '打印日志',
378
378
  todoOptions: [{
379
379
  key: 'value',
380
- label: localeKey('console.todoOptions.value.label'),
380
+ label: '内容',
381
381
  aliasKey: 'valueArray',
382
382
  type: 'SetValueByArray'
383
383
  }],
384
384
  classification: [{
385
- label: localeKey('console.classification.debug.label'),
385
+ label: '调试类',
386
386
  value: 'debug'
387
387
  }]
388
388
  },
389
389
  sysSetVisible: {
390
390
  key: 'sysSetVisible',
391
- label: localeKey('sysSetVisible.label'),
391
+ label: '控制显隐',
392
392
  todoOptions: [{
393
393
  key: 'compid',
394
- label: localeKey('sysSetVisible.todoOptions.compid.label'),
394
+ label: '组件选择',
395
395
  type: 'CompTree',
396
396
  aliasKey: 'compId',
397
397
  props: {
398
398
  checkable: true,
399
399
  titleLink: [{
400
- title: localeKey('sysSetVisible.todoOptions.compid.props.titleLink.0.title'),
400
+ title: '清空已选',
401
401
  value: 'cleanValue'
402
402
  }]
403
403
  }
404
404
  }, {
405
405
  key: 'compValueList',
406
- label: localeKey('sysSetVisible.todoOptions.compValueList.label'),
406
+ label: '是否显隐',
407
407
  type: 'SetBatchProps',
408
408
  props: {
409
409
  defaultValue: '',
410
410
  options: [{
411
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.0.title'),
411
+ title: '显示',
412
412
  value: 'true'
413
413
  }, {
414
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.1.title'),
414
+ title: '隐藏',
415
415
  value: ''
416
416
  }, {
417
- title: localeKey('sysSetVisible.todoOptions.compValueList.props.options.2.title'),
417
+ title: '切换',
418
418
  value: 'toggle'
419
419
  }]
420
420
  }
421
421
  }],
422
422
  classification: [{
423
- label: localeKey('sysSetVisible.classification.0.label'),
423
+ label: '常用',
424
424
  value: 'common'
425
425
  }, {
426
426
  label: localeKey('sysSetVisible.classification.1.label'),
@@ -429,154 +429,154 @@ var todoActionObject = {
429
429
  },
430
430
  sysSetValue: {
431
431
  key: 'sysSetValue',
432
- label: localeKey('sysSetValue.label'),
432
+ label: '控件赋值',
433
433
  todoOptions: [{
434
434
  key: 'compid',
435
- label: localeKey('sysSetValue.todoOptions.compid.label'),
435
+ label: '组件选择',
436
436
  type: 'CompTree',
437
437
  aliasKey: 'compId',
438
438
  props: {
439
439
  titleLink: [{
440
- title: localeKey('sysSetValue.todoOptions.compid.props.titleLink.0.title'),
440
+ title: '清空已选',
441
441
  value: 'cleanValue'
442
442
  }]
443
443
  }
444
444
  }, {
445
445
  key: 'valueList',
446
- label: localeKey('sysSetValue.todoOptions.valueList.label'),
446
+ label: '组件赋值',
447
447
  type: 'SetSysExpression',
448
448
  props: {
449
449
  titleLink: [{
450
- title: localeKey('sysSetValue.todoOptions.valueList.props.titleLink.0.title'),
450
+ title: '清空赋值',
451
451
  value: 'clearValue'
452
452
  }]
453
453
  }
454
454
  }],
455
455
  todoCallbacks: ['callback1'],
456
456
  classification: [{
457
- label: localeKey('sysSetValue.classification.0.label'),
457
+ label: '常用',
458
458
  value: 'common'
459
459
  }, {
460
- label: localeKey('sysSetValue.classification.1.label'),
460
+ label: '数据设置',
461
461
  value: 'setData'
462
462
  }],
463
463
  initClose: true
464
464
  },
465
465
  sysSetDisable: {
466
466
  key: 'sysSetDisable',
467
- label: localeKey('sysSetDisable.label'),
467
+ label: '禁用状态',
468
468
  todoOptions: [{
469
469
  key: 'compid',
470
- label: localeKey('sysSetDisable.todoOptions.compid.label'),
470
+ label: '组件选择',
471
471
  type: 'CompTree',
472
472
  aliasKey: 'compId',
473
473
  props: {
474
474
  checkable: true,
475
475
  titleLink: [{
476
- title: localeKey('sysSetDisable.todoOptions.compid.props.titleLink.0.title'),
476
+ title: '清空已选',
477
477
  value: 'cleanValue'
478
478
  }]
479
479
  }
480
480
  }, {
481
481
  key: 'compValueList',
482
- label: localeKey('sysSetDisable.todoOptions.compValueList.label'),
482
+ label: '是否禁用',
483
483
  type: 'SetBatchProps',
484
484
  props: {
485
485
  defaultValue: 'toggle',
486
486
  options: [{
487
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.0.title'),
487
+ title: '启动',
488
488
  value: ''
489
489
  }, {
490
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.1.title'),
490
+ title: '禁用',
491
491
  value: 'true'
492
492
  }, {
493
- title: localeKey('sysSetDisable.todoOptions.compValueList.props.options.2.title'),
493
+ title: '切换',
494
494
  value: 'toggle'
495
495
  }]
496
496
  }
497
497
  }],
498
498
  classification: [{
499
- label: localeKey('sysSetDisable.classification.0.label'),
499
+ label: '常用',
500
500
  value: 'common'
501
501
  }, {
502
- label: localeKey('sysSetDisable.classification.1.label'),
502
+ label: '数据设置',
503
503
  value: 'setData'
504
504
  }]
505
505
  },
506
506
  sysSetRequired: {
507
507
  key: 'sysSetRequired',
508
- label: localeKey('sysSetRequired.label'),
508
+ label: '设置必填',
509
509
  todoOptions: [{
510
510
  key: 'compid',
511
- label: localeKey('sysSetRequired.todoOptions.compid.label'),
511
+ label: '组件选择',
512
512
  type: 'CompTree',
513
513
  aliasKey: 'compId',
514
514
  props: {
515
515
  checkable: true,
516
516
  titleLink: [{
517
- title: localeKey('sysSetRequired.todoOptions.compid.props.titleLink.0.title'),
517
+ title: '清空已选',
518
518
  value: 'cleanValue'
519
519
  }]
520
520
  }
521
521
  }, {
522
522
  key: 'compValueList',
523
- label: localeKey('sysSetRequired.todoOptions.compValueList.label'),
523
+ label: '是否必填',
524
524
  type: 'SetBatchProps',
525
525
  props: {
526
526
  defaultValue: 'toggle',
527
527
  options: [{
528
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.0.title'),
528
+ title: '必填',
529
529
  value: 'true'
530
530
  }, {
531
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.1.title'),
531
+ title: '非必填',
532
532
  value: ''
533
533
  }, {
534
- title: localeKey('sysSetRequired.todoOptions.compValueList.props.options.2.title'),
534
+ title: '切换',
535
535
  value: 'toggle'
536
536
  }]
537
537
  }
538
538
  }],
539
539
  classification: [{
540
- label: localeKey('sysSetRequired.classification.0.label'),
540
+ label: '常用',
541
541
  value: 'common'
542
542
  }, {
543
- label: localeKey('sysSetRequired.classification.1.label'),
543
+ label: '数据设置',
544
544
  value: 'setData'
545
545
  }]
546
546
  },
547
547
  showModal: {
548
548
  key: 'showModal',
549
- label: localeKey('showModal.label'),
549
+ label: '打开提示框',
550
550
  todoOptions: [{
551
551
  key: 'type',
552
- label: localeKey('showModal.todoOptions.type.label'),
552
+ label: '类型',
553
553
  type: 'Select',
554
554
  aliasKey: 'modalType',
555
555
  props: {
556
556
  options: [{
557
- title: localeKey('showModal.todoOptions.type.props.options.0.title'),
557
+ title: '成功',
558
558
  value: 'success'
559
559
  }, {
560
- title: localeKey('showModal.todoOptions.type.props.options.1.title'),
560
+ title: '提示',
561
561
  value: 'info'
562
562
  }, {
563
- title: localeKey('showModal.todoOptions.type.props.options.2.title'),
563
+ title: '警告',
564
564
  value: 'warning'
565
565
  }, {
566
- title: localeKey('showModal.todoOptions.type.props.options.3.title'),
566
+ title: '错误',
567
567
  value: 'error'
568
568
  }, {
569
- title: localeKey('showModal.todoOptions.type.props.options.4.title'),
569
+ title: '确认',
570
570
  value: 'confirm'
571
571
  }]
572
572
  }
573
573
  }, {
574
574
  key: 'title',
575
- label: localeKey('showModal.todoOptions.title.label'),
575
+ label: '标题',
576
576
  type: 'SetExpression'
577
577
  }, {
578
578
  key: 'content',
579
- label: localeKey('showModal.todoOptions.content.label'),
579
+ label: '内容',
580
580
  type: 'SetExpression'
581
581
  }, {
582
582
  key: 'okText',
@@ -591,7 +591,7 @@ var todoActionObject = {
591
591
  }],
592
592
  todoCallbacks: ['callback1', 'callback2'],
593
593
  classification: [{
594
- label: localeKey('showModal.classification.0.label'),
594
+ label: '常用',
595
595
  value: 'common'
596
596
  }, {
597
597
  label: localeKey('showModal.classification.1.label'),
@@ -607,16 +607,16 @@ var todoActionObject = {
607
607
  type: 'SetSelectedPage'
608
608
  }, {
609
609
  key: 'componentState',
610
- label: localeKey('showCustomModal.todoOptions.componentState.label'),
610
+ label: '组件状态',
611
611
  type: 'ComponentState',
612
612
  extraGroups: [{
613
- subLabel: localeKey('showCustomModal.todoOptions.componentState.extraGroups.0.subLabel'),
613
+ subLabel: '组件刷新',
614
614
  subClickFunName: 'refreshCompsStateData'
615
615
  }]
616
616
  }],
617
617
  todoCallbacks: ['callback1', 'callback2'],
618
618
  classification: [{
619
- label: localeKey('showCustomModal.classification.0.label'),
619
+ label: '常用',
620
620
  value: 'common'
621
621
  }, {
622
622
  label: localeKey('showCustomModal.classification.1.label'),
@@ -626,17 +626,17 @@ var todoActionObject = {
626
626
  },
627
627
  showAppCustomModal: {
628
628
  key: 'showAppCustomModal',
629
- label: localeKey('showAppCustomModal.label'),
629
+ label: '打开弹窗',
630
630
  todoOptions: [{
631
631
  key: 'modalname',
632
- label: localeKey('showAppCustomModal.todoOptions.modalname.label'),
632
+ label: '弹窗',
633
633
  type: 'SelectModal'
634
634
  }, {
635
635
  key: 'componentState',
636
- label: localeKey('showAppCustomModal.todoOptions.componentState.label'),
636
+ label: '组件状态',
637
637
  type: 'ComponentState',
638
638
  extraGroups: [{
639
- subLabel: localeKey('showAppCustomModal.todoOptions.componentState.extraGroups.0.subLabel'),
639
+ subLabel: '组件刷新',
640
640
  subClickFunName: 'refreshCompsStateData'
641
641
  }]
642
642
  }],
@@ -646,7 +646,7 @@ var todoActionObject = {
646
646
  value: 'modal'
647
647
  }],
648
648
  remarks: [{
649
- label: localeKey('showAppCustomModal.remarks.0.label'),
649
+ label: '配置建议',
650
650
  content: localeKey('showAppCustomModal.remarks.0.content')
651
651
  }],
652
652
  isAsync: true
@@ -656,7 +656,7 @@ var todoActionObject = {
656
656
  label: localeKey('setModalTitle.label'),
657
657
  todoOptions: [{
658
658
  key: 'title',
659
- label: localeKey('setModalTitle.todoOptions.title.label'),
659
+ label: '弹窗标题',
660
660
  type: 'SetExpression'
661
661
  }],
662
662
  classification: [{
@@ -673,7 +673,7 @@ var todoActionObject = {
673
673
  type: 'SetSelectedPage'
674
674
  }, {
675
675
  key: 'compState',
676
- label: localeKey('showDrawer.todoOptions.compState.label'),
676
+ label: '组件状态',
677
677
  type: 'CompState'
678
678
  }],
679
679
  todoCallbacks: ['callback1', 'callback2'],
@@ -682,7 +682,7 @@ var todoActionObject = {
682
682
  value: 'modal'
683
683
  }],
684
684
  remarks: [{
685
- label: localeKey('showDrawer.remarks.0.label'),
685
+ label: '配置建议',
686
686
  content: localeKey('showDrawer.remarks.0.content')
687
687
  }],
688
688
  hidden: true
@@ -692,7 +692,7 @@ var todoActionObject = {
692
692
  label: localeKey('setDrawerTitle.label'),
693
693
  todoOptions: [{
694
694
  key: 'title',
695
- label: localeKey('setDrawerTitle.todoOptions.title.label'),
695
+ label: '推拉门标题',
696
696
  type: 'SetExpression'
697
697
  }],
698
698
  classification: [{
@@ -705,7 +705,7 @@ var todoActionObject = {
705
705
  label: localeKey('setPublicState.label'),
706
706
  todoOptions: [{
707
707
  key: 'value',
708
- label: localeKey('setPublicState.todoOptions.value.label'),
708
+ label: '内容',
709
709
  type: 'SetExpression'
710
710
  }]
711
711
  },
@@ -714,21 +714,21 @@ var todoActionObject = {
714
714
  label: localeKey('getPublicState.label'),
715
715
  todoOptions: [{
716
716
  key: 'jsonId',
717
- label: localeKey('getPublicState.todoOptions.jsonId.label'),
717
+ label: '页面',
718
718
  type: 'SelectPage'
719
719
  }],
720
720
  todoCallbacks: ['callback1'],
721
721
  classification: [{
722
- label: localeKey('getPublicState.classification.setData.label'),
722
+ label: '数据设置',
723
723
  value: 'setData'
724
724
  }]
725
725
  },
726
726
  historyPush: {
727
727
  key: 'historyPush',
728
- label: localeKey('historyPush.label'),
728
+ label: '路由跳转',
729
729
  todoOptions: [{
730
730
  key: 'pathname',
731
- label: localeKey('historyPush.todoOptions.pathname.label'),
731
+ label: '页面',
732
732
  type: 'SelectPage'
733
733
  }, {
734
734
  key: 'search',
@@ -737,17 +737,17 @@ var todoActionObject = {
737
737
  type: 'SearchParams'
738
738
  }, {
739
739
  key: 'routerData',
740
- label: localeKey('historyPush.todoOptions.routerData.label'),
740
+ label: '路由数据',
741
741
  type: 'RouterData',
742
742
  labelTip: localeKey('historyPush.todoOptions.routerData.labelTip')
743
743
  }]
744
744
  },
745
745
  historyReplace: {
746
746
  key: 'historyReplace',
747
- label: localeKey('historyReplace.label'),
747
+ label: '路由替换',
748
748
  todoOptions: [{
749
749
  key: 'pathname',
750
- label: localeKey('historyReplace.todoOptions.pathname.label'),
750
+ label: '页面',
751
751
  type: 'SelectPage'
752
752
  }, {
753
753
  key: 'search',
@@ -756,36 +756,36 @@ var todoActionObject = {
756
756
  type: 'SearchParams'
757
757
  }, {
758
758
  key: 'routerData',
759
- label: localeKey('historyReplace.todoOptions.routerData.label'),
759
+ label: '路由数据',
760
760
  type: 'RouterData'
761
761
  }]
762
762
  },
763
763
  history: {
764
764
  key: 'history',
765
- label: localeKey('history.label'),
765
+ label: '页面跳转',
766
766
  todoOptions: [{
767
767
  key: 'type',
768
768
  aliasKey: 'historyType',
769
- label: localeKey('history.todoOptions.type.label'),
769
+ label: '类型',
770
770
  type: 'Select',
771
771
  props: {
772
772
  options: [{
773
- title: localeKey('history.todoOptions.type.props.options.0.title'),
773
+ title: '路由跳转',
774
774
  value: 'push'
775
775
  }, {
776
- title: localeKey('history.todoOptions.type.props.options.1.title'),
776
+ title: '路由替换',
777
777
  value: 'replace'
778
778
  }, {
779
- title: localeKey('history.todoOptions.type.props.options.2.title'),
779
+ title: '新窗口',
780
780
  value: 'window'
781
781
  }, {
782
- title: localeKey('history.todoOptions.type.props.options.3.title'),
782
+ title: '门户跳转',
783
783
  value: 'portal'
784
784
  }]
785
785
  }
786
786
  }, {
787
787
  key: 'pathname',
788
- label: localeKey('history.todoOptions.pathname.label'),
788
+ label: '页面',
789
789
  type: 'SelectPage'
790
790
  }, {
791
791
  key: 'search',
@@ -794,15 +794,15 @@ var todoActionObject = {
794
794
  type: 'SearchParams'
795
795
  }, {
796
796
  key: 'routerData',
797
- label: localeKey('history.todoOptions.routerData.label'),
797
+ label: '路由数据',
798
798
  type: 'RouterData'
799
799
  }],
800
800
  classification: [{
801
- label: localeKey('history.classification.page.label'),
801
+ label: '页面类',
802
802
  value: 'page'
803
803
  }],
804
804
  remarks: [{
805
- label: localeKey('history.remarks.0.label'),
805
+ label: '配置说明',
806
806
  content: localeKey('history.remarks.0.content')
807
807
  }]
808
808
  },
@@ -811,24 +811,24 @@ var todoActionObject = {
811
811
  label: localeKey('dropPageByCatch.label'),
812
812
  todoOptions: [{
813
813
  key: 'dropPathname',
814
- label: localeKey('dropPageByCatch.todoOptions.dropPathname.label'),
814
+ label: '页面',
815
815
  type: 'MultiselectPage'
816
816
  }],
817
817
  classification: [{
818
- label: localeKey('dropPageByCatch.classification.page.label'),
818
+ label: '页面类',
819
819
  value: 'page'
820
820
  }]
821
821
  },
822
822
  historyGoBack: {
823
823
  key: 'historyGoBack',
824
- label: localeKey('historyGoBack.label'),
824
+ label: '页面返回',
825
825
  todoOptions: [{
826
826
  key: 'custParams',
827
- label: localeKey('historyGoBack.todoOptions.custParams.label'),
827
+ label: '自定义参数',
828
828
  type: 'SetCustomParams'
829
829
  }],
830
830
  classification: [{
831
- label: localeKey('historyGoBack.classification.page.label'),
831
+ label: '页面类',
832
832
  value: 'page'
833
833
  }]
834
834
  },
@@ -841,11 +841,11 @@ var todoActionObject = {
841
841
  type: 'Input'
842
842
  }, {
843
843
  key: 'stateval',
844
- label: localeKey('setCustomState.todoOptions.stateval.label'),
844
+ label: '内容',
845
845
  type: 'SetExpression'
846
846
  }],
847
847
  classification: [{
848
- label: localeKey('setCustomState.classification.setData.label'),
848
+ label: '数据设置',
849
849
  value: 'setData'
850
850
  }],
851
851
  hidden: true
@@ -868,7 +868,7 @@ var todoActionObject = {
868
868
  }]
869
869
  }],
870
870
  classification: [{
871
- label: localeKey('getCustomState.classification.setData.label'),
871
+ label: '数据设置',
872
872
  value: 'setData'
873
873
  }],
874
874
  hidden: true
@@ -882,11 +882,11 @@ var todoActionObject = {
882
882
  type: 'Input'
883
883
  }, {
884
884
  key: 'stateval',
885
- label: localeKey('setCompNestedState.todoOptions.stateval.label'),
885
+ label: '内容',
886
886
  type: 'SetExpression'
887
887
  }],
888
888
  classification: [{
889
- label: localeKey('setCompNestedState.classification.setData.label'),
889
+ label: '数据设置',
890
890
  value: 'setData'
891
891
  }],
892
892
  hidden: true
@@ -901,7 +901,7 @@ var todoActionObject = {
901
901
  }],
902
902
  todoCallbacks: ['callback1'],
903
903
  classification: [{
904
- label: localeKey('getCompNestedState.classification.setData.label'),
904
+ label: '数据设置',
905
905
  value: 'setData'
906
906
  }],
907
907
  hidden: true
@@ -912,11 +912,11 @@ var todoActionObject = {
912
912
  todoOptions: [{
913
913
  key: 'params',
914
914
  aliasKey: 'setParams',
915
- label: localeKey('okCallbackData.todoOptions.params.label'),
915
+ label: '参数',
916
916
  type: 'SetExpression'
917
917
  }],
918
918
  classification: [{
919
- label: localeKey('okCallbackData.classification.callback.label'),
919
+ label: '回调',
920
920
  value: 'callback'
921
921
  }]
922
922
  },
@@ -945,7 +945,7 @@ var todoActionObject = {
945
945
  },
946
946
  getFormValue: {
947
947
  key: 'getFormValue',
948
- label: localeKey('getFormValue.label'),
948
+ label: '表单取值',
949
949
  todoCallbacks: [{
950
950
  key: 'callback1',
951
951
  fields: [{
@@ -961,19 +961,19 @@ var todoActionObject = {
961
961
  label: localeKey('setFormValues.label'),
962
962
  todoOptions: [{
963
963
  key: 'params',
964
- label: localeKey('setFormValues.todoOptions.params.label'),
964
+ label: '参数赋值',
965
965
  type: 'SelectLink',
966
966
  props: {
967
967
  titleLink: [{
968
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.0.title'),
968
+ title: '切换到属性',
969
969
  value: 'object',
970
970
  key: 'object'
971
971
  }, {
972
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.1.title'),
972
+ title: '切换根节点',
973
973
  value: '',
974
974
  key: 'root'
975
975
  }, {
976
- title: localeKey('setFormValues.todoOptions.params.props.titleLink.2.title'),
976
+ title: '清空赋值',
977
977
  value: 'cleanValue',
978
978
  key: 'cleanValue'
979
979
  }],
@@ -983,14 +983,14 @@ var todoActionObject = {
983
983
  },
984
984
  resetForm: {
985
985
  key: 'resetForm',
986
- label: localeKey('resetForm.label')
986
+ label: '重置表单'
987
987
  },
988
988
  setTripleFormAction: {
989
989
  key: 'setTripleFormAction',
990
990
  label: localeKey('setTripleFormAction.label'),
991
991
  todoOptions: [{
992
992
  key: 'actionType',
993
- label: localeKey('setTripleFormAction.todoOptions.actionType.label'),
993
+ label: '表单类型',
994
994
  type: 'SetExpression',
995
995
  props: {
996
996
  placeholder: localeKey('setTripleFormAction.todoOptions.actionType.props.placeholder')
@@ -1034,19 +1034,19 @@ var todoActionObject = {
1034
1034
  label: localeKey('setCurrentFormValues.label'),
1035
1035
  todoOptions: [{
1036
1036
  key: 'params',
1037
- label: localeKey('setCurrentFormValues.todoOptions.params.label'),
1037
+ label: '参数赋值',
1038
1038
  type: 'SelectLink',
1039
1039
  props: {
1040
1040
  titleLink: [{
1041
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.0.title'),
1041
+ title: '切换到属性',
1042
1042
  value: 'object',
1043
1043
  key: 'object'
1044
1044
  }, {
1045
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.1.title'),
1045
+ title: '切换根节点',
1046
1046
  value: '',
1047
1047
  key: 'root'
1048
1048
  }, {
1049
- title: localeKey('setCurrentFormValues.todoOptions.params.props.titleLink.2.title'),
1049
+ title: '清空赋值',
1050
1050
  value: 'cleanValue',
1051
1051
  key: 'cleanValue'
1052
1052
  }],
@@ -1078,7 +1078,7 @@ var todoActionObject = {
1078
1078
  key: 'callback2'
1079
1079
  }],
1080
1080
  classification: [{
1081
- label: localeKey('validateAllForm.classification.setData.label'),
1081
+ label: '数据设置',
1082
1082
  value: 'setData'
1083
1083
  }]
1084
1084
  },
@@ -1100,7 +1100,7 @@ var todoActionObject = {
1100
1100
  }]
1101
1101
  }],
1102
1102
  classification: [{
1103
- label: localeKey('getAllFormValues.classification.setData.label'),
1103
+ label: '数据设置',
1104
1104
  value: 'setData'
1105
1105
  }]
1106
1106
  },
@@ -1108,7 +1108,7 @@ var todoActionObject = {
1108
1108
  key: 'resetAllForm',
1109
1109
  label: localeKey('resetAllForm.label'),
1110
1110
  classification: [{
1111
- label: localeKey('resetAllForm.classification.setData.label'),
1111
+ label: '数据设置',
1112
1112
  value: 'setData'
1113
1113
  }]
1114
1114
  },
@@ -1134,20 +1134,20 @@ var todoActionObject = {
1134
1134
  },
1135
1135
  reloadTableData: {
1136
1136
  key: 'reloadTableData',
1137
- label: localeKey('reloadTableData.label'),
1137
+ label: '加载数据',
1138
1138
  todoOptions: [{
1139
1139
  key: 'data',
1140
1140
  aliasKey: 'dataSource',
1141
- label: localeKey('reloadTableData.todoOptions.data.label'),
1141
+ label: '内容',
1142
1142
  type: 'SetExpression'
1143
1143
  }, {
1144
1144
  key: 'total',
1145
- label: localeKey('reloadTableData.todoOptions.total.label'),
1145
+ label: '总条数',
1146
1146
  type: 'SetExpression'
1147
1147
  }, {
1148
1148
  key: 'current',
1149
1149
  aliasKey: 'curPage',
1150
- label: localeKey('reloadTableData.todoOptions.current.label'),
1150
+ label: '更新页码',
1151
1151
  type: 'SetExpression'
1152
1152
  }],
1153
1153
  todoCallbacks: ['callback1']
@@ -1157,12 +1157,12 @@ var todoActionObject = {
1157
1157
  label: localeKey('reloadColServiceData.label'),
1158
1158
  todoOptions: [{
1159
1159
  key: 'colName',
1160
- label: localeKey('reloadColServiceData.todoOptions.colName.label'),
1160
+ label: '翻译字段',
1161
1161
  type: 'SelectTableCol'
1162
1162
  }, {
1163
1163
  key: 'data',
1164
1164
  aliasKey: 'dataSource',
1165
- label: localeKey('reloadColServiceData.todoOptions.data.label'),
1165
+ label: '内容',
1166
1166
  type: 'SetExpression'
1167
1167
  }]
1168
1168
  },
@@ -1171,21 +1171,21 @@ var todoActionObject = {
1171
1171
  label: localeKey('reloadColServiceDataForEdit.label'),
1172
1172
  todoOptions: [{
1173
1173
  key: 'colNameForEdit',
1174
- label: localeKey('reloadColServiceDataForEdit.todoOptions.colNameForEdit.label'),
1174
+ label: '字段',
1175
1175
  type: 'SelectTableCol'
1176
1176
  }, {
1177
1177
  key: 'data',
1178
- label: localeKey('reloadColServiceDataForEdit.todoOptions.data.label'),
1178
+ label: '内容',
1179
1179
  type: 'SetExpression'
1180
1180
  }]
1181
1181
  },
1182
1182
  reloadRCData: {
1183
1183
  key: 'reloadRCData',
1184
- label: localeKey('reloadRCData.label'),
1184
+ label: '加载数据',
1185
1185
  todoOptions: [{
1186
1186
  key: 'data',
1187
1187
  aliasKey: 'dataSource',
1188
- label: localeKey('reloadRCData.todoOptions.data.label'),
1188
+ label: '内容',
1189
1189
  type: 'SetExpression'
1190
1190
  }, {
1191
1191
  key: 'labelKey',
@@ -1199,7 +1199,7 @@ var todoActionObject = {
1199
1199
  }, {
1200
1200
  key: 'valueKey',
1201
1201
  aliasKey: 'selectValueKeyForRC',
1202
- label: localeKey('reloadRCData.todoOptions.valueKey.label'),
1202
+ label: '显示值字段',
1203
1203
  type: 'SetExpressionKey',
1204
1204
  props: {
1205
1205
  // Only fill child data for the selected parameter key; do not fill the expression
@@ -1210,11 +1210,11 @@ var todoActionObject = {
1210
1210
  },
1211
1211
  reloadSelectData: {
1212
1212
  key: 'reloadSelectData',
1213
- label: localeKey('reloadSelectData.label'),
1213
+ label: '加载数据',
1214
1214
  todoOptions: [{
1215
1215
  key: 'data',
1216
1216
  aliasKey: 'dataSource',
1217
- label: localeKey('reloadSelectData.todoOptions.data.label'),
1217
+ label: '内容',
1218
1218
  type: 'SetExpression'
1219
1219
  }, {
1220
1220
  key: 'labelKey',
@@ -1228,7 +1228,7 @@ var todoActionObject = {
1228
1228
  }, {
1229
1229
  key: 'valueKey',
1230
1230
  aliasKey: 'selectValueKey',
1231
- label: localeKey('reloadSelectData.todoOptions.valueKey.label'),
1231
+ label: '选项值字段',
1232
1232
  type: 'SetExpressionKey',
1233
1233
  props: {
1234
1234
  // Only fill child data for the selected parameter key; do not fill the expression
@@ -1239,20 +1239,20 @@ var todoActionObject = {
1239
1239
  },
1240
1240
  reloadDescData: {
1241
1241
  key: 'reloadDescData',
1242
- label: localeKey('reloadDescData.label'),
1242
+ label: '加载数据',
1243
1243
  todoOptions: [{
1244
1244
  key: 'data',
1245
1245
  aliasKey: 'dataSource',
1246
- label: localeKey('reloadDescData.todoOptions.data.label'),
1246
+ label: '内容',
1247
1247
  type: 'SetExpression'
1248
1248
  }]
1249
1249
  },
1250
1250
  reloadData: {
1251
1251
  key: 'reloadData',
1252
- label: localeKey('reloadData.label'),
1252
+ label: '加载数据',
1253
1253
  todoOptions: [{
1254
1254
  key: 'data',
1255
- label: localeKey('reloadData.todoOptions.data.label'),
1255
+ label: '内容',
1256
1256
  aliasKey: 'dataSource',
1257
1257
  type: 'SetExpression'
1258
1258
  }, {
@@ -1298,7 +1298,7 @@ var todoActionObject = {
1298
1298
  todoOptions: [{
1299
1299
  key: 'data',
1300
1300
  aliasKey: 'dataSource',
1301
- label: localeKey('reloadChildData.todoOptions.data.label'),
1301
+ label: '内容',
1302
1302
  type: 'SetExpression'
1303
1303
  }, {
1304
1304
  key: 'parentKey',
@@ -1343,11 +1343,11 @@ var todoActionObject = {
1343
1343
  },
1344
1344
  reloadMenuData: {
1345
1345
  key: 'reloadMenuData',
1346
- label: localeKey('reloadMenuData.label'),
1346
+ label: '加载数据',
1347
1347
  todoOptions: [{
1348
1348
  key: 'data',
1349
1349
  aliasKey: 'dataSource',
1350
- label: localeKey('reloadMenuData.todoOptions.data.label'),
1350
+ label: '内容',
1351
1351
  type: 'SetExpression'
1352
1352
  }, {
1353
1353
  key: 'labelKey',
@@ -1400,7 +1400,7 @@ var todoActionObject = {
1400
1400
  todoOptions: [{
1401
1401
  key: 'data',
1402
1402
  aliasKey: 'dataSource',
1403
- label: localeKey('appendTreeNode.todoOptions.data.label'),
1403
+ label: '内容',
1404
1404
  type: 'SetExpression'
1405
1405
  }, {
1406
1406
  key: 'nodeKey',
@@ -1445,7 +1445,7 @@ var todoActionObject = {
1445
1445
  todoOptions: [{
1446
1446
  key: 'data',
1447
1447
  aliasKey: 'dataSource',
1448
- label: localeKey('appendMenuNodeData.todoOptions.data.label'),
1448
+ label: '内容',
1449
1449
  type: 'SetExpression'
1450
1450
  }, {
1451
1451
  key: 'title',
@@ -1539,14 +1539,14 @@ var todoActionObject = {
1539
1539
  label: localeKey('setTreeSelectedKey.label'),
1540
1540
  todoOptions: [{
1541
1541
  key: 'value',
1542
- label: localeKey('setTreeSelectedKey.todoOptions.value.label'),
1542
+ label: '内容',
1543
1543
  type: 'SetExpression'
1544
1544
  }],
1545
1545
  todoCallbacks: ['callback1']
1546
1546
  },
1547
1547
  clearTreeSelectedKey: {
1548
1548
  key: 'clearTreeSelectedKey',
1549
- label: localeKey('clearTreeSelectedKey.label')
1549
+ label: '清空选中项'
1550
1550
  },
1551
1551
  getTreeEditingKey: {
1552
1552
  key: 'getTreeEditingKey',
@@ -1586,7 +1586,7 @@ var todoActionObject = {
1586
1586
  label: localeKey('setCheckedKey.label'),
1587
1587
  todoOptions: [{
1588
1588
  key: 'value',
1589
- label: localeKey('setCheckedKey.todoOptions.value.label'),
1589
+ label: '内容',
1590
1590
  type: 'SetExpression'
1591
1591
  }],
1592
1592
  todoCallbacks: ['callback1']
@@ -1602,7 +1602,7 @@ var todoActionObject = {
1602
1602
  },
1603
1603
  getTableSelected: {
1604
1604
  key: 'getTableSelected',
1605
- label: localeKey('getTableSelected.label'),
1605
+ label: '获取选中行',
1606
1606
  todoCallbacks: [{
1607
1607
  key: 'callback1',
1608
1608
  fields: [{
@@ -1715,10 +1715,10 @@ var todoActionObject = {
1715
1715
  type: 'Select',
1716
1716
  props: {
1717
1717
  options: [{
1718
- title: localeKey('addTableRow.todoOptions.inlineeditnow.props.options.0.title'),
1718
+ title: '',
1719
1719
  value: false
1720
1720
  }, {
1721
- title: localeKey('addTableRow.todoOptions.inlineeditnow.props.options.1.title'),
1721
+ title: '',
1722
1722
  value: true
1723
1723
  }]
1724
1724
  }
@@ -1729,19 +1729,19 @@ var todoActionObject = {
1729
1729
  label: localeKey('addTableRowData.label'),
1730
1730
  todoOptions: [{
1731
1731
  key: 'params',
1732
- label: localeKey('addTableRowData.todoOptions.params.label'),
1732
+ label: '参数赋值',
1733
1733
  type: 'SelectLink',
1734
1734
  props: {
1735
1735
  titleLink: [{
1736
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.0.title'),
1736
+ title: '切换到属性',
1737
1737
  value: 'object',
1738
1738
  key: 'object'
1739
1739
  }, {
1740
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.1.title'),
1740
+ title: '切换根节点',
1741
1741
  value: '',
1742
1742
  key: 'root'
1743
1743
  }, {
1744
- title: localeKey('addTableRowData.todoOptions.params.props.titleLink.2.title'),
1744
+ title: '清空赋值',
1745
1745
  value: 'cleanValue',
1746
1746
  key: 'cleanValue'
1747
1747
  }],
@@ -1754,16 +1754,16 @@ var todoActionObject = {
1754
1754
  label: localeKey('delTableRow.label'),
1755
1755
  todoOptions: [{
1756
1756
  key: 'params',
1757
- label: localeKey('delTableRow.todoOptions.params.label'),
1757
+ label: '参数赋值',
1758
1758
  type: 'SetExpression'
1759
1759
  }]
1760
1760
  },
1761
1761
  setSelectedRowKeys: {
1762
1762
  key: 'setSelectedRowKeys',
1763
- label: localeKey('setSelectedRowKeys.label'),
1763
+ label: '设置选中行',
1764
1764
  todoOptions: [{
1765
1765
  key: 'value',
1766
- label: localeKey('setSelectedRowKeys.todoOptions.value.label'),
1766
+ label: '内容',
1767
1767
  type: 'SetExpression'
1768
1768
  }],
1769
1769
  todoCallbacks: ['callback1']
@@ -1783,33 +1783,33 @@ var todoActionObject = {
1783
1783
  },
1784
1784
  setDisable: {
1785
1785
  key: 'setDisable',
1786
- label: localeKey('setDisable.label'),
1786
+ label: '禁用状态',
1787
1787
  todoOptions: [{
1788
1788
  key: 'compid',
1789
- label: localeKey('setDisable.todoOptions.compid.label'),
1789
+ label: '组件选择',
1790
1790
  type: 'CompTree',
1791
1791
  aliasKey: 'compId',
1792
1792
  props: {
1793
1793
  checkable: true,
1794
1794
  titleLink: [{
1795
- title: localeKey('setDisable.todoOptions.compid.props.titleLink.0.title'),
1795
+ title: '清空已选',
1796
1796
  value: 'cleanValue'
1797
1797
  }]
1798
1798
  }
1799
1799
  }, {
1800
1800
  key: 'compValueList',
1801
- label: localeKey('setDisable.todoOptions.compValueList.label'),
1801
+ label: '是否必填',
1802
1802
  type: 'SetBatchProps',
1803
1803
  props: {
1804
1804
  defaultValue: 'toggle',
1805
1805
  options: [{
1806
- title: localeKey('setDisable.todoOptions.compValueList.props.options.0.title'),
1806
+ title: '启动',
1807
1807
  value: ''
1808
1808
  }, {
1809
- title: localeKey('setDisable.todoOptions.compValueList.props.options.1.title'),
1809
+ title: '禁用',
1810
1810
  value: 'true'
1811
1811
  }, {
1812
- title: localeKey('setDisable.todoOptions.compValueList.props.options.2.title'),
1812
+ title: '切换',
1813
1813
  value: 'toggle'
1814
1814
  }]
1815
1815
  }
@@ -1817,33 +1817,33 @@ var todoActionObject = {
1817
1817
  },
1818
1818
  setRequired: {
1819
1819
  key: 'setRequired',
1820
- label: localeKey('setRequired.label'),
1820
+ label: '设置必填',
1821
1821
  todoOptions: [{
1822
1822
  key: 'compid',
1823
- label: localeKey('setRequired.todoOptions.compid.label'),
1823
+ label: '组件选择',
1824
1824
  type: 'CompTree',
1825
1825
  aliasKey: 'compId',
1826
1826
  props: {
1827
1827
  checkable: true,
1828
1828
  titleLink: [{
1829
- title: localeKey('setRequired.todoOptions.compid.props.titleLink.0.title'),
1829
+ title: '清空已选',
1830
1830
  value: 'cleanValue'
1831
1831
  }]
1832
1832
  }
1833
1833
  }, {
1834
1834
  key: 'compValueList',
1835
- label: localeKey('setRequired.todoOptions.compValueList.label'),
1835
+ label: '是否必填',
1836
1836
  type: 'SetBatchProps',
1837
1837
  props: {
1838
1838
  defaultValue: 'toggle',
1839
1839
  options: [{
1840
- title: localeKey('setRequired.todoOptions.compValueList.props.options.0.title'),
1840
+ title: '必填',
1841
1841
  value: 'true'
1842
1842
  }, {
1843
- title: localeKey('setRequired.todoOptions.compValueList.props.options.1.title'),
1843
+ title: '非必填',
1844
1844
  value: ''
1845
1845
  }, {
1846
- title: localeKey('setRequired.todoOptions.compValueList.props.options.2.title'),
1846
+ title: '切换',
1847
1847
  value: 'toggle'
1848
1848
  }]
1849
1849
  }
@@ -1851,33 +1851,33 @@ var todoActionObject = {
1851
1851
  },
1852
1852
  setVisible: {
1853
1853
  key: 'setVisible',
1854
- label: localeKey('setVisible.label'),
1854
+ label: '控制显隐',
1855
1855
  todoOptions: [{
1856
1856
  key: 'compid',
1857
- label: localeKey('setVisible.todoOptions.compid.label'),
1857
+ label: '组件选择',
1858
1858
  type: 'CompTree',
1859
1859
  aliasKey: 'compId',
1860
1860
  props: {
1861
1861
  checkable: true,
1862
1862
  titleLink: [{
1863
- title: localeKey('setVisible.todoOptions.compid.props.titleLink.0.title'),
1863
+ title: '清空已选',
1864
1864
  value: 'cleanValue'
1865
1865
  }]
1866
1866
  }
1867
1867
  }, {
1868
1868
  key: 'compValueList',
1869
- label: localeKey('setVisible.todoOptions.compValueList.label'),
1869
+ label: '是否必填',
1870
1870
  type: 'SetBatchProps',
1871
1871
  props: {
1872
1872
  defaultValue: '',
1873
1873
  options: [{
1874
- title: localeKey('setVisible.todoOptions.compValueList.props.options.0.title'),
1874
+ title: '显示',
1875
1875
  value: 'true'
1876
1876
  }, {
1877
- title: localeKey('setVisible.todoOptions.compValueList.props.options.1.title'),
1877
+ title: '隐藏',
1878
1878
  value: ''
1879
1879
  }, {
1880
- title: localeKey('setVisible.todoOptions.compValueList.props.options.2.title'),
1880
+ title: '切换',
1881
1881
  value: 'toggle'
1882
1882
  }]
1883
1883
  }
@@ -1885,17 +1885,17 @@ var todoActionObject = {
1885
1885
  },
1886
1886
  setLoading: {
1887
1887
  key: 'setLoading',
1888
- label: localeKey('setLoading.label'),
1888
+ label: '控制加载中',
1889
1889
  todoOptions: [{
1890
1890
  key: 'loading',
1891
- label: localeKey('setLoading.todoOptions.loading.label'),
1891
+ label: '是否加载中',
1892
1892
  type: 'Select',
1893
1893
  props: {
1894
1894
  options: [{
1895
- title: localeKey('setLoading.todoOptions.loading.props.options.0.title'),
1895
+ title: '',
1896
1896
  value: true
1897
1897
  }, {
1898
- title: localeKey('setLoading.todoOptions.loading.props.options.1.title'),
1898
+ title: '',
1899
1899
  value: false
1900
1900
  }]
1901
1901
  }
@@ -1903,25 +1903,25 @@ var todoActionObject = {
1903
1903
  },
1904
1904
  setValue: {
1905
1905
  key: 'setValue',
1906
- label: localeKey('setValue.label'),
1906
+ label: '控件赋值',
1907
1907
  todoOptions: [{
1908
1908
  key: 'compid',
1909
- label: localeKey('setValue.todoOptions.compid.label'),
1909
+ label: '组件选择',
1910
1910
  type: 'CompTree',
1911
1911
  aliasKey: 'compId',
1912
1912
  props: {
1913
1913
  titleLink: [{
1914
- title: localeKey('setValue.todoOptions.compid.props.titleLink.0.title'),
1914
+ title: '清空已选',
1915
1915
  value: 'cleanValue'
1916
1916
  }]
1917
1917
  }
1918
1918
  }, {
1919
1919
  key: 'valueList',
1920
- label: localeKey('setValue.todoOptions.valueList.label'),
1920
+ label: '组件赋值',
1921
1921
  type: 'SetSysExpression',
1922
1922
  props: {
1923
1923
  titleLink: [{
1924
- title: localeKey('setValue.todoOptions.valueList.props.titleLink.0.title'),
1924
+ title: '清空赋值',
1925
1925
  value: 'clearValue'
1926
1926
  }]
1927
1927
  }
@@ -1934,10 +1934,10 @@ var todoActionObject = {
1934
1934
  },
1935
1935
  setModalSelectValue: {
1936
1936
  key: 'setModalSelectValue',
1937
- label: localeKey('setModalSelectValue.label'),
1937
+ label: '控件赋值',
1938
1938
  todoOptions: [{
1939
1939
  key: 'value',
1940
- label: localeKey('setModalSelectValue.todoOptions.value.label'),
1940
+ label: '内容',
1941
1941
  type: 'SetExpression'
1942
1942
  }, {
1943
1943
  key: 'labelKey',
@@ -1950,7 +1950,7 @@ var todoActionObject = {
1950
1950
  }
1951
1951
  }, {
1952
1952
  key: 'valueKey',
1953
- label: localeKey('setModalSelectValue.todoOptions.valueKey.label'),
1953
+ label: '值映射字段',
1954
1954
  type: 'SetExpressionKey',
1955
1955
  aliasKey: 'valueMapKey',
1956
1956
  props: {
@@ -1963,17 +1963,17 @@ var todoActionObject = {
1963
1963
  },
1964
1964
  setBadgeValue: {
1965
1965
  key: 'setBadgeValue',
1966
- label: localeKey('setBadgeValue.label'),
1966
+ label: '设置角标值',
1967
1967
  todoOptions: [{
1968
1968
  key: 'value',
1969
- label: localeKey('setBadgeValue.todoOptions.value.label'),
1969
+ label: '内容',
1970
1970
  type: 'SetExpression'
1971
1971
  }],
1972
1972
  todoCallbacks: ['callback1']
1973
1973
  },
1974
1974
  getValue: {
1975
1975
  key: 'getValue',
1976
- label: localeKey('getValue.label'),
1976
+ label: '获取当前值',
1977
1977
  todoCallbacks: [{
1978
1978
  key: 'callback1',
1979
1979
  getFields: function getFields(kv) {
@@ -2000,7 +2000,7 @@ var todoActionObject = {
2000
2000
  }];
2001
2001
  default:
2002
2002
  return [{
2003
- title: "".concat(localeKey('getValue.todoCallbacks.callback1.fields.default.titlePrefix'), "(").concat(name, ")"),
2003
+ title: '当前值'.concat("(", name, ")"),
2004
2004
  value: "$value_".concat(id, "$"),
2005
2005
  dataId: dataId
2006
2006
  }];
@@ -2018,11 +2018,11 @@ var todoActionObject = {
2018
2018
  },
2019
2019
  clearOptions: {
2020
2020
  key: 'clearOptions',
2021
- label: localeKey('clearOptions.label')
2021
+ label: '清空选项'
2022
2022
  },
2023
2023
  clearValue: {
2024
2024
  key: 'clearValue',
2025
- label: localeKey('clearValue.label'),
2025
+ label: '清空值',
2026
2026
  todoOptions: []
2027
2027
  // labelMap: {
2028
2028
  // Transfer: '清空右侧列表',
@@ -2038,7 +2038,7 @@ var todoActionObject = {
2038
2038
  label: localeKey('triggerRelDataSource.label'),
2039
2039
  todoOptions: [{
2040
2040
  key: 'target',
2041
- label: localeKey('triggerRelDataSource.todoOptions.target.label'),
2041
+ label: '联动来源',
2042
2042
  type: 'SelectObject'
2043
2043
  }, {
2044
2044
  key: 'arelStaticData',
@@ -2066,38 +2066,38 @@ var todoActionObject = {
2066
2066
  },
2067
2067
  validateMsg: {
2068
2068
  key: 'validateMsg',
2069
- label: localeKey('validateMsg.label'),
2069
+ label: '校验提示',
2070
2070
  todoOptions: [{
2071
2071
  key: 'validateStatus',
2072
2072
  aliasKey: 'validateType',
2073
- label: localeKey('validateMsg.todoOptions.validateStatus.label'),
2073
+ label: '校验类型',
2074
2074
  type: 'RadioButton',
2075
2075
  defaultValue: 'success',
2076
2076
  props: {
2077
2077
  options: [{
2078
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.0.title'),
2078
+ title: '成功',
2079
2079
  value: 'success'
2080
2080
  }, {
2081
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.1.title'),
2081
+ title: '提示',
2082
2082
  value: 'validating'
2083
2083
  }, {
2084
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.2.title'),
2084
+ title: '错误',
2085
2085
  value: 'error'
2086
2086
  }, {
2087
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.3.title'),
2087
+ title: '警告',
2088
2088
  value: 'warning'
2089
2089
  }, {
2090
- title: localeKey('validateMsg.todoOptions.validateStatus.props.options.4.title'),
2090
+ title: '正常',
2091
2091
  value: ''
2092
2092
  }]
2093
2093
  }
2094
2094
  }, {
2095
2095
  key: 'help',
2096
- label: localeKey('validateMsg.todoOptions.help.label'),
2096
+ label: '校验文案',
2097
2097
  type: 'Input',
2098
2098
  aliasKey: 'validateMsg',
2099
2099
  props: {
2100
- placeholder: localeKey('validateMsg.todoOptions.help.props.placeholder')
2100
+ placeholder: '请输入'
2101
2101
  }
2102
2102
  }]
2103
2103
  },
@@ -2129,17 +2129,17 @@ var todoActionObject = {
2129
2129
  type: 'DownloadUrl'
2130
2130
  }],
2131
2131
  classification: [{
2132
- label: localeKey('setDownloadResponse.classification.0.label'),
2132
+ label: '下载',
2133
2133
  value: 'download'
2134
2134
  }]
2135
2135
  },
2136
2136
  saveBlobFile: {
2137
2137
  key: 'saveBlobFile',
2138
- label: localeKey('saveBlobFile.label'),
2138
+ label: '文件保存',
2139
2139
  todoOptions: [{
2140
2140
  key: 'data',
2141
2141
  aliasKey: 'dataSource',
2142
- label: localeKey('saveBlobFile.todoOptions.data.label'),
2142
+ label: '内容',
2143
2143
  type: 'SetExpression'
2144
2144
  }, {
2145
2145
  key: 'fileName',
@@ -2151,13 +2151,13 @@ var todoActionObject = {
2151
2151
  }
2152
2152
  }],
2153
2153
  classification: [{
2154
- label: localeKey('saveBlobFile.classification.0.label'),
2154
+ label: '下载',
2155
2155
  value: 'download'
2156
2156
  }]
2157
2157
  },
2158
2158
  downloadByFileId: {
2159
2159
  key: 'downloadByFileId',
2160
- label: localeKey('downloadByFileId.label'),
2160
+ label: '文件下载',
2161
2161
  todoOptions: [{
2162
2162
  key: 'fileResourceType',
2163
2163
  label: localeKey('downloadByFileId.todoOptions.fileResourceType.label'),
@@ -2165,16 +2165,16 @@ var todoActionObject = {
2165
2165
  defaultValue: 'server',
2166
2166
  props: {
2167
2167
  options: [{
2168
- title: localeKey('downloadByFileId.todoOptions.fileResourceType.props.options.0.title'),
2168
+ title: '服务器资源',
2169
2169
  value: 'server'
2170
2170
  }, {
2171
- title: localeKey('downloadByFileId.todoOptions.fileResourceType.props.options.1.title'),
2171
+ title: '文件资源',
2172
2172
  value: 'file'
2173
2173
  }]
2174
2174
  }
2175
2175
  }, {
2176
2176
  key: 'fileCode',
2177
- label: localeKey('downloadByFileId.todoOptions.fileCode.label'),
2177
+ label: '文件编码',
2178
2178
  type: 'FileResourceSelect',
2179
2179
  visibleFlag: 'fileResourceType',
2180
2180
  visibleFlagValue: ['file'],
@@ -2199,7 +2199,7 @@ var todoActionObject = {
2199
2199
  }
2200
2200
  }, {
2201
2201
  key: 'zip',
2202
- label: localeKey('downloadByFileId.todoOptions.zip.label'),
2202
+ label: '单文件压缩',
2203
2203
  type: 'Switch',
2204
2204
  labelTip: localeKey('downloadByFileId.todoOptions.zip.labelTip'),
2205
2205
  props: {
@@ -2209,14 +2209,14 @@ var todoActionObject = {
2209
2209
  visibleFlagValue: ['server']
2210
2210
  }],
2211
2211
  classification: [{
2212
- label: localeKey('downloadByFileId.classification.0.label'),
2212
+ label: '下载',
2213
2213
  value: 'download'
2214
2214
  }],
2215
2215
  remarks: [{
2216
- label: localeKey('downloadByFileId.remarks.0.label'),
2216
+ label: '配置提示',
2217
2217
  content: localeKey('downloadByFileId.remarks.0.content')
2218
2218
  }, {
2219
- label: localeKey('downloadByFileId.remarks.1.label'),
2219
+ label: '注意事项',
2220
2220
  content: localeKey('downloadByFileId.remarks.1.content')
2221
2221
  }]
2222
2222
  },
@@ -2233,13 +2233,13 @@ var todoActionObject = {
2233
2233
  }
2234
2234
  }, {
2235
2235
  key: 'uploadProps',
2236
- label: localeKey('setUploadProps.todoOptions.uploadProps.label'),
2236
+ label: '上传参数',
2237
2237
  type: 'SelectParams'
2238
2238
  }]
2239
2239
  },
2240
2240
  setUploadChange: {
2241
2241
  key: 'setUploadChange',
2242
- label: localeKey('setUploadChange.label'),
2242
+ label: '上传值改变',
2243
2243
  todoOptions: [{
2244
2244
  key: 'url',
2245
2245
  label: localeKey('setUploadChange.todoOptions.url.label'),
@@ -2265,15 +2265,15 @@ var todoActionObject = {
2265
2265
  type: 'Input'
2266
2266
  }, {
2267
2267
  key: 'interval',
2268
- label: localeKey('setTimeout.todoOptions.interval.label'),
2268
+ label: '时间间隔',
2269
2269
  type: 'InputNumber',
2270
2270
  props: {
2271
- addonAfter: localeKey('setTimeout.todoOptions.interval.props.addonAfter')
2271
+ addonAfter: '毫秒'
2272
2272
  }
2273
2273
  }],
2274
2274
  todoCallbacks: ['callback1'],
2275
2275
  classification: [{
2276
- label: localeKey('setTimeout.classification.0.label'),
2276
+ label: '定时器',
2277
2277
  value: 'timer'
2278
2278
  }],
2279
2279
  hidden: true,
@@ -2288,10 +2288,10 @@ var todoActionObject = {
2288
2288
  type: 'Input'
2289
2289
  }, {
2290
2290
  key: 'interval',
2291
- label: localeKey('setInterval.todoOptions.interval.label'),
2291
+ label: '时间间隔',
2292
2292
  type: 'InputNumber',
2293
2293
  props: {
2294
- addonAfter: localeKey('setInterval.todoOptions.interval.props.addonAfter')
2294
+ addonAfter: '毫秒'
2295
2295
  }
2296
2296
  }],
2297
2297
  todoCallbacks: ['callback1'],
@@ -2299,18 +2299,18 @@ var todoActionObject = {
2299
2299
  },
2300
2300
  setTimer: {
2301
2301
  key: 'setTimer',
2302
- label: localeKey('setTimer.label'),
2302
+ label: '定时器',
2303
2303
  todoOptions: [{
2304
2304
  key: 'type',
2305
2305
  aliasKey: 'timerType',
2306
- label: localeKey('setTimer.todoOptions.type.label'),
2306
+ label: '定时器类型',
2307
2307
  type: 'Select',
2308
2308
  props: {
2309
2309
  options: [{
2310
- title: localeKey('setTimer.todoOptions.type.props.options.0.title'),
2310
+ title: '单次定时器',
2311
2311
  value: 'timeout'
2312
2312
  }, {
2313
- title: localeKey('setTimer.todoOptions.type.props.options.1.title'),
2313
+ title: '循环定时器',
2314
2314
  value: 'interval'
2315
2315
  }]
2316
2316
  }
@@ -2320,45 +2320,45 @@ var todoActionObject = {
2320
2320
  type: 'Input'
2321
2321
  }, {
2322
2322
  key: 'interval',
2323
- label: localeKey('setTimer.todoOptions.interval.label'),
2323
+ label: '时间间隔',
2324
2324
  type: 'InputNumber',
2325
2325
  props: {
2326
- addonAfter: localeKey('setTimer.todoOptions.interval.props.addonAfter')
2326
+ addonAfter: '毫秒'
2327
2327
  }
2328
2328
  }],
2329
2329
  todoCallbacks: ['callback1'],
2330
2330
  classification: [{
2331
- label: localeKey('setTimer.classification.0.label'),
2331
+ label: '定时器',
2332
2332
  value: 'timer'
2333
2333
  }],
2334
2334
  isAsync: true
2335
2335
  },
2336
2336
  clearTimer: {
2337
2337
  key: 'clearTimer',
2338
- label: localeKey('clearTimer.label'),
2338
+ label: '关闭定时器',
2339
2339
  todoOptions: [{
2340
2340
  key: 'targettimer',
2341
- label: localeKey('clearTimer.todoOptions.targettimer.label'),
2341
+ label: '定时器名称',
2342
2342
  type: 'SelectTimer'
2343
2343
  }],
2344
2344
  classification: [{
2345
- label: localeKey('clearTimer.classification.0.label'),
2345
+ label: '定时器',
2346
2346
  value: 'timer'
2347
2347
  }]
2348
2348
  },
2349
2349
  clearData: {
2350
2350
  key: 'clearData',
2351
- label: localeKey('clearData.label')
2351
+ label: '清空数据'
2352
2352
  },
2353
2353
  setCompState: {
2354
2354
  key: 'setCompState',
2355
2355
  label: localeKey('setCompState.label'),
2356
2356
  todoOptions: [{
2357
2357
  key: 'componentState',
2358
- label: localeKey('setCompState.todoOptions.componentState.label'),
2358
+ label: '组件状态',
2359
2359
  type: 'ComponentState',
2360
2360
  extraGroups: [{
2361
- subLabel: localeKey('setCompState.todoOptions.componentState.extraGroups.0.subLabel'),
2361
+ subLabel: '组件刷新',
2362
2362
  subClickFunName: 'refreshCompsStateData'
2363
2363
  }]
2364
2364
  }]
@@ -2369,7 +2369,7 @@ var todoActionObject = {
2369
2369
  todoOptions: [{
2370
2370
  key: 'current',
2371
2371
  aliasKey: 'stepsCurrent',
2372
- label: localeKey('setStepsCurrentValue.todoOptions.current.label'),
2372
+ label: '当前步骤',
2373
2373
  type: 'SetExpression'
2374
2374
  }],
2375
2375
  todoCallbacks: ['callback1']
@@ -2380,7 +2380,7 @@ var todoActionObject = {
2380
2380
  todoCallbacks: [{
2381
2381
  key: 'callback1',
2382
2382
  fields: [{
2383
- title: localeKey('getStepsCurrentValue.todoCallbacks.callback1.fields.0.title'),
2383
+ title: '当前步骤',
2384
2384
  value: '$current_@{options.id}$',
2385
2385
  description: localeKey('getStepsCurrentValue.todoCallbacks.callback1.fields.0.description'),
2386
2386
  type: 'number'
@@ -2392,7 +2392,7 @@ var todoActionObject = {
2392
2392
  label: localeKey('refreshLoadMore.label'),
2393
2393
  todoOptions: [{
2394
2394
  key: 'loadmoreKey',
2395
- label: localeKey('refreshLoadMore.todoOptions.loadmoreKey.label'),
2395
+ label: '更新参数',
2396
2396
  type: 'SetCustomParams'
2397
2397
  }]
2398
2398
  },
@@ -2401,7 +2401,7 @@ var todoActionObject = {
2401
2401
  label: localeKey('setDynamicFormValues.label'),
2402
2402
  todoOptions: [{
2403
2403
  key: 'params',
2404
- label: localeKey('setDynamicFormValues.todoOptions.params.label'),
2404
+ label: '参数赋值',
2405
2405
  type: 'SetExpression'
2406
2406
  }]
2407
2407
  },
@@ -2440,7 +2440,7 @@ var todoActionObject = {
2440
2440
  }]
2441
2441
  }],
2442
2442
  classification: [{
2443
- label: localeKey('validateAllAppForm.classification.0.label'),
2443
+ label: '数据设置',
2444
2444
  value: 'setData'
2445
2445
  }]
2446
2446
  },
@@ -2466,18 +2466,18 @@ var todoActionObject = {
2466
2466
  }
2467
2467
  }, {
2468
2468
  key: 'params',
2469
- label: localeKey('loadMoreRequest.todoOptions.params.label'),
2469
+ label: '参数赋值',
2470
2470
  type: 'ApiRequestSetParams',
2471
2471
  props: {
2472
2472
  titleLink: [{
2473
- title: localeKey('loadMoreRequest.todoOptions.params.props.titleLink.0.title'),
2473
+ title: '清空赋值',
2474
2474
  value: 'cleanValue',
2475
2475
  optionKey: 'apiRequestSetParams'
2476
2476
  }]
2477
2477
  }
2478
2478
  }, {
2479
2479
  key: 'pageNum',
2480
- label: localeKey('loadMoreRequest.todoOptions.pageNum.label'),
2480
+ label: '页码字段名',
2481
2481
  type: 'SetExpression',
2482
2482
  aliasKey: 'aliasPageNum'
2483
2483
  }],
@@ -2491,16 +2491,16 @@ var todoActionObject = {
2491
2491
  },
2492
2492
  loadMoreDataSource: {
2493
2493
  key: 'loadMoreDataSource',
2494
- label: localeKey('loadMoreDataSource.label'),
2494
+ label: '加载数据源',
2495
2495
  todoOptions: [{
2496
2496
  key: 'total',
2497
2497
  aliasKey: 'loadMoreTotal',
2498
- label: localeKey('loadMoreDataSource.todoOptions.total.label'),
2498
+ label: '总条数',
2499
2499
  type: 'SetExpression'
2500
2500
  }, {
2501
2501
  key: 'data',
2502
2502
  aliasKey: 'loadMoreData',
2503
- label: localeKey('loadMoreDataSource.todoOptions.data.label'),
2503
+ label: '数据源',
2504
2504
  type: 'SetExpression'
2505
2505
  }]
2506
2506
  },
@@ -2521,7 +2521,7 @@ var todoActionObject = {
2521
2521
  },
2522
2522
  dFormGetFieldsValue: {
2523
2523
  key: 'dFormGetFieldsValue',
2524
- label: localeKey('dFormGetFieldsValue.label'),
2524
+ label: '获取表单值',
2525
2525
  todoCallbacks: [{
2526
2526
  key: 'callback1',
2527
2527
  getFields: function getFields(kv, ctx) {
@@ -2539,14 +2539,14 @@ var todoActionObject = {
2539
2539
  label: localeKey('dFormAllDisabled.label'),
2540
2540
  todoOptions: [{
2541
2541
  key: 'editor',
2542
- label: localeKey('dFormAllDisabled.todoOptions.editor.label'),
2542
+ label: '是否可编辑',
2543
2543
  type: 'Select',
2544
2544
  props: {
2545
2545
  options: [{
2546
- title: localeKey('dFormAllDisabled.todoOptions.editor.props.options.0.title'),
2546
+ title: '',
2547
2547
  value: false
2548
2548
  }, {
2549
- title: localeKey('dFormAllDisabled.todoOptions.editor.props.options.1.title'),
2549
+ title: '',
2550
2550
  value: true
2551
2551
  }]
2552
2552
  }
@@ -2556,10 +2556,10 @@ var todoActionObject = {
2556
2556
  // 废弃,禁止使用
2557
2557
  setCompChildrenValue: {
2558
2558
  key: 'setCompChildrenValue',
2559
- label: localeKey('setCompChildrenValue.label'),
2559
+ label: '赋值',
2560
2560
  todoOptions: [{
2561
2561
  key: 'value',
2562
- label: localeKey('setCompChildrenValue.todoOptions.value.label'),
2562
+ label: '内容',
2563
2563
  type: 'SetExpression'
2564
2564
  }],
2565
2565
  todoCallbacks: ['callback1'],
@@ -2568,10 +2568,10 @@ var todoActionObject = {
2568
2568
  // 废弃,禁止使用
2569
2569
  setCompContentValue: {
2570
2570
  key: 'setCompContentValue',
2571
- label: localeKey('setCompContentValue.label'),
2571
+ label: '设置内容',
2572
2572
  todoOptions: [{
2573
2573
  key: 'value',
2574
- label: localeKey('setCompContentValue.todoOptions.value.label'),
2574
+ label: '内容',
2575
2575
  type: 'SetExpression'
2576
2576
  }],
2577
2577
  todoCallbacks: ['callback1'],
@@ -2582,14 +2582,14 @@ var todoActionObject = {
2582
2582
  label: localeKey('setPageSrc.label'),
2583
2583
  todoOptions: [{
2584
2584
  key: 'pathname',
2585
- label: localeKey('setPageSrc.todoOptions.pathname.label'),
2585
+ label: '页面',
2586
2586
  type: 'SelectPage'
2587
2587
  }, {
2588
2588
  key: 'componentState',
2589
- label: localeKey('setPageSrc.todoOptions.componentState.label'),
2589
+ label: '组件状态',
2590
2590
  type: 'ComponentState',
2591
2591
  extraGroups: [{
2592
- subLabel: localeKey('setPageSrc.todoOptions.componentState.extraGroups.0.subLabel'),
2592
+ subLabel: '组件刷新',
2593
2593
  subClickFunName: 'refreshCompsStateData'
2594
2594
  }]
2595
2595
  }]
@@ -2599,24 +2599,24 @@ var todoActionObject = {
2599
2599
  label: localeKey('setSrc.label'),
2600
2600
  todoOptions: [{
2601
2601
  key: 'value',
2602
- label: localeKey('setSrc.todoOptions.value.label'),
2602
+ label: '内容',
2603
2603
  type: 'SetExpression'
2604
2604
  }],
2605
2605
  todoCallbacks: ['callback1']
2606
2606
  },
2607
2607
  setRangeValue: {
2608
2608
  key: 'setRangeValue',
2609
- label: localeKey('setRangeValue.label'),
2609
+ label: '设置时间段',
2610
2610
  todoOptions: [{
2611
2611
  key: 'startVal',
2612
- label: localeKey('setRangeValue.todoOptions.startVal.label'),
2612
+ label: '开始值',
2613
2613
  type: 'SetExpression',
2614
2614
  props: {
2615
2615
  placeholder: localeKey('setRangeValue.todoOptions.startVal.props.placeholder')
2616
2616
  }
2617
2617
  }, {
2618
2618
  key: 'endVal',
2619
- label: localeKey('setRangeValue.todoOptions.endVal.label'),
2619
+ label: '结束值',
2620
2620
  type: 'SetExpression',
2621
2621
  props: {
2622
2622
  placeholder: localeKey('setRangeValue.todoOptions.endVal.props.placeholder')
@@ -2626,25 +2626,25 @@ var todoActionObject = {
2626
2626
  },
2627
2627
  pushScenePage: {
2628
2628
  key: 'pushScenePage',
2629
- label: localeKey('pushScenePage.label'),
2629
+ label: '跳转到场景',
2630
2630
  todoOptions: [{
2631
2631
  key: 'scene',
2632
2632
  aliasKey: 'selectScene',
2633
- label: localeKey('pushScenePage.todoOptions.scene.label'),
2633
+ label: '选择场景',
2634
2634
  type: 'SelectScene'
2635
2635
  }],
2636
2636
  classification: [{
2637
- label: localeKey('pushScenePage.classification.0.label'),
2637
+ label: '场景类',
2638
2638
  value: 'scene'
2639
2639
  }],
2640
2640
  hidden: true
2641
2641
  },
2642
2642
  reloadDataSource: {
2643
2643
  key: 'reloadDataSource',
2644
- label: localeKey('reloadDataSource.label'),
2644
+ label: '刷新数据源',
2645
2645
  todoOptions: [{
2646
2646
  key: 'selectServerDataSource',
2647
- label: localeKey('reloadDataSource.todoOptions.selectServerDataSource.label'),
2647
+ label: '选择数据源',
2648
2648
  props: {
2649
2649
  isRequired: true,
2650
2650
  valuePropName: 'dataSourceName',
@@ -2661,30 +2661,30 @@ var todoActionObject = {
2661
2661
  defaultValue: false,
2662
2662
  props: {
2663
2663
  options: [{
2664
- title: localeKey('reloadDataSource.todoOptions.sync.props.options.0.title'),
2664
+ title: '异步加载',
2665
2665
  value: false
2666
2666
  }, {
2667
- title: localeKey('reloadDataSource.todoOptions.sync.props.options.1.title'),
2667
+ title: '同步加载',
2668
2668
  value: true
2669
2669
  }]
2670
2670
  }
2671
2671
  }, {
2672
2672
  key: 'dataSourceReloadFilter',
2673
- label: localeKey('reloadDataSource.todoOptions.dataSourceReloadFilter.label'),
2673
+ label: '数据源赋值',
2674
2674
  type: 'dataSourceReloadFilter',
2675
2675
  props: {
2676
2676
  titleLink: [{
2677
- title: localeKey('reloadDataSource.todoOptions.dataSourceReloadFilter.props.titleLink.0.title'),
2677
+ title: '清空赋值',
2678
2678
  value: 'cleanValue'
2679
2679
  }]
2680
2680
  }
2681
2681
  }],
2682
2682
  todoCallbacks: ['callback1', 'callback2'],
2683
2683
  classification: [{
2684
- label: localeKey('reloadDataSource.classification.0.label'),
2684
+ label: '常用',
2685
2685
  value: 'common'
2686
2686
  }, {
2687
- label: localeKey('reloadDataSource.classification.1.label'),
2687
+ label: '数据源',
2688
2688
  value: 'dataSource'
2689
2689
  }],
2690
2690
  isAsync: true
@@ -2694,7 +2694,7 @@ var todoActionObject = {
2694
2694
  label: localeKey('setDataSource.label'),
2695
2695
  todoOptions: [{
2696
2696
  key: 'selectAllDataSource',
2697
- label: localeKey('setDataSource.todoOptions.selectAllDataSource.label'),
2697
+ label: '选择数据源',
2698
2698
  type: 'SelectAllDataSource',
2699
2699
  props: {
2700
2700
  isRequired: true,
@@ -2707,34 +2707,34 @@ var todoActionObject = {
2707
2707
  }
2708
2708
  }, {
2709
2709
  key: 'dataSourceSetValue',
2710
- label: localeKey('setDataSource.todoOptions.dataSourceSetValue.label'),
2710
+ label: '数据源赋值',
2711
2711
  type: 'dataSourceSetValue',
2712
2712
  props: {
2713
2713
  titleLink: [{
2714
- title: localeKey('setDataSource.todoOptions.dataSourceSetValue.props.titleLink.0.title'),
2714
+ title: '清空赋值',
2715
2715
  value: 'cleanValue'
2716
2716
  }]
2717
2717
  }
2718
2718
  }, {
2719
2719
  key: 'onlySetPatch',
2720
- label: localeKey('setDataSource.todoOptions.onlySetPatch.label'),
2720
+ label: '赋值范围',
2721
2721
  type: 'Radio',
2722
2722
  props: {
2723
2723
  options: [{
2724
- title: localeKey('setDataSource.todoOptions.onlySetPatch.props.options.0.title'),
2724
+ title: '局部赋值',
2725
2725
  value: true
2726
2726
  }, {
2727
- title: localeKey('setDataSource.todoOptions.onlySetPatch.props.options.1.title'),
2727
+ title: '全部赋值',
2728
2728
  value: false
2729
2729
  }]
2730
2730
  }
2731
2731
  }],
2732
2732
  todoCallbacks: ['callback1', 'callback2'],
2733
2733
  classification: [{
2734
- label: localeKey('setDataSource.classification.0.label'),
2734
+ label: '常用',
2735
2735
  value: 'common'
2736
2736
  }, {
2737
- label: localeKey('setDataSource.classification.1.label'),
2737
+ label: '数据源',
2738
2738
  value: 'dataSource'
2739
2739
  }],
2740
2740
  initClose: true
@@ -2744,7 +2744,7 @@ var todoActionObject = {
2744
2744
  label: localeKey('resetDataSource.label'),
2745
2745
  todoOptions: [{
2746
2746
  key: 'selectAllDataSource',
2747
- label: localeKey('resetDataSource.todoOptions.selectAllDataSource.label'),
2747
+ label: '选择数据源',
2748
2748
  type: 'SelectAllDataSource',
2749
2749
  props: {
2750
2750
  isRequired: true,
@@ -2758,10 +2758,10 @@ var todoActionObject = {
2758
2758
  }],
2759
2759
  todoCallbacks: ['callback1', 'callback2'],
2760
2760
  classification: [{
2761
- label: localeKey('resetDataSource.classification.0.label'),
2761
+ label: '常用',
2762
2762
  value: 'common'
2763
2763
  }, {
2764
- label: localeKey('resetDataSource.classification.1.label'),
2764
+ label: '数据源',
2765
2765
  value: 'dataSource'
2766
2766
  }]
2767
2767
  },
@@ -2770,11 +2770,11 @@ var todoActionObject = {
2770
2770
  label: localeKey('sendMessageIframe.label'),
2771
2771
  todoOptions: [{
2772
2772
  key: 'value',
2773
- label: localeKey('sendMessageIframe.todoOptions.value.label'),
2773
+ label: '内容',
2774
2774
  type: 'SetExpression'
2775
2775
  }],
2776
2776
  remarks: [{
2777
- label: localeKey('sendMessageIframe.remarks.0.label'),
2777
+ label: '适用场景',
2778
2778
  content: localeKey('sendMessageIframe.remarks.0.content')
2779
2779
  }]
2780
2780
  },
@@ -2788,10 +2788,10 @@ var todoActionObject = {
2788
2788
  defaultValue: false,
2789
2789
  props: {
2790
2790
  options: [{
2791
- title: localeKey('postObjectData.todoOptions.sync.props.options.0.title'),
2791
+ title: '异步加载',
2792
2792
  value: false
2793
2793
  }, {
2794
- title: localeKey('postObjectData.todoOptions.sync.props.options.1.title'),
2794
+ title: '同步加载',
2795
2795
  value: true
2796
2796
  }]
2797
2797
  }
@@ -2809,10 +2809,10 @@ var todoActionObject = {
2809
2809
  type: 'Select',
2810
2810
  props: {
2811
2811
  options: [{
2812
- title: localeKey('postObjectData.todoOptions.hasEventExtService.props.options.0.title'),
2812
+ title: '',
2813
2813
  value: 'T'
2814
2814
  }, {
2815
- title: localeKey('postObjectData.todoOptions.hasEventExtService.props.options.1.title'),
2815
+ title: '',
2816
2816
  value: 'F'
2817
2817
  }]
2818
2818
  }
@@ -2830,18 +2830,18 @@ var todoActionObject = {
2830
2830
  key: 'callback2'
2831
2831
  }],
2832
2832
  classification: [{
2833
- label: localeKey('postObjectData.classification.0.label'),
2833
+ label: '常用',
2834
2834
  value: 'common'
2835
2835
  }, {
2836
- label: localeKey('postObjectData.classification.1.label'),
2836
+ label: '服务请求类',
2837
2837
  value: 'request'
2838
2838
  }],
2839
2839
  isAsync: true,
2840
2840
  remarks: [{
2841
- label: localeKey('postObjectData.remarks.0.label'),
2841
+ label: '适用场景',
2842
2842
  content: localeKey('postObjectData.remarks.0.content')
2843
2843
  }, {
2844
- label: localeKey('postObjectData.remarks.1.label'),
2844
+ label: '配置说明',
2845
2845
  content: localeKey('postObjectData.remarks.1.content')
2846
2846
  }]
2847
2847
  },
@@ -2850,15 +2850,15 @@ var todoActionObject = {
2850
2850
  label: localeKey('postParentMessage.label'),
2851
2851
  todoOptions: [{
2852
2852
  key: 'iframeData',
2853
- label: localeKey('postParentMessage.todoOptions.iframeData.label'),
2853
+ label: '发送内容',
2854
2854
  type: 'SetExpression'
2855
2855
  }, {
2856
2856
  key: 'iframeOrigin',
2857
- label: localeKey('postParentMessage.todoOptions.iframeOrigin.label'),
2857
+ label: '发送目标源',
2858
2858
  type: 'SetExpression'
2859
2859
  }],
2860
2860
  classification: [{
2861
- label: localeKey('postParentMessage.classification.communicate.label'),
2861
+ label: '数据通信',
2862
2862
  value: 'communicate'
2863
2863
  }]
2864
2864
  },
@@ -2867,12 +2867,12 @@ var todoActionObject = {
2867
2867
  label: localeKey('callFuncComp.label'),
2868
2868
  todoOptions: [{
2869
2869
  key: 'selectCompFunc',
2870
- label: localeKey('callFuncComp.todoOptions.selectCompFunc.label'),
2870
+ label: '方法',
2871
2871
  type: 'SelectCompFunc'
2872
2872
  }, {
2873
2873
  key: 'uploadProps',
2874
2874
  aliasKey: 'setCompParams',
2875
- label: localeKey('callFuncComp.todoOptions.uploadProps.label'),
2875
+ label: '参数',
2876
2876
  type: 'SetCompParams'
2877
2877
  }],
2878
2878
  todoCallbacks: [{
@@ -2895,7 +2895,7 @@ var todoActionObject = {
2895
2895
  key: 'callback2'
2896
2896
  }],
2897
2897
  classification: [{
2898
- label: localeKey('callFuncComp.classification.communicate.label'),
2898
+ label: '数据通信',
2899
2899
  value: 'communicate'
2900
2900
  }],
2901
2901
  hidden: true
@@ -2913,7 +2913,7 @@ var todoActionObject = {
2913
2913
  }]
2914
2914
  }],
2915
2915
  classification: [{
2916
- label: localeKey('addEventListenerParentMessage.classification.communicate.label'),
2916
+ label: '数据通信',
2917
2917
  value: 'communicate'
2918
2918
  }],
2919
2919
  isAsync: true
@@ -2933,7 +2933,7 @@ var todoActionObject = {
2933
2933
  todoOptions: [{
2934
2934
  key: 'data',
2935
2935
  aliasKey: 'dataSource',
2936
- label: localeKey('setSubTabsData.todoOptions.data.label'),
2936
+ label: '内容',
2937
2937
  type: 'SetExpression'
2938
2938
  }],
2939
2939
  todoCallbacks: ['callback1']
@@ -2943,7 +2943,7 @@ var todoActionObject = {
2943
2943
  label: localeKey('setTabsData.label'),
2944
2944
  todoOptions: [{
2945
2945
  key: 'data',
2946
- label: localeKey('setTabsData.todoOptions.data.label'),
2946
+ label: '内容',
2947
2947
  type: 'SetExpression'
2948
2948
  }, {
2949
2949
  key: 'key',
@@ -2951,22 +2951,22 @@ var todoActionObject = {
2951
2951
  type: 'SetExpression'
2952
2952
  }, {
2953
2953
  key: 'title',
2954
- label: localeKey('setTabsData.todoOptions.title.label'),
2954
+ label: '标题字段',
2955
2955
  type: 'SetExpression'
2956
2956
  }, {
2957
2957
  key: 'status',
2958
- label: localeKey('setTabsData.todoOptions.status.label'),
2958
+ label: '状态字段',
2959
2959
  type: 'SetExpression'
2960
2960
  }, {
2961
2961
  key: 'badge',
2962
- label: localeKey('setTabsData.todoOptions.badge.label'),
2962
+ label: '角标值字段',
2963
2963
  type: 'SetExpression'
2964
2964
  }],
2965
2965
  remarks: [{
2966
- label: localeKey('setTabsData.remarks.0.label'),
2966
+ label: '适用场景',
2967
2967
  content: localeKey('setTabsData.remarks.0.content')
2968
2968
  }, {
2969
- label: localeKey('setTabsData.remarks.1.label'),
2969
+ label: '配置说明',
2970
2970
  content: localeKey('setTabsData.remarks.1.content')
2971
2971
  }],
2972
2972
  todoCallbacks: ['callback1'],
@@ -2977,16 +2977,16 @@ var todoActionObject = {
2977
2977
  label: localeKey('setHref.label'),
2978
2978
  todoOptions: [{
2979
2979
  key: 'value',
2980
- label: localeKey('setHref.todoOptions.value.label'),
2980
+ label: '内容',
2981
2981
  type: 'SetExpression'
2982
2982
  }] // 后续废除,请使用setSrc
2983
2983
  },
2984
2984
  setData: {
2985
2985
  key: 'setData',
2986
- label: localeKey('setData.label'),
2986
+ label: '设置数据',
2987
2987
  todoOptions: [{
2988
2988
  key: 'value',
2989
- label: localeKey('setData.todoOptions.value.label'),
2989
+ label: '内容',
2990
2990
  type: 'SetExpression'
2991
2991
  }],
2992
2992
  todoCallbacks: ['callback1']
@@ -2996,20 +2996,20 @@ var todoActionObject = {
2996
2996
  label: localeKey('callFishParentFunc.label'),
2997
2997
  todoOptions: [{
2998
2998
  key: 'funcName',
2999
- label: localeKey('callFishParentFunc.todoOptions.funcName.label'),
2999
+ label: '函数名称',
3000
3000
  type: 'Input'
3001
3001
  }, {
3002
3002
  key: 'funcParams',
3003
- label: localeKey('callFishParentFunc.todoOptions.funcParams.label'),
3003
+ label: '自定义入参',
3004
3004
  type: 'SetExpressionByArray'
3005
3005
  }],
3006
3006
  todoCallbacks: ['callback1', 'callback2'],
3007
3007
  classification: [{
3008
- label: localeKey('callFishParentFunc.classification.communicate.label'),
3008
+ label: '数据通信',
3009
3009
  value: 'communicate'
3010
3010
  }],
3011
3011
  remarks: [{
3012
- label: localeKey('callFishParentFunc.remarks.0.label'),
3012
+ label: '注意事项',
3013
3013
  content: localeKey('callFishParentFunc.remarks.0.content')
3014
3014
  }],
3015
3015
  isAsync: true
@@ -3019,24 +3019,24 @@ var todoActionObject = {
3019
3019
  label: localeKey('callSelfFunc.label'),
3020
3020
  todoOptions: [{
3021
3021
  key: 'customFuncName',
3022
- label: localeKey('callSelfFunc.todoOptions.customFuncName.label'),
3022
+ label: '自定义事件',
3023
3023
  type: 'SelectCustomFunc'
3024
3024
  }, {
3025
3025
  key: 'customFuncParams',
3026
- label: localeKey('callSelfFunc.todoOptions.customFuncParams.label'),
3026
+ label: '事件入参',
3027
3027
  type: 'SelectLink',
3028
3028
  defaultValue: 'object',
3029
3029
  props: {
3030
3030
  titleLink: [{
3031
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3031
+ title: '切换到属性',
3032
3032
  value: 'object',
3033
3033
  key: 'object'
3034
3034
  }, {
3035
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3035
+ title: '切换根节点',
3036
3036
  value: '',
3037
3037
  key: 'root'
3038
3038
  }, {
3039
- title: localeKey('callSelfFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3039
+ title: '清空赋值',
3040
3040
  value: 'cleanValue',
3041
3041
  key: 'cleanValue'
3042
3042
  }],
@@ -3055,7 +3055,7 @@ var todoActionObject = {
3055
3055
  key: 'callback2'
3056
3056
  }],
3057
3057
  classification: [{
3058
- label: localeKey('callSelfFunc.classification.communicate.label'),
3058
+ label: '数据通信',
3059
3059
  value: 'communicate'
3060
3060
  }],
3061
3061
  isAsync: true
@@ -3065,35 +3065,35 @@ var todoActionObject = {
3065
3065
  label: localeKey('callParentCustomFunc.label'),
3066
3066
  todoOptions: [{
3067
3067
  key: 'pathname',
3068
- label: localeKey('callParentCustomFunc.todoOptions.pathname.label'),
3068
+ label: '页面',
3069
3069
  type: 'SelectPage'
3070
3070
  }, {
3071
3071
  key: 'customFuncName',
3072
- label: localeKey('callParentCustomFunc.todoOptions.customFuncName.label'),
3072
+ label: '自定义事件',
3073
3073
  type: 'SelectCustomFunc',
3074
3074
  props: {
3075
3075
  titleLink: [{
3076
- title: localeKey('callParentCustomFunc.todoOptions.customFuncName.props.titleLink.0.title'),
3076
+ title: '刷新',
3077
3077
  value: 'refresh',
3078
3078
  key: 'refresh'
3079
3079
  }]
3080
3080
  }
3081
3081
  }, {
3082
3082
  key: 'customFuncParams',
3083
- label: localeKey('callParentCustomFunc.todoOptions.customFuncParams.label'),
3083
+ label: '事件入参',
3084
3084
  type: 'SelectLink',
3085
3085
  defaultValue: 'object',
3086
3086
  props: {
3087
3087
  titleLink: [{
3088
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3088
+ title: '切换到属性',
3089
3089
  value: 'object',
3090
3090
  key: 'object'
3091
3091
  }, {
3092
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3092
+ title: '切换根节点',
3093
3093
  value: '',
3094
3094
  key: 'root'
3095
3095
  }, {
3096
- title: localeKey('callParentCustomFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3096
+ title: '清空赋值',
3097
3097
  value: 'cleanValue',
3098
3098
  key: 'cleanValue'
3099
3099
  }],
@@ -3112,12 +3112,12 @@ var todoActionObject = {
3112
3112
  key: 'callback2'
3113
3113
  }],
3114
3114
  classification: [{
3115
- label: localeKey('callParentCustomFunc.classification.communicate.label'),
3115
+ label: '数据通信',
3116
3116
  value: 'communicate'
3117
3117
  }],
3118
3118
  isAsync: true,
3119
3119
  remarks: [{
3120
- label: localeKey('callParentCustomFunc.remarks.0.label'),
3120
+ label: '适用场景',
3121
3121
  content: localeKey('callParentCustomFunc.remarks.0.content')
3122
3122
  }]
3123
3123
  },
@@ -3126,7 +3126,7 @@ var todoActionObject = {
3126
3126
  label: localeKey('callCustomPageFunc.label'),
3127
3127
  todoOptions: [{
3128
3128
  key: 'actionTitle',
3129
- label: localeKey('callCustomPageFunc.todoOptions.actionTitle.label'),
3129
+ label: '动作说明',
3130
3130
  type: 'CustomActionTitle',
3131
3131
  props: {
3132
3132
  placeholder: localeKey('callCustomPageFunc.todoOptions.actionTitle.props.placeholder'),
@@ -3135,35 +3135,35 @@ var todoActionObject = {
3135
3135
  }
3136
3136
  }, {
3137
3137
  key: 'pathname',
3138
- label: localeKey('callCustomPageFunc.todoOptions.pathname.label'),
3138
+ label: '页面',
3139
3139
  type: 'SelectPage'
3140
3140
  }, {
3141
3141
  key: 'customFuncName',
3142
- label: localeKey('callCustomPageFunc.todoOptions.customFuncName.label'),
3142
+ label: '自定义事件',
3143
3143
  type: 'SelectCustomFunc',
3144
3144
  props: {
3145
3145
  titleLink: [{
3146
- label: localeKey('callCustomPageFunc.todoOptions.customFuncName.props.titleLink.0.title'),
3146
+ label: '刷新',
3147
3147
  value: 'refresh',
3148
3148
  key: 'refresh'
3149
3149
  }]
3150
3150
  }
3151
3151
  }, {
3152
3152
  key: 'customFuncParams',
3153
- label: localeKey('callCustomPageFunc.todoOptions.customFuncParams.label'),
3153
+ label: '事件入参',
3154
3154
  type: 'SelectLink',
3155
3155
  defaultValue: 'object',
3156
3156
  props: {
3157
3157
  titleLink: [{
3158
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
3158
+ title: '切换到属性',
3159
3159
  value: 'object',
3160
3160
  key: 'object'
3161
3161
  }, {
3162
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
3162
+ title: '切换根节点',
3163
3163
  value: '',
3164
3164
  key: 'root'
3165
3165
  }, {
3166
- title: localeKey('callCustomPageFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
3166
+ title: '清空赋值',
3167
3167
  value: 'cleanValue',
3168
3168
  key: 'cleanValue'
3169
3169
  }],
@@ -3182,11 +3182,11 @@ var todoActionObject = {
3182
3182
  key: 'callback2'
3183
3183
  }],
3184
3184
  classification: [{
3185
- label: localeKey('callCustomPageFunc.classification.communicate.label'),
3185
+ label: '数据通信',
3186
3186
  value: 'communicate'
3187
3187
  }],
3188
3188
  remarks: [{
3189
- label: localeKey('callCustomPageFunc.remarks.0.label'),
3189
+ label: '注意事项',
3190
3190
  content: localeKey('callCustomPageFunc.remarks.0.content')
3191
3191
  }],
3192
3192
  isAsync: true
@@ -3216,35 +3216,35 @@ var todoActionObject = {
3216
3216
  visibleFlagValue: [true]
3217
3217
  }, {
3218
3218
  key: 'async',
3219
- label: localeKey('exportBusiObjectData.todoOptions.async.label'),
3219
+ label: '异步导出',
3220
3220
  type: 'RadioButton',
3221
3221
  labelTip: localeKey('exportBusiObjectData.todoOptions.async.labelTip'),
3222
3222
  defaultValue: 'sync',
3223
3223
  props: {
3224
3224
  options: [{
3225
- title: localeKey('exportBusiObjectData.todoOptions.async.props.options.0.title'),
3225
+ title: '开启',
3226
3226
  value: 'async'
3227
3227
  }, {
3228
- title: localeKey('exportBusiObjectData.todoOptions.async.props.options.1.title'),
3228
+ title: '关闭',
3229
3229
  value: 'sync'
3230
3230
  }]
3231
3231
  }
3232
3232
  }, {
3233
3233
  key: 'busiObjectFilterParams',
3234
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.label'),
3234
+ label: '导出条件',
3235
3235
  type: 'ExportParamFields',
3236
3236
  props: {
3237
3237
  isFetch: true
3238
3238
  },
3239
3239
  extraMenus: [{
3240
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.0.label'),
3240
+ label: '查询条件',
3241
3241
  value: 'normal'
3242
3242
  }, {
3243
- label: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.1.label'),
3243
+ label: '行主键',
3244
3244
  value: 'primaryValues'
3245
3245
  }],
3246
3246
  extraGroups: [{
3247
- subLabel: localeKey('exportBusiObjectData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3247
+ subLabel: '清空赋值',
3248
3248
  subClickFunName: 'cleanValue'
3249
3249
  }]
3250
3250
  }, {
@@ -3258,7 +3258,7 @@ var todoActionObject = {
3258
3258
  }],
3259
3259
  todoCallbacks: ['callback1', 'callback2'],
3260
3260
  classification: [{
3261
- label: localeKey('exportBusiObjectData.classification.export.label'),
3261
+ label: '导入导出',
3262
3262
  value: 'export'
3263
3263
  }]
3264
3264
  },
@@ -3275,16 +3275,16 @@ var todoActionObject = {
3275
3275
  }
3276
3276
  }, {
3277
3277
  key: 'async',
3278
- label: localeKey('exportCustomData.todoOptions.async.label'),
3278
+ label: '异步导出',
3279
3279
  type: 'RadioButton',
3280
3280
  labelTip: localeKey('exportCustomData.todoOptions.async.labelTip'),
3281
3281
  defaultValue: 'sync',
3282
3282
  props: {
3283
3283
  options: [{
3284
- title: localeKey('exportCustomData.todoOptions.async.props.options.0.title'),
3284
+ title: '开启',
3285
3285
  value: 'async'
3286
3286
  }, {
3287
- title: localeKey('exportCustomData.todoOptions.async.props.options.1.title'),
3287
+ title: '关闭',
3288
3288
  value: 'sync'
3289
3289
  }]
3290
3290
  }
@@ -3301,7 +3301,7 @@ var todoActionObject = {
3301
3301
  type: 'SetExpression'
3302
3302
  }, {
3303
3303
  key: 'serviceData',
3304
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.1.serviceData.label'),
3304
+ label: '数据来源',
3305
3305
  type: 'SelectCustomExportService',
3306
3306
  props: {
3307
3307
  isRequired: true,
@@ -3315,20 +3315,20 @@ var todoActionObject = {
3315
3315
  }, {
3316
3316
  // 入参
3317
3317
  key: 'filterParams',
3318
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.2.filterParams.label'),
3318
+ label: '查询条件',
3319
3319
  type: 'ApiRequestSetParams'
3320
3320
  }, {
3321
3321
  key: 'objectFields',
3322
- label: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.label'),
3322
+ label: '导出字段',
3323
3323
  type: 'SelectServiceObjectFields',
3324
3324
  props: {
3325
3325
  isRequired: true,
3326
3326
  options: {
3327
3327
  fieldKey: 'serviceData',
3328
3328
  customKeyMap: {
3329
- fieldData: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.fieldData'),
3330
- attrCode: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.attrCode'),
3331
- attrName: localeKey('exportCustomData.todoOptions.exportSheet.props.options.3.objectFields.props.options.customKeyMap.attrName')
3329
+ fieldData: '字段数据',
3330
+ attrCode: '字段编码',
3331
+ attrName: '字段名称'
3332
3332
  }
3333
3333
  }
3334
3334
  }
@@ -3347,7 +3347,7 @@ var todoActionObject = {
3347
3347
  }],
3348
3348
  todoCallbacks: ['callback1', 'callback2'],
3349
3349
  classification: [{
3350
- label: localeKey('exportCustomData.classification.export.label'),
3350
+ label: '导入导出',
3351
3351
  value: 'export'
3352
3352
  }]
3353
3353
  },
@@ -3410,7 +3410,7 @@ var todoActionObject = {
3410
3410
  key: 'callback2'
3411
3411
  }],
3412
3412
  classification: [{
3413
- label: localeKey('importBusiObjectData.classification.export.label'),
3413
+ label: '导入导出',
3414
3414
  value: 'export'
3415
3415
  }],
3416
3416
  isAsync: true
@@ -3427,22 +3427,22 @@ var todoActionObject = {
3427
3427
  }
3428
3428
  }, {
3429
3429
  key: 'async',
3430
- label: localeKey('exportSQLServiceData.todoOptions.async.label'),
3430
+ label: '异步导出',
3431
3431
  type: 'RadioButton',
3432
3432
  labelTip: localeKey('exportSQLServiceData.todoOptions.async.labelTip'),
3433
3433
  defaultValue: 'sync',
3434
3434
  props: {
3435
3435
  options: [{
3436
- title: localeKey('exportSQLServiceData.todoOptions.async.props.options.0.title'),
3436
+ title: '开启',
3437
3437
  value: 'async'
3438
3438
  }, {
3439
- title: localeKey('exportSQLServiceData.todoOptions.async.props.options.1.title'),
3439
+ title: '关闭',
3440
3440
  value: 'sync'
3441
3441
  }]
3442
3442
  }
3443
3443
  }, {
3444
3444
  key: 'sqlServiceFields',
3445
- label: localeKey('exportSQLServiceData.todoOptions.sqlServiceFields.label'),
3445
+ label: '导出字段',
3446
3446
  type: 'SelectExportFields',
3447
3447
  props: {
3448
3448
  isRequired: true,
@@ -3454,11 +3454,11 @@ var todoActionObject = {
3454
3454
  }
3455
3455
  }, {
3456
3456
  key: 'busiObjectFilterParams',
3457
- label: localeKey('exportSQLServiceData.todoOptions.busiObjectFilterParams.label'),
3457
+ label: '查询条件',
3458
3458
  type: 'ExportParamFields',
3459
3459
  props: {},
3460
3460
  extraGroups: [{
3461
- subLabel: localeKey('exportSQLServiceData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3461
+ subLabel: '清空赋值',
3462
3462
  subClickFunName: 'cleanValue'
3463
3463
  }]
3464
3464
  }, {
@@ -3472,7 +3472,7 @@ var todoActionObject = {
3472
3472
  }],
3473
3473
  todoCallbacks: ['callback1', 'callback2'],
3474
3474
  classification: [{
3475
- label: localeKey('exportSQLServiceData.classification.export.label'),
3475
+ label: '导入导出',
3476
3476
  value: 'export'
3477
3477
  }]
3478
3478
  },
@@ -3516,7 +3516,7 @@ var todoActionObject = {
3516
3516
  valuePropName: 'busiObjectFields',
3517
3517
  titleLink: [{
3518
3518
  title: function title(dataOptions) {
3519
- 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');
3519
+ return dataOptions !== null && dataOptions !== void 0 && dataOptions.allOpen ? '快速收起' : '快速展开';
3520
3520
  },
3521
3521
  value: 'allOpen'
3522
3522
  }]
@@ -3528,10 +3528,10 @@ var todoActionObject = {
3528
3528
  defaultValue: 'F',
3529
3529
  props: {
3530
3530
  options: [{
3531
- title: localeKey('importCustomBusiObjectData.todoOptions.showOnly.props.options.0.title'),
3531
+ title: '',
3532
3532
  value: 'T'
3533
3533
  }, {
3534
- title: localeKey('importCustomBusiObjectData.todoOptions.showOnly.props.options.1.title'),
3534
+ title: '',
3535
3535
  value: 'F'
3536
3536
  }]
3537
3537
  }
@@ -3573,7 +3573,7 @@ var todoActionObject = {
3573
3573
  key: 'callback2'
3574
3574
  }],
3575
3575
  classification: [{
3576
- label: localeKey('importCustomBusiObjectData.classification.export.label'),
3576
+ label: '导入导出',
3577
3577
  value: 'export'
3578
3578
  }],
3579
3579
  isAsync: true
@@ -3603,22 +3603,22 @@ var todoActionObject = {
3603
3603
  visibleFlagValue: [true]
3604
3604
  }, {
3605
3605
  key: 'async',
3606
- label: localeKey('exportCustomBusiObjectData.todoOptions.async.label'),
3606
+ label: '异步导出',
3607
3607
  type: 'RadioButton',
3608
3608
  labelTip: localeKey('exportCustomBusiObjectData.todoOptions.async.labelTip'),
3609
3609
  defaultValue: 'sync',
3610
3610
  props: {
3611
3611
  options: [{
3612
- title: localeKey('exportCustomBusiObjectData.todoOptions.async.props.options.0.title'),
3612
+ title: '开启',
3613
3613
  value: 'async'
3614
3614
  }, {
3615
- title: localeKey('exportCustomBusiObjectData.todoOptions.async.props.options.1.title'),
3615
+ title: '关闭',
3616
3616
  value: 'sync'
3617
3617
  }]
3618
3618
  }
3619
3619
  }, {
3620
3620
  key: 'busiObjectFields',
3621
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFields.label'),
3621
+ label: '导出字段',
3622
3622
  type: 'SelectExportFields',
3623
3623
  props: {
3624
3624
  isRequired: true,
@@ -3629,18 +3629,18 @@ var todoActionObject = {
3629
3629
  }
3630
3630
  }, {
3631
3631
  key: 'busiObjectFilterParams',
3632
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.label'),
3632
+ label: '查询条件',
3633
3633
  type: 'ExportParamFields',
3634
3634
  props: {},
3635
3635
  extraMenus: [{
3636
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.0.label'),
3636
+ label: '查询条件',
3637
3637
  value: 'normal'
3638
3638
  }, {
3639
- label: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraMenus.1.label'),
3639
+ label: '行主键',
3640
3640
  value: 'primaryValues'
3641
3641
  }],
3642
3642
  extraGroups: [{
3643
- subLabel: localeKey('exportCustomBusiObjectData.todoOptions.busiObjectFilterParams.extraGroups.0.subLabel'),
3643
+ subLabel: '清空赋值',
3644
3644
  subClickFunName: 'cleanValue'
3645
3645
  }]
3646
3646
  }, {
@@ -3654,17 +3654,17 @@ var todoActionObject = {
3654
3654
  }],
3655
3655
  todoCallbacks: ['callback1', 'callback2'],
3656
3656
  classification: [{
3657
- label: localeKey('exportCustomBusiObjectData.classification.export.label'),
3657
+ label: '导入导出',
3658
3658
  value: 'export'
3659
3659
  }]
3660
3660
  },
3661
3661
  exportPage: {
3662
3662
  key: 'exportPage',
3663
- label: localeKey('exportPage.label'),
3663
+ label: '页面导出',
3664
3664
  todoOptions: [{
3665
3665
  key: 'fileName',
3666
3666
  aliasKey: 'expFileName',
3667
- label: localeKey('exportPage.todoOptions.fileName.label'),
3667
+ label: '文件名',
3668
3668
  type: 'Input',
3669
3669
  props: {
3670
3670
  placeholder: localeKey('exportPage.todoOptions.fileName.props.placeholder')
@@ -3672,21 +3672,21 @@ var todoActionObject = {
3672
3672
  }, {
3673
3673
  key: 'type',
3674
3674
  aliasKey: 'expType',
3675
- label: localeKey('exportPage.todoOptions.type.label'),
3675
+ label: '类型',
3676
3676
  type: 'Select',
3677
3677
  props: {
3678
3678
  options: [{
3679
3679
  title: 'PDF',
3680
3680
  value: 'pdf'
3681
3681
  }, {
3682
- title: localeKey('exportPage.todoOptions.type.props.options.1.title'),
3682
+ title: '图片',
3683
3683
  value: 'png'
3684
3684
  }]
3685
3685
  }
3686
3686
  }],
3687
3687
  todoCallbacks: ['callback1', 'callback2'],
3688
3688
  classification: [{
3689
- label: localeKey('exportPage.classification.export.label'),
3689
+ label: '导入导出',
3690
3690
  value: 'export'
3691
3691
  }]
3692
3692
  },
@@ -3695,7 +3695,7 @@ var todoActionObject = {
3695
3695
  label: localeKey('importCustomData.label'),
3696
3696
  todoOptions: [{
3697
3697
  key: 'custUrl',
3698
- label: localeKey('importCustomData.todoOptions.custUrl.label'),
3698
+ label: '导入服务',
3699
3699
  type: 'SelectCustomExportService',
3700
3700
  props: {
3701
3701
  isRequired: true,
@@ -3727,7 +3727,7 @@ var todoActionObject = {
3727
3727
  type: 'UploadFile'
3728
3728
  }, {
3729
3729
  key: 'custParams',
3730
- label: localeKey('importCustomData.todoOptions.custParams.label'),
3730
+ label: '自定义参数',
3731
3731
  type: 'SetCustomParams'
3732
3732
  }, {
3733
3733
  key: 'custTplUrl',
@@ -3751,27 +3751,27 @@ var todoActionObject = {
3751
3751
  key: 'callback2'
3752
3752
  }],
3753
3753
  classification: [{
3754
- label: localeKey('importCustomData.classification.export.label'),
3754
+ label: '导入导出',
3755
3755
  value: 'export'
3756
3756
  }],
3757
3757
  isAsync: true
3758
3758
  },
3759
3759
  previewFile: {
3760
3760
  key: 'previewFile',
3761
- label: localeKey('previewFile.label'),
3761
+ label: '文件预览',
3762
3762
  todoOptions: [{
3763
3763
  key: 'fileId',
3764
3764
  label: localeKey('previewFile.todoOptions.fileId.label'),
3765
3765
  type: 'SetExpression'
3766
3766
  }],
3767
3767
  classification: [{
3768
- label: localeKey('previewFile.classification.page.label'),
3768
+ label: '页面类',
3769
3769
  value: 'page'
3770
3770
  }]
3771
3771
  },
3772
3772
  print: {
3773
3773
  key: 'print',
3774
- label: localeKey('print.label'),
3774
+ label: '页面打印',
3775
3775
  todoOptions: [{
3776
3776
  key: 'compToPrint',
3777
3777
  label: localeKey('print.todoOptions.compToPrint.label'),
@@ -3779,33 +3779,33 @@ var todoActionObject = {
3779
3779
  props: {
3780
3780
  selectType: 'free',
3781
3781
  titleLink: [{
3782
- title: localeKey('print.todoOptions.compToPrint.props.titleLink.0.title'),
3782
+ title: '清空已选',
3783
3783
  value: 'cleanValue'
3784
3784
  }]
3785
3785
  }
3786
3786
  }],
3787
3787
  classification: [{
3788
- label: localeKey('print.classification.page.label'),
3788
+ label: '页面类',
3789
3789
  value: 'page'
3790
3790
  }]
3791
3791
  },
3792
3792
  return: {
3793
3793
  key: 'return',
3794
- label: localeKey('return.label'),
3794
+ label: '退出事件',
3795
3795
  todoOptions: [{
3796
3796
  key: 'returnType',
3797
- label: localeKey('return.todoOptions.returnType.label'),
3797
+ label: '返回类型',
3798
3798
  type: 'RadioButton',
3799
3799
  labelTip: localeKey('return.todoOptions.returnType.labelTip'),
3800
3800
  props: {
3801
3801
  options: [{
3802
- title: localeKey('return.todoOptions.returnType.props.options.0.title'),
3802
+ title: '',
3803
3803
  value: 'value'
3804
3804
  }, {
3805
- title: localeKey('return.todoOptions.returnType.props.options.1.title'),
3805
+ title: '成功',
3806
3806
  value: 'success'
3807
3807
  }, {
3808
- title: localeKey('return.todoOptions.returnType.props.options.2.title'),
3808
+ title: '失败',
3809
3809
  value: 'failure'
3810
3810
  }]
3811
3811
  }
@@ -3819,10 +3819,10 @@ var todoActionObject = {
3819
3819
  type: 'Select',
3820
3820
  props: {
3821
3821
  options: [{
3822
- title: localeKey('return.todoOptions.isPreventDefault.props.options.0.title'),
3822
+ title: '',
3823
3823
  value: 'T'
3824
3824
  }, {
3825
- title: localeKey('return.todoOptions.isPreventDefault.props.options.1.title'),
3825
+ title: '',
3826
3826
  value: 'F'
3827
3827
  }]
3828
3828
  },
@@ -3834,16 +3834,16 @@ var todoActionObject = {
3834
3834
  labelTip: localeKey('return.todoOptions.isStopPropagation.labelTip'),
3835
3835
  props: {
3836
3836
  options: [{
3837
- title: localeKey('return.todoOptions.isStopPropagation.props.options.0.title'),
3837
+ title: '',
3838
3838
  value: 'T'
3839
3839
  }, {
3840
- title: localeKey('return.todoOptions.isStopPropagation.props.options.1.title'),
3840
+ title: '',
3841
3841
  value: 'F'
3842
3842
  }]
3843
3843
  }
3844
3844
  }],
3845
3845
  classification: [{
3846
- label: localeKey('return.classification.others.label'),
3846
+ label: '其他',
3847
3847
  value: 'others'
3848
3848
  }]
3849
3849
  },
@@ -3852,18 +3852,18 @@ var todoActionObject = {
3852
3852
  label: localeKey('copyToClipboard.label'),
3853
3853
  todoOptions: [{
3854
3854
  key: 'copyText',
3855
- label: localeKey('copyToClipboard.todoOptions.copyText.label'),
3855
+ label: '复制内容',
3856
3856
  type: 'SetExpression'
3857
3857
  }],
3858
3858
  todoCallbacks: ['callback1'],
3859
3859
  classification: [{
3860
- label: localeKey('copyToClipboard.classification.others.label'),
3860
+ label: '常用',
3861
3861
  value: 'others'
3862
3862
  }]
3863
3863
  },
3864
3864
  getBlockSelectValues: {
3865
3865
  key: 'getBlockSelectValues',
3866
- label: localeKey('getBlockSelectValues.label'),
3866
+ label: '获取选中项',
3867
3867
  todoCallbacks: [{
3868
3868
  key: 'callback1',
3869
3869
  fields: [{
@@ -3884,18 +3884,18 @@ var todoActionObject = {
3884
3884
  label: localeKey('setBlockSelectData.label'),
3885
3885
  todoOptions: [{
3886
3886
  key: 'value',
3887
- label: localeKey('setBlockSelectData.todoOptions.value.label'),
3887
+ label: '内容',
3888
3888
  type: 'SetExpression'
3889
3889
  }],
3890
3890
  todoCallbacks: ['callback1']
3891
3891
  },
3892
3892
  setBlockSelectSelectedData: {
3893
3893
  key: 'setBlockSelectSelectedData',
3894
- label: localeKey('setBlockSelectSelectedData.label'),
3894
+ label: '设置选中项',
3895
3895
  todoOptions: [{
3896
3896
  key: 'selectType',
3897
3897
  aliasKey: 'bsSelectType',
3898
- label: localeKey('setBlockSelectSelectedData.todoOptions.selectType.label'),
3898
+ label: '控制类型',
3899
3899
  type: 'RadioButton',
3900
3900
  defaultValue: 'id',
3901
3901
  props: {
@@ -3903,41 +3903,41 @@ var todoActionObject = {
3903
3903
  title: localeKey('setBlockSelectSelectedData.todoOptions.selectType.props.options.0.title'),
3904
3904
  value: 'id'
3905
3905
  }, {
3906
- title: localeKey('setBlockSelectSelectedData.todoOptions.selectType.props.options.1.title'),
3906
+ title: '循环项索引',
3907
3907
  value: 'index'
3908
3908
  }]
3909
3909
  }
3910
3910
  }, {
3911
3911
  key: 'value',
3912
- label: localeKey('setBlockSelectSelectedData.todoOptions.value.label'),
3912
+ label: '内容',
3913
3913
  type: 'SetExpression'
3914
3914
  }],
3915
3915
  todoCallbacks: ['callback1']
3916
3916
  },
3917
3917
  setBlockSelectHiddenData: {
3918
3918
  key: 'setBlockSelectHiddenData',
3919
- label: localeKey('setBlockSelectHiddenData.label'),
3919
+ label: '控制显隐',
3920
3920
  todoOptions: [{
3921
3921
  key: 'visible',
3922
- label: localeKey('setBlockSelectHiddenData.todoOptions.visible.label'),
3922
+ label: '显隐设置',
3923
3923
  type: 'RadioButton',
3924
3924
  defaultValue: '',
3925
3925
  props: {
3926
3926
  options: [{
3927
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.0.title'),
3927
+ title: '显示',
3928
3928
  value: 'true'
3929
3929
  }, {
3930
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.1.title'),
3930
+ title: '隐藏',
3931
3931
  value: ''
3932
3932
  }, {
3933
- title: localeKey('setBlockSelectHiddenData.todoOptions.visible.props.options.2.title'),
3933
+ title: '切换',
3934
3934
  value: 'toggle'
3935
3935
  }]
3936
3936
  }
3937
3937
  }, {
3938
3938
  key: 'selectType',
3939
3939
  aliasKey: 'bsSelectType',
3940
- label: localeKey('setBlockSelectHiddenData.todoOptions.selectType.label'),
3940
+ label: '控制类型',
3941
3941
  type: 'RadioButton',
3942
3942
  defaultValue: 'id',
3943
3943
  props: {
@@ -3945,13 +3945,13 @@ var todoActionObject = {
3945
3945
  title: localeKey('setBlockSelectHiddenData.todoOptions.selectType.props.options.0.title'),
3946
3946
  value: 'id'
3947
3947
  }, {
3948
- title: localeKey('setBlockSelectHiddenData.todoOptions.selectType.props.options.1.title'),
3948
+ title: '循环项索引',
3949
3949
  value: 'index'
3950
3950
  }]
3951
3951
  }
3952
3952
  }, {
3953
3953
  key: 'value',
3954
- label: localeKey('setBlockSelectHiddenData.todoOptions.value.label'),
3954
+ label: '内容',
3955
3955
  type: 'SetExpression'
3956
3956
  }],
3957
3957
  todoCallbacks: ['callback1']
@@ -3961,25 +3961,25 @@ var todoActionObject = {
3961
3961
  label: localeKey('setBlockSelectStateData.label'),
3962
3962
  todoOptions: [{
3963
3963
  key: 'disabled',
3964
- label: localeKey('setBlockSelectStateData.todoOptions.disabled.label'),
3964
+ label: '状态设置',
3965
3965
  type: 'RadioButton',
3966
3966
  defaultValue: 'toggle',
3967
3967
  props: {
3968
3968
  options: [{
3969
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.0.title'),
3969
+ title: '启动',
3970
3970
  value: ''
3971
3971
  }, {
3972
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.1.title'),
3972
+ title: '禁用',
3973
3973
  value: 'true'
3974
3974
  }, {
3975
- title: localeKey('setBlockSelectStateData.todoOptions.disabled.props.options.2.title'),
3975
+ title: '切换',
3976
3976
  value: 'toggle'
3977
3977
  }]
3978
3978
  }
3979
3979
  }, {
3980
3980
  key: 'selectType',
3981
3981
  aliasKey: 'bsSelectType',
3982
- label: localeKey('setBlockSelectStateData.todoOptions.selectType.label'),
3982
+ label: '控制类型',
3983
3983
  type: 'RadioButton',
3984
3984
  defaultValue: 'id',
3985
3985
  props: {
@@ -3987,13 +3987,13 @@ var todoActionObject = {
3987
3987
  title: localeKey('setBlockSelectStateData.todoOptions.selectType.props.options.0.title'),
3988
3988
  value: 'id'
3989
3989
  }, {
3990
- title: localeKey('setBlockSelectStateData.todoOptions.selectType.props.options.1.title'),
3990
+ title: '循环项索引',
3991
3991
  value: 'index'
3992
3992
  }]
3993
3993
  }
3994
3994
  }, {
3995
3995
  key: 'value',
3996
- label: localeKey('setBlockSelectStateData.todoOptions.value.label'),
3996
+ label: '内容',
3997
3997
  type: 'SetExpression'
3998
3998
  }],
3999
3999
  todoCallbacks: ['callback1']
@@ -4099,13 +4099,13 @@ var todoActionObject = {
4099
4099
  todoOptions: [{
4100
4100
  key: 'data',
4101
4101
  aliasKey: 'dataSource',
4102
- label: localeKey('reloadGanttData.todoOptions.data.label'),
4102
+ label: '内容',
4103
4103
  type: 'SetExpression'
4104
4104
  }]
4105
4105
  },
4106
4106
  value: {
4107
4107
  key: 'value',
4108
- label: localeKey('value.label'),
4108
+ label: '获取值',
4109
4109
  todoCallbacks: [{
4110
4110
  key: 'callback1',
4111
4111
  fields: [{
@@ -4121,29 +4121,29 @@ var todoActionObject = {
4121
4121
  },
4122
4122
  clearMobileValue: {
4123
4123
  key: 'clearMobileValue',
4124
- label: localeKey('clearMobileValue.label')
4124
+ label: '清空值'
4125
4125
  },
4126
4126
  setMobileValue: {
4127
4127
  key: 'setMobileValue',
4128
- label: localeKey('setMobileValue.label'),
4128
+ label: '控件赋值',
4129
4129
  todoOptions: [{
4130
4130
  key: 'compid',
4131
4131
  aliasKey: 'compId',
4132
- label: localeKey('setMobileValue.todoOptions.compid.label'),
4132
+ label: '组件选择',
4133
4133
  type: 'CompTree',
4134
4134
  props: {
4135
4135
  titleLink: [{
4136
- title: localeKey('setMobileValue.todoOptions.compid.props.titleLink.0.title'),
4136
+ title: '清空已选',
4137
4137
  value: 'cleanValue'
4138
4138
  }]
4139
4139
  }
4140
4140
  }, {
4141
4141
  key: 'valueList',
4142
- label: localeKey('setMobileValue.todoOptions.valueList.label'),
4142
+ label: '组件赋值',
4143
4143
  type: 'SetSysExpression',
4144
4144
  props: {
4145
4145
  titleLink: [{
4146
- title: localeKey('setMobileValue.todoOptions.valueList.props.titleLink.0.title'),
4146
+ title: '清空赋值',
4147
4147
  value: 'clearValue'
4148
4148
  }]
4149
4149
  }
@@ -4153,36 +4153,36 @@ var todoActionObject = {
4153
4153
  },
4154
4154
  setMobileFormDisabled: {
4155
4155
  key: 'setMobileFormDisabled',
4156
- label: localeKey('setMobileFormDisabled.label'),
4156
+ label: '禁用状态',
4157
4157
  todoCallbacks: ['callback1']
4158
4158
  },
4159
4159
  setMobileFormEditor: {
4160
4160
  key: 'setMobileFormEditor',
4161
- label: localeKey('setMobileFormEditor.label'),
4161
+ label: '编辑状态',
4162
4162
  todoCallbacks: ['callback1']
4163
4163
  },
4164
4164
  setEditor: {
4165
4165
  key: 'setEditor',
4166
- label: localeKey('setEditor.label'),
4166
+ label: '编辑状态',
4167
4167
  todoCallbacks: ['callback1']
4168
4168
  },
4169
4169
  setMobileFormVisible: {
4170
4170
  key: 'setMobileFormVisible',
4171
- label: localeKey('setMobileFormVisible.label'),
4171
+ label: '控制显隐',
4172
4172
  todoOptions: [{
4173
4173
  key: 'visible',
4174
- label: localeKey('setMobileFormVisible.todoOptions.visible.label'),
4174
+ label: '显隐设置',
4175
4175
  type: 'RadioButton',
4176
4176
  defaultValue: '',
4177
4177
  props: {
4178
4178
  options: [{
4179
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.0.title'),
4179
+ title: '显示',
4180
4180
  value: 'true'
4181
4181
  }, {
4182
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.1.title'),
4182
+ title: '隐藏',
4183
4183
  value: ''
4184
4184
  }, {
4185
- title: localeKey('setMobileFormVisible.todoOptions.visible.props.options.2.title'),
4185
+ title: '切换',
4186
4186
  value: 'toggle'
4187
4187
  }]
4188
4188
  }
@@ -4191,11 +4191,11 @@ var todoActionObject = {
4191
4191
  },
4192
4192
  setFormItemDataSource: {
4193
4193
  key: 'setFormItemDataSource',
4194
- label: localeKey('setFormItemDataSource.label'),
4194
+ label: '设置选项值',
4195
4195
  todoOptions: [{
4196
4196
  key: 'data',
4197
4197
  aliasKey: 'dataSource',
4198
- label: localeKey('setFormItemDataSource.todoOptions.data.label'),
4198
+ label: '内容',
4199
4199
  type: 'SetExpression'
4200
4200
  }],
4201
4201
  todoCallbacks: ['callback1']
@@ -4217,25 +4217,25 @@ var todoActionObject = {
4217
4217
  key: 'addDebugger',
4218
4218
  label: localeKey('addDebugger.label'),
4219
4219
  classification: [{
4220
- label: localeKey('addDebugger.classification.debug.label'),
4220
+ label: '调试类',
4221
4221
  value: 'debug'
4222
4222
  }],
4223
4223
  hidden: true
4224
4224
  },
4225
4225
  reload: {
4226
4226
  key: 'reload',
4227
- label: localeKey('reload.label'),
4227
+ label: '页面刷新',
4228
4228
  classification: [{
4229
- label: localeKey('reload.classification.page.label'),
4229
+ label: '页面类',
4230
4230
  value: 'page'
4231
4231
  }]
4232
4232
  },
4233
4233
  switchAppTabs: {
4234
4234
  key: 'switchAppTabs',
4235
- label: localeKey('switchAppTabs.label'),
4235
+ label: '切换页面',
4236
4236
  todoOptions: [{
4237
4237
  key: 'value',
4238
- label: localeKey('switchAppTabs.todoOptions.value.label'),
4238
+ label: '内容',
4239
4239
  type: 'SetExpression'
4240
4240
  }],
4241
4241
  todoCallbacks: [{
@@ -4250,20 +4250,20 @@ var todoActionObject = {
4250
4250
  },
4251
4251
  changeContent: {
4252
4252
  key: 'changeContent',
4253
- label: localeKey('changeContent.label'),
4253
+ label: '修改内容',
4254
4254
  todoOptions: [{
4255
4255
  key: 'name',
4256
- label: localeKey('changeContent.todoOptions.name.label'),
4256
+ label: '修改名称',
4257
4257
  type: 'Input',
4258
4258
  props: {
4259
- placeholder: localeKey('changeContent.todoOptions.name.props.placeholder')
4259
+ placeholder: '请输入名称'
4260
4260
  }
4261
4261
  }, {
4262
4262
  key: 'icon',
4263
- label: localeKey('changeContent.todoOptions.icon.label'),
4263
+ label: '修改图标',
4264
4264
  type: 'ChooseIcon',
4265
4265
  props: {
4266
- placeholder: localeKey('changeContent.todoOptions.icon.props.placeholder')
4266
+ placeholder: '请选择图标'
4267
4267
  }
4268
4268
  }]
4269
4269
  },
@@ -4285,7 +4285,7 @@ var todoActionObject = {
4285
4285
  label: localeKey('customActionCode.label'),
4286
4286
  todoOptions: [{
4287
4287
  key: 'actionTitle',
4288
- label: localeKey('customActionCode.todoOptions.actionTitle.label'),
4288
+ label: '动作说明',
4289
4289
  type: 'CustomActionTitle',
4290
4290
  props: {
4291
4291
  placeholder: localeKey('customActionCode.todoOptions.actionTitle.props.placeholder'),
@@ -4293,13 +4293,13 @@ var todoActionObject = {
4293
4293
  }
4294
4294
  }, {
4295
4295
  key: 'editorCode',
4296
- label: localeKey('customActionCode.todoOptions.editorCode.label'),
4296
+ label: '自定义内容',
4297
4297
  type: 'CustomActionCode'
4298
4298
  }],
4299
4299
  todoCallbacks: [{
4300
4300
  key: 'callback1',
4301
4301
  fields: [{
4302
- title: localeKey('customActionCode.todoCallbacks.callback1.fields.0.title'),
4302
+ title: '成功回调值',
4303
4303
  value: '$data_@{options.id}$',
4304
4304
  description: '',
4305
4305
  type: 'unknown',
@@ -4312,7 +4312,7 @@ var todoActionObject = {
4312
4312
  }, {
4313
4313
  key: 'callback2',
4314
4314
  fields: [{
4315
- title: localeKey('customActionCode.todoCallbacks.callback2.fields.0.title'),
4315
+ title: '失败回调值',
4316
4316
  value: '$fail_@{options.id}$',
4317
4317
  description: '',
4318
4318
  type: 'unknown',
@@ -4324,11 +4324,11 @@ var todoActionObject = {
4324
4324
  }]
4325
4325
  }],
4326
4326
  classification: [{
4327
- label: localeKey('customActionCode.classification.others.label'),
4327
+ label: '其他',
4328
4328
  value: 'others'
4329
4329
  }],
4330
4330
  remarks: [{
4331
- label: localeKey('customActionCode.remarks.0.label'),
4331
+ label: '注意事项',
4332
4332
  content: localeKey('customActionCode.remarks.0.content')
4333
4333
  }],
4334
4334
  isAsync: true
@@ -4345,14 +4345,14 @@ var todoActionObject = {
4345
4345
  todoCallbacks: [{
4346
4346
  key: 'callback1',
4347
4347
  fields: [{
4348
- title: localeKey('getItemFromLocalStorage.todoCallbacks.callback1.fields.0.title'),
4348
+ title: '本地数据值',
4349
4349
  value: '$thirdValue_@{options.id}$',
4350
4350
  type: 'string',
4351
4351
  description: ''
4352
4352
  }]
4353
4353
  }],
4354
4354
  classification: [{
4355
- label: localeKey('getItemFromLocalStorage.classification.others.label'),
4355
+ label: '其他',
4356
4356
  value: 'others'
4357
4357
  }]
4358
4358
  },
@@ -4362,7 +4362,7 @@ var todoActionObject = {
4362
4362
  todoOptions: [{
4363
4363
  key: 'key',
4364
4364
  aliasKey: 'setItemKey',
4365
- label: localeKey('setItemToLocalStorage.todoOptions.key.label'),
4365
+ label: '字段名称',
4366
4366
  type: 'Input',
4367
4367
  props: {
4368
4368
  required: true,
@@ -4370,28 +4370,28 @@ var todoActionObject = {
4370
4370
  }
4371
4371
  }, {
4372
4372
  key: 'value',
4373
- label: localeKey('setItemToLocalStorage.todoOptions.value.label'),
4373
+ label: '内容',
4374
4374
  type: 'SetExpression'
4375
4375
  }],
4376
4376
  classification: [{
4377
- label: localeKey('setItemToLocalStorage.classification.others.label'),
4377
+ label: '其他',
4378
4378
  value: 'others'
4379
4379
  }]
4380
4380
  },
4381
4381
  prev: {
4382
4382
  key: 'prev',
4383
- label: localeKey('prev.label')
4383
+ label: '上一张'
4384
4384
  },
4385
4385
  next: {
4386
4386
  key: 'next',
4387
- label: localeKey('next.label')
4387
+ label: '下一张'
4388
4388
  },
4389
4389
  goTo: {
4390
4390
  key: 'goTo',
4391
- label: localeKey('goTo.label'),
4391
+ label: '去第几页',
4392
4392
  todoOptions: [{
4393
4393
  key: 'value',
4394
- label: localeKey('goTo.todoOptions.value.label'),
4394
+ label: '内容',
4395
4395
  type: 'SetExpression'
4396
4396
  }]
4397
4397
  },
@@ -4400,22 +4400,22 @@ var todoActionObject = {
4400
4400
  label: localeKey('getLocalLocation.label'),
4401
4401
  todoOptions: [{
4402
4402
  key: 'mapType',
4403
- label: localeKey('getLocalLocation.todoOptions.mapType.label'),
4403
+ label: '预览方式',
4404
4404
  type: 'RadioButton',
4405
4405
  defaultValue: 'baidu',
4406
4406
  props: {
4407
4407
  valuePropName: 'mapType',
4408
4408
  options: [{
4409
- title: localeKey('getLocalLocation.todoOptions.mapType.props.options.0.title'),
4409
+ title: '百度地图',
4410
4410
  value: 'baidu'
4411
4411
  }, {
4412
- title: localeKey('getLocalLocation.todoOptions.mapType.props.options.1.title'),
4412
+ title: '高德地图',
4413
4413
  value: 'gaode'
4414
4414
  }]
4415
4415
  }
4416
4416
  }, {
4417
4417
  key: 'mapKey',
4418
- label: localeKey('getLocalLocation.todoOptions.mapKey.label'),
4418
+ label: '地图秘钥',
4419
4419
  type: 'Input',
4420
4420
  props: {
4421
4421
  placeholder: localeKey('getLocalLocation.todoOptions.mapKey.props.placeholder'),
@@ -4443,13 +4443,13 @@ var todoActionObject = {
4443
4443
  defaultValue: 'BD09',
4444
4444
  props: {
4445
4445
  options: [{
4446
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.0.title'),
4446
+ title: '大地坐标系',
4447
4447
  value: 'WGS84'
4448
4448
  }, {
4449
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.1.title'),
4449
+ title: '火星坐标系',
4450
4450
  value: 'GCJ02'
4451
4451
  }, {
4452
- title: localeKey('getLocalLocation.todoOptions.locationOutputType.props.options.2.title'),
4452
+ title: '百度坐标系',
4453
4453
  value: 'BD09'
4454
4454
  }]
4455
4455
  }
@@ -4477,14 +4477,14 @@ var todoActionObject = {
4477
4477
  }]
4478
4478
  }],
4479
4479
  classification: [{
4480
- label: localeKey('getLocalLocation.classification.others.label'),
4480
+ label: '其他',
4481
4481
  value: 'others'
4482
4482
  }],
4483
4483
  remarks: [{
4484
- label: localeKey('getLocalLocation.remarks.0.label'),
4484
+ label: '适用场景',
4485
4485
  content: localeKey('getLocalLocation.remarks.0.content')
4486
4486
  }, {
4487
- label: localeKey('getLocalLocation.remarks.1.label'),
4487
+ label: '注意事项',
4488
4488
  content: localeKey('getLocalLocation.remarks.1.content')
4489
4489
  }],
4490
4490
  isAsync: true
@@ -4514,11 +4514,11 @@ var todoActionObject = {
4514
4514
  label: localeKey('reloadAppTableData.label'),
4515
4515
  todoOptions: [{
4516
4516
  key: 'appTableData',
4517
- label: localeKey('reloadAppTableData.todoOptions.appTableData.label'),
4517
+ label: '表头数据',
4518
4518
  type: 'SetExpression'
4519
4519
  }, {
4520
4520
  key: 'appTableDataSource',
4521
- label: localeKey('reloadAppTableData.todoOptions.appTableDataSource.label'),
4521
+ label: '表格数据',
4522
4522
  type: 'SetExpression'
4523
4523
  }],
4524
4524
  todoCallbacks: []
@@ -4546,12 +4546,12 @@ var todoActionObject = {
4546
4546
  },
4547
4547
  startVerificationCodeCountdown: {
4548
4548
  key: 'startVerificationCodeCountdown',
4549
- label: localeKey('startVerificationCodeCountdown.label'),
4549
+ label: '开始倒计时',
4550
4550
  todoCallbacks: ['callback1']
4551
4551
  },
4552
4552
  resetVerificationCodeCountdown: {
4553
4553
  key: 'resetVerificationCodeCountdown',
4554
- label: localeKey('resetVerificationCodeCountdown.label'),
4554
+ label: '重置倒计时',
4555
4555
  todoCallbacks: ['callback1']
4556
4556
  },
4557
4557
  setVerificationCodeImageUrl: {
@@ -4570,7 +4570,7 @@ var todoActionObject = {
4570
4570
  todoOptions: [{
4571
4571
  key: 'transferValue',
4572
4572
  aliasKey: 'removeTransferValue',
4573
- label: localeKey('removeTransferKeys.todoOptions.transferValue.label'),
4573
+ label: '内容',
4574
4574
  type: 'SetExpression',
4575
4575
  props: {
4576
4576
  placeholder: localeKey('removeTransferKeys.todoOptions.transferValue.props.placeholder')
@@ -4584,7 +4584,7 @@ var todoActionObject = {
4584
4584
  todoOptions: [{
4585
4585
  key: 'transferValue',
4586
4586
  aliasKey: 'addTransferValue',
4587
- label: localeKey('addTransferKeys.todoOptions.transferValue.label'),
4587
+ label: '内容',
4588
4588
  type: 'SetExpression',
4589
4589
  props: {
4590
4590
  placeholder: localeKey('addTransferKeys.todoOptions.transferValue.props.placeholder')
@@ -4594,27 +4594,27 @@ var todoActionObject = {
4594
4594
  },
4595
4595
  setTransferLeftTitle: {
4596
4596
  key: 'setTransferLeftTitle',
4597
- label: localeKey('setTransferLeftTitle.label'),
4597
+ label: '设置左标题',
4598
4598
  todoOptions: [{
4599
4599
  key: 'value',
4600
- label: localeKey('setTransferLeftTitle.todoOptions.value.label'),
4600
+ label: '内容',
4601
4601
  type: 'SetExpression'
4602
4602
  }],
4603
4603
  todoCallbacks: ['callback1']
4604
4604
  },
4605
4605
  setTransferRightTitle: {
4606
4606
  key: 'setTransferRightTitle',
4607
- label: localeKey('setTransferRightTitle.label'),
4607
+ label: '设置右标题',
4608
4608
  todoOptions: [{
4609
4609
  key: 'value',
4610
- label: localeKey('setTransferRightTitle.todoOptions.value.label'),
4610
+ label: '内容',
4611
4611
  type: 'SetExpression'
4612
4612
  }],
4613
4613
  todoCallbacks: ['callback1']
4614
4614
  },
4615
4615
  loadLineChartData: {
4616
4616
  key: 'loadLineChartData',
4617
- label: localeKey('loadLineChartData.label'),
4617
+ label: '加载数据',
4618
4618
  todoOptions: [{
4619
4619
  key: 'xLineName',
4620
4620
  label: localeKey('loadLineChartData.todoOptions.xLineName.label'),
@@ -4625,30 +4625,30 @@ var todoActionObject = {
4625
4625
  type: 'SetExpression'
4626
4626
  }, {
4627
4627
  key: 'lineChartData',
4628
- label: localeKey('loadLineChartData.todoOptions.lineChartData.label'),
4628
+ label: '数据源',
4629
4629
  type: 'SetExpression'
4630
4630
  }]
4631
4631
  },
4632
4632
  loadSingleProgressData: {
4633
4633
  key: 'loadSingleProgressData',
4634
- label: localeKey('loadSingleProgressData.label'),
4634
+ label: '加载数据',
4635
4635
  todoOptions: [{
4636
4636
  key: 'spCount',
4637
- label: localeKey('loadSingleProgressData.todoOptions.spCount.label'),
4637
+ label: '当前数量',
4638
4638
  type: 'SetExpression'
4639
4639
  }, {
4640
4640
  key: 'spTotal',
4641
- label: localeKey('loadSingleProgressData.todoOptions.spTotal.label'),
4641
+ label: '总数量',
4642
4642
  type: 'SetExpression'
4643
4643
  }, {
4644
4644
  key: 'spRightNode',
4645
- label: localeKey('loadSingleProgressData.todoOptions.spRightNode.label'),
4645
+ label: '右侧文字',
4646
4646
  type: 'SetExpression'
4647
4647
  }]
4648
4648
  },
4649
4649
  loadDonutChartData: {
4650
4650
  key: 'loadDonutChartData',
4651
- label: localeKey('loadDonutChartData.label'),
4651
+ label: '加载数据',
4652
4652
  todoOptions: [{
4653
4653
  key: 'donutX',
4654
4654
  label: localeKey('loadDonutChartData.todoOptions.donutX.label'),
@@ -4659,20 +4659,20 @@ var todoActionObject = {
4659
4659
  type: 'SetExpression'
4660
4660
  }, {
4661
4661
  key: 'donutData',
4662
- label: localeKey('loadDonutChartData.todoOptions.donutData.label'),
4662
+ label: '数据源',
4663
4663
  type: 'SetExpression'
4664
4664
  }, {
4665
4665
  key: 'donutSumText',
4666
- label: localeKey('loadDonutChartData.todoOptions.donutSumText.label'),
4666
+ label: '总数据',
4667
4667
  type: 'SetExpression'
4668
4668
  }]
4669
4669
  },
4670
4670
  loadMultipleProgressData: {
4671
4671
  key: 'loadMultipleProgressData',
4672
- label: localeKey('loadMultipleProgressData.label'),
4672
+ label: '加载数据',
4673
4673
  todoOptions: [{
4674
4674
  key: 'mpData',
4675
- label: localeKey('loadMultipleProgressData.todoOptions.mpData.label'),
4675
+ label: '数据源',
4676
4676
  type: 'SetExpression',
4677
4677
  props: {
4678
4678
  placeholder: localeKey('loadMultipleProgressData.todoOptions.mpData.props.placeholder')
@@ -4681,21 +4681,21 @@ var todoActionObject = {
4681
4681
  },
4682
4682
  loadGroupColumnData: {
4683
4683
  key: 'loadGroupColumnData',
4684
- label: localeKey('loadGroupColumnData.label'),
4684
+ label: '加载数据',
4685
4685
  todoOptions: [{
4686
4686
  key: 'gcXName',
4687
4687
  label: localeKey('loadGroupColumnData.todoOptions.gcXName.label'),
4688
4688
  type: 'SetExpression'
4689
4689
  }, {
4690
4690
  key: 'gcLegendParams',
4691
- label: localeKey('loadGroupColumnData.todoOptions.gcLegendParams.label'),
4691
+ label: '图例内容',
4692
4692
  type: 'SetExpression',
4693
4693
  props: {
4694
4694
  placeholder: localeKey('loadGroupColumnData.todoOptions.gcLegendParams.props.placeholder')
4695
4695
  }
4696
4696
  }, {
4697
4697
  key: 'gcData',
4698
- label: localeKey('loadGroupColumnData.todoOptions.gcData.label'),
4698
+ label: '数据源',
4699
4699
  type: 'SetExpression',
4700
4700
  props: {
4701
4701
  placeholder: localeKey('loadGroupColumnData.todoOptions.gcData.props.placeholder')
@@ -4704,7 +4704,7 @@ var todoActionObject = {
4704
4704
  },
4705
4705
  loadSmallColumnarData: {
4706
4706
  key: 'loadSmallColumnarData',
4707
- label: localeKey('loadSmallColumnarData.label'),
4707
+ label: '加载数据',
4708
4708
  todoOptions: [{
4709
4709
  key: 'scXName',
4710
4710
  label: localeKey('loadSmallColumnarData.todoOptions.scXName.label'),
@@ -4715,7 +4715,7 @@ var todoActionObject = {
4715
4715
  type: 'SetExpression'
4716
4716
  }, {
4717
4717
  key: 'scData',
4718
- label: localeKey('loadSmallColumnarData.todoOptions.scData.label'),
4718
+ label: '数据源',
4719
4719
  type: 'SetExpression',
4720
4720
  props: {
4721
4721
  placeholder: localeKey('loadSmallColumnarData.todoOptions.scData.props.placeholder')
@@ -4724,21 +4724,21 @@ var todoActionObject = {
4724
4724
  },
4725
4725
  loadStackColumnData: {
4726
4726
  key: 'loadStackColumnData',
4727
- label: localeKey('loadStackColumnData.label'),
4727
+ label: '加载数据',
4728
4728
  todoOptions: [{
4729
4729
  key: 'stcXName',
4730
4730
  label: localeKey('loadStackColumnData.todoOptions.stcXName.label'),
4731
4731
  type: 'SetExpression'
4732
4732
  }, {
4733
4733
  key: 'stcLegendParams',
4734
- label: localeKey('loadStackColumnData.todoOptions.stcLegendParams.label'),
4734
+ label: '图例内容',
4735
4735
  type: 'SetExpression',
4736
4736
  props: {
4737
4737
  placeholder: localeKey('loadStackColumnData.todoOptions.stcLegendParams.props.placeholder')
4738
4738
  }
4739
4739
  }, {
4740
4740
  key: 'stcData',
4741
- label: localeKey('loadStackColumnData.todoOptions.stcData.label'),
4741
+ label: '数据源',
4742
4742
  type: 'SetExpression',
4743
4743
  props: {
4744
4744
  placeholder: localeKey('loadStackColumnData.todoOptions.stcData.props.placeholder')
@@ -4747,33 +4747,33 @@ var todoActionObject = {
4747
4747
  },
4748
4748
  setMenuOpenKey: {
4749
4749
  key: 'setMenuOpenKey',
4750
- label: localeKey('setMenuOpenKey.label'),
4750
+ label: '设置展开项',
4751
4751
  todoOptions: [{
4752
4752
  key: 'value',
4753
- label: localeKey('setMenuOpenKey.todoOptions.value.label'),
4753
+ label: '内容',
4754
4754
  type: 'SetExpression'
4755
4755
  }]
4756
4756
  },
4757
4757
  clearMenuOpenKey: {
4758
4758
  key: 'clearMenuOpenKey',
4759
- label: localeKey('clearMenuOpenKey.label')
4759
+ label: '清空展开项'
4760
4760
  },
4761
4761
  setInlineCollapsed: {
4762
4762
  key: 'setInlineCollapsed',
4763
4763
  label: localeKey('setInlineCollapsed.label'),
4764
4764
  todoOptions: [{
4765
4765
  key: 'inlineCollapsed',
4766
- label: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.label'),
4766
+ label: '是否收缩',
4767
4767
  type: 'Select',
4768
4768
  props: {
4769
4769
  options: [{
4770
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.0.title'),
4770
+ title: '缩起',
4771
4771
  value: 'true'
4772
4772
  }, {
4773
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.1.title'),
4773
+ title: '展开',
4774
4774
  value: ''
4775
4775
  }, {
4776
- title: localeKey('setInlineCollapsed.todoOptions.inlineCollapsed.props.options.2.title'),
4776
+ title: '切换',
4777
4777
  value: 'toggle'
4778
4778
  }]
4779
4779
  }
@@ -4781,10 +4781,10 @@ var todoActionObject = {
4781
4781
  },
4782
4782
  reloadTransferData: {
4783
4783
  key: 'reloadTransferData',
4784
- label: localeKey('reloadTransferData.label'),
4784
+ label: '加载数据',
4785
4785
  todoOptions: [{
4786
4786
  key: 'data',
4787
- label: localeKey('reloadTransferData.todoOptions.data.label'),
4787
+ label: '内容',
4788
4788
  type: 'SetExpression',
4789
4789
  aliasKey: 'dataSource'
4790
4790
  }],
@@ -4792,7 +4792,7 @@ var todoActionObject = {
4792
4792
  },
4793
4793
  getLoopListValues: {
4794
4794
  key: 'getLoopListValues',
4795
- label: localeKey('getLoopListValues.label'),
4795
+ label: '获取选中项',
4796
4796
  todoCallbacks: [{
4797
4797
  key: 'callback1',
4798
4798
  fields: [{
@@ -4823,7 +4823,7 @@ var todoActionObject = {
4823
4823
  label: localeKey('setExpandedKey.label'),
4824
4824
  todoOptions: [{
4825
4825
  key: 'value',
4826
- label: localeKey('setExpandedKey.todoOptions.value.label'),
4826
+ label: '内容',
4827
4827
  type: 'SetExpression'
4828
4828
  }]
4829
4829
  },
@@ -4832,17 +4832,17 @@ var todoActionObject = {
4832
4832
  label: localeKey('closeExpandedKey.label'),
4833
4833
  todoOptions: [{
4834
4834
  key: 'value',
4835
- label: localeKey('closeExpandedKey.todoOptions.value.label'),
4835
+ label: '内容',
4836
4836
  type: 'SetExpression'
4837
4837
  }]
4838
4838
  },
4839
4839
  reloadSelectorData: {
4840
4840
  key: 'reloadSelectorData',
4841
- label: localeKey('reloadSelectorData.label'),
4841
+ label: '加载数据',
4842
4842
  todoOptions: [{
4843
4843
  key: 'data',
4844
4844
  aliasKey: 'dataSource',
4845
- label: localeKey('reloadSelectorData.todoOptions.data.label'),
4845
+ label: '内容',
4846
4846
  type: 'SetExpression'
4847
4847
  }, {
4848
4848
  key: 'labelKey',
@@ -4856,7 +4856,7 @@ var todoActionObject = {
4856
4856
  }, {
4857
4857
  key: 'valueKey',
4858
4858
  aliasKey: 'selectValueKey',
4859
- label: localeKey('reloadSelectorData.todoOptions.valueKey.label'),
4859
+ label: '选项值字段',
4860
4860
  type: 'SetExpressionKey',
4861
4861
  props: {
4862
4862
  // 选择后只回填参数key选项对应的子级数据,不回填表达式
@@ -4930,10 +4930,10 @@ var todoActionObject = {
4930
4930
  label: localeKey('swipeTo.label'),
4931
4931
  todoOptions: [{
4932
4932
  key: 'swiperIndex',
4933
- label: localeKey('swipeTo.todoOptions.swiperIndex.label'),
4933
+ label: '索引',
4934
4934
  type: 'InputNumber',
4935
4935
  props: {
4936
- placeholder: localeKey('swipeTo.todoOptions.swiperIndex.props.placeholder'),
4936
+ placeholder: '请输入',
4937
4937
  formatter: function formatter(val) {
4938
4938
  return val ? val.match(/0|\d+/g) : undefined;
4939
4939
  }
@@ -4943,26 +4943,26 @@ var todoActionObject = {
4943
4943
  },
4944
4944
  refreshPictureVerifyCode: {
4945
4945
  key: 'refreshPictureVerifyCode',
4946
- label: localeKey('refreshPictureVerifyCode.label'),
4946
+ label: '刷新验证码',
4947
4947
  todoCallbacks: ['callback1']
4948
4948
  },
4949
4949
  mediaControl: {
4950
4950
  key: 'mediaControl',
4951
- label: localeKey('mediaControl.label'),
4951
+ label: '播放控制',
4952
4952
  todoOptions: [{
4953
4953
  key: 'updateMediaState',
4954
- label: localeKey('mediaControl.todoOptions.updateMediaState.label'),
4954
+ label: '状态设置',
4955
4955
  type: 'RadioButton',
4956
4956
  defaultValue: 'play',
4957
4957
  props: {
4958
4958
  options: [{
4959
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.0.title'),
4959
+ title: '播放',
4960
4960
  value: 'play'
4961
4961
  }, {
4962
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.1.title'),
4962
+ title: '暂停',
4963
4963
  value: 'pasue'
4964
4964
  }, {
4965
- title: localeKey('mediaControl.todoOptions.updateMediaState.props.options.2.title'),
4965
+ title: '切换',
4966
4966
  value: 'toggle'
4967
4967
  }]
4968
4968
  }
@@ -4973,14 +4973,14 @@ var todoActionObject = {
4973
4973
  label: localeKey('sysSetState.label'),
4974
4974
  todoOptions: [{
4975
4975
  key: 'compid',
4976
- label: localeKey('sysSetState.todoOptions.compid.label'),
4976
+ label: '组件选择',
4977
4977
  type: 'CompTree',
4978
4978
  aliasKey: 'compId',
4979
4979
  labelTip: localeKey('sysSetState.todoOptions.compid.labelTip'),
4980
4980
  props: {
4981
4981
  checkable: true,
4982
4982
  titleLink: [{
4983
- title: localeKey('sysSetState.todoOptions.compid.props.titleLink.0.title'),
4983
+ title: '清空已选',
4984
4984
  value: 'cleanValue'
4985
4985
  }]
4986
4986
  }
@@ -4991,22 +4991,22 @@ var todoActionObject = {
4991
4991
  labelTip: localeKey('sysSetState.todoOptions.compValueList.labelTip'),
4992
4992
  props: {
4993
4993
  options: [{
4994
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.0.title'),
4994
+ title: '普通',
4995
4995
  value: '1'
4996
4996
  }, {
4997
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.1.title'),
4997
+ title: '隐藏',
4998
4998
  value: '2'
4999
4999
  }, {
5000
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.2.title'),
5000
+ title: '禁用',
5001
5001
  value: '3'
5002
5002
  }, {
5003
- title: localeKey('sysSetState.todoOptions.compValueList.props.options.3.title'),
5003
+ title: '只读',
5004
5004
  value: '4'
5005
5005
  }]
5006
5006
  }
5007
5007
  }],
5008
5008
  classification: [{
5009
- label: localeKey('sysSetState.classification.0.label'),
5009
+ label: '常用',
5010
5010
  value: 'common'
5011
5011
  }, {
5012
5012
  label: localeKey('sysSetState.classification.1.label'),
@@ -5018,7 +5018,7 @@ var todoActionObject = {
5018
5018
  label: localeKey('callCurrentFunc.label'),
5019
5019
  todoOptions: [{
5020
5020
  key: 'pathname',
5021
- label: localeKey('callCurrentFunc.todoOptions.pathname.label'),
5021
+ label: '页面',
5022
5022
  type: 'SelectPage',
5023
5023
  visibleFlag: function (_ref) {
5024
5024
  var DSLCore = _ref.DSLCore,
@@ -5032,31 +5032,31 @@ var todoActionObject = {
5032
5032
  }.toString()
5033
5033
  }, {
5034
5034
  key: 'customFuncName',
5035
- label: localeKey('callCurrentFunc.todoOptions.customFuncName.label'),
5035
+ label: '自定义事件',
5036
5036
  type: 'SelectCustomFunc',
5037
5037
  props: {
5038
5038
  titleLink: [{
5039
- title: localeKey('callCurrentFunc.todoOptions.customFuncName.props.titleLink.0.title'),
5039
+ title: '刷新',
5040
5040
  value: 'refresh',
5041
5041
  key: 'refresh'
5042
5042
  }]
5043
5043
  }
5044
5044
  }, {
5045
5045
  key: 'customFuncParams',
5046
- label: localeKey('callCurrentFunc.todoOptions.customFuncParams.label'),
5046
+ label: '事件入参',
5047
5047
  type: 'SelectLink',
5048
5048
  defaultValue: 'object',
5049
5049
  props: {
5050
5050
  titleLink: [{
5051
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.0.title'),
5051
+ title: '切换到属性',
5052
5052
  value: 'object',
5053
5053
  key: 'object'
5054
5054
  }, {
5055
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.1.title'),
5055
+ title: '切换根节点',
5056
5056
  value: '',
5057
5057
  key: 'root'
5058
5058
  }, {
5059
- title: localeKey('callCurrentFunc.todoOptions.customFuncParams.props.titleLink.2.title'),
5059
+ title: '清空赋值',
5060
5060
  value: 'cleanValue',
5061
5061
  key: 'cleanValue'
5062
5062
  }],
@@ -5080,16 +5080,16 @@ var todoActionObject = {
5080
5080
  key: 'sysSetFormItemStatus',
5081
5081
  label: localeKey('sysSetFormItemStatus.label'),
5082
5082
  classification: [{
5083
- label: localeKey('sysSetFormItemStatus.classification.0.label'),
5083
+ label: '常用',
5084
5084
  value: 'common'
5085
5085
  }, {
5086
- label: localeKey('sysSetFormItemStatus.classification.1.label'),
5086
+ label: '数据设置',
5087
5087
  value: 'setData'
5088
5088
  }],
5089
5089
  todoOptions: [{
5090
5090
  key: 'compid',
5091
5091
  type: 'ListGroup',
5092
- label: localeKey('sysSetFormItemStatus.todoOptions.compid.label'),
5092
+ label: '组件配置',
5093
5093
  props: {
5094
5094
  showAdd: true,
5095
5095
  noRepeatSelect: {
@@ -5098,17 +5098,17 @@ var todoActionObject = {
5098
5098
  options: [{
5099
5099
  key: 'compid',
5100
5100
  type: 'SelectComp',
5101
- label: localeKey('sysSetFormItemStatus.todoOptions.compid.props.options.0.label'),
5101
+ label: '组件选择',
5102
5102
  description: localeKey('sysSetFormItemStatus.todoOptions.compid.props.options.0.description'),
5103
5103
  props: {
5104
5104
  includeType: ['Form', 'DForm'],
5105
5105
  required: true,
5106
5106
  titleLink: [{
5107
- title: localeKey('sysSetFormItemStatus.todoOptions.compid.props.titleLink.0.title'),
5107
+ title: '清空已选',
5108
5108
  value: 'cleanValue'
5109
5109
  }, {
5110
5110
  title: function title(dataOptions) {
5111
- 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');
5111
+ return dataOptions !== null && dataOptions !== void 0 && dataOptions.isShowAll ? '显示已选' : '显示全部';
5112
5112
  },
5113
5113
  value: 'isShowAll'
5114
5114
  }]
@@ -5116,7 +5116,7 @@ var todoActionObject = {
5116
5116
  }, {
5117
5117
  key: 'formItemList',
5118
5118
  type: 'SetExpression',
5119
- label: localeKey('sysSetFormItemStatus.todoOptions.formItemList.label'),
5119
+ label: '内容',
5120
5120
  description: localeKey('sysSetFormItemStatus.todoOptions.formItemList.description'),
5121
5121
  props: {
5122
5122
  required: true
@@ -5130,19 +5130,19 @@ var todoActionObject = {
5130
5130
  }, {
5131
5131
  key: 'valueKey',
5132
5132
  type: 'SetExpression',
5133
- label: localeKey('sysSetFormItemStatus.todoOptions.valueKey.label'),
5133
+ label: '选项值字段',
5134
5134
  description: localeKey('sysSetFormItemStatus.todoOptions.valueKey.description'),
5135
5135
  props: {}
5136
5136
  }],
5137
- titlePrefix: localeKey('sysSetFormItemStatus.todoOptions.compid.props.titlePrefix')
5137
+ titlePrefix: '内容配置'
5138
5138
  },
5139
5139
  hideLabel: true
5140
5140
  }],
5141
5141
  remarks: [{
5142
- label: localeKey('sysSetFormItemStatus.remarks.0.label'),
5142
+ label: '适用场景',
5143
5143
  content: localeKey('sysSetFormItemStatus.remarks.0.content')
5144
5144
  }, {
5145
- label: localeKey('sysSetFormItemStatus.remarks.1.label'),
5145
+ label: '配置说明',
5146
5146
  content: localeKey('sysSetFormItemStatus.remarks.1.content')
5147
5147
  }]
5148
5148
  },
@@ -5151,7 +5151,7 @@ var todoActionObject = {
5151
5151
  label: localeKey('customPrintOrExport.label'),
5152
5152
  todoOptions: [{
5153
5153
  key: 'operateType',
5154
- label: localeKey('customPrintOrExport.todoOptions.operateType.label'),
5154
+ label: '操作类型',
5155
5155
  type: 'CustomOperateType'
5156
5156
  }, {
5157
5157
  key: 'customSelectComp',
@@ -5162,7 +5162,7 @@ var todoActionObject = {
5162
5162
  }
5163
5163
  }, {
5164
5164
  key: 'waterMarkFlag',
5165
- label: localeKey('customPrintOrExport.todoOptions.waterMarkFlag.label'),
5165
+ label: '导出水印',
5166
5166
  type: 'Switch',
5167
5167
  defaultValue: false,
5168
5168
  labelTip: localeKey('customPrintOrExport.todoOptions.waterMarkFlag.labelTip')
@@ -5174,7 +5174,7 @@ var todoActionObject = {
5174
5174
  }],
5175
5175
  todoCallbacks: ['callback1', 'callback2'],
5176
5176
  classification: [{
5177
- label: localeKey('customPrintOrExport.classification.0.label'),
5177
+ label: '常用',
5178
5178
  value: 'common'
5179
5179
  }]
5180
5180
  },
@@ -5183,43 +5183,43 @@ var todoActionObject = {
5183
5183
  label: localeKey('scanCode.label'),
5184
5184
  todoOptions: [{
5185
5185
  key: 'scanType',
5186
- label: localeKey('scanCode.todoOptions.scanType.label'),
5186
+ label: '图形类型',
5187
5187
  type: 'RadioButton',
5188
5188
  defaultValue: 'qrcode',
5189
5189
  labelTip: localeKey('scanCode.todoOptions.scanType.labelTip'),
5190
5190
  props: {
5191
5191
  options: [{
5192
- title: localeKey('scanCode.todoOptions.scanType.props.options.0.title'),
5192
+ title: '二维码',
5193
5193
  value: 'qrcode'
5194
5194
  }, {
5195
- title: localeKey('scanCode.todoOptions.scanType.props.options.1.title'),
5195
+ title: '条形码',
5196
5196
  value: 'barcode'
5197
5197
  }]
5198
5198
  }
5199
5199
  }, {
5200
5200
  key: 'scanTarget',
5201
- label: localeKey('scanCode.todoOptions.scanTarget.label'),
5201
+ label: '识别目标',
5202
5202
  type: 'RadioButton',
5203
5203
  defaultValue: 'comp',
5204
5204
  labelTip: localeKey('scanCode.todoOptions.scanTarget.labelTip'),
5205
5205
  props: {
5206
5206
  options: [{
5207
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.0.title'),
5207
+ title: '页面组件',
5208
5208
  value: 'comp'
5209
5209
  }, {
5210
5210
  title: localeKey('scanCode.todoOptions.scanTarget.props.options.1.title'),
5211
5211
  value: 'fileId'
5212
5212
  }, {
5213
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.2.title'),
5213
+ title: '图片地址',
5214
5214
  value: 'url'
5215
5215
  }, {
5216
- title: localeKey('scanCode.todoOptions.scanTarget.props.options.3.title'),
5216
+ title: '其他',
5217
5217
  value: 'other'
5218
5218
  }]
5219
5219
  }
5220
5220
  }, {
5221
5221
  key: 'scanSource',
5222
- label: localeKey('scanCode.todoOptions.scanSource.comp.label'),
5222
+ label: '页面组件',
5223
5223
  type: 'CompTree',
5224
5224
  visibleFlag: 'scanTarget',
5225
5225
  visibleFlagValue: ['comp'],
@@ -5227,7 +5227,7 @@ var todoActionObject = {
5227
5227
  selectableCompType: ['Image', 'Img'],
5228
5228
  placeholder: localeKey('scanCode.todoOptions.scanSource.comp.props.placeholder'),
5229
5229
  titleLink: [{
5230
- title: localeKey('scanCode.todoOptions.scanSource.comp.props.titleLink.0.title'),
5230
+ title: '清空已选',
5231
5231
  value: 'cleanValue'
5232
5232
  }]
5233
5233
  }
@@ -5239,13 +5239,13 @@ var todoActionObject = {
5239
5239
  visibleFlagValue: ['fileId']
5240
5240
  }, {
5241
5241
  key: 'scanSource',
5242
- label: localeKey('scanCode.todoOptions.scanSource.url.label'),
5242
+ label: '图片地址',
5243
5243
  type: 'SetExpression',
5244
5244
  visibleFlag: 'scanTarget',
5245
5245
  visibleFlagValue: ['url']
5246
5246
  }, {
5247
5247
  key: 'scanSource',
5248
- label: localeKey('scanCode.todoOptions.scanSource.other.label'),
5248
+ label: '其他',
5249
5249
  type: 'SetExpression',
5250
5250
  visibleFlag: 'scanTarget',
5251
5251
  visibleFlagValue: ['other']
@@ -5253,18 +5253,18 @@ var todoActionObject = {
5253
5253
  todoCallbacks: [{
5254
5254
  key: 'callback1',
5255
5255
  fields: [{
5256
- title: localeKey('scanCode.todoCallbacks.callback1.fields.0.title'),
5256
+ title: '扫描内容',
5257
5257
  value: '$scanInfo_@{options.id}$',
5258
5258
  type: 'unknown',
5259
5259
  description: '-'
5260
5260
  }]
5261
5261
  }, 'callback2'],
5262
5262
  classification: [{
5263
- label: localeKey('scanCode.classification.scan.label'),
5263
+ label: '扫描类',
5264
5264
  value: 'scan'
5265
5265
  }],
5266
5266
  remarks: [{
5267
- label: localeKey('scanCode.remarks.0.label'),
5267
+ label: '适用场景',
5268
5268
  content: localeKey('scanCode.remarks.0.content')
5269
5269
  }]
5270
5270
  },
@@ -5278,10 +5278,10 @@ var todoActionObject = {
5278
5278
  defaultValue: false,
5279
5279
  props: {
5280
5280
  options: [{
5281
- title: localeKey('postObjectAndStartFlow.todoOptions.sync.props.options.0.title'),
5281
+ title: '异步加载',
5282
5282
  value: false
5283
5283
  }, {
5284
- title: localeKey('postObjectAndStartFlow.todoOptions.sync.props.options.1.title'),
5284
+ title: '同步加载',
5285
5285
  value: true
5286
5286
  }]
5287
5287
  }
@@ -5295,7 +5295,7 @@ var todoActionObject = {
5295
5295
  }
5296
5296
  }, {
5297
5297
  key: 'packageCode',
5298
- label: localeKey('postObjectAndStartFlow.todoOptions.packageCode.label'),
5298
+ label: '流程编码',
5299
5299
  type: 'FlowCodeSelect',
5300
5300
  props: {
5301
5301
  isRequired: true,
@@ -5307,13 +5307,13 @@ var todoActionObject = {
5307
5307
  type: 'SetExpression'
5308
5308
  }, {
5309
5309
  key: 'flowForm',
5310
- label: localeKey('postObjectAndStartFlow.todoOptions.flowForm.label'),
5310
+ label: '业务表单',
5311
5311
  type: 'CompTree',
5312
5312
  props: {
5313
5313
  selectableCompType: ['Form'],
5314
5314
  placeholder: localeKey('postObjectAndStartFlow.todoOptions.flowForm.props.placeholder'),
5315
5315
  titleLink: [{
5316
- title: localeKey('postObjectAndStartFlow.todoOptions.flowForm.props.titleLink.0.title'),
5316
+ title: '清空已选',
5317
5317
  value: 'cleanValue'
5318
5318
  }]
5319
5319
  }
@@ -5324,13 +5324,13 @@ var todoActionObject = {
5324
5324
  defaultValue: 'STA',
5325
5325
  props: {
5326
5326
  options: [{
5327
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.0.title'),
5327
+ title: '人员',
5328
5328
  value: 'STA'
5329
5329
  }, {
5330
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.1.title'),
5330
+ title: '组织',
5331
5331
  value: 'ORG'
5332
5332
  }, {
5333
- title: localeKey('postObjectAndStartFlow.todoOptions.dealPartyType.props.options.2.title'),
5333
+ title: '岗位',
5334
5334
  value: 'JOB'
5335
5335
  }]
5336
5336
  }
@@ -5344,10 +5344,10 @@ var todoActionObject = {
5344
5344
  type: 'Select',
5345
5345
  props: {
5346
5346
  options: [{
5347
- title: localeKey('postObjectAndStartFlow.todoOptions.hasEventExtService.props.options.0.title'),
5347
+ title: '',
5348
5348
  value: 'T'
5349
5349
  }, {
5350
- title: localeKey('postObjectAndStartFlow.todoOptions.hasEventExtService.props.options.1.title'),
5350
+ title: '',
5351
5351
  value: 'F'
5352
5352
  }]
5353
5353
  }
@@ -5360,14 +5360,14 @@ var todoActionObject = {
5360
5360
  }],
5361
5361
  todoCallbacks: ['callback1', 'callback2'],
5362
5362
  classification: [{
5363
- label: localeKey('postObjectAndStartFlow.classification.flow.label'),
5363
+ label: '流程类',
5364
5364
  value: 'flow'
5365
5365
  }],
5366
5366
  remarks: [{
5367
- label: localeKey('postObjectAndStartFlow.remarks.0.label'),
5367
+ label: '适用场景',
5368
5368
  content: localeKey('postObjectAndStartFlow.remarks.0.content')
5369
5369
  }, {
5370
- label: localeKey('postObjectAndStartFlow.remarks.1.label'),
5370
+ label: '配置规则',
5371
5371
  content: localeKey('postObjectAndStartFlow.remarks.1.content')
5372
5372
  }]
5373
5373
  },
@@ -5381,10 +5381,10 @@ var todoActionObject = {
5381
5381
  defaultValue: false,
5382
5382
  props: {
5383
5383
  options: [{
5384
- title: localeKey('updateObjectAndChangeFlow.todoOptions.sync.props.options.0.title'),
5384
+ title: '异步加载',
5385
5385
  value: false
5386
5386
  }, {
5387
- title: localeKey('updateObjectAndChangeFlow.todoOptions.sync.props.options.1.title'),
5387
+ title: '同步加载',
5388
5388
  value: true
5389
5389
  }]
5390
5390
  }
@@ -5398,26 +5398,26 @@ var todoActionObject = {
5398
5398
  }
5399
5399
  }, {
5400
5400
  key: 'runType',
5401
- label: localeKey('updateObjectAndChangeFlow.todoOptions.runType.label'),
5401
+ label: '流转动作',
5402
5402
  type: 'Select',
5403
5403
  defaultValue: '1',
5404
5404
  props: {
5405
5405
  isRequired: true,
5406
5406
  valuePropName: 'runType',
5407
5407
  options: [{
5408
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.0.title'),
5408
+ title: '正常流转',
5409
5409
  value: '1'
5410
5410
  }, {
5411
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.1.title'),
5411
+ title: '回退',
5412
5412
  value: '2'
5413
5413
  }, {
5414
- title: localeKey('updateObjectAndChangeFlow.todoOptions.runType.props.options.2.title'),
5414
+ title: '自由流转',
5415
5415
  value: '3'
5416
5416
  }]
5417
5417
  }
5418
5418
  }, {
5419
5419
  key: 'operType',
5420
- label: localeKey('updateObjectAndChangeFlow.todoOptions.operType.label'),
5420
+ label: '回退类型',
5421
5421
  labelTip: localeKey('updateObjectAndChangeFlow.todoOptions.operType.labelTip'),
5422
5422
  type: 'SetExpression',
5423
5423
  // defaultValue: 'ra',
@@ -5464,25 +5464,25 @@ var todoActionObject = {
5464
5464
  }
5465
5465
  }, {
5466
5466
  key: 'flowForm',
5467
- label: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.label'),
5467
+ label: '业务表单',
5468
5468
  type: 'CompTree',
5469
5469
  props: {
5470
5470
  selectableCompType: ['Form'],
5471
5471
  placeholder: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.props.placeholder'),
5472
5472
  titleLink: [{
5473
- title: localeKey('updateObjectAndChangeFlow.todoOptions.flowForm.props.titleLink.0.title'),
5473
+ title: '清空已选',
5474
5474
  value: 'cleanValue'
5475
5475
  }]
5476
5476
  }
5477
5477
  }, {
5478
5478
  key: 'approvalForm',
5479
- label: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.label'),
5479
+ label: '审批表单',
5480
5480
  type: 'CompTree',
5481
5481
  props: {
5482
5482
  selectableCompType: ['Form'],
5483
5483
  placeholder: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.props.placeholder'),
5484
5484
  titleLink: [{
5485
- title: localeKey('updateObjectAndChangeFlow.todoOptions.approvalForm.props.titleLink.0.title'),
5485
+ title: '清空已选',
5486
5486
  value: 'cleanValue'
5487
5487
  }]
5488
5488
  }
@@ -5492,10 +5492,10 @@ var todoActionObject = {
5492
5492
  type: 'Select',
5493
5493
  props: {
5494
5494
  options: [{
5495
- title: localeKey('updateObjectAndChangeFlow.todoOptions.directReceiptFlag.props.options.0.title'),
5495
+ title: '',
5496
5496
  value: true
5497
5497
  }, {
5498
- title: localeKey('updateObjectAndChangeFlow.todoOptions.directReceiptFlag.props.options.1.title'),
5498
+ title: '',
5499
5499
  value: false
5500
5500
  }]
5501
5501
  },
@@ -5532,13 +5532,13 @@ var todoActionObject = {
5532
5532
  defaultValue: 'STA',
5533
5533
  props: {
5534
5534
  options: [{
5535
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.0.title'),
5535
+ title: '人员',
5536
5536
  value: 'STA'
5537
5537
  }, {
5538
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.1.title'),
5538
+ title: '组织',
5539
5539
  value: 'ORG'
5540
5540
  }, {
5541
- title: localeKey('updateObjectAndChangeFlow.todoOptions.nextNodeHandlerType.props.options.2.title'),
5541
+ title: '岗位',
5542
5542
  value: 'JOB'
5543
5543
  }]
5544
5544
  }
@@ -5552,10 +5552,10 @@ var todoActionObject = {
5552
5552
  type: 'Select',
5553
5553
  props: {
5554
5554
  options: [{
5555
- title: localeKey('updateObjectAndChangeFlow.todoOptions.hasEventExtService.props.options.0.title'),
5555
+ title: '',
5556
5556
  value: 'T'
5557
5557
  }, {
5558
- title: localeKey('updateObjectAndChangeFlow.todoOptions.hasEventExtService.props.options.1.title'),
5558
+ title: '',
5559
5559
  value: 'F'
5560
5560
  }]
5561
5561
  }
@@ -5568,14 +5568,14 @@ var todoActionObject = {
5568
5568
  }],
5569
5569
  todoCallbacks: ['callback1', 'callback2'],
5570
5570
  classification: [{
5571
- label: localeKey('updateObjectAndChangeFlow.classification.flow.label'),
5571
+ label: '流程类',
5572
5572
  value: 'flow'
5573
5573
  }],
5574
5574
  remarks: [{
5575
- label: localeKey('updateObjectAndChangeFlow.remarks.0.label'),
5575
+ label: '适用场景',
5576
5576
  content: localeKey('updateObjectAndChangeFlow.remarks.0.content')
5577
5577
  }, {
5578
- label: localeKey('updateObjectAndChangeFlow.remarks.1.label'),
5578
+ label: '配置规则',
5579
5579
  content: localeKey('updateObjectAndChangeFlow.remarks.1.content')
5580
5580
  }]
5581
5581
  },
@@ -5594,7 +5594,7 @@ var todoActionObject = {
5594
5594
  todoCallbacks: ['callback1', {
5595
5595
  key: 'callback2',
5596
5596
  fields: [{
5597
- title: localeKey('applyWeChatUserInfo.todoCallbacks.callback2.fields.0.title'),
5597
+ title: '失败回调',
5598
5598
  value: '$error_@{options.id}$',
5599
5599
  type: 'string',
5600
5600
  description: ''
@@ -5605,10 +5605,10 @@ var todoActionObject = {
5605
5605
  value: 'wxAbility'
5606
5606
  }],
5607
5607
  remarks: [{
5608
- label: localeKey('applyWeChatUserInfo.remarks.0.label'),
5608
+ label: '适用场景',
5609
5609
  content: localeKey('applyWeChatUserInfo.remarks.0.content')
5610
5610
  }, {
5611
- label: localeKey('applyWeChatUserInfo.remarks.1.label'),
5611
+ label: '配置说明',
5612
5612
  content: localeKey('applyWeChatUserInfo.remarks.1.content')
5613
5613
  }]
5614
5614
  },
@@ -5617,21 +5617,21 @@ var todoActionObject = {
5617
5617
  label: localeKey('wxUpdateAppMessageShareData.label'),
5618
5618
  todoOptions: [{
5619
5619
  key: 'title',
5620
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.title.label'),
5620
+ label: '分享标题',
5621
5621
  type: 'SetExpression',
5622
5622
  props: {
5623
5623
  valuePropName: 'title'
5624
5624
  }
5625
5625
  }, {
5626
5626
  key: 'desc',
5627
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.desc.label'),
5627
+ label: '分享描述',
5628
5628
  type: 'SetExpression',
5629
5629
  props: {
5630
5630
  valuePropName: 'desc'
5631
5631
  }
5632
5632
  }, {
5633
5633
  key: 'link',
5634
- label: localeKey('wxUpdateAppMessageShareData.todoOptions.link.label'),
5634
+ label: '分享链接',
5635
5635
  type: 'SetExpression',
5636
5636
  props: {
5637
5637
  isRequired: true,
@@ -5648,7 +5648,7 @@ var todoActionObject = {
5648
5648
  todoCallbacks: ['callback1', {
5649
5649
  key: 'callback2',
5650
5650
  fields: [{
5651
- title: localeKey('wxUpdateAppMessageShareData.todoCallbacks.callback2.fields.0.title'),
5651
+ title: '失败回调',
5652
5652
  value: '$error_@{options.id}$',
5653
5653
  type: 'string',
5654
5654
  description: ''
@@ -5659,10 +5659,10 @@ var todoActionObject = {
5659
5659
  value: 'wxAbility'
5660
5660
  }],
5661
5661
  remarks: [{
5662
- label: localeKey('wxUpdateAppMessageShareData.remarks.0.label'),
5662
+ label: '适用场景',
5663
5663
  content: localeKey('wxUpdateAppMessageShareData.remarks.0.content')
5664
5664
  }, {
5665
- label: localeKey('wxUpdateAppMessageShareData.remarks.1.label'),
5665
+ label: '配置说明',
5666
5666
  content: localeKey('wxUpdateAppMessageShareData.remarks.1.content')
5667
5667
  }]
5668
5668
  },
@@ -5671,14 +5671,14 @@ var todoActionObject = {
5671
5671
  label: localeKey('wxUpdateTimelineShareData.label'),
5672
5672
  todoOptions: [{
5673
5673
  key: 'title',
5674
- label: localeKey('wxUpdateTimelineShareData.todoOptions.title.label'),
5674
+ label: '分享标题',
5675
5675
  type: 'SetExpression',
5676
5676
  props: {
5677
5677
  valuePropName: 'title'
5678
5678
  }
5679
5679
  }, {
5680
5680
  key: 'link',
5681
- label: localeKey('wxUpdateTimelineShareData.todoOptions.link.label'),
5681
+ label: '分享链接',
5682
5682
  type: 'SetExpression',
5683
5683
  props: {
5684
5684
  valuePropName: 'link'
@@ -5694,7 +5694,7 @@ var todoActionObject = {
5694
5694
  todoCallbacks: ['callback1', {
5695
5695
  key: 'callback2',
5696
5696
  fields: [{
5697
- title: localeKey('wxUpdateTimelineShareData.todoCallbacks.callback2.fields.0.title'),
5697
+ title: '失败回调',
5698
5698
  value: '$error_@{options.id}$',
5699
5699
  type: 'string',
5700
5700
  description: ''
@@ -5705,10 +5705,10 @@ var todoActionObject = {
5705
5705
  value: 'wxAbility'
5706
5706
  }],
5707
5707
  remarks: [{
5708
- label: localeKey('wxUpdateTimelineShareData.remarks.0.label'),
5708
+ label: '适用场景',
5709
5709
  content: localeKey('wxUpdateTimelineShareData.remarks.0.content')
5710
5710
  }, {
5711
- label: localeKey('wxUpdateTimelineShareData.remarks.1.label'),
5711
+ label: '配置说明',
5712
5712
  content: localeKey('wxUpdateTimelineShareData.remarks.1.content')
5713
5713
  }]
5714
5714
  },
@@ -5717,21 +5717,21 @@ var todoActionObject = {
5717
5717
  label: localeKey('wxOpenLocation.label'),
5718
5718
  todoOptions: [{
5719
5719
  key: 'latitude',
5720
- label: localeKey('wxOpenLocation.todoOptions.latitude.label'),
5720
+ label: '纬度',
5721
5721
  type: 'SetExpression',
5722
5722
  props: {
5723
5723
  valuePropName: 'latitude'
5724
5724
  }
5725
5725
  }, {
5726
5726
  key: 'longitude',
5727
- label: localeKey('wxOpenLocation.todoOptions.longitude.label'),
5727
+ label: '经度',
5728
5728
  type: 'SetExpression',
5729
5729
  props: {
5730
5730
  valuePropName: 'longitude'
5731
5731
  }
5732
5732
  }, {
5733
5733
  key: 'name',
5734
- label: localeKey('wxOpenLocation.todoOptions.name.label'),
5734
+ label: '位置名称',
5735
5735
  type: 'SetExpression',
5736
5736
  props: {
5737
5737
  valuePropName: 'name'
@@ -5764,7 +5764,7 @@ var todoActionObject = {
5764
5764
  todoCallbacks: ['callback1', {
5765
5765
  key: 'callback2',
5766
5766
  fields: [{
5767
- title: localeKey('wxOpenLocation.todoCallbacks.callback2.fields.0.title'),
5767
+ title: '失败回调',
5768
5768
  value: '$error_@{options.id}$',
5769
5769
  type: 'string',
5770
5770
  description: ''
@@ -5775,7 +5775,7 @@ var todoActionObject = {
5775
5775
  value: 'wxAbility'
5776
5776
  }],
5777
5777
  remarks: [{
5778
- label: localeKey('wxOpenLocation.remarks.0.label'),
5778
+ label: '适用场景',
5779
5779
  content: localeKey('wxOpenLocation.remarks.0.content')
5780
5780
  }]
5781
5781
  },
@@ -5784,7 +5784,7 @@ var todoActionObject = {
5784
5784
  label: localeKey('wxGetLocation.label'),
5785
5785
  todoOptions: [{
5786
5786
  key: 'locationType',
5787
- label: localeKey('wxGetLocation.todoOptions.locationType.label'),
5787
+ label: '坐标类型',
5788
5788
  type: 'Select',
5789
5789
  defaultValue: 'wgs84',
5790
5790
  props: {
@@ -5792,7 +5792,7 @@ var todoActionObject = {
5792
5792
  title: localeKey('wxGetLocation.todoOptions.locationType.props.options.0.title'),
5793
5793
  value: 'wgs84'
5794
5794
  }, {
5795
- title: localeKey('wxGetLocation.todoOptions.locationType.props.options.1.title'),
5795
+ title: '火星坐标',
5796
5796
  value: 'gcj02'
5797
5797
  }]
5798
5798
  }
@@ -5800,7 +5800,7 @@ var todoActionObject = {
5800
5800
  todoCallbacks: [{
5801
5801
  key: 'callback1',
5802
5802
  fields: [{
5803
- title: localeKey('wxGetLocation.todoCallbacks.callback1.fields.0.title'),
5803
+ title: '成功败回调',
5804
5804
  value: '$success_@{options.id}$',
5805
5805
  type: 'object',
5806
5806
  description: localeKey('wxGetLocation.todoCallbacks.callback1.fields.0.description')
@@ -5808,7 +5808,7 @@ var todoActionObject = {
5808
5808
  }, {
5809
5809
  key: 'callback2',
5810
5810
  fields: [{
5811
- title: localeKey('wxGetLocation.todoCallbacks.callback2.fields.0.title'),
5811
+ title: '失败回调',
5812
5812
  value: '$error_@{options.id}$',
5813
5813
  type: 'string',
5814
5814
  description: ''
@@ -5819,7 +5819,7 @@ var todoActionObject = {
5819
5819
  value: 'wxAbility'
5820
5820
  }],
5821
5821
  remarks: [{
5822
- label: localeKey('wxGetLocation.remarks.0.label'),
5822
+ label: '适用场景',
5823
5823
  content: localeKey('wxGetLocation.remarks.0.content')
5824
5824
  }]
5825
5825
  },
@@ -5834,15 +5834,15 @@ var todoActionObject = {
5834
5834
  props: {}
5835
5835
  }, {
5836
5836
  key: 'sourceType',
5837
- label: localeKey('wxChooseImage.todoOptions.sourceType.label'),
5837
+ label: '图片来源',
5838
5838
  type: 'MultiSelect',
5839
5839
  defaultValue: ['album', 'camera'],
5840
5840
  props: {
5841
5841
  options: [{
5842
- title: localeKey('wxChooseImage.todoOptions.sourceType.props.options.0.title'),
5842
+ title: '相册',
5843
5843
  value: 'album'
5844
5844
  }, {
5845
- title: localeKey('wxChooseImage.todoOptions.sourceType.props.options.1.title'),
5845
+ title: '相机',
5846
5846
  value: 'camera'
5847
5847
  }]
5848
5848
  }
@@ -5850,7 +5850,7 @@ var todoActionObject = {
5850
5850
  todoCallbacks: [{
5851
5851
  key: 'callback1',
5852
5852
  fields: [{
5853
- title: localeKey('wxChooseImage.todoCallbacks.callback1.fields.0.title'),
5853
+ title: '成功败回调',
5854
5854
  value: '$success_@{options.id}$',
5855
5855
  type: 'object',
5856
5856
  description: localeKey('wxChooseImage.todoCallbacks.callback1.fields.0.description')
@@ -5858,7 +5858,7 @@ var todoActionObject = {
5858
5858
  }, {
5859
5859
  key: 'callback2',
5860
5860
  fields: [{
5861
- title: localeKey('wxChooseImage.todoCallbacks.callback2.fields.0.title'),
5861
+ title: '失败回调',
5862
5862
  value: '$error_@{options.id}$',
5863
5863
  type: 'string',
5864
5864
  description: ''
@@ -5869,7 +5869,7 @@ var todoActionObject = {
5869
5869
  value: 'wxAbility'
5870
5870
  }],
5871
5871
  remarks: [{
5872
- label: localeKey('wxChooseImage.remarks.0.label'),
5872
+ label: '适用场景',
5873
5873
  content: localeKey('wxChooseImage.remarks.0.content')
5874
5874
  }]
5875
5875
  },
@@ -5892,7 +5892,7 @@ var todoActionObject = {
5892
5892
  todoCallbacks: ['callback1', {
5893
5893
  key: 'callback2',
5894
5894
  fields: [{
5895
- title: localeKey('wxPreviewImage.todoCallbacks.callback2.fields.0.title'),
5895
+ title: '失败回调',
5896
5896
  value: '$error_@{options.id}$',
5897
5897
  type: 'string',
5898
5898
  description: ''
@@ -5903,7 +5903,7 @@ var todoActionObject = {
5903
5903
  value: 'wxAbility'
5904
5904
  }],
5905
5905
  remarks: [{
5906
- label: localeKey('wxPreviewImage.remarks.0.label'),
5906
+ label: '适用场景',
5907
5907
  content: localeKey('wxPreviewImage.remarks.0.content')
5908
5908
  }]
5909
5909
  },
@@ -5926,7 +5926,7 @@ var todoActionObject = {
5926
5926
  todoCallbacks: [{
5927
5927
  key: 'callback1',
5928
5928
  fields: [{
5929
- title: localeKey('wxUploadImage.todoCallbacks.callback1.fields.0.title'),
5929
+ title: '成功败回调',
5930
5930
  value: '$success_@{options.id}$',
5931
5931
  type: 'object',
5932
5932
  description: localeKey('wxUploadImage.todoCallbacks.callback1.fields.0.description')
@@ -5934,7 +5934,7 @@ var todoActionObject = {
5934
5934
  }, {
5935
5935
  key: 'callback2',
5936
5936
  fields: [{
5937
- title: localeKey('wxUploadImage.todoCallbacks.callback2.fields.0.title'),
5937
+ title: '失败回调',
5938
5938
  value: '$error_@{options.id}$',
5939
5939
  type: 'string',
5940
5940
  description: ''
@@ -5945,7 +5945,7 @@ var todoActionObject = {
5945
5945
  value: 'wxAbility'
5946
5946
  }],
5947
5947
  remarks: [{
5948
- label: localeKey('wxUploadImage.remarks.0.label'),
5948
+ label: '适用场景',
5949
5949
  content: localeKey('wxUploadImage.remarks.0.content')
5950
5950
  }]
5951
5951
  },
@@ -5968,7 +5968,7 @@ var todoActionObject = {
5968
5968
  todoCallbacks: [{
5969
5969
  key: 'callback1',
5970
5970
  fields: [{
5971
- title: localeKey('wxDownloadImage.todoCallbacks.callback1.fields.0.title'),
5971
+ title: '成功败回调',
5972
5972
  value: '$success_@{options.id}$',
5973
5973
  type: 'object',
5974
5974
  description: localeKey('wxDownloadImage.todoCallbacks.callback1.fields.0.description')
@@ -5976,7 +5976,7 @@ var todoActionObject = {
5976
5976
  }, {
5977
5977
  key: 'callback2',
5978
5978
  fields: [{
5979
- title: localeKey('wxDownloadImage.todoCallbacks.callback2.fields.0.title'),
5979
+ title: '失败回调',
5980
5980
  value: '$error_@{options.id}$',
5981
5981
  type: 'string',
5982
5982
  description: ''
@@ -5987,7 +5987,7 @@ var todoActionObject = {
5987
5987
  value: 'wxAbility'
5988
5988
  }],
5989
5989
  remarks: [{
5990
- label: localeKey('wxDownloadImage.remarks.0.label'),
5990
+ label: '适用场景',
5991
5991
  content: localeKey('wxDownloadImage.remarks.0.content')
5992
5992
  }]
5993
5993
  },
@@ -6010,7 +6010,7 @@ var todoActionObject = {
6010
6010
  todoCallbacks: [{
6011
6011
  key: 'callback1',
6012
6012
  fields: [{
6013
- title: localeKey('wxGetLocalImgData.todoCallbacks.callback1.fields.0.title'),
6013
+ title: '成功败回调',
6014
6014
  value: '$success_@{options.id}$',
6015
6015
  type: 'object',
6016
6016
  description: localeKey('wxGetLocalImgData.todoCallbacks.callback1.fields.0.description')
@@ -6018,7 +6018,7 @@ var todoActionObject = {
6018
6018
  }, {
6019
6019
  key: 'callback2',
6020
6020
  fields: [{
6021
- title: localeKey('wxGetLocalImgData.todoCallbacks.callback2.fields.0.title'),
6021
+ title: '失败回调',
6022
6022
  value: '$error_@{options.id}$',
6023
6023
  type: 'string',
6024
6024
  description: ''
@@ -6029,7 +6029,7 @@ var todoActionObject = {
6029
6029
  value: 'wxAbility'
6030
6030
  }],
6031
6031
  remarks: [{
6032
- label: localeKey('wxGetLocalImgData.remarks.0.label'),
6032
+ label: '注意',
6033
6033
  content: localeKey('wxGetLocalImgData.remarks.0.content')
6034
6034
  }]
6035
6035
  },
@@ -6038,21 +6038,21 @@ var todoActionObject = {
6038
6038
  label: localeKey('openFloatWindow.label'),
6039
6039
  todoOptions: [{
6040
6040
  key: 'location',
6041
- label: localeKey('openFloatWindow.todoOptions.location.label'),
6041
+ label: '浮窗位置',
6042
6042
  type: 'RadioButton',
6043
6043
  defaultValue: 'right',
6044
6044
  props: {
6045
6045
  options: [{
6046
- title: localeKey('openFloatWindow.todoOptions.location.props.options.0.title'),
6046
+ title: '左侧',
6047
6047
  value: 'left'
6048
6048
  }, {
6049
- title: localeKey('openFloatWindow.todoOptions.location.props.options.1.title'),
6049
+ title: '右侧',
6050
6050
  value: 'right'
6051
6051
  }]
6052
6052
  }
6053
6053
  }, {
6054
6054
  key: 'size',
6055
- label: localeKey('openFloatWindow.todoOptions.size.label'),
6055
+ label: '窗口尺寸',
6056
6056
  type: 'WindowSize',
6057
6057
  defaultValue: {
6058
6058
  size: {
@@ -6062,7 +6062,7 @@ var todoActionObject = {
6062
6062
  }
6063
6063
  }, {
6064
6064
  key: 'windowPage',
6065
- label: localeKey('openFloatWindow.todoOptions.windowPage.label'),
6065
+ label: '选择页面',
6066
6066
  type: 'SelectWindow',
6067
6067
  props: {
6068
6068
  isRequired: true,
@@ -6070,7 +6070,7 @@ var todoActionObject = {
6070
6070
  }
6071
6071
  }, {
6072
6072
  key: 'componentState',
6073
- label: localeKey('openFloatWindow.todoOptions.componentState.label'),
6073
+ label: '组件状态',
6074
6074
  type: 'ComponentState',
6075
6075
  visibleFlag: function (_ref2) {
6076
6076
  var _dataOptions$windowPa;
@@ -6078,16 +6078,16 @@ var todoActionObject = {
6078
6078
  return (dataOptions === null || dataOptions === void 0 || (_dataOptions$windowPa = dataOptions.windowPage) === null || _dataOptions$windowPa === void 0 ? void 0 : _dataOptions$windowPa.type) === 'page';
6079
6079
  }.toString(),
6080
6080
  extraGroups: [{
6081
- subLabel: localeKey('openFloatWindow.todoOptions.componentState.extraGroups.0.subLabel'),
6081
+ subLabel: '组件刷新',
6082
6082
  subClickFunName: 'refreshCompsStateData'
6083
6083
  }]
6084
6084
  }],
6085
6085
  classification: [{
6086
- label: localeKey('openFloatWindow.classification.page.label'),
6086
+ label: '页面类',
6087
6087
  value: 'page'
6088
6088
  }],
6089
6089
  remarks: [{
6090
- label: localeKey('openFloatWindow.remarks.0.label'),
6090
+ label: '配置说明',
6091
6091
  content: localeKey('openFloatWindow.remarks.0.content')
6092
6092
  }]
6093
6093
  },
@@ -6096,7 +6096,7 @@ var todoActionObject = {
6096
6096
  label: localeKey('callAiService.label'),
6097
6097
  todoOptions: [{
6098
6098
  key: 'actionTitle',
6099
- label: localeKey('callAiService.todoOptions.actionTitle.label'),
6099
+ label: '动作说明',
6100
6100
  type: 'CustomActionTitle',
6101
6101
  props: {
6102
6102
  placeholder: localeKey('callAiService.todoOptions.actionTitle.props.placeholder'),
@@ -6105,7 +6105,7 @@ var todoActionObject = {
6105
6105
  }
6106
6106
  }, {
6107
6107
  key: 'url',
6108
- label: localeKey('callAiService.todoOptions.url.label'),
6108
+ label: '选择服务',
6109
6109
  type: 'SelectAiServiceUrl',
6110
6110
  props: {
6111
6111
  isRequired: true,
@@ -6120,7 +6120,7 @@ var todoActionObject = {
6120
6120
  selectableCompType: ['RichTextEditor'],
6121
6121
  placeholder: localeKey('callAiService.todoOptions.compid.props.placeholder'),
6122
6122
  titleLink: [{
6123
- title: localeKey('callAiService.todoOptions.compid.props.titleLink.0.title'),
6123
+ title: '清空已选',
6124
6124
  value: 'cleanValue'
6125
6125
  }]
6126
6126
  },
@@ -6131,10 +6131,10 @@ var todoActionObject = {
6131
6131
  }.toString()
6132
6132
  }, {
6133
6133
  key: 'params',
6134
- label: localeKey('callAiService.todoOptions.params.label'),
6134
+ label: '参数赋值',
6135
6135
  type: 'SetAiServiceRequestParam',
6136
6136
  extraGroups: [{
6137
- subLabel: localeKey('callAiService.todoOptions.params.extraGroups.0.subLabel'),
6137
+ subLabel: '清空赋值',
6138
6138
  subClickFunName: 'cleanValue'
6139
6139
  }]
6140
6140
  }],
@@ -6145,7 +6145,7 @@ var todoActionObject = {
6145
6145
  key: 'callback2'
6146
6146
  }],
6147
6147
  classification: [{
6148
- label: localeKey('callAiService.classification.request.label'),
6148
+ label: '服务请求类',
6149
6149
  value: 'request'
6150
6150
  }]
6151
6151
  },
@@ -6154,7 +6154,7 @@ var todoActionObject = {
6154
6154
  label: localeKey('closeAiService.label'),
6155
6155
  todoOptions: [{
6156
6156
  key: 'actionTitle',
6157
- label: localeKey('closeAiService.todoOptions.actionTitle.label'),
6157
+ label: '动作说明',
6158
6158
  type: 'CustomActionTitle',
6159
6159
  props: {
6160
6160
  placeholder: localeKey('closeAiService.todoOptions.actionTitle.props.placeholder'),
@@ -6163,7 +6163,7 @@ var todoActionObject = {
6163
6163
  }
6164
6164
  }, {
6165
6165
  key: 'url',
6166
- label: localeKey('closeAiService.todoOptions.url.label'),
6166
+ label: '选择服务',
6167
6167
  type: 'SelectAiServiceUrl',
6168
6168
  props: {
6169
6169
  isRequired: true,
@@ -6173,7 +6173,7 @@ var todoActionObject = {
6173
6173
  }],
6174
6174
  todoCallbacks: ['callback1', 'classback2'],
6175
6175
  classification: [{
6176
- label: localeKey('closeAiService.classification.request.label'),
6176
+ label: '服务请求类',
6177
6177
  value: 'request'
6178
6178
  }]
6179
6179
  }