eoss-ui 0.6.61 → 0.6.63

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 (75) hide show
  1. package/lib/button-group.js +118 -114
  2. package/lib/button.js +118 -114
  3. package/lib/checkbox-group.js +120 -116
  4. package/lib/clients.js +3 -3
  5. package/lib/config/api.js +3 -1
  6. package/lib/data-table-form.js +120 -116
  7. package/lib/data-table.js +123 -119
  8. package/lib/date-picker.js +118 -114
  9. package/lib/dialog.js +118 -114
  10. package/lib/eoss-ui.common.js +1578 -857
  11. package/lib/flow-group.js +118 -114
  12. package/lib/flow-list.js +167 -128
  13. package/lib/flow.js +1372 -687
  14. package/lib/form.js +120 -116
  15. package/lib/handle-user.js +119 -115
  16. package/lib/handler.js +119 -115
  17. package/lib/icon.js +119 -115
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +118 -114
  20. package/lib/input.js +118 -114
  21. package/lib/login.js +131 -127
  22. package/lib/main.js +162 -157
  23. package/lib/nav.js +118 -114
  24. package/lib/notify.js +121 -117
  25. package/lib/page.js +118 -114
  26. package/lib/pagination.js +118 -114
  27. package/lib/player.js +118 -114
  28. package/lib/qr-code.js +118 -114
  29. package/lib/radio-group.js +120 -116
  30. package/lib/retrial-auth.js +121 -117
  31. package/lib/select-ganged.js +120 -116
  32. package/lib/select.js +120 -116
  33. package/lib/selector-panel.js +136 -132
  34. package/lib/selector.js +119 -115
  35. package/lib/sizer.js +120 -116
  36. package/lib/steps.js +118 -114
  37. package/lib/switch.js +118 -114
  38. package/lib/table-form.js +118 -114
  39. package/lib/tabs.js +118 -114
  40. package/lib/theme-chalk/base.css +1 -1
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/theme-chalk/main.css +1 -1
  43. package/lib/theme-chalk/menu.css +1 -1
  44. package/lib/theme-chalk/simplicity.css +1 -1
  45. package/lib/theme-chalk/sizer.css +1 -1
  46. package/lib/theme-chalk/upload.css +1 -1
  47. package/lib/tips.js +119 -115
  48. package/lib/tree-group.js +118 -114
  49. package/lib/tree.js +119 -115
  50. package/lib/upload.js +130 -126
  51. package/lib/wujie.js +118 -114
  52. package/lib/wxlogin.js +118 -114
  53. package/package.json +1 -1
  54. package/packages/clients/src/main.vue +1 -1
  55. package/packages/flow/src/component/Circulate.vue +322 -0
  56. package/packages/flow/src/component/CommonOpinions.vue +3 -2
  57. package/packages/flow/src/component/SendMsg.vue +39 -27
  58. package/packages/flow/src/component/taskUnionExamine.vue +7 -5
  59. package/packages/flow/src/main.vue +109 -20
  60. package/packages/flow/src/processForm.vue +5 -1
  61. package/packages/flow/src/processReject.vue +3 -2
  62. package/packages/flow/src/startTaskRead.vue +3 -2
  63. package/packages/flow/src/supervise.vue +77 -72
  64. package/packages/flow-list/src/main.vue +61 -32
  65. package/packages/main/src/simplicity/index.vue +1 -0
  66. package/packages/theme-chalk/lib/base.css +1 -1
  67. package/packages/theme-chalk/lib/index.css +1 -1
  68. package/packages/theme-chalk/lib/main.css +1 -1
  69. package/packages/theme-chalk/lib/menu.css +1 -1
  70. package/packages/theme-chalk/lib/simplicity.css +1 -1
  71. package/packages/theme-chalk/lib/sizer.css +1 -1
  72. package/packages/theme-chalk/lib/upload.css +1 -1
  73. package/packages/theme-chalk/src/base.scss +1 -0
  74. package/src/config/api.js +4 -0
  75. package/src/index.js +1 -1
@@ -1601,7 +1601,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1601
1601
  * @param {function} callback - 回调函数
1602
1602
  **/
