eoss-ui 0.6.69 → 0.6.70

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 (73) hide show
  1. package/lib/.DS_Store +0 -0
  2. package/lib/button-group.js +100 -79
  3. package/lib/button.js +100 -79
  4. package/lib/calogin.js +115 -92
  5. package/lib/checkbox-group.js +100 -79
  6. package/lib/config/api.js +3 -0
  7. package/lib/data-table-form.js +100 -79
  8. package/lib/data-table.js +100 -79
  9. package/lib/date-picker.js +100 -79
  10. package/lib/dialog.js +100 -79
  11. package/lib/eoss-ui.common.js +619 -408
  12. package/lib/flow-group.js +100 -79
  13. package/lib/flow-list.js +105 -84
  14. package/lib/flow.js +380 -188
  15. package/lib/form.js +100 -79
  16. package/lib/handle-user.js +101 -80
  17. package/lib/handler.js +101 -80
  18. package/lib/icon.js +101 -80
  19. package/lib/index.js +1 -1
  20. package/lib/input-number.js +100 -79
  21. package/lib/input.js +100 -79
  22. package/lib/login.js +191 -172
  23. package/lib/main.js +137 -117
  24. package/lib/nav.js +100 -79
  25. package/lib/notify.js +85 -81
  26. package/lib/page.js +100 -79
  27. package/lib/pagination.js +100 -79
  28. package/lib/player.js +100 -79
  29. package/lib/qr-code.js +100 -79
  30. package/lib/radio-group.js +100 -79
  31. package/lib/retrial-auth.js +102 -81
  32. package/lib/select-ganged.js +100 -79
  33. package/lib/select.js +100 -79
  34. package/lib/selector-panel.js +115 -98
  35. package/lib/selector.js +132 -87
  36. package/lib/sizer.js +100 -79
  37. package/lib/steps.js +100 -79
  38. package/lib/switch.js +100 -79
  39. package/lib/table-form.js +100 -79
  40. package/lib/tabs.js +100 -79
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/theme-chalk/login.css +1 -1
  43. package/lib/tips.js +101 -80
  44. package/lib/tree-group.js +100 -79
  45. package/lib/tree.js +100 -79
  46. package/lib/upload.js +107 -86
  47. package/lib/utils/util.js +18 -1
  48. package/lib/wujie.js +100 -79
  49. package/lib/wxlogin.js +100 -79
  50. package/package.json +1 -1
  51. package/packages/.DS_Store +0 -0
  52. package/packages/calogin/.DS_Store +0 -0
  53. package/packages/calogin/src/main.vue +12 -10
  54. package/packages/flow/.DS_Store +0 -0
  55. package/packages/flow/src/component/Circulate.vue +9 -2
  56. package/packages/flow/src/component/taskUnionExamine.vue +8 -0
  57. package/packages/flow/src/main.vue +44 -3
  58. package/packages/login/.DS_Store +0 -0
  59. package/packages/login/src/main.vue +36 -46
  60. package/packages/main/.DS_Store +0 -0
  61. package/packages/main/src/simplicity/avatar.vue +0 -1
  62. package/packages/selector/.DS_Store +0 -0
  63. package/packages/selector/src/main.vue +33 -7
  64. package/packages/selector-panel/.DS_Store +0 -0
  65. package/packages/selector-panel/src/main.vue +5 -5
  66. package/packages/selector-panel/src/selection.vue +3 -10
  67. package/packages/theme-chalk/lib/index.css +1 -1
  68. package/packages/theme-chalk/lib/login.css +1 -1
  69. package/packages/theme-chalk/src/login.scss +4 -1
  70. package/src/.DS_Store +0 -0
  71. package/src/config/api.js +3 -0
  72. package/src/index.js +1 -1
  73. package/src/utils/util.js +60 -43
package/lib/flow.js CHANGED
@@ -1052,6 +1052,22 @@ var domEval = function domEval(code) {
1052
1052
  script.text = code;
1053
1053
  document.head.appendChild(script);
1054
1054
  };
1055
+ /**
1056
+ * downloadFile
1057
+ * @desc:下载附件
1058
+ * @author huangbo
1059
+ * @date 2022年5月7日
1060
+ * @param {String} [code] - js内容
1061
+ **/
1062
+ var downloadFile = function downloadFile(fileUrl) {
1063
+ var link = document.createElement('a');
1064
+ link.href = fileUrl;
1065
+ link.rel = 'noopener noreferrer';
1066
+ link.target = '_blank';
1067
+ document.body.appendChild(link);
1068
+ link.click();
1069
+ document.body.removeChild(link);
1070
+ };
1055
1071
 
1056
1072
  /**
1057
1073
  * esEncode
@@ -1605,7 +1621,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1605
1621
  * @param {function} callback - 回调函数
1606
1622
  **/
1607
1623
  var getMainConfig = function getMainConfig(callback) {
1608
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "ob"] }).then(function (res) {
1624
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "pb"] }).then(function (res) {
1609
1625
  if (res && res.rCode === 0) {
1610
1626
  callback(res.results);
1611
1627
  }
@@ -1942,7 +1958,7 @@ var getTypeName = function getTypeName(type) {
1942
1958
  typeName = '[角色]';
1943
1959
  } else if (type === 'post') {
1944
1960
  typeName = '[岗位]';
1945
- } else if (type === 'otheremployee' || type === 'employee') {
1961
+ } else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
1946
1962
  if (sysdepname) {
1947
1963
  typeName = '[' + sysdepname + '员工]';
1948
1964
  } else {
@@ -2362,7 +2378,7 @@ var isLogined = function () {
2362
2378
  break;
2363
2379
  }
2364
2380
 
2365
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "nb"] }).then(function (res) {
2381
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "ob"] }).then(function (res) {
2366
2382
  if (res.rCode === 0) {
2367
2383
  removeStorage();
2368
2384
  }
@@ -3435,6 +3451,7 @@ var watermark = function watermark(option) {
3435
3451
  debounce: debounce,
3436
3452
  delUrlParam: delUrlParam,
3437
3453
  domEval: domEval,
3454
+ downloadFile: downloadFile,
3438
3455
  esDecode: esDecode,
3439
3456
  esEncode: esEncode,
3440
3457
  esmEncrypt: esmEncrypt,
@@ -3518,32 +3535,32 @@ var watermark = function watermark(option) {
3518
3535
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3519
3536
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3520
3537
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return logout; });
3522
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initLogin; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return switchUserTo; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return logout; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initLogin; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return switchUserTo; });
3524
3541
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3525
3542
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
3526
3543
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3527
3544
  /* unused harmony export updateCode */
