eoss-ui 0.6.68 → 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 (75) hide show
  1. package/lib/.DS_Store +0 -0
  2. package/lib/button-group.js +103 -81
  3. package/lib/button.js +103 -81
  4. package/lib/calogin.js +173 -115
  5. package/lib/checkbox-group.js +103 -81
  6. package/lib/config/api.js +3 -0
  7. package/lib/data-table-form.js +103 -81
  8. package/lib/data-table.js +103 -81
  9. package/lib/date-picker.js +103 -81
  10. package/lib/dialog.js +103 -81
  11. package/lib/eoss-ui.common.js +702 -440
  12. package/lib/flow-group.js +103 -81
  13. package/lib/flow-list.js +108 -86
  14. package/lib/flow.js +399 -197
  15. package/lib/form.js +103 -81
  16. package/lib/handle-user.js +104 -82
  17. package/lib/handler.js +104 -82
  18. package/lib/icon.js +104 -82
  19. package/lib/index.js +1 -1
  20. package/lib/input-number.js +103 -81
  21. package/lib/input.js +103 -81
  22. package/lib/login.js +203 -176
  23. package/lib/main.js +140 -119
  24. package/lib/nav.js +103 -81
  25. package/lib/notify.js +85 -81
  26. package/lib/page.js +103 -81
  27. package/lib/pagination.js +103 -81
  28. package/lib/player.js +103 -81
  29. package/lib/qr-code.js +103 -81
  30. package/lib/radio-group.js +103 -81
  31. package/lib/retrial-auth.js +105 -83
  32. package/lib/select-ganged.js +103 -81
  33. package/lib/select.js +103 -81
  34. package/lib/selector-panel.js +118 -100
  35. package/lib/selector.js +135 -89
  36. package/lib/sizer.js +103 -81
  37. package/lib/steps.js +103 -81
  38. package/lib/switch.js +103 -81
  39. package/lib/table-form.js +103 -81
  40. package/lib/tabs.js +103 -81
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/theme-chalk/login.css +1 -1
  43. package/lib/tips.js +104 -82
  44. package/lib/tree-group.js +103 -81
  45. package/lib/tree.js +103 -81
  46. package/lib/upload.js +110 -88
  47. package/lib/utils/util.js +21 -3
  48. package/lib/wujie.js +103 -81
  49. package/lib/wxlogin.js +103 -81
  50. package/package.json +2 -2
  51. package/packages/.DS_Store +0 -0
  52. package/packages/calogin/.DS_Store +0 -0
  53. package/packages/calogin/src/main.vue +75 -31
  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 +46 -3
  58. package/packages/flow/src/selectUser.vue +6 -0
  59. package/packages/flow-list/.DS_Store +0 -0
  60. package/packages/login/.DS_Store +0 -0
  61. package/packages/login/src/main.vue +44 -48
  62. package/packages/main/.DS_Store +0 -0
  63. package/packages/main/src/simplicity/avatar.vue +0 -1
  64. package/packages/selector/.DS_Store +0 -0
  65. package/packages/selector/src/main.vue +33 -7
  66. package/packages/selector-panel/.DS_Store +0 -0
  67. package/packages/selector-panel/src/main.vue +5 -5
  68. package/packages/selector-panel/src/selection.vue +3 -10
  69. package/packages/theme-chalk/lib/index.css +1 -1
  70. package/packages/theme-chalk/lib/login.css +1 -1
  71. package/packages/theme-chalk/src/login.scss +4 -1
  72. package/src/.DS_Store +0 -0
  73. package/src/config/api.js +3 -0
  74. package/src/index.js +1 -1
  75. package/src/utils/util.js +60 -42