1603
1603
  var getMainConfig = function getMainConfig(callback) {
1604
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "lb"] }).then(function (res) {
1604
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "nb"] }).then(function (res) {
1605
1605
  if (res && res.rCode === 0) {
1606
1606
  callback(res.results);
1607
1607
  }
@@ -2358,7 +2358,7 @@ var isLogined = function () {
2358
2358
  break;
2359
2359
  }
2360
2360
 
2361
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "kb"] }).then(function (res) {
2361
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "mb"] }).then(function (res) {
2362
2362
  if (res.rCode === 0) {
2363
2363
  removeStorage();
2364
2364
  }
@@ -3510,149 +3510,151 @@ var watermark = function watermark(option) {
3510
3510
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3511
3511
 
3512
3512
  "use strict";
3513
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3514
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3515
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3516
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return logout; });
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initLogin; });
3518
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return switchUserTo; });
3513
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return logout; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initLogin; });
3518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return switchUserTo; });
3519
3519
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getLoginCode; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getLoginCode; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3522
3522
  /* unused harmony export updateCode */
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getModifyPassCode; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getModifyPassCode; });
3524
3524
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginModifyPassword; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return loginModifyPassword; });
3526
3526
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initModifyPassword; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getTwoFactorLoginCode; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initRetrialAuth; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getRetrialAuthCode; });
3533
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return scanCodeRetrialAuth; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initModifyPassword; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getTwoFactorLoginCode; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initRetrialAuth; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getRetrialAuthCode; });
3533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return scanCodeRetrialAuth; });
3534
3534
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3535
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return userOnline; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getUserAppWithTag; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return recordUserApp; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return mainConfig; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initUserSet; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateUserInfo; });
3535
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return userOnline; });
3537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getUserAppWithTag; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return recordUserApp; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return mainConfig; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initUserSet; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserInfo; });
3542
3542
  /* unused harmony export getUserImgUrl */
3543
3543
  /* unused harmony export getDoorIndex */
3544
3544
  /* unused harmony export refreshOnlineUsers */
3545
3545
  /* unused harmony export getQuickMenuIds */
3546
3546
  /* unused harmony export getApplicationIdArray */
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplications; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplicationsNew; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplications; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplicationsNew; });
3549
3549
  /* unused harmony export getUserCustomInfo */
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return updateUserCustomInfo; });
3551
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sysMsgPage; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return ignoreSysMsg; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreAllSysMsg; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return searchType; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctProperties; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploads; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploadOnlyOne; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctFileInfos; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadSort; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadDownloads; });
3562
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunct2; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunctOffice; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateUserCustomInfo; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sysMsgPage; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreSysMsg; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return ignoreAllSysMsg; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return searchType; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctProperties; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploads; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadOnlyOne; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctFileInfos; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadSort; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadDownloads; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunct; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct2; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunctOffice; });
3565
3565
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3566
3566
  /* unused harmony export upload_updateClassify */
3567
3567
  /* unused harmony export getDeleteAdjunctFileInfos */
3568
3568
  /* unused harmony export getPictureBase64 */
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectorOrgTree; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgDetail; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getOrgMainTree; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectOrgsubids; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getDictList; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getSelectorOrgTree; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getSelectorOrgDetail; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getOrgMainTree; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectOrgsubids; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCode; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getDictList; });
3575
3575
  /* unused harmony export findUserBaseInfo */
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return gethelpdoc; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return gethelpdoc; });
3577
3577
  /* unused harmony export getCurrentuser */