3528
3545
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
3529
3546
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginModifyPassword; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginModifyPassword; });
3531
3548
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initModifyPassword; });
3549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initModifyPassword; });
3533
3550
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3534
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getTwoFactorLoginCode; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getTwoFactorLoginCode; });
3535
3552
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initRetrialAuth; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initRetrialAuth; });
3537
3554
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return scanCodeRetrialAuth; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return scanCodeRetrialAuth; });
3539
3556
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3540
3557
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return userOnline; });
3542
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getUserAppWithTag; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return recordUserApp; });
3544
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return mainConfig; });
3545
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initUserSet; });
3546
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserInfo; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return userOnline; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getUserAppWithTag; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return recordUserApp; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return mainConfig; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initUserSet; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return updateUserInfo; });
3547
3564
  /* unused harmony export getUserImgUrl */
3548
3565
  /* unused harmony export getDoorIndex */
3549
3566
  /* unused harmony export refreshOnlineUsers */
@@ -3552,21 +3569,22 @@ var watermark = function watermark(option) {
3552
3569
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
3553
3570
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
3554
3571
  /* unused harmony export getUserCustomInfo */
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserCustomInfo; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sysMsgPage; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreSysMsg; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreAllSysMsg; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return searchType; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserCustomInfo; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sysMsgPage; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return ignoreSysMsg; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreAllSysMsg; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return searchType; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSysParam; });
3560
3578
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploads; });
3562
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadOnlyOne; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return uploads; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadOnlyOne; });
3563
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadSort; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploadSort; });
3565
3583
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadDownloads; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct2; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunctOffice; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadDownloads; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunct2; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return previewAdjunctOffice; });
3570
3588
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3571
3589
  /* unused harmony export upload_updateClassify */
3572
3590
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3578,16 +3596,16 @@ var watermark = function watermark(option) {
3578
3596
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3579
3597
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
3580
3598
  /* unused harmony export findUserBaseInfo */
3581
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return gethelpdoc; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return gethelpdoc; });
3582
3600
  /* unused harmony export getCurrentuser */
3583
3601
  /* unused harmony export mainDetail */
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartFlow; });
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return tempSave; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartFlow; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return tempSave; });
3586
3604
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3587
3605
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3588
3606
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return saveCommonOpinion; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateCommonOpinion; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return saveCommonOpinion; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateCommonOpinion; });
3591
3609
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3592
3610
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
3593
3611
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
@@ -3596,67 +3614,67 @@ var watermark = function watermark(option) {
3596
3614
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3597
3615
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
3598
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskHandleHtml; });
3617
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskHandleHtml; });
3600
3618
  /* unused harmony export getView */
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return register; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryList; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskRejectHtml; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskRejectHtml; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskRead; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskReadIndex; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadHtml; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return rejectAndEnd; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toSendMsg; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendMsg; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return register; });
3620
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryList; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskRejectHtml; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskRejectHtml; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskRead; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toStartTaskReadIndex; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadHtml; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return rejectAndEnd; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toSendMsg; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendMsg; });
3611
3629
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return handleInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginUserInfo; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return wss; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return topic; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return handleInfo; });
3631
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return loginUserInfo; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return wss; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return topic; });
3616
3634
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
3617
3635
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTransferIndex; });
3619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTransfer; });
3620
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toPresetInfoListIndex; });
3636
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskTransferIndex; });
3637
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskTransfer; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toPresetInfoListIndex; });
3621
3639
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3622
3640
  /* unused harmony export historyListJson */
3623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListJson; });
3624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pressListJson; });
3641
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListJson; });
3642
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pressListJson; });
3625
3643
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return isCanStartSubFlow; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionExamine; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionExamine; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTakeAdvice; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTakeAdvice; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskStartDraft; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSupervise; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSuperviseSub; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskStartDraft; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskReview; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskReview; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionSeal; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionSeal; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTwoOfficesDispatch; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return twoOfficesDispatch; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toResetProcessIndex; });
3642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return resetProcess; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskContinuationIndex; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskContinuation; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return isCanStartSubFlow; });
3645
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionExamine; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionExamine; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTakeAdvice; });
3648
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTakeAdvice; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskStartDraft; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSupervise; });
3651
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskSuperviseSub; });
3652
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskStartDraft; });
3653
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskReview; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReview; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskUnionSeal; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskUnionSeal; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTwoOfficesDispatch; });
3658
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return twoOfficesDispatch; });
3659
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toResetProcessIndex; });
3660
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return resetProcess; });
3661
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskContinuationIndex; });
3662
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskContinuation; });
3645
3663
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
3646
3664
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
3647
3665
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3648
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListWithCircularReadJson; });
3666
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pendedhistoryListWithCircularReadJson; });
3649
3667
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
3650
3668
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3651
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadWithDraw; });
3652
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3669
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReadWithDraw; });
3670
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3653
3671
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendList; });
3655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendInfo; });
3672
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendList; });
3673
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendInfo; });
3656
3674
  /* unused harmony export sendSave */