package/lib/flow.js CHANGED
@@ -586,8 +586,9 @@ var ajaxStream = function ajaxStream(_ref2) {
586
586
  try {
587
587
  // 假设数据是 JSON 格式
588
588
  var parsedData = JSON.parse(data);
589
- info.time = parsedData.time;
590
- info.conversationId = parsedData.conversationId;
589
+ info = _extends({}, info, parsedData);
590
+ // info.time = parsedData.time;
591
+ // info.conversationId = parsedData.conversationId;
591
592
  var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
592
593
  var match = parsedData.message.match(thinkRegex);
593
594
  if (match) {
@@ -1051,6 +1052,22 @@ var domEval = function domEval(code) {
1051
1052
  script.text = code;
1052
1053
  document.head.appendChild(script);
1053
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
+ };
1054
1071
 
1055
1072
  /**
1056
1073
  * esEncode
@@ -1604,7 +1621,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1604
1621
  * @param {function} callback - 回调函数
1605
1622
  **/
1606
1623
  var getMainConfig = function getMainConfig(callback) {
1607
- 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) {
1608
1625
  if (res && res.rCode === 0) {
1609
1626
  callback(res.results);
1610
1627
  }
@@ -1941,7 +1958,7 @@ var getTypeName = function getTypeName(type) {
1941
1958
  typeName = '[角色]';
1942
1959
  } else if (type === 'post') {
1943
1960
  typeName = '[岗位]';
1944
- } else if (type === 'otheremployee' || type === 'employee') {
1961
+ } else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
1945
1962
  if (sysdepname) {
1946
1963
  typeName = '[' + sysdepname + '员工]';
1947
1964
  } else {
@@ -2361,7 +2378,7 @@ var isLogined = function () {
2361
2378
  break;
2362
2379
  }
2363
2380
 
2364
- 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) {
2365
2382
  if (res.rCode === 0) {
2366
2383
  removeStorage();
2367
2384
  }
@@ -3434,6 +3451,7 @@ var watermark = function watermark(option) {
3434
3451
  debounce: debounce,
3435
3452
  delUrlParam: delUrlParam,
3436
3453
  domEval: domEval,
3454
+ downloadFile: downloadFile,
3437
3455
  esDecode: esDecode,
3438
3456
  esEncode: esEncode,
3439
3457
  esmEncrypt: esmEncrypt,
@@ -3517,32 +3535,32 @@ var watermark = function watermark(option) {
3517
3535
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3518
3536
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3519
3537
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return logout; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initLogin; });
3522
- /* 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; });
3523
3541
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3524
3542
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
3525
3543
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3526
3544
  /* unused harmony export updateCode */
3527
3545
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
3528
3546
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3529
- /* 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; });
3530
3548
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3531
- /* 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; });
3532
3550
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3533
- /* 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; });
3534
3552
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3535
- /* 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; });
3536
3554
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
3537
- /* 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; });
3538
3556
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3539
3557
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return userOnline; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getUserAppWithTag; });
3542
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return recordUserApp; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return mainConfig; });
3544
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initUserSet; });
3545
- /* 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; });
3546
3564
  /* unused harmony export getUserImgUrl */
3547
3565
  /* unused harmony export getDoorIndex */
3548
3566
  /* unused harmony export refreshOnlineUsers */
@@ -3551,21 +3569,22 @@ var watermark = function watermark(option) {
3551
3569
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
3552
3570
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
3553
3571
  /* unused harmony export getUserCustomInfo */
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserCustomInfo; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sysMsgPage; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreSysMsg; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreAllSysMsg; });
3558
- /* 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; });
3559
3578
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploads; });
3561
- /* 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; });
3562
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
3563
- /* 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; });
3564
3583
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3565
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadDownloads; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct2; });
3568
- /* 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; });
3569
3588
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3570
3589
  /* unused harmony export upload_updateClassify */
3571
3590
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3577,16 +3596,16 @@ var watermark = function watermark(option) {
3577
3596
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3578
3597
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
3579
3598
  /* unused harmony export findUserBaseInfo */
3580
- /* 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; });
3581
3600
  /* unused harmony export getCurrentuser */
3582
3601
  /* unused harmony export mainDetail */
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartFlow; });
3584
- /* 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; });
3585
3604
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3586
3605
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3587
3606
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return saveCommonOpinion; });
3589
- /* 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; });
3590
3609
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3591
3610
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
3592
3611
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
@@ -3595,67 +3614,67 @@ var watermark = function watermark(option) {
3595
3614
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3596
3615
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
3597
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
3598
- /* 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; });
3599
3618
  /* unused harmony export getView */
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return register; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryList; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskRejectHtml; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskRejectHtml; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskRead; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskReadIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return rejectAndEnd; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toSendMsg; });
3609
- /* 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; });
3610
3629
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return handleInfo; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginUserInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return wss; });
3614
- /* 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; });
3615
3634
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
3616
3635
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
3617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTransferIndex; });
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTransfer; });
3619
- /* 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; });
3620
3639
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3621
3640
  /* unused harmony export historyListJson */
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListJson; });
3623
- /* 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; });
3624
3643
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return isCanStartSubFlow; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionExamine; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionExamine; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTakeAdvice; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTakeAdvice; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskStartDraft; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSupervise; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSuperviseSub; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskStartDraft; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskReview; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskReview; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionSeal; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionSeal; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTwoOfficesDispatch; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return twoOfficesDispatch; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toResetProcessIndex; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return resetProcess; });
3642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskContinuationIndex; });
3643
- /* 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; });
3644
3663
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
3645
3664
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
3646
3665
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3647
- /* 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; });
3648
3667
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
3649
3668
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadWithDraw; });
3651
- /* 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; });
3652
3671
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendList; });
3654
- /* 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; });
3655
3674
  /* unused harmony export sendSave */
3656
3675
  /* unused harmony export sendUpdate */
3657
3676
  /* unused harmony export sendDelete */