3578
3578
  /* unused harmony export mainDetail */
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartFlow; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return tempSave; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartFlow; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return tempSave; });
3581
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3582
3582
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return saveCommonOpinion; });
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateCommonOpinion; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return saveCommonOpinion; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateCommonOpinion; });
3586
3586
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getProcessDefList; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNodeInfo; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNotificationMsg; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getHandleInfoHtml; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskHandleHtml; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getProcessDefList; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNodeInfo; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findCodeValues; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysParam; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCodes; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getNotificationMsg; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getHandleInfoHtml; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskHandleHtml; });
3595
3595
  /* unused harmony export getView */
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return register; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryList; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskRejectHtml; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskRejectHtml; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toStartTaskRead; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartTaskReadIndex; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskReadHtml; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return rejectAndEnd; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toSendMsg; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendMsg; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return handleInfo; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return loginUserInfo; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return wss; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return topic; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetCustomInfo; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getPresetNodeInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskTransferIndex; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskTransfer; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toPresetInfoListIndex; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return register; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryList; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskRejectHtml; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskRejectHtml; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartTaskRead; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskReadIndex; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskReadHtml; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return rejectAndEnd; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toSendMsg; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendMsg; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowHtml; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return handleInfo; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginUserInfo; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return wss; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return topic; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getPresetCustomInfo; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetNodeInfo; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTransferIndex; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTransfer; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toPresetInfoListIndex; });
3616
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3617
3617
  /* unused harmony export historyListJson */
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListJson; });
3619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pressListJson; });
3618
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryListJson; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pressListJson; });
3620
3620
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return isCanStartSubFlow; });
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskUnionExamine; });
3623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskUnionExamine; });
3624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskTakeAdvice; });
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskTakeAdvice; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskStartDraft; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskSupervise; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskSuperviseSub; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskStartDraft; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskReview; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReview; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskUnionSeal; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskUnionSeal; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTwoOfficesDispatch; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return twoOfficesDispatch; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toResetProcessIndex; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return resetProcess; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskContinuationIndex; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskContinuation; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getFreeStartFlowParams; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return isCanStartSubFlow; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskUnionExamine; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskUnionExamine; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskTakeAdvice; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskTakeAdvice; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskStartDraft; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskSupervise; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSuperviseSub; });
3629
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskStartDraft; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskReview; });
3631
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReview; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionSeal; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionSeal; });
3634
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTwoOfficesDispatch; });
3635
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return twoOfficesDispatch; });
3636
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toResetProcessIndex; });
3637
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return resetProcess; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskContinuationIndex; });
3639
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskContinuation; });
3640
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getFreeStartFlowParams; });
3641
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return freeStartFlowWithSubmitTask; });
3642
3642
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryListWithCircularReadJson; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return fyListJson; });
3643
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListWithCircularReadJson; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return fyListJson; });
3645
3645
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReadWithDraw; });
3647
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadWithDraw; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3648
3648
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3649
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendList; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendInfo; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendList; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendInfo; });
3651
3651
  /* unused harmony export sendSave */
3652
3652
  /* unused harmony export sendUpdate */
3653
3653
  /* unused harmony export sendDelete */
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendBatch; });
3655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendBatch; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return formContents; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfoForStart; });
3656
3658
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3657
3659
  // 登录
3658
3660
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3907,6 +3909,8 @@ var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
3907
3909
  // 表单结构
3908
3910
 
3909
3911
  var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
3912
+ var directStartTaskCircularRead = '/bpm/bpmBackend/directStartTaskCircularRead';
3913
+ var getNodeInfoForStart = '/bpm/task/taskHandle/getNodeInfoForStart.dhtml';
3910
3914
 
3911
3915
  /***/ }),
3912
3916
  /* 2 */
@@ -5364,7 +5368,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5364
5368
  },
5365
5369
  selection: {
5366
5370
  type: [String, Array],
5367
- default: api["V" /* getSelectorOrgDetail */]
5371
+ default: api["X" /* getSelectorOrgDetail */]
5368
5372
  },