3657
3675
  /* unused harmony export sendUpdate */
3658
3676
  /* unused harmony export sendDelete */
3659
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendBatch; });
3677
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendBatch; });
3660
3678
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3661
3679
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3662
3680
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
@@ -3710,6 +3728,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
3710
3728
  // 框架 - 搜索
3711
3729
  var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
3712
3730
 
3731
+ // 系统参数
3732
+ var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
3733
+
3713
3734
  // 附件相关
3714
3735
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3715
3736
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
@@ -4424,7 +4445,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4424
4445
  // ESM COMPAT FLAG
4425
4446
  __webpack_require__.r(__webpack_exports__);
4426
4447
 
4427
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=9a490c28&
4448
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=5e28124e&
4428
4449
  var render = function () {
4429
4450
  var _vm = this
4430
4451
  var _h = _vm.$createElement
@@ -4442,6 +4463,74 @@ var render = function () {
4442
4463
  ? _c(
4443
4464
  "div",
4444
4465
  [
4466
+ _c("div", { staticClass: "es-flow-top" }, [
4467
+ _c(
4468
+ "div",
4469
+ { staticClass: "es-flow-title" },
4470
+ [
4471
+ _c(
4472
+ "span",
4473
+ {
4474
+ directives: [
4475
+ {
4476
+ name: "show",
4477
+ rawName: "v-show",
4478
+ value: !_vm.shrink,
4479
+ expression: "!shrink",
4480
+ },
4481
+ ],
4482
+ },
4483
+ [
4484
+ _vm._v(
4485
+ "当前节点:" +
4486
+ _vm._s(
4487
+ _vm.isFlow
4488
+ ? _vm.nodeName || "拟稿"
4489
+ : _vm.NodeName
4490
+ )
4491
+ ),
4492
+ ]
4493
+ ),
4494
+ _vm.showShrink
4495
+ ? _c("es-button", {
4496
+ staticClass: "es-icon",
4497
+ attrs: {
4498
+ size: "medium",
4499
+ icon: _vm.shrink
4500
+ ? "es-icon-indent"
4501
+ : "es-icon-increase",
4502
+ },
4503
+ on: { click: _vm.setShrink },
4504
+ })
4505
+ : _vm._e(),
4506
+ ],
4507
+ 1
4508
+ ),
4509
+ _c(
4510
+ "div",
4511
+ {
4512
+ directives: [
4513
+ {
4514
+ name: "show",
4515
+ rawName: "v-show",
4516
+ value: !_vm.shrink,
4517
+ expression: "!shrink",
4518
+ },
4519
+ ],
4520
+ staticClass: "es-opinion",
4521
+ },
4522
+ [
4523
+ _c(
4524
+ "span",
4525
+ {
4526
+ staticClass: "es-eidt-title",
4527
+ style: "" + (!_vm.isFlow ? "color:red" : ""),
4528
+ },
4529
+ [_vm._v("填写意见")]
4530
+ ),
4531
+ ]
4532
+ ),
4533
+ ]),
4445
4534
  _c("CommonOpinions", {
4446
4535
  directives: [
4447
4536
  {
@@ -4479,12 +4568,16 @@ var render = function () {
4479
4568
  [
4480
4569
  _c(
4481
4570
  "el-form-item",
4482
- { attrs: { prop: "nextNodeId", label: "下步节点" } },
4571
+ {
4572
+ staticStyle: { "margin-top": "20px" },
4573
+ attrs: { prop: "nextNodeId", label: "下步节点" },
4574
+ },
4483
4575
  [
4484
4576
  _vm.nextNodeCheckType == "select"
4485
4577
  ? _c(
4486
4578
  "el-select",
4487
4579
  {
4580
+ staticStyle: { width: "100% !important" },
4488
4581
  attrs: { placeholder: "请选择下步节点" },
4489
4582
  model: {
4490
4583
  value: _vm.circulateForm.nextNodeId,
@@ -4535,7 +4628,7 @@ var render = function () {
4535
4628
  ref: "circulate",
4536
4629
  staticStyle: { "margin-top": "10px" },
4537
4630
  attrs: {
4538
- businessId: _vm.businessId,
4631
+ businessId: _vm.businessIds,
4539
4632
  selectorParams: _vm.params,
4540
4633
  "pending-id": _vm.pendingId,
4541
4634
  showBtn: false,
@@ -5291,58 +5384,101 @@ var render = function () {
5291
5384
  },
5292
5385
  },
5293
5386
  [
5294
- _c(
5295
- "el-select",
5296
- {
5297
- attrs: {
5298
- placeholder:
5299
- "请选择下步操作",
5300
- disabled:
5301
- _vm.operationList &&
5302
- _vm.operationList
5303
- .length == 1,
5304
- },
5305
- on: {
5306
- change: function (
5307
- $event
5308
- ) {
5309
- _vm.selecNext(
5310
- $event,
5311
- true
5312
- )
5387
+ _vm.nextOperateCheckType ==
5388
+ "select"
5389
+ ? _c(
5390
+ "el-select",
5391
+ {
5392
+ attrs: {
5393
+ placeholder:
5394
+ "请选择下步操作",
5395
+ disabled:
5396
+ _vm.operationList &&
5397
+ _vm.operationList
5398
+ .length == 1,
5399
+ },
5400
+ on: {
5401
+ change: function (
5402
+ $event
5403
+ ) {
5404
+ _vm.selecNext(
5405
+ $event,
5406
+ true
5407
+ )
5408
+ },
5409
+ },
5410
+ model: {
5411
+ value:
5412
+ _vm.nextNode
5413
+ .nextOperate,
5414
+ callback: function (
5415
+ $$v
5416
+ ) {
5417
+ _vm.$set(
5418
+ _vm.nextNode,
5419
+ "nextOperate",
5420
+ $$v
5421
+ )
5422
+ },
5423
+ expression:
5424
+ "nextNode.nextOperate",
5425
+ },
5313
5426
  },
5314
- },
5315
- model: {
5316
- value:
5317
- _vm.nextNode
5318
- .nextOperate,
5319
- callback: function (
5320
- $$v
5321
- ) {
5322
- _vm.$set(
5323
- _vm.nextNode,
5324
- "nextOperate",
5325
- $$v
5326
- )
5427
+ _vm._l(
5428
+ _vm.operationList,
5429
+ function (items) {
5430
+ return _c(
5431
+ "el-option",
5432
+ {
5433
+ key: items.key,
5434
+ attrs: {
5435
+ label:
5436
+ items.value,
5437
+ value:
5438
+ items.key,
5439
+ },
5440
+ }
5441
+ )
5442
+ }
5443
+ ),
5444
+ 1
5445
+ )
5446
+ : _vm.nextOperateCheckType ==
5447
+ "radio"
5448
+ ? _c("es-radio-group", {
5449
+ attrs: {
5450
+ data: _vm.operationList,
5451
+ "value-key": "key",
5452
+ "label-key": "value",
5327
5453
  },
5328
- expression:
5329
- "nextNode.nextOperate",
5330
- },
5331
- },
5332
- _vm._l(
5333
- _vm.operationList,
5334
- function (items) {
5335
- return _c("el-option", {
5336
- key: items.key,
5337
- attrs: {
5338
- label: items.value,
5339
- value: items.key,
5454
+ on: {
5455
+ change: function (
5456
+ $event
5457
+ ) {
5458
+ _vm.selecNext(
5459
+ $event,
5460
+ true
5461
+ )
5340
5462
  },
5341
- })
5342
- }
5343
- ),
5344
- 1
5345
- ),
5463
+ },
5464
+ model: {
5465
+ value:
5466
+ _vm.nextNode
5467
+ .nextOperate,
5468
+ callback: function (
5469
+ $$v
5470
+ ) {
5471
+ _vm.$set(
5472
+ _vm.nextNode,
5473
+ "nextOperate",
5474
+ $$v
5475
+ )
5476
+ },
5477
+ expression:
5478
+ "nextNode.nextOperate",
5479
+ },
5480
+ })
5481
+ : _vm._e(),
5346
5482
  ],
5347
5483
  1
5348
5484
  )
@@ -6985,7 +7121,7 @@ var staticRenderFns = []
6985
7121
  render._withStripped = true
6986
7122
 
6987
7123
 
6988
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=9a490c28&
7124
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5e28124e&
6989
7125
 
6990
7126
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6991
7127
  var regenerator_ = __webpack_require__(4);
@@ -7948,7 +8084,7 @@ var _components;
7948
8084
  }
7949
8085
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
7950
8086
  util["a" /* default */].ajax({
7951
- url: data.id ? api["pc" /* updateCommonOpinion */] : api["Ab" /* saveCommonOpinion */],
8087
+ url: data.id ? api["qc" /* updateCommonOpinion */] : api["Bb" /* saveCommonOpinion */],
7952
8088
  data: info,
7953
8089
  header: { 'Content-Type': 'multipart/form-data' },
7954
8090
  method: 'post'
@@ -8954,7 +9090,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8954
9090
  newNextUser: [],
8955
9091
  newOptions: [],
8956
9092
  newSelectUserList: [],
8957
- url: api["db" /* handleInfo */],
9093
+ url: api["eb" /* handleInfo */],
8958
9094
  newCheckboxList: [],
8959
9095
  newPresetEdit: 0,
8960
9096
  newMultiple: false,
@@ -9076,7 +9212,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
9076
9212
  if (query !== '') {
9077
9213
  this.searchLoading = true;
9078
9214
  util["a" /* default */].ajax({
9079
- url: api["db" /* handleInfo */],
9215
+ url: api["eb" /* handleInfo */],
9080
9216
  params: { searchKey: query, query: query, type: 'user' }
9081
9217
  }).then(function (res) {
9082
9218
  var status = res.status,
@@ -10575,7 +10711,7 @@ var processFormvue_type_script_lang_js_components;
10575
10711
  if (mainConfig) {
10576
10712
  this.userModel = JSON.parse(mainConfig).userModel;
10577
10713
  } else {
10578
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
10714
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
10579
10715
  var status = res.status,
10580
10716
  data = res.data;
10581
10717
 
@@ -10806,7 +10942,7 @@ var processFormvue_type_script_lang_js_components;
10806
10942
  params = newParm;
10807
10943
  }
10808
10944
  util["a" /* default */].ajax({
10809
- url: _this4.isFreeStartFlow ? api["E" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Hb" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["xb" /* register */],
10945
+ url: _this4.isFreeStartFlow ? api["E" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Ib" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["yb" /* register */],
10810
10946
  method: 'post',
10811
10947
  data: params
10812
10948
  }).then(function (res) {
@@ -11006,7 +11142,7 @@ var processFormvue_type_script_lang_js_components;
11006
11142
  businessId: this.businessId
11007
11143
  };
11008
11144
  // 获取节点
11009
- util["a" /* default */].ajax({ url: api["Zb" /* toStartFlow */], params: params }).then(function (res) {
11145
+ util["a" /* default */].ajax({ url: api["ac" /* toStartFlow */], params: params }).then(function (res) {
11010
11146
  //pc接口返回数据处理
11011
11147
  var status = res.status,
11012
11148
  message = res.message,
@@ -11486,7 +11622,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
11486
11622
  notificationType = _sendInfo.notificationType;
11487
11623
 
11488
11624
  var params = {
11489
- url: api["Gb" /* sendMsg */],
11625
+ url: api["Hb" /* sendMsg */],
11490
11626
  headers: { Accept: 'application/json,text/plain' },
11491
11627
  method: 'post',
11492
11628
  data: {
@@ -11548,7 +11684,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
11548
11684
 
11549
11685
  this.loading = true;
11550
11686
  util["a" /* default */].ajax({
11551
- url: api["Yb" /* toSendMsg */],
11687
+ url: api["Zb" /* toSendMsg */],
11552
11688
  params: { pendingId: this.$attrs.pendingId }
11553
11689
  }).then(function (res) {
11554
11690
  var status = res.status,
@@ -12413,7 +12549,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
12413
12549
  userId: util["a" /* default */].getStorage('userId'),
12414
12550
  nextNodeId: _this2.nextNode.nextNodeId
12415
12551
  };
12416
- util["a" /* default */].ajax({ url: api["Ob" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
12552
+ util["a" /* default */].ajax({ url: api["Pb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
12417
12553
  var status = res.status,
12418
12554
  message = res.message;
12419
12555
 
@@ -12477,7 +12613,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
12477
12613
  isSinglePage: false,
12478
12614
  opinion: this.option
12479
12615
  };
12480
- util["a" /* default */].ajax({ url: api["dc" /* toTaskRejectHtml */], params: params }).then(function (res) {
12616
+ util["a" /* default */].ajax({ url: api["ec" /* toTaskRejectHtml */], params: params }).then(function (res) {
12481
12617
  var status = res.status,
12482
12618
  message = res.message,
12483
12619
  _res$data = res.data,
@@ -13270,7 +13406,7 @@ var startTaskReadvue_type_script_lang_js_components;
13270
13406
  taskExamine = this.taskExamine;
13271
13407
 
13272
13408
  var params = {
13273
- url: api["jc" /* toTaskTransferIndex */],
13409
+ url: api["kc" /* toTaskTransferIndex */],
13274
13410
  params: {
13275
13411
  opinion: opinion,
13276
13412
  pendingId: pendingId,
@@ -13395,7 +13531,7 @@ var startTaskReadvue_type_script_lang_js_components;
13395
13531
  var _this4 = this;
13396
13532
 
13397
13533
  var params = {
13398
- url: api["ac" /* toStartTaskRead */],
13534
+ url: api["bc" /* toStartTaskRead */],
13399
13535
  params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
13400
13536
  };
13401
13537
  if (this.typeCode == 'read') {
@@ -13484,7 +13620,7 @@ var startTaskReadvue_type_script_lang_js_components;
13484
13620
  type = this.type;
13485
13621
 
13486
13622
  var params = {
13487
- url: api["Sb" /* taskTransfer */],
13623
+ url: api["Tb" /* taskTransfer */],
13488
13624
  data: {
13489
13625
  choiceDeptId: choiceDeptId,
13490
13626
  choiceOrgId: choiceOrgId,
@@ -13583,7 +13719,7 @@ var startTaskReadvue_type_script_lang_js_components;
13583
13719
  params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
13584
13720
  }
13585
13721
  util["a" /* default */].ajax({
13586
- url: api["Mb" /* taskReadHtml */],
13722
+ url: api["Nb" /* taskReadHtml */],
13587
13723
  params: { taskAction: _this8.type },
13588
13724
  headers: {
13589
13725
  Accept: 'application/json,text/plain'
@@ -14463,7 +14599,7 @@ var resetvue_type_script_lang_js_components;
14463
14599
  if (mainConfig) {
14464
14600
  this.userModel = JSON.parse(mainConfig).userModel;
14465
14601
  } else {
14466
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
14602
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
14467
14603
  var status = res.status,
14468
14604
  data = res.data;
14469
14605
 
@@ -14671,7 +14807,7 @@ var resetvue_type_script_lang_js_components;
14671
14807
  }, _this4.subParams);
14672
14808
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
14673
14809
  util["a" /* default */].ajax({
14674
- url: _this4.type == 'reset' ? api["zb" /* resetProcess */] : api["Kb" /* taskContinuation */],
14810
+ url: _this4.type == 'reset' ? api["Ab" /* resetProcess */] : api["Lb" /* taskContinuation */],
14675
14811
  method: 'post',
14676
14812
  data: params
14677
14813
  }).then(function (res) {
@@ -14875,7 +15011,7 @@ var resetvue_type_script_lang_js_components;
14875
15011
  var _this7 = this;
14876
15012
 
14877
15013
  var params = {
14878
- url: this.type == 'continuation' ? api["cc" /* toTaskContinuationIndex */] : api["Xb" /* toResetProcessIndex */],
15014
+ url: this.type == 'continuation' ? api["dc" /* toTaskContinuationIndex */] : api["Yb" /* toResetProcessIndex */],
14879
15015
  params: resetvue_type_script_lang_js_extends({
14880
15016
  appId: this.appId
14881
15017
  }, this.flowParams)
@@ -14981,8 +15117,8 @@ var reset_component = Object(componentNormalizer["a" /* default */])(
14981
15117
  )
14982
15118
 
14983
15119
  /* harmony default export */ var src_reset = (reset_component.exports);
14984
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=21dd6a72&
14985
- var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
15120
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=ea4335d6&
15121
+ var taskUnionExaminevue_type_template_id_ea4335d6_render = function () {
14986
15122
  var _vm = this
14987
15123
  var _h = _vm.$createElement
14988
15124
  var _c = _vm._self._c || _h
@@ -15100,6 +15236,7 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
15100
15236
  nextUser: _vm.infoList.nextOtherOrgObj,
15101
15237
  multiple: _vm.newMultiple,
15102
15238
  mix: _vm.otherMix,
15239
+ disableds: _vm.otherOrgDisabledObjId,
15103
15240
  types:
15104
15241
  _vm.foreignOrgTabs.length > 0
15105
15242
  ? _vm.foreignOrgTabs
@@ -15236,11 +15373,11 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
15236
15373
  1
15237
15374
  )
15238
15375
  }
15239
- var taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns = []
15240
- taskUnionExaminevue_type_template_id_21dd6a72_render._withStripped = true
15376
+ var taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns = []
15377
+ taskUnionExaminevue_type_template_id_ea4335d6_render._withStripped = true
15241
15378
 
15242
15379
 
15243
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=21dd6a72&
15380
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=ea4335d6&
15244
15381
 
15245
15382
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
15246
15383
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -15374,6 +15511,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15374
15511
  //
15375
15512
  //
15376
15513
  //
15514
+ //
15377
15515
 
15378
15516
 
15379
15517
 
@@ -15412,6 +15550,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15412
15550
  foreignOrgTabsParam: {},
15413
15551
  currentOrgTabsParam: {},
15414
15552
  currentOrgProcessKey: '',
15553
+ otherOrgDisabledObjId: [],
15415
15554
  isSubFlow: true,
15416
15555
  choiceDeptId: '',
15417
15556
  choiceOrgId: '',
@@ -15457,7 +15596,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15457
15596
  pendingId = this.pendingId;
15458
15597
 
15459
15598
  var params = {
15460
- url: api["Pb" /* taskReview */],
15599
+ url: api["Qb" /* taskReview */],
15461
15600
  data: {
15462
15601
  nextUserId: nextOtherOrgObj.join(','),
15463
15602
  notificationType: noticeType.join(','),
@@ -15493,7 +15632,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15493
15632
  var _this2 = this;
15494
15633
 
15495
15634
  var params = {
15496
- url: api["ec" /* toTaskReview */],
15635
+ url: api["fc" /* toTaskReview */],
15497
15636
  params: { pendingId: this.pendingId }
15498
15637
  };
15499
15638
  util["a" /* default */].ajax(params).then(function (res) {
@@ -15529,7 +15668,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15529
15668
  var _this3 = this;
15530
15669
 
15531
15670
  var params = {
15532
- url: this.type == 'takeAdvice' ? api["ic" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["fc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["lc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["mc" /* toTwoOfficesDispatch */] : api["kc" /* toTaskUnionExamine */],
15671
+ url: this.type == 'takeAdvice' ? api["jc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["gc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["mc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["nc" /* toTwoOfficesDispatch */] : api["lc" /* toTaskUnionExamine */],
15533
15672
  params: { pendingId: this.pendingId },
15534
15673
  headers: { Accept: 'application/json,text/plain' }
15535
15674
  };
@@ -15547,6 +15686,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15547
15686
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
15548
15687
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
15549
15688
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
15689
+ otherOrgDisabledObjId = _res$data2.otherOrgDisabledObjId,
15550
15690
  orgNames = _res$data2.orgNames,
15551
15691
  _res$data2$nodeInfoMa = _res$data2.nodeInfoMap.nodeExtAttr,
15552
15692
  userSelectionType = _res$data2$nodeInfoMa.userSelectionType,
@@ -15554,6 +15694,11 @@ var taskUnionExaminevue_type_script_lang_js_components;
15554
15694
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
15555
15695
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
15556
15696
 
15697
+ console.log(otherOrgDisabledObjId, 'otherOrgDisabledObjId');
15698
+ if (otherOrgDisabledObjId) {
15699
+ _this3.otherOrgDisabledObjId = otherOrgDisabledObjId.split(',');
15700
+ console.log(_this3.otherOrgDisabledObjId, otherOrgDisabledObjId.split(','));
15701
+ }
15557
15702
  if (res.data.customizedConfig) {
15558
15703
  if (res.data.customizedConfig.currentOrgSelectorCustomized) {
15559
15704
  _this3.currentMix = res.data.customizedConfig.currentOrgSelectorSelectMix == 'true';
@@ -15653,7 +15798,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15653
15798
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
15654
15799
  // return this.$message.warning('暂未开放,敬请期待!');
15655
15800
  var param = {
15656
- url: this.type === 'startDraf' ? api["Qb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Ub" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["oc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Rb" /* taskTakeAdvice */] : api["Tb" /* taskUnionExamine */],
15801
+ url: this.type === 'startDraf' ? api["Rb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Vb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["pc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Sb" /* taskTakeAdvice */] : api["Ub" /* taskUnionExamine */],
15657
15802
  data: {
15658
15803
  opinion: opinion,
15659
15804
  pendingId: pendingId,
@@ -15803,8 +15948,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
15803
15948
 
15804
15949
  var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
15805
15950
  component_taskUnionExaminevue_type_script_lang_js_,
15806
- taskUnionExaminevue_type_template_id_21dd6a72_render,
15807
- taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns,
15951
+ taskUnionExaminevue_type_template_id_ea4335d6_render,
15952
+ taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns,
15808
15953
  false,
15809
15954
  null,
15810
15955
  null,
@@ -19089,7 +19234,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19089
19234
  taskAction: 'complete'
19090
19235
  };
19091
19236
  util["a" /* default */].ajax({
19092
- url: api["Mb" /* taskReadHtml */],
19237
+ url: api["Nb" /* taskReadHtml */],
19093
19238
  params: { taskAction: 'complete' },
19094
19239
  headers: {
19095
19240
  Accept: 'application/json,text/plain'
@@ -19121,7 +19266,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19121
19266
 
19122
19267
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
19123
19268
  util["a" /* default */].ajax({
19124
- url: api["bc" /* toStartTaskReadIndex */],
19269
+ url: api["cc" /* toStartTaskReadIndex */],
19125
19270
  params: { pendingId: this.pendingId }
19126
19271
  }).then(function (res) {
19127
19272
  var status = res.status,
@@ -19157,7 +19302,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19157
19302
  if (mainConfig) {
19158
19303
  this.userModel = JSON.parse(mainConfig).userModel;
19159
19304
  } else {
19160
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
19305
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
19161
19306
  var status = res.status,
19162
19307
  data = res.data;
19163
19308
 
@@ -19258,7 +19403,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19258
19403
  pendingId: this.pendingId
19259
19404
  };
19260
19405
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
19261
- util["a" /* default */].ajax({ url: api["Vb" /* tempSave */], params: params }).then(function (res) {
19406
+ util["a" /* default */].ajax({ url: api["Wb" /* tempSave */], params: params }).then(function (res) {
19262
19407
  var status = res.status,
19263
19408
  message = res.message;
19264
19409
 
@@ -19552,7 +19697,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19552
19697
  var _this15 = this;
19553
19698
 
19554
19699
  var params = {
19555
- url: api["kb" /* isCanStartSubFlow */],
19700
+ url: api["lb" /* isCanStartSubFlow */],
19556
19701
  data: {
19557
19702
  appId: this.taskExamineInfo.appId,
19558
19703
  inevitableNode: res.inevitableNode
@@ -19662,7 +19807,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19662
19807
  this.$confirm('确认' + res.value + '?').then(function () {
19663
19808
  // return this.$message.warning('请填写意见');
19664
19809
  var params = {
19665
- url: api["yb" /* rejectAndEnd */],
19810
+ url: api["zb" /* rejectAndEnd */],
19666
19811
  headers: { Accept: 'application/json,text/plain' },
19667
19812
  method: 'post',
19668
19813
  data: {
@@ -20327,7 +20472,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20327
20472
  userId: util["a" /* default */].getStorage('userId'),
20328
20473
  type: 2
20329
20474
  };
20330
- util["a" /* default */].ajax({ url: api["pb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
20475
+ util["a" /* default */].ajax({ url: api["qb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
20331
20476
  var rCode = res.rCode,
20332
20477
  msg = res.msg,
20333
20478
  results = res.results;
@@ -20523,7 +20668,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20523
20668
  params.isSubFlow = taskExamineInfo.isSubFlow;
20524
20669
  params.nodeId = taskExamineInfo.nodeId;
20525
20670
  params.needRetrialAuth = needRetrialAuth;
20526
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Lb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
20671
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
20527
20672
  var status = res.status,
20528
20673
  message = res.message;
20529
20674
 
@@ -20882,7 +21027,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20882
21027
  pendingUserIds = _nextNode.pendingUserIds;
20883
21028
 
20884
21029
  var params = {
20885
- url: api["hc" /* toTaskSuperviseSub */],
21030
+ url: api["ic" /* toTaskSuperviseSub */],
20886
21031
  params: {
20887
21032
  userId: util["a" /* default */].getStorage('userId'),
20888
21033
  urgeUserIds: pendingUserIds,
@@ -20907,7 +21052,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20907
21052
 
20908
21053
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20909
21054
  util["a" /* default */].ajax({
20910
- url: api["gc" /* toTaskSupervise */],
21055
+ url: api["hc" /* toTaskSupervise */],
20911
21056
  params: {
20912
21057
  businessId: this.businessId,
20913
21058
  userId: util["a" /* default */].getStorage('userId')
@@ -20950,8 +21095,8 @@ var supervise_component = Object(componentNormalizer["a" /* default */])(
20950
21095
  )
20951
21096
 
20952
21097
  /* harmony default export */ var supervise = (supervise_component.exports);
20953
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=template&id=3f042944&
20954
- var Circulatevue_type_template_id_3f042944_render = function () {
21098
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=template&id=e3855b2c&
21099
+ var Circulatevue_type_template_id_e3855b2c_render = function () {
20955
21100
  var _vm = this
20956
21101
  var _h = _vm.$createElement
20957
21102
  var _c = _vm._self._c || _h
@@ -21139,11 +21284,11 @@ var Circulatevue_type_template_id_3f042944_render = function () {
21139
21284
  1
21140
21285
  )
21141
21286
  }
21142
- var Circulatevue_type_template_id_3f042944_staticRenderFns = []
21143
- Circulatevue_type_template_id_3f042944_render._withStripped = true
21287
+ var Circulatevue_type_template_id_e3855b2c_staticRenderFns = []
21288
+ Circulatevue_type_template_id_e3855b2c_render._withStripped = true
21144
21289
 
21145
21290
 
21146
- // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=3f042944&
21291
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=e3855b2c&
21147
21292
 
21148
21293
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=script&lang=js&
21149
21294
  var Circulatevue_type_script_lang_js_components;
@@ -21285,6 +21430,7 @@ var Circulatevue_type_script_lang_js_components;
21285
21430
  isOpinionRequired: 0,
21286
21431
  otherParams: { filid: 'other' },
21287
21432
  loading: false,
21433
+ subLoading: null,
21288
21434
  userModel: {}
21289
21435
  };
21290
21436
  },
@@ -21361,14 +21507,20 @@ var Circulatevue_type_script_lang_js_components;
21361
21507
  if (!this.showBtn) {
21362
21508
  param.data.pendingId = this.pendingId;
21363
21509
  delete param.data.processDefinitionId;
21510
+ this.subLoading = util["a" /* default */].loading(this.$loading, '加载中...');
21511
+ } else {
21512
+ this.loading = true;
21364
21513
  }
21365
- this.loading = true;
21366
21514
  util["a" /* default */].ajax(param).then(function (res) {
21367
21515
  var message = res.message,
21368
21516
  status = res.status,
21369
21517
  rCode = res.rCode;
21370
21518
 
21371
- _this.loading = false;
21519
+ if (!_this.showBtn) {
21520
+ _this.subLoading.close();
21521
+ } else {
21522
+ _this.loading = false;
21523
+ }
21372
21524
  if (status == 'success' || rCode == 0) {
21373
21525
  _this.simpleTips && _this.$message.success('提交成功');
21374
21526
  _this.quit(true);
@@ -21499,8 +21651,8 @@ var Circulatevue_type_script_lang_js_components;
21499
21651
 
21500
21652
  var Circulate_component = Object(componentNormalizer["a" /* default */])(
21501
21653
  component_Circulatevue_type_script_lang_js_,
21502
- Circulatevue_type_template_id_3f042944_render,
21503
- Circulatevue_type_template_id_3f042944_staticRenderFns,
21654
+ Circulatevue_type_template_id_e3855b2c_render,
21655
+ Circulatevue_type_template_id_e3855b2c_staticRenderFns,
21504
21656
  false,
21505
21657
  null,
21506
21658
  null,
@@ -22465,6 +22617,44 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22465
22617
  //
22466
22618
  //
22467
22619
  //
22620
+ //
22621
+ //
22622
+ //
22623
+ //
22624
+ //
22625
+ //
22626
+ //
22627
+ //
22628
+ //
22629
+ //
22630
+ //
22631
+ //
22632
+ //
22633
+ //
22634
+ //
22635
+ //
22636
+ //
22637
+ //
22638
+ //
22639
+ //
22640
+ //
22641
+ //
22642
+ //
22643
+ //
22644
+ //
22645
+ //
22646
+ //
22647
+ //
22648
+ //
22649
+ //
22650
+ //
22651
+ //
22652
+ //
22653
+ //
22654
+ //
22655
+ //
22656
+ //
22657
+ //
22468
22658
 
22469
22659
 
22470
22660
 
@@ -22552,6 +22742,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22552
22742
  showCustomLimitTimeText: false,
22553
22743
  currentOrgDisabledObjId: [],
22554
22744
  nextNodeCheckType: 'select',
22745
+ nextOperateCheckType: 'select',
22555
22746
  readOnlyNotificationType: '',
22556
22747
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
22557
22748
  taskParams: {},
@@ -23038,7 +23229,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23038
23229
  taskAction: 'complete'
23039
23230
  };
23040
23231
  util["a" /* default */].ajax({
23041
- url: api["Mb" /* taskReadHtml */],
23232
+ url: api["Nb" /* taskReadHtml */],
23042
23233
  params: { taskAction: 'complete' },
23043
23234
  headers: {
23044
23235
  Accept: 'application/json,text/plain'
@@ -23085,7 +23276,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23085
23276
 
23086
23277
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
23087
23278
  util["a" /* default */].ajax({
23088
- url: api["bc" /* toStartTaskReadIndex */],
23279
+ url: api["cc" /* toStartTaskReadIndex */],
23089
23280
  params: { pendingId: this.pendingId }
23090
23281
  }).then(function (res) {
23091
23282
  var status = res.status,
@@ -23129,7 +23320,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23129
23320
  if (mainConfig) {
23130
23321
  this.userModel = JSON.parse(mainConfig).userModel;
23131
23322
  } else {
23132
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
23323
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
23133
23324
  var status = res.status,
23134
23325
  data = res.data;
23135
23326
 
@@ -23230,7 +23421,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23230
23421
  pendingId: this.pendingId
23231
23422
  };
23232
23423
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
23233
- util["a" /* default */].ajax({ url: api["Vb" /* tempSave */], params: params }).then(function (res) {
23424
+ util["a" /* default */].ajax({ url: api["Wb" /* tempSave */], params: params }).then(function (res) {
23234
23425
  var status = res.status,
23235
23426
  message = res.message;
23236
23427
 
@@ -23536,7 +23727,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23536
23727
  var _this18 = this;
23537
23728
 
23538
23729
  var params = {
23539
- url: api["kb" /* isCanStartSubFlow */],
23730
+ url: api["lb" /* isCanStartSubFlow */],
23540
23731
  data: {
23541
23732
  appId: this.taskExamineInfo.appId,
23542
23733
  inevitableNode: res.inevitableNode
@@ -23646,7 +23837,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23646
23837
  this.$confirm('确认' + res.value + '?').then(function () {
23647
23838
  // return this.$message.warning('请填写意见');
23648
23839
  var params = {
23649
- url: api["yb" /* rejectAndEnd */],
23840
+ url: api["zb" /* rejectAndEnd */],
23650
23841
  headers: { Accept: 'application/json,text/plain' },
23651
23842
  method: 'post',
23652
23843
  data: {
@@ -23986,6 +24177,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23986
24177
  circularReadParamsMap = _res$data2.circularReadParamsMap,
23987
24178
  isPreset = _res$data2.isPreset,
23988
24179
  choiceOrgId = _res$data2.choiceOrgId,
24180
+ nextOperateCheckType = _res$data2.nextOperateCheckType,
23989
24181
  choiceDeptId = _res$data2.choiceDeptId,
23990
24182
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
23991
24183
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
@@ -24014,7 +24206,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24014
24206
  _this27.$emit('startTaskRead', res);
24015
24207
  _this27.$emit('start-task-read', res);
24016
24208
  _this27.circularReadParamsMap = circularReadParamsMap || {};
24017
- _this27.currentOrgName = currentOrgName;
24209
+ _this27.currentOrgName = _this27.nextOperateCheckType = nextOperateCheckType;
24018
24210
  _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
24019
24211
  _this27.readOnlyNotificationType = readOnlyNotificationType;
24020
24212
  _this27.isSpecial = isSpecial;
@@ -24331,7 +24523,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24331
24523
  userId: util["a" /* default */].getStorage('userId'),
24332
24524
  type: 2
24333
24525
  };
24334
- util["a" /* default */].ajax({ url: api["pb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
24526
+ util["a" /* default */].ajax({ url: api["qb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
24335
24527
  var rCode = res.rCode,
24336
24528
  msg = res.msg,
24337
24529
  results = res.results;
@@ -24632,7 +24824,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24632
24824
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
24633
24825
  }
24634
24826
 
24635
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Lb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
24827
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
24636
24828
  var status = res.status,
24637
24829
  message = res.message;
24638
24830