3658
- /* 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; });
3659
3678
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3660
3679
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3661
3680
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
@@ -3709,6 +3728,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
3709
3728
  // 框架 - 搜索
3710
3729
  var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
3711
3730
 
3731
+ // 系统参数
3732
+ var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
3733
+
3712
3734
  // 附件相关
3713
3735
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3714
3736
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
@@ -4423,7 +4445,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4423
4445
  // ESM COMPAT FLAG
4424
4446
  __webpack_require__.r(__webpack_exports__);
4425
4447
 
4426
- // 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=5f8259cf&
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&
4427
4449
  var render = function () {
4428
4450
  var _vm = this
4429
4451
  var _h = _vm.$createElement
@@ -4441,6 +4463,74 @@ var render = function () {
4441
4463
  ? _c(
4442
4464
  "div",
4443
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
+ ]),
4444
4534
  _c("CommonOpinions", {
4445
4535
  directives: [
4446
4536
  {
@@ -4478,12 +4568,16 @@ var render = function () {
4478
4568
  [
4479
4569
  _c(
4480
4570
  "el-form-item",
4481
- { attrs: { prop: "nextNodeId", label: "下步节点" } },
4571
+ {
4572
+ staticStyle: { "margin-top": "20px" },
4573
+ attrs: { prop: "nextNodeId", label: "下步节点" },
4574
+ },
4482
4575
  [
4483
4576
  _vm.nextNodeCheckType == "select"
4484
4577
  ? _c(
4485
4578
  "el-select",
4486
4579
  {
4580
+ staticStyle: { width: "100% !important" },
4487
4581
  attrs: { placeholder: "请选择下步节点" },
4488
4582
  model: {
4489
4583
  value: _vm.circulateForm.nextNodeId,
@@ -4534,7 +4628,7 @@ var render = function () {
4534
4628
  ref: "circulate",
4535
4629
  staticStyle: { "margin-top": "10px" },
4536
4630
  attrs: {
4537
- businessId: _vm.businessId,
4631
+ businessId: _vm.businessIds,
4538
4632
  selectorParams: _vm.params,
4539
4633
  "pending-id": _vm.pendingId,
4540
4634
  showBtn: false,
@@ -5290,58 +5384,101 @@ var render = function () {
5290
5384
  },
5291
5385
  },
5292
5386
  [
5293
- _c(
5294
- "el-select",
5295
- {
5296
- attrs: {
5297
- placeholder:
5298
- "请选择下步操作",
5299
- disabled:
5300
- _vm.operationList &&
5301
- _vm.operationList
5302
- .length == 1,
5303
- },
5304
- on: {
5305
- change: function (
5306
- $event
5307
- ) {
5308
- _vm.selecNext(
5309
- $event,
5310
- true
5311
- )
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
+ },
5312
5426
  },
5313
- },
5314
- model: {
5315
- value:
5316
- _vm.nextNode
5317
- .nextOperate,
5318
- callback: function (
5319
- $$v
5320
- ) {
5321
- _vm.$set(
5322
- _vm.nextNode,
5323
- "nextOperate",
5324
- $$v
5325
- )
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",
5326
5453
  },
5327
- expression:
5328
- "nextNode.nextOperate",
5329
- },
5330
- },
5331
- _vm._l(
5332
- _vm.operationList,
5333
- function (items) {
5334
- return _c("el-option", {
5335
- key: items.key,
5336
- attrs: {
5337
- label: items.value,
5338
- value: items.key,
5454
+ on: {
5455
+ change: function (
5456
+ $event
5457
+ ) {
5458
+ _vm.selecNext(
5459
+ $event,
5460
+ true
5461
+ )
5339
5462
  },
5340
- })
5341
- }
5342
- ),
5343
- 1
5344
- ),
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(),
5345
5482
  ],
5346
5483
  1
5347
5484
  )
@@ -6984,7 +7121,7 @@ var staticRenderFns = []
6984
7121
  render._withStripped = true
6985
7122
 
6986
7123
 
6987
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5f8259cf&
7124
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5e28124e&
6988
7125
 
6989
7126
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6990
7127
  var regenerator_ = __webpack_require__(4);
@@ -7947,7 +8084,7 @@ var _components;
7947
8084
  }
7948
8085
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
7949
8086
  util["a" /* default */].ajax({
7950
- url: data.id ? api["pc" /* updateCommonOpinion */] : api["Ab" /* saveCommonOpinion */],
8087
+ url: data.id ? api["qc" /* updateCommonOpinion */] : api["Bb" /* saveCommonOpinion */],
7951
8088
  data: info,
7952
8089
  header: { 'Content-Type': 'multipart/form-data' },
7953
8090
  method: 'post'
@@ -8615,8 +8752,8 @@ processFormvue_type_template_id_d7f4c800_render._withStripped = true
8615
8752
 
8616
8753
  // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=d7f4c800&
8617
8754
 
8618
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=1de54739&
8619
- var selectUservue_type_template_id_1de54739_render = function () {
8755
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=12e8d2a9&
8756
+ var selectUservue_type_template_id_12e8d2a9_render = function () {
8620
8757
  var _vm = this
8621
8758
  var _h = _vm.$createElement
8622
8759
  var _c = _vm._self._c || _h
@@ -8733,6 +8870,7 @@ var selectUservue_type_template_id_1de54739_render = function () {
8733
8870
  !_vm.isCustomUser ||
8734
8871
  _vm.isCurrentNodeForbiddenChangeCandidate == 1,
8735
8872
  filterable: Boolean(_vm.isCustomUser),
8873
+ where: _vm.newWhere,
8736
8874
  multiple: _vm.newMultiple,
8737
8875
  param: Object.assign({}, _vm.newParams, { info: "no" }),
8738
8876
  disableds: _vm.disableds,
@@ -8759,11 +8897,11 @@ var selectUservue_type_template_id_1de54739_render = function () {
8759
8897
  2
8760
8898
  )
8761
8899
  }
8762
- var selectUservue_type_template_id_1de54739_staticRenderFns = []
8763
- selectUservue_type_template_id_1de54739_render._withStripped = true
8900
+ var selectUservue_type_template_id_12e8d2a9_staticRenderFns = []
8901
+ selectUservue_type_template_id_12e8d2a9_render._withStripped = true
8764
8902
 
8765
8903
 
8766
- // CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=1de54739&
8904
+ // CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=12e8d2a9&
8767
8905
 
8768
8906
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=script&lang=js&
8769
8907
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -8858,6 +8996,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8858
8996
  //
8859
8997
  //
8860
8998
  //
8999
+ //
8861
9000
 
8862
9001
 
8863
9002
 
@@ -8951,7 +9090,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8951
9090
  newNextUser: [],
8952
9091
  newOptions: [],
8953
9092
  newSelectUserList: [],
8954
- url: api["db" /* handleInfo */],
9093
+ url: api["eb" /* handleInfo */],
8955
9094
  newCheckboxList: [],
8956
9095
  newPresetEdit: 0,
8957
9096
  newMultiple: false,
@@ -8966,6 +9105,11 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8966
9105
  };
8967
9106
  },
8968
9107
 
9108
+ computed: {
9109
+ newWhere: function newWhere() {
9110
+ return _extends({ mid: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId + '-org-1' }, this.where);
9111
+ }
9112
+ },
8969
9113
  watch: {
8970
9114
  newPresetEdit: function newPresetEdit(val) {
8971
9115
  var _this = this;
@@ -9068,7 +9212,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
9068
9212
  if (query !== '') {
9069
9213
  this.searchLoading = true;
9070
9214
  util["a" /* default */].ajax({
9071
- url: api["db" /* handleInfo */],
9215
+ url: api["eb" /* handleInfo */],
9072
9216
  params: { searchKey: query, query: query, type: 'user' }
9073
9217
  }).then(function (res) {
9074
9218
  var status = res.status,
@@ -9239,8 +9383,8 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
9239
9383
 
9240
9384
  var selectUser_component = Object(componentNormalizer["a" /* default */])(
9241
9385
  src_selectUservue_type_script_lang_js_,
9242
- selectUservue_type_template_id_1de54739_render,
9243
- selectUservue_type_template_id_1de54739_staticRenderFns,
9386
+ selectUservue_type_template_id_12e8d2a9_render,
9387
+ selectUservue_type_template_id_12e8d2a9_staticRenderFns,
9244
9388
  false,
9245
9389
  null,
9246
9390
  null,
@@ -10567,7 +10711,7 @@ var processFormvue_type_script_lang_js_components;
10567
10711
  if (mainConfig) {
10568
10712
  this.userModel = JSON.parse(mainConfig).userModel;
10569
10713
  } else {
10570
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
10714
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
10571
10715
  var status = res.status,
10572
10716
  data = res.data;
10573
10717
 
@@ -10798,7 +10942,7 @@ var processFormvue_type_script_lang_js_components;
10798
10942
  params = newParm;
10799
10943
  }
10800
10944
  util["a" /* default */].ajax({
10801
- 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 */],
10802
10946
  method: 'post',
10803
10947
  data: params
10804
10948
  }).then(function (res) {
@@ -10998,7 +11142,7 @@ var processFormvue_type_script_lang_js_components;
10998
11142
  businessId: this.businessId
10999
11143
  };
11000
11144
  // 获取节点
11001
- 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) {
11002
11146
  //pc接口返回数据处理
11003
11147
  var status = res.status,
11004
11148
  message = res.message,
@@ -11478,7 +11622,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
11478
11622
  notificationType = _sendInfo.notificationType;
11479
11623
 
11480
11624
  var params = {
11481
- url: api["Gb" /* sendMsg */],
11625
+ url: api["Hb" /* sendMsg */],
11482
11626
  headers: { Accept: 'application/json,text/plain' },
11483
11627
  method: 'post',
11484
11628
  data: {
@@ -11540,7 +11684,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
11540
11684
 
11541
11685
  this.loading = true;
11542
11686
  util["a" /* default */].ajax({
11543
- url: api["Yb" /* toSendMsg */],
11687
+ url: api["Zb" /* toSendMsg */],
11544
11688
  params: { pendingId: this.$attrs.pendingId }
11545
11689
  }).then(function (res) {
11546
11690
  var status = res.status,
@@ -12405,7 +12549,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
12405
12549
  userId: util["a" /* default */].getStorage('userId'),
12406
12550
  nextNodeId: _this2.nextNode.nextNodeId
12407
12551
  };
12408
- 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) {
12409
12553
  var status = res.status,
12410
12554
  message = res.message;
12411
12555
 
@@ -12469,7 +12613,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
12469
12613
  isSinglePage: false,
12470
12614
  opinion: this.option
12471
12615
  };
12472
- 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) {
12473
12617
  var status = res.status,
12474
12618
  message = res.message,
12475
12619
  _res$data = res.data,
@@ -13262,7 +13406,7 @@ var startTaskReadvue_type_script_lang_js_components;
13262
13406
  taskExamine = this.taskExamine;
13263
13407
 
13264
13408
  var params = {
13265
- url: api["jc" /* toTaskTransferIndex */],
13409
+ url: api["kc" /* toTaskTransferIndex */],
13266
13410
  params: {
13267
13411
  opinion: opinion,
13268
13412
  pendingId: pendingId,
@@ -13387,7 +13531,7 @@ var startTaskReadvue_type_script_lang_js_components;
13387
13531
  var _this4 = this;
13388
13532
 
13389
13533
  var params = {
13390
- url: api["ac" /* toStartTaskRead */],
13534
+ url: api["bc" /* toStartTaskRead */],
13391
13535
  params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
13392
13536
  };
13393
13537
  if (this.typeCode == 'read') {
@@ -13476,7 +13620,7 @@ var startTaskReadvue_type_script_lang_js_components;
13476
13620
  type = this.type;
13477
13621
 
13478
13622
  var params = {
13479
- url: api["Sb" /* taskTransfer */],
13623
+ url: api["Tb" /* taskTransfer */],
13480
13624
  data: {
13481
13625
  choiceDeptId: choiceDeptId,
13482
13626
  choiceOrgId: choiceOrgId,
@@ -13575,7 +13719,7 @@ var startTaskReadvue_type_script_lang_js_components;
13575
13719
  params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
13576
13720
  }
13577
13721
  util["a" /* default */].ajax({
13578
- url: api["Mb" /* taskReadHtml */],
13722
+ url: api["Nb" /* taskReadHtml */],
13579
13723
  params: { taskAction: _this8.type },
13580
13724
  headers: {
13581
13725
  Accept: 'application/json,text/plain'
@@ -14455,7 +14599,7 @@ var resetvue_type_script_lang_js_components;
14455
14599
  if (mainConfig) {
14456
14600
  this.userModel = JSON.parse(mainConfig).userModel;
14457
14601
  } else {
14458
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
14602
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
14459
14603
  var status = res.status,
14460
14604
  data = res.data;
14461
14605
 
@@ -14663,7 +14807,7 @@ var resetvue_type_script_lang_js_components;
14663
14807
  }, _this4.subParams);
14664
14808
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
14665
14809
  util["a" /* default */].ajax({
14666
- url: _this4.type == 'reset' ? api["zb" /* resetProcess */] : api["Kb" /* taskContinuation */],
14810
+ url: _this4.type == 'reset' ? api["Ab" /* resetProcess */] : api["Lb" /* taskContinuation */],
14667
14811
  method: 'post',
14668
14812
  data: params
14669
14813
  }).then(function (res) {
@@ -14867,7 +15011,7 @@ var resetvue_type_script_lang_js_components;
14867
15011
  var _this7 = this;
14868
15012
 
14869
15013
  var params = {
14870
- url: this.type == 'continuation' ? api["cc" /* toTaskContinuationIndex */] : api["Xb" /* toResetProcessIndex */],
15014
+ url: this.type == 'continuation' ? api["dc" /* toTaskContinuationIndex */] : api["Yb" /* toResetProcessIndex */],
14871
15015
  params: resetvue_type_script_lang_js_extends({
14872
15016
  appId: this.appId
14873
15017
  }, this.flowParams)
@@ -14973,8 +15117,8 @@ var reset_component = Object(componentNormalizer["a" /* default */])(
14973
15117
  )
14974
15118
 
14975
15119
  /* harmony default export */ var src_reset = (reset_component.exports);
14976
- // 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&
14977
- 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 () {
14978
15122
  var _vm = this
14979
15123
  var _h = _vm.$createElement
14980
15124
  var _c = _vm._self._c || _h
@@ -15092,6 +15236,7 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
15092
15236
  nextUser: _vm.infoList.nextOtherOrgObj,
15093
15237
  multiple: _vm.newMultiple,
15094
15238
  mix: _vm.otherMix,
15239
+ disableds: _vm.otherOrgDisabledObjId,
15095
15240
  types:
15096
15241
  _vm.foreignOrgTabs.length > 0
15097
15242
  ? _vm.foreignOrgTabs
@@ -15228,11 +15373,11 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
15228
15373
  1
15229
15374
  )
15230
15375
  }
15231
- var taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns = []
15232
- 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
15233
15378
 
15234
15379
 
15235
- // 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&
15236
15381
 
15237
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&
15238
15383
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -15366,6 +15511,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15366
15511
  //
15367
15512
  //
15368
15513
  //
15514
+ //
15369
15515
 
15370
15516
 
15371
15517
 
@@ -15404,6 +15550,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15404
15550
  foreignOrgTabsParam: {},
15405
15551
  currentOrgTabsParam: {},
15406
15552
  currentOrgProcessKey: '',
15553
+ otherOrgDisabledObjId: [],
15407
15554
  isSubFlow: true,
15408
15555
  choiceDeptId: '',
15409
15556
  choiceOrgId: '',
@@ -15449,7 +15596,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15449
15596
  pendingId = this.pendingId;
15450
15597
 
15451
15598
  var params = {
15452
- url: api["Pb" /* taskReview */],
15599
+ url: api["Qb" /* taskReview */],
15453
15600
  data: {
15454
15601
  nextUserId: nextOtherOrgObj.join(','),
15455
15602
  notificationType: noticeType.join(','),
@@ -15485,7 +15632,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15485
15632
  var _this2 = this;
15486
15633
 
15487
15634
  var params = {
15488
- url: api["ec" /* toTaskReview */],
15635
+ url: api["fc" /* toTaskReview */],
15489
15636
  params: { pendingId: this.pendingId }
15490
15637
  };
15491
15638
  util["a" /* default */].ajax(params).then(function (res) {
@@ -15521,7 +15668,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15521
15668
  var _this3 = this;
15522
15669
 
15523
15670
  var params = {
15524
- 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 */],
15525
15672
  params: { pendingId: this.pendingId },
15526
15673
  headers: { Accept: 'application/json,text/plain' }
15527
15674
  };
@@ -15539,6 +15686,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15539
15686
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
15540
15687
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
15541
15688
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
15689
+ otherOrgDisabledObjId = _res$data2.otherOrgDisabledObjId,
15542
15690
  orgNames = _res$data2.orgNames,
15543
15691
  _res$data2$nodeInfoMa = _res$data2.nodeInfoMap.nodeExtAttr,
15544
15692
  userSelectionType = _res$data2$nodeInfoMa.userSelectionType,
@@ -15546,6 +15694,11 @@ var taskUnionExaminevue_type_script_lang_js_components;
15546
15694
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
15547
15695
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
15548
15696
 
15697
+ console.log(otherOrgDisabledObjId, 'otherOrgDisabledObjId');
15698
+ if (otherOrgDisabledObjId) {
15699
+ _this3.otherOrgDisabledObjId = otherOrgDisabledObjId.split(',');
15700
+ console.log(_this3.otherOrgDisabledObjId, otherOrgDisabledObjId.split(','));
15701
+ }
15549
15702
  if (res.data.customizedConfig) {
15550
15703
  if (res.data.customizedConfig.currentOrgSelectorCustomized) {
15551
15704
  _this3.currentMix = res.data.customizedConfig.currentOrgSelectorSelectMix == 'true';
@@ -15645,7 +15798,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15645
15798
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
15646
15799
  // return this.$message.warning('暂未开放,敬请期待!');
15647
15800
  var param = {
15648
- 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 */],
15649
15802
  data: {
15650
15803
  opinion: opinion,
15651
15804
  pendingId: pendingId,
@@ -15795,8 +15948,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
15795
15948
 
15796
15949
  var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
15797
15950
  component_taskUnionExaminevue_type_script_lang_js_,
15798
- taskUnionExaminevue_type_template_id_21dd6a72_render,
15799
- taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns,
15951
+ taskUnionExaminevue_type_template_id_ea4335d6_render,
15952
+ taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns,
15800
15953
  false,
15801
15954
  null,
15802
15955
  null,
@@ -19081,7 +19234,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19081
19234
  taskAction: 'complete'
19082
19235
  };
19083
19236
  util["a" /* default */].ajax({
19084
- url: api["Mb" /* taskReadHtml */],
19237
+ url: api["Nb" /* taskReadHtml */],
19085
19238
  params: { taskAction: 'complete' },
19086
19239
  headers: {
19087
19240
  Accept: 'application/json,text/plain'
@@ -19113,7 +19266,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19113
19266
 
19114
19267
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
19115
19268
  util["a" /* default */].ajax({
19116
- url: api["bc" /* toStartTaskReadIndex */],
19269
+ url: api["cc" /* toStartTaskReadIndex */],
19117
19270
  params: { pendingId: this.pendingId }
19118
19271
  }).then(function (res) {
19119
19272
  var status = res.status,
@@ -19149,7 +19302,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19149
19302
  if (mainConfig) {
19150
19303
  this.userModel = JSON.parse(mainConfig).userModel;
19151
19304
  } else {
19152
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
19305
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
19153
19306
  var status = res.status,
19154
19307
  data = res.data;
19155
19308
 
@@ -19250,7 +19403,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19250
19403
  pendingId: this.pendingId
19251
19404
  };
19252
19405
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
19253
- 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) {
19254
19407
  var status = res.status,
19255
19408
  message = res.message;
19256
19409
 
@@ -19544,7 +19697,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19544
19697
  var _this15 = this;
19545
19698
 
19546
19699
  var params = {
19547
- url: api["kb" /* isCanStartSubFlow */],
19700
+ url: api["lb" /* isCanStartSubFlow */],
19548
19701
  data: {
19549
19702
  appId: this.taskExamineInfo.appId,
19550
19703
  inevitableNode: res.inevitableNode
@@ -19654,7 +19807,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19654
19807
  this.$confirm('确认' + res.value + '?').then(function () {
19655
19808
  // return this.$message.warning('请填写意见');
19656
19809
  var params = {
19657
- url: api["yb" /* rejectAndEnd */],
19810
+ url: api["zb" /* rejectAndEnd */],
19658
19811
  headers: { Accept: 'application/json,text/plain' },
19659
19812
  method: 'post',
19660
19813
  data: {
@@ -20319,7 +20472,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20319
20472
  userId: util["a" /* default */].getStorage('userId'),
20320
20473
  type: 2
20321
20474
  };
20322
- 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) {
20323
20476
  var rCode = res.rCode,
20324
20477
  msg = res.msg,
20325
20478
  results = res.results;
@@ -20515,7 +20668,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20515
20668
  params.isSubFlow = taskExamineInfo.isSubFlow;
20516
20669
  params.nodeId = taskExamineInfo.nodeId;
20517
20670
  params.needRetrialAuth = needRetrialAuth;
20518
- 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) {
20519
20672
  var status = res.status,
20520
20673
  message = res.message;
20521
20674
 
@@ -20874,7 +21027,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20874
21027
  pendingUserIds = _nextNode.pendingUserIds;
20875
21028
 
20876
21029
  var params = {
20877
- url: api["hc" /* toTaskSuperviseSub */],
21030
+ url: api["ic" /* toTaskSuperviseSub */],
20878
21031
  params: {
20879
21032
  userId: util["a" /* default */].getStorage('userId'),
20880
21033
  urgeUserIds: pendingUserIds,
@@ -20899,7 +21052,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20899
21052
 
20900
21053
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20901
21054
  util["a" /* default */].ajax({
20902
- url: api["gc" /* toTaskSupervise */],
21055
+ url: api["hc" /* toTaskSupervise */],
20903
21056
  params: {
20904
21057
  businessId: this.businessId,
20905
21058
  userId: util["a" /* default */].getStorage('userId')
@@ -20942,8 +21095,8 @@ var supervise_component = Object(componentNormalizer["a" /* default */])(
20942
21095
  )
20943
21096
 
20944
21097
  /* harmony default export */ var supervise = (supervise_component.exports);
20945
- // 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&
20946
- 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 () {
20947
21100
  var _vm = this
20948
21101
  var _h = _vm.$createElement
20949
21102
  var _c = _vm._self._c || _h
@@ -21131,11 +21284,11 @@ var Circulatevue_type_template_id_3f042944_render = function () {
21131
21284
  1
21132
21285
  )
21133
21286
  }
21134
- var Circulatevue_type_template_id_3f042944_staticRenderFns = []
21135
- 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
21136
21289
 
21137
21290
 
21138
- // 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&
21139
21292
 
21140
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&
21141
21294
  var Circulatevue_type_script_lang_js_components;
@@ -21277,6 +21430,7 @@ var Circulatevue_type_script_lang_js_components;
21277
21430
  isOpinionRequired: 0,
21278
21431
  otherParams: { filid: 'other' },
21279
21432
  loading: false,
21433
+ subLoading: null,
21280
21434
  userModel: {}
21281
21435
  };
21282
21436
  },
@@ -21353,14 +21507,20 @@ var Circulatevue_type_script_lang_js_components;
21353
21507
  if (!this.showBtn) {
21354
21508
  param.data.pendingId = this.pendingId;
21355
21509
  delete param.data.processDefinitionId;
21510
+ this.subLoading = util["a" /* default */].loading(this.$loading, '加载中...');
21511
+ } else {
21512
+ this.loading = true;
21356
21513
  }
21357
- this.loading = true;
21358
21514
  util["a" /* default */].ajax(param).then(function (res) {
21359
21515
  var message = res.message,
21360
21516
  status = res.status,
21361
21517
  rCode = res.rCode;
21362
21518
 
21363
- _this.loading = false;
21519
+ if (!_this.showBtn) {
21520
+ _this.subLoading.close();
21521
+ } else {
21522
+ _this.loading = false;
21523
+ }
21364
21524
  if (status == 'success' || rCode == 0) {
21365
21525
  _this.simpleTips && _this.$message.success('提交成功');
21366
21526
  _this.quit(true);
@@ -21491,8 +21651,8 @@ var Circulatevue_type_script_lang_js_components;
21491
21651
 
21492
21652
  var Circulate_component = Object(componentNormalizer["a" /* default */])(
21493
21653
  component_Circulatevue_type_script_lang_js_,
21494
- Circulatevue_type_template_id_3f042944_render,
21495
- Circulatevue_type_template_id_3f042944_staticRenderFns,
21654
+ Circulatevue_type_template_id_e3855b2c_render,
21655
+ Circulatevue_type_template_id_e3855b2c_staticRenderFns,
21496
21656
  false,
21497
21657
  null,
21498
21658
  null,
@@ -22457,6 +22617,44 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22457
22617
  //
22458
22618
  //
22459
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
+ //
22460
22658
 
22461
22659
 
22462
22660
 
@@ -22544,6 +22742,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22544
22742
  showCustomLimitTimeText: false,
22545
22743
  currentOrgDisabledObjId: [],
22546
22744
  nextNodeCheckType: 'select',
22745
+ nextOperateCheckType: 'select',
22547
22746
  readOnlyNotificationType: '',
22548
22747
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
22549
22748
  taskParams: {},
@@ -23030,7 +23229,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23030
23229
  taskAction: 'complete'
23031
23230
  };
23032
23231
  util["a" /* default */].ajax({
23033
- url: api["Mb" /* taskReadHtml */],
23232
+ url: api["Nb" /* taskReadHtml */],
23034
23233
  params: { taskAction: 'complete' },
23035
23234
  headers: {
23036
23235
  Accept: 'application/json,text/plain'
@@ -23077,7 +23276,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23077
23276
 
23078
23277
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
23079
23278
  util["a" /* default */].ajax({
23080
- url: api["bc" /* toStartTaskReadIndex */],
23279
+ url: api["cc" /* toStartTaskReadIndex */],
23081
23280
  params: { pendingId: this.pendingId }
23082
23281
  }).then(function (res) {
23083
23282
  var status = res.status,
@@ -23121,7 +23320,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23121
23320
  if (mainConfig) {
23122
23321
  this.userModel = JSON.parse(mainConfig).userModel;
23123
23322
  } else {
23124
- util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
23323
+ util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
23125
23324
  var status = res.status,
23126
23325
  data = res.data;
23127
23326
 
@@ -23222,7 +23421,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23222
23421
  pendingId: this.pendingId
23223
23422
  };
23224
23423
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
23225
- 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) {
23226
23425
  var status = res.status,
23227
23426
  message = res.message;
23228
23427
 
@@ -23528,7 +23727,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23528
23727
  var _this18 = this;
23529
23728
 
23530
23729
  var params = {
23531
- url: api["kb" /* isCanStartSubFlow */],
23730
+ url: api["lb" /* isCanStartSubFlow */],
23532
23731
  data: {
23533
23732
  appId: this.taskExamineInfo.appId,
23534
23733
  inevitableNode: res.inevitableNode
@@ -23638,7 +23837,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23638
23837
  this.$confirm('确认' + res.value + '?').then(function () {
23639
23838
  // return this.$message.warning('请填写意见');
23640
23839
  var params = {
23641
- url: api["yb" /* rejectAndEnd */],
23840
+ url: api["zb" /* rejectAndEnd */],
23642
23841
  headers: { Accept: 'application/json,text/plain' },
23643
23842
  method: 'post',
23644
23843
  data: {
@@ -23978,6 +24177,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23978
24177
  circularReadParamsMap = _res$data2.circularReadParamsMap,
23979
24178
  isPreset = _res$data2.isPreset,
23980
24179
  choiceOrgId = _res$data2.choiceOrgId,
24180
+ nextOperateCheckType = _res$data2.nextOperateCheckType,
23981
24181
  choiceDeptId = _res$data2.choiceDeptId,
23982
24182
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
23983
24183
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
@@ -24006,7 +24206,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24006
24206
  _this27.$emit('startTaskRead', res);
24007
24207
  _this27.$emit('start-task-read', res);
24008
24208
  _this27.circularReadParamsMap = circularReadParamsMap || {};
24009
- _this27.currentOrgName = currentOrgName;
24209
+ _this27.currentOrgName = _this27.nextOperateCheckType = nextOperateCheckType;
24010
24210
  _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
24011
24211
  _this27.readOnlyNotificationType = readOnlyNotificationType;
24012
24212
  _this27.isSpecial = isSpecial;
@@ -24221,6 +24421,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24221
24421
  if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
24222
24422
  this.flowSuccess(true);
24223
24423
  // this.$emit('success');
24424
+ } else {
24425
+ this.$emit('cancel');
24224
24426
  }
24225
24427
  },
24226
24428
 
@@ -24321,7 +24523,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24321
24523
  userId: util["a" /* default */].getStorage('userId'),
24322
24524
  type: 2
24323
24525
  };
24324
- 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) {
24325
24527
  var rCode = res.rCode,
24326
24528
  msg = res.msg,
24327
24529
  results = res.results;
@@ -24622,7 +24824,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24622
24824
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
24623
24825
  }
24624
24826
 
24625
- 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) {
24626
24828
  var status = res.status,
24627
24829
  message = res.message;
24628
24830