5369
5373
  param: {
5370
5374
  type: Object,
@@ -5456,7 +5460,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5456
5460
  enterprise: {
5457
5461
  label: '选择单位',
5458
5462
  name: 'enterprise',
5459
- url: api["W" /* getSelectorOrgTree */],
5463
+ url: api["Y" /* getSelectorOrgTree */],
5460
5464
  data: [],
5461
5465
  nodeData: '',
5462
5466
  selection: [],
@@ -5470,7 +5474,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5470
5474
  department: {
5471
5475
  label: '选择部门',
5472
5476
  name: 'department',
5473
- url: api["W" /* getSelectorOrgTree */],
5477
+ url: api["Y" /* getSelectorOrgTree */],
5474
5478
  data: [],
5475
5479
  nodeData: '',
5476
5480
  selection: [],
@@ -5484,7 +5488,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5484
5488
  employee: {
5485
5489
  label: '选择用户',
5486
5490
  name: 'employee',
5487
- url: api["W" /* getSelectorOrgTree */],
5491
+ url: api["Y" /* getSelectorOrgTree */],
5488
5492
  data: [],
5489
5493
  nodeData: '',
5490
5494
  selection: [],
@@ -5498,7 +5502,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5498
5502
  myemployee: {
5499
5503
  label: '本单位用户',
5500
5504
  name: 'myemployee',
5501
- url: api["W" /* getSelectorOrgTree */],
5505
+ url: api["Y" /* getSelectorOrgTree */],
5502
5506
  data: [],
5503
5507
  nodeData: '',
5504
5508
  selection: [],
@@ -5512,7 +5516,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5512
5516
  otheremployee: {
5513
5517
  label: '外单位用户',
5514
5518
  name: 'otheremployee',
5515
- url: api["W" /* getSelectorOrgTree */],
5519
+ url: api["Y" /* getSelectorOrgTree */],
5516
5520
  data: [],
5517
5521
  nodeData: '',
5518
5522
  selection: [],
@@ -5526,7 +5530,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5526
5530
  person: {
5527
5531
  label: '选择人员',
5528
5532
  name: 'person',
5529
- url: api["W" /* getSelectorOrgTree */],
5533
+ url: api["Y" /* getSelectorOrgTree */],
5530
5534
  data: [],
5531
5535
  nodeData: '',
5532
5536
  selection: [],
@@ -5540,7 +5544,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5540
5544
  otherperson: {
5541
5545
  label: '外单位人员',
5542
5546
  name: 'otherperson',
5543
- url: api["W" /* getSelectorOrgTree */],
5547
+ url: api["Y" /* getSelectorOrgTree */],
5544
5548
  data: [],
5545
5549
  nodeData: '',
5546
5550
  selection: [],
@@ -5554,7 +5558,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5554
5558
  persongroup: {
5555
5559
  label: '选择群组成员',
5556
5560
  name: 'persongroup',
5557
- url: api["W" /* getSelectorOrgTree */],
5561
+ url: api["Y" /* getSelectorOrgTree */],
5558
5562
  data: [],
5559
5563
  nodeData: '',
5560
5564
  selection: [],
@@ -5572,7 +5576,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5572
5576
  selection: [],
5573
5577
  value: [],
5574
5578
  name: 'filgroup',
5575
- url: api["W" /* getSelectorOrgTree */],
5579
+ url: api["Y" /* getSelectorOrgTree */],
5576
5580
  param: {
5577
5581
  showarea: 3,
5578
5582
  id: 0,
@@ -5582,7 +5586,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5582
5586
  depgroup: {
5583
5587
  label: '部门群组成员',
5584
5588
  name: 'depgroup',
5585
- url: api["W" /* getSelectorOrgTree */],
5589
+ url: api["Y" /* getSelectorOrgTree */],
5586
5590
  data: [],
5587
5591
  nodeData: '',
5588
5592
  selection: [],
@@ -5596,7 +5600,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5596
5600
  persongroupobj: {
5597
5601
  label: '人员群组',
5598
5602
  name: 'persongroupobj',
5599
- url: api["W" /* getSelectorOrgTree */],
5603
+ url: api["Y" /* getSelectorOrgTree */],
5600
5604
  data: [],
5601
5605
  nodeData: '',
5602
5606
  selection: [],
@@ -5610,7 +5614,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5610
5614
  filgroupobj: {
5611
5615
  label: '单位群组',
5612
5616
  name: 'filgroupobj',
5613
- url: api["W" /* getSelectorOrgTree */],
5617
+ url: api["Y" /* getSelectorOrgTree */],
5614
5618
  data: [],
5615
5619
  nodeData: '',
5616
5620
  selection: [],
@@ -5624,7 +5628,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5624
5628
  depgroupobj: {
5625
5629
  label: '部门群组',
5626
5630
  name: 'depgroupobj',
5627
- url: api["W" /* getSelectorOrgTree */],
5631
+ url: api["Y" /* getSelectorOrgTree */],
5628
5632
  data: [],
5629
5633
  nodeData: '',
5630
5634
  selection: [],
@@ -5638,7 +5642,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5638
5642
  role: {
5639
5643
  label: '选择角色',
5640
5644
  name: 'role',
5641
- url: api["W" /* getSelectorOrgTree */],
5645
+ url: api["Y" /* getSelectorOrgTree */],
5642
5646
  data: [],
5643
5647
  nodeData: '',
5644
5648
  selection: [],
@@ -5652,7 +5656,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5652
5656
  post: {
5653
5657
  label: '选择岗位',
5654
5658
  name: 'post',
5655
- url: api["W" /* getSelectorOrgTree */],
5659
+ url: api["Y" /* getSelectorOrgTree */],
5656
5660
  data: [],
5657
5661
  nodeData: '',
5658
5662
  selection: [],
@@ -5666,7 +5670,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5666
5670
  codetable: {
5667
5671
  label: '代码表',
5668
5672
  name: 'codetable',
5669
- url: api["W" /* getSelectorOrgTree */],
5673
+ url: api["Y" /* getSelectorOrgTree */],
5670
5674
  data: [],
5671
5675
  nodeData: '',
5672
5676
  selection: [],
@@ -5680,7 +5684,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
5680
5684
  topcontacts: {
5681
5685
  label: '常用联系人',
5682
5686
  name: 'topcontacts',
5683
- url: api["W" /* getSelectorOrgTree */],
5687
+ url: api["Y" /* getSelectorOrgTree */],
5684
5688
  data: [],
5685
5689
  nodeData: '',
5686
5690
  selection: [],