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
@@ -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'; // 上传接口
@@ -5884,8 +5905,8 @@ calendar_src_main.install = function (Vue) {
5884
5905
  };
5885
5906
 
5886
5907
  /* harmony default export */ var calendar = (calendar_src_main);
5887
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/calogin/src/main.vue?vue&type=template&id=4b7c35fc&scoped=true&
5888
- var mainvue_type_template_id_4b7c35fc_scoped_true_render = function () {
5908
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/calogin/src/main.vue?vue&type=template&id=4a913332&scoped=true&
5909
+ var mainvue_type_template_id_4a913332_scoped_true_render = function () {
5889
5910
  var _vm = this
5890
5911
  var _h = _vm.$createElement
5891
5912
  var _c = _vm._self._c || _h
@@ -5893,11 +5914,11 @@ var mainvue_type_template_id_4b7c35fc_scoped_true_render = function () {
5893
5914
  _c("span", { on: { click: _vm.getCertificate } }, [_vm._t("default")], 2),
5894
5915
  ])
5895
5916
  }
5896
- var mainvue_type_template_id_4b7c35fc_scoped_true_staticRenderFns = []
5897
- mainvue_type_template_id_4b7c35fc_scoped_true_render._withStripped = true
5917
+ var mainvue_type_template_id_4a913332_scoped_true_staticRenderFns = []
5918
+ mainvue_type_template_id_4a913332_scoped_true_render._withStripped = true
5898
5919
 
5899
5920
 
5900
- // CONCATENATED MODULE: ./packages/calogin/src/main.vue?vue&type=template&id=4b7c35fc&scoped=true&
5921
+ // CONCATENATED MODULE: ./packages/calogin/src/main.vue?vue&type=template&id=4a913332&scoped=true&
5901
5922
 
5902
5923
  // CONCATENATED MODULE: ./packages/calogin/src/plugin.js
5903
5924
  var plugin_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
@@ -6975,7 +6996,9 @@ var caPlugin = new CA_ExtInterface();
6975
6996
  return [];
6976
6997
  }
6977
6998
  },
6978
- success: Function
6999
+ success: Function,
7000
+ // 是否显示证书选择框,默认为true
7001
+ showSelect: Boolean
6979
7002
  },
6980
7003
  data: function data() {
6981
7004
  return {
@@ -6991,7 +7014,7 @@ var caPlugin = new CA_ExtInterface();
6991
7014
  computed: {
6992
7015
  param: function param() {
6993
7016
  // 生成不重复的 DLL 名称列表
6994
- var dllnames = [].concat(new Set(this.dllnames.concat(this.dllname)));
7017
+ var dllnames = Array.from(new Set(this.dllnames.concat(this.dllname)));
6995
7018
 
6996
7019
  return '<?xml version="1.0" encoding="utf-8"?>\n <authinfo>\n <liblist>\n ' + dllnames.map(function (dllname) {
6997
7020
  return '<lib type="SKF" version="1.0" dllname="' + dllname + '"><algid val="SHA1" sm2_hashalg="SM3" /></lib>';
@@ -7034,11 +7057,11 @@ var caPlugin = new CA_ExtInterface();
7034
7057
  } catch (e) {
7035
7058
  if (this.installPath) {
7036
7059
  this.$confirm('未安装控件,请进行安装控件!', '控件下载', {
7037
- confirmButtonText: '确定',
7060
+ confirmButtonText: '下载',
7038
7061
  cancelButtonText: '取消',
7039
7062
  type: 'warning'
7040
7063
  }).then(function () {
7041
- window.open(_this.installPath);
7064
+ utils_util["a" /* default */].downloadFile(_this.installPath);
7042
7065
  }).catch(function () {});
7043
7066
  } else {
7044
7067
  this.$message.error('未安装控件,请进行安装控件!');
@@ -7054,8 +7077,8 @@ var caPlugin = new CA_ExtInterface();
7054
7077
  src_plugin.clearFilter();
7055
7078
  // 初始化vctk控件
7056
7079
  src_plugin.initialize('', this.param);
7057
- // 控制证书为一个时,不弹出证书选择框
7058
- src_plugin.setChooseSingleCert(1);
7080
+ // 控制证书为一个时,并且不显示选择框时,不弹出证书选择框
7081
+ !this.showSelect && src_plugin.setChooseSingleCert(1);
7059
7082
 
7060
7083
  // 生成签名信息
7061
7084
  this.signedData = src_plugin.p7SignString(this.identifyingId, true, true);
@@ -7105,8 +7128,8 @@ var caPlugin = new CA_ExtInterface();
7105
7128
  return;
7106
7129
  }
7107
7130
  var userList = retValue.split('&&&');
7108
- if (userList.length === 1) {
7109
- //如果只有一个证书,直接获取证书信息
7131
+ if (userList.length === 1 && !_this.showSelect) {
7132
+ //如果只有一个证书,并且不显示选择框时,直接获取证书信息
7110
7133
  _this.certId = userList[0].split('||')[1];
7111
7134
  _this.getCertInfo(_this.certId);
7112
7135
  } else {
@@ -7134,11 +7157,11 @@ var caPlugin = new CA_ExtInterface();
7134
7157
  }).catch(function (err) {
7135
7158
  if (_this.installPath) {
7136
7159
  _this.$confirm('请检查是否安装并启用证书助手控件!', '控件下载', {
7137
- confirmButtonText: '确定',
7160
+ confirmButtonText: '下载',
7138
7161
  cancelButtonText: '取消',
7139
7162
  type: 'warning'
7140
7163
  }).then(function () {
7141
- window.open(_this.installPath);
7164
+ utils_util["a" /* default */].downloadFile(_this.installPath);
7142
7165
  }).catch(function () {});
7143
7166
  } else {
7144
7167
  _this.$message.error('请检查是否安装并启用证书助手控件!');
@@ -7325,11 +7348,11 @@ var caPlugin = new CA_ExtInterface();
7325
7348
 
7326
7349
  var calogin_src_main_component = normalizeComponent(
7327
7350
  packages_calogin_src_mainvue_type_script_lang_js_,
7328
- mainvue_type_template_id_4b7c35fc_scoped_true_render,
7329
- mainvue_type_template_id_4b7c35fc_scoped_true_staticRenderFns,
7351
+ mainvue_type_template_id_4a913332_scoped_true_render,
7352
+ mainvue_type_template_id_4a913332_scoped_true_staticRenderFns,
7330
7353
  false,
7331
7354
  null,
7332
- "4b7c35fc",
7355
+ "4a913332",
7333
7356
  null
7334
7357
 
7335
7358
  )
@@ -26737,8 +26760,8 @@ form_src_main.install = function (Vue) {
26737
26760
  };
26738
26761
 
26739
26762
  /* harmony default export */ var packages_form = (form_src_main);
26740
- // 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&
26741
- var mainvue_type_template_id_9a490c28_render = function () {
26763
+ // 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&
26764
+ var mainvue_type_template_id_5e28124e_render = function () {
26742
26765
  var _vm = this
26743
26766
  var _h = _vm.$createElement
26744
26767
  var _c = _vm._self._c || _h
@@ -26755,6 +26778,74 @@ var mainvue_type_template_id_9a490c28_render = function () {
26755
26778
  ? _c(
26756
26779
  "div",
26757
26780
  [
26781
+ _c("div", { staticClass: "es-flow-top" }, [
26782
+ _c(
26783
+ "div",
26784
+ { staticClass: "es-flow-title" },
26785
+ [
26786
+ _c(
26787
+ "span",
26788
+ {
26789
+ directives: [
26790
+ {
26791
+ name: "show",
26792
+ rawName: "v-show",
26793
+ value: !_vm.shrink,
26794
+ expression: "!shrink",
26795
+ },
26796
+ ],
26797
+ },
26798
+ [
26799
+ _vm._v(
26800
+ "当前节点:" +
26801
+ _vm._s(
26802
+ _vm.isFlow
26803
+ ? _vm.nodeName || "拟稿"
26804
+ : _vm.NodeName
26805
+ )
26806
+ ),
26807
+ ]
26808
+ ),
26809
+ _vm.showShrink
26810
+ ? _c("es-button", {
26811
+ staticClass: "es-icon",
26812
+ attrs: {
26813
+ size: "medium",
26814
+ icon: _vm.shrink
26815
+ ? "es-icon-indent"
26816
+ : "es-icon-increase",
26817
+ },
26818
+ on: { click: _vm.setShrink },
26819
+ })
26820
+ : _vm._e(),
26821
+ ],
26822
+ 1
26823
+ ),
26824
+ _c(
26825
+ "div",
26826
+ {
26827
+ directives: [
26828
+ {
26829
+ name: "show",
26830
+ rawName: "v-show",
26831
+ value: !_vm.shrink,
26832
+ expression: "!shrink",
26833
+ },
26834
+ ],
26835
+ staticClass: "es-opinion",
26836
+ },
26837
+ [
26838
+ _c(
26839
+ "span",
26840
+ {
26841
+ staticClass: "es-eidt-title",
26842
+ style: "" + (!_vm.isFlow ? "color:red" : ""),
26843
+ },
26844
+ [_vm._v("填写意见")]
26845
+ ),
26846
+ ]
26847
+ ),
26848
+ ]),
26758
26849
  _c("CommonOpinions", {
26759
26850
  directives: [
26760
26851
  {
@@ -26792,12 +26883,16 @@ var mainvue_type_template_id_9a490c28_render = function () {
26792
26883
  [
26793
26884
  _c(
26794
26885
  "el-form-item",
26795
- { attrs: { prop: "nextNodeId", label: "下步节点" } },
26886
+ {
26887
+ staticStyle: { "margin-top": "20px" },
26888
+ attrs: { prop: "nextNodeId", label: "下步节点" },
26889
+ },
26796
26890
  [
26797
26891
  _vm.nextNodeCheckType == "select"
26798
26892
  ? _c(
26799
26893
  "el-select",
26800
26894
  {
26895
+ staticStyle: { width: "100% !important" },
26801
26896
  attrs: { placeholder: "请选择下步节点" },
26802
26897
  model: {
26803
26898
  value: _vm.circulateForm.nextNodeId,
@@ -26848,7 +26943,7 @@ var mainvue_type_template_id_9a490c28_render = function () {
26848
26943
  ref: "circulate",
26849
26944
  staticStyle: { "margin-top": "10px" },
26850
26945
  attrs: {
26851
- businessId: _vm.businessId,
26946
+ businessId: _vm.businessIds,
26852
26947
  selectorParams: _vm.params,
26853
26948
  "pending-id": _vm.pendingId,
26854
26949
  showBtn: false,
@@ -27604,58 +27699,101 @@ var mainvue_type_template_id_9a490c28_render = function () {
27604
27699
  },
27605
27700
  },
27606
27701
  [
27607
- _c(
27608
- "el-select",
27609
- {
27610
- attrs: {
27611
- placeholder:
27612
- "请选择下步操作",
27613
- disabled:
27614
- _vm.operationList &&
27615
- _vm.operationList
27616
- .length == 1,
27617
- },
27618
- on: {
27619
- change: function (
27620
- $event
27621
- ) {
27622
- _vm.selecNext(
27623
- $event,
27624
- true
27625
- )
27702
+ _vm.nextOperateCheckType ==
27703
+ "select"
27704
+ ? _c(
27705
+ "el-select",
27706
+ {
27707
+ attrs: {
27708
+ placeholder:
27709
+ "请选择下步操作",
27710
+ disabled:
27711
+ _vm.operationList &&
27712
+ _vm.operationList
27713
+ .length == 1,
27714
+ },
27715
+ on: {
27716
+ change: function (
27717
+ $event
27718
+ ) {
27719
+ _vm.selecNext(
27720
+ $event,
27721
+ true
27722
+ )
27723
+ },
27724
+ },
27725
+ model: {
27726
+ value:
27727
+ _vm.nextNode
27728
+ .nextOperate,
27729
+ callback: function (
27730
+ $$v
27731
+ ) {
27732
+ _vm.$set(
27733
+ _vm.nextNode,
27734
+ "nextOperate",
27735
+ $$v
27736
+ )
27737
+ },
27738
+ expression:
27739
+ "nextNode.nextOperate",
27740
+ },
27626
27741
  },
27627
- },
27628
- model: {
27629
- value:
27630
- _vm.nextNode
27631
- .nextOperate,
27632
- callback: function (
27633
- $$v
27634
- ) {
27635
- _vm.$set(
27636
- _vm.nextNode,
27637
- "nextOperate",
27638
- $$v
27639
- )
27742
+ _vm._l(
27743
+ _vm.operationList,
27744
+ function (items) {
27745
+ return _c(
27746
+ "el-option",
27747
+ {
27748
+ key: items.key,
27749
+ attrs: {
27750
+ label:
27751
+ items.value,
27752
+ value:
27753
+ items.key,
27754
+ },
27755
+ }
27756
+ )
27757
+ }
27758
+ ),
27759
+ 1
27760
+ )
27761
+ : _vm.nextOperateCheckType ==
27762
+ "radio"
27763
+ ? _c("es-radio-group", {
27764
+ attrs: {
27765
+ data: _vm.operationList,
27766
+ "value-key": "key",
27767
+ "label-key": "value",
27640
27768
  },
27641
- expression:
27642
- "nextNode.nextOperate",
27643
- },
27644
- },
27645
- _vm._l(
27646
- _vm.operationList,
27647
- function (items) {
27648
- return _c("el-option", {
27649
- key: items.key,
27650
- attrs: {
27651
- label: items.value,
27652
- value: items.key,
27769
+ on: {
27770
+ change: function (
27771
+ $event
27772
+ ) {
27773
+ _vm.selecNext(
27774
+ $event,
27775
+ true
27776
+ )
27653
27777
  },
27654
- })
27655
- }
27656
- ),
27657
- 1
27658
- ),
27778
+ },
27779
+ model: {
27780
+ value:
27781
+ _vm.nextNode
27782
+ .nextOperate,
27783
+ callback: function (
27784
+ $$v
27785
+ ) {
27786
+ _vm.$set(
27787
+ _vm.nextNode,
27788
+ "nextOperate",
27789
+ $$v
27790
+ )
27791
+ },
27792
+ expression:
27793
+ "nextNode.nextOperate",
27794
+ },
27795
+ })
27796
+ : _vm._e(),
27659
27797
  ],
27660
27798
  1
27661
27799
  )
@@ -29294,11 +29432,11 @@ var mainvue_type_template_id_9a490c28_render = function () {
29294
29432
  )
29295
29433
  : _vm._e()
29296
29434
  }
29297
- var mainvue_type_template_id_9a490c28_staticRenderFns = []
29298
- mainvue_type_template_id_9a490c28_render._withStripped = true
29435
+ var mainvue_type_template_id_5e28124e_staticRenderFns = []
29436
+ mainvue_type_template_id_5e28124e_render._withStripped = true
29299
29437
 
29300
29438
 
29301
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=9a490c28&
29439
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5e28124e&
29302
29440
 
29303
29441
  // 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/CommonOpinions.vue?vue&type=template&id=fdf49dec&
29304
29442
  var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
@@ -30248,7 +30386,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
30248
30386
  }
30249
30387
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
30250
30388
  utils_util["a" /* default */].ajax({
30251
- url: data.id ? api["pc" /* updateCommonOpinion */] : api["Ab" /* saveCommonOpinion */],
30389
+ url: data.id ? api["qc" /* updateCommonOpinion */] : api["Bb" /* saveCommonOpinion */],
30252
30390
  data: info,
30253
30391
  header: { 'Content-Type': 'multipart/form-data' },
30254
30392
  method: 'post'
@@ -31254,7 +31392,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31254
31392
  newNextUser: [],
31255
31393
  newOptions: [],
31256
31394
  newSelectUserList: [],
31257
- url: api["db" /* handleInfo */],
31395
+ url: api["eb" /* handleInfo */],
31258
31396
  newCheckboxList: [],
31259
31397
  newPresetEdit: 0,
31260
31398
  newMultiple: false,
@@ -31376,7 +31514,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31376
31514
  if (query !== '') {
31377
31515
  this.searchLoading = true;
31378
31516
  utils_util["a" /* default */].ajax({
31379
- url: api["db" /* handleInfo */],
31517
+ url: api["eb" /* handleInfo */],
31380
31518
  params: { searchKey: query, query: query, type: 'user' }
31381
31519
  }).then(function (res) {
31382
31520
  var status = res.status,
@@ -32875,7 +33013,7 @@ var processFormvue_type_script_lang_js_components;
32875
33013
  if (mainConfig) {
32876
33014
  this.userModel = JSON.parse(mainConfig).userModel;
32877
33015
  } else {
32878
- utils_util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
33016
+ utils_util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
32879
33017
  var status = res.status,
32880
33018
  data = res.data;
32881
33019
 
@@ -33106,7 +33244,7 @@ var processFormvue_type_script_lang_js_components;
33106
33244
  params = newParm;
33107
33245
  }
33108
33246
  utils_util["a" /* default */].ajax({
33109
- url: _this4.isFreeStartFlow ? api["E" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Hb" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["xb" /* register */],
33247
+ url: _this4.isFreeStartFlow ? api["E" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Ib" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["yb" /* register */],
33110
33248
  method: 'post',
33111
33249
  data: params
33112
33250
  }).then(function (res) {
@@ -33306,7 +33444,7 @@ var processFormvue_type_script_lang_js_components;
33306
33444
  businessId: this.businessId
33307
33445
  };
33308
33446
  // 获取节点
33309
- utils_util["a" /* default */].ajax({ url: api["Zb" /* toStartFlow */], params: params }).then(function (res) {
33447
+ utils_util["a" /* default */].ajax({ url: api["ac" /* toStartFlow */], params: params }).then(function (res) {
33310
33448
  //pc接口返回数据处理
33311
33449
  var status = res.status,
33312
33450
  message = res.message,
@@ -33943,7 +34081,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
33943
34081
  notificationType = _sendInfo.notificationType;
33944
34082
 
33945
34083
  var params = {
33946
- url: api["Gb" /* sendMsg */],
34084
+ url: api["Hb" /* sendMsg */],
33947
34085
  headers: { Accept: 'application/json,text/plain' },
33948
34086
  method: 'post',
33949
34087
  data: {
@@ -34005,7 +34143,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
34005
34143
 
34006
34144
  this.loading = true;
34007
34145
  utils_util["a" /* default */].ajax({
34008
- url: api["Yb" /* toSendMsg */],
34146
+ url: api["Zb" /* toSendMsg */],
34009
34147
  params: { pendingId: this.$attrs.pendingId }
34010
34148
  }).then(function (res) {
34011
34149
  var status = res.status,
@@ -34870,7 +35008,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
34870
35008
  userId: utils_util["a" /* default */].getStorage('userId'),
34871
35009
  nextNodeId: _this2.nextNode.nextNodeId
34872
35010
  };
34873
- utils_util["a" /* default */].ajax({ url: api["Ob" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
35011
+ utils_util["a" /* default */].ajax({ url: api["Pb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
34874
35012
  var status = res.status,
34875
35013
  message = res.message;
34876
35014
 
@@ -34934,7 +35072,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
34934
35072
  isSinglePage: false,
34935
35073
  opinion: this.option
34936
35074
  };
34937
- utils_util["a" /* default */].ajax({ url: api["dc" /* toTaskRejectHtml */], params: params }).then(function (res) {
35075
+ utils_util["a" /* default */].ajax({ url: api["ec" /* toTaskRejectHtml */], params: params }).then(function (res) {
34938
35076
  var status = res.status,
34939
35077
  message = res.message,
34940
35078
  _res$data = res.data,
@@ -35727,7 +35865,7 @@ var startTaskReadvue_type_script_lang_js_components;
35727
35865
  taskExamine = this.taskExamine;
35728
35866
 
35729
35867
  var params = {
35730
- url: api["jc" /* toTaskTransferIndex */],
35868
+ url: api["kc" /* toTaskTransferIndex */],
35731
35869
  params: {
35732
35870
  opinion: opinion,
35733
35871
  pendingId: pendingId,
@@ -35852,7 +35990,7 @@ var startTaskReadvue_type_script_lang_js_components;
35852
35990
  var _this4 = this;
35853
35991
 
35854
35992
  var params = {
35855
- url: api["ac" /* toStartTaskRead */],
35993
+ url: api["bc" /* toStartTaskRead */],
35856
35994
  params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
35857
35995
  };
35858
35996
  if (this.typeCode == 'read') {
@@ -35941,7 +36079,7 @@ var startTaskReadvue_type_script_lang_js_components;
35941
36079
  type = this.type;
35942
36080
 
35943
36081
  var params = {
35944
- url: api["Sb" /* taskTransfer */],
36082
+ url: api["Tb" /* taskTransfer */],
35945
36083
  data: {
35946
36084
  choiceDeptId: choiceDeptId,
35947
36085
  choiceOrgId: choiceOrgId,
@@ -36040,7 +36178,7 @@ var startTaskReadvue_type_script_lang_js_components;
36040
36178
  params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
36041
36179
  }
36042
36180
  utils_util["a" /* default */].ajax({
36043
- url: api["Mb" /* taskReadHtml */],
36181
+ url: api["Nb" /* taskReadHtml */],
36044
36182
  params: { taskAction: _this8.type },
36045
36183
  headers: {
36046
36184
  Accept: 'application/json,text/plain'
@@ -36920,7 +37058,7 @@ var resetvue_type_script_lang_js_components;
36920
37058
  if (mainConfig) {
36921
37059
  this.userModel = JSON.parse(mainConfig).userModel;
36922
37060
  } else {
36923
- utils_util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
37061
+ utils_util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
36924
37062
  var status = res.status,
36925
37063
  data = res.data;
36926
37064
 
@@ -37128,7 +37266,7 @@ var resetvue_type_script_lang_js_components;
37128
37266
  }, _this4.subParams);
37129
37267
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
37130
37268
  utils_util["a" /* default */].ajax({
37131
- url: _this4.type == 'reset' ? api["zb" /* resetProcess */] : api["Kb" /* taskContinuation */],
37269
+ url: _this4.type == 'reset' ? api["Ab" /* resetProcess */] : api["Lb" /* taskContinuation */],
37132
37270
  method: 'post',
37133
37271
  data: params
37134
37272
  }).then(function (res) {
@@ -37332,7 +37470,7 @@ var resetvue_type_script_lang_js_components;
37332
37470
  var _this7 = this;
37333
37471
 
37334
37472
  var params = {
37335
- url: this.type == 'continuation' ? api["cc" /* toTaskContinuationIndex */] : api["Xb" /* toResetProcessIndex */],
37473
+ url: this.type == 'continuation' ? api["dc" /* toTaskContinuationIndex */] : api["Yb" /* toResetProcessIndex */],
37336
37474
  params: resetvue_type_script_lang_js_extends({
37337
37475
  appId: this.appId
37338
37476
  }, this.flowParams)
@@ -37438,8 +37576,8 @@ var reset_component = normalizeComponent(
37438
37576
  )
37439
37577
 
37440
37578
  /* harmony default export */ var src_reset = (reset_component.exports);
37441
- // 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&
37442
- var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
37579
+ // 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&
37580
+ var taskUnionExaminevue_type_template_id_ea4335d6_render = function () {
37443
37581
  var _vm = this
37444
37582
  var _h = _vm.$createElement
37445
37583
  var _c = _vm._self._c || _h
@@ -37557,6 +37695,7 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
37557
37695
  nextUser: _vm.infoList.nextOtherOrgObj,
37558
37696
  multiple: _vm.newMultiple,
37559
37697
  mix: _vm.otherMix,
37698
+ disableds: _vm.otherOrgDisabledObjId,
37560
37699
  types:
37561
37700
  _vm.foreignOrgTabs.length > 0
37562
37701
  ? _vm.foreignOrgTabs
@@ -37693,11 +37832,11 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
37693
37832
  1
37694
37833
  )
37695
37834
  }
37696
- var taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns = []
37697
- taskUnionExaminevue_type_template_id_21dd6a72_render._withStripped = true
37835
+ var taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns = []
37836
+ taskUnionExaminevue_type_template_id_ea4335d6_render._withStripped = true
37698
37837
 
37699
37838
 
37700
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=21dd6a72&
37839
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=ea4335d6&
37701
37840
 
37702
37841
  // 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&
37703
37842
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -37831,6 +37970,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37831
37970
  //
37832
37971
  //
37833
37972
  //
37973
+ //
37834
37974
 
37835
37975
 
37836
37976
 
@@ -37869,6 +38009,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37869
38009
  foreignOrgTabsParam: {},
37870
38010
  currentOrgTabsParam: {},
37871
38011
  currentOrgProcessKey: '',
38012
+ otherOrgDisabledObjId: [],
37872
38013
  isSubFlow: true,
37873
38014
  choiceDeptId: '',
37874
38015
  choiceOrgId: '',
@@ -37914,7 +38055,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37914
38055
  pendingId = this.pendingId;
37915
38056
 
37916
38057
  var params = {
37917
- url: api["Pb" /* taskReview */],
38058
+ url: api["Qb" /* taskReview */],
37918
38059
  data: {
37919
38060
  nextUserId: nextOtherOrgObj.join(','),
37920
38061
  notificationType: noticeType.join(','),
@@ -37950,7 +38091,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37950
38091
  var _this2 = this;
37951
38092
 
37952
38093
  var params = {
37953
- url: api["ec" /* toTaskReview */],
38094
+ url: api["fc" /* toTaskReview */],
37954
38095
  params: { pendingId: this.pendingId }
37955
38096
  };
37956
38097
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -37986,7 +38127,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37986
38127
  var _this3 = this;
37987
38128
 
37988
38129
  var params = {
37989
- 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 */],
38130
+ 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 */],
37990
38131
  params: { pendingId: this.pendingId },
37991
38132
  headers: { Accept: 'application/json,text/plain' }
37992
38133
  };
@@ -38004,6 +38145,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
38004
38145
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
38005
38146
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
38006
38147
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
38148
+ otherOrgDisabledObjId = _res$data2.otherOrgDisabledObjId,
38007
38149
  orgNames = _res$data2.orgNames,
38008
38150
  _res$data2$nodeInfoMa = _res$data2.nodeInfoMap.nodeExtAttr,
38009
38151
  userSelectionType = _res$data2$nodeInfoMa.userSelectionType,
@@ -38011,6 +38153,11 @@ var taskUnionExaminevue_type_script_lang_js_components;
38011
38153
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
38012
38154
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
38013
38155
 
38156
+ console.log(otherOrgDisabledObjId, 'otherOrgDisabledObjId');
38157
+ if (otherOrgDisabledObjId) {
38158
+ _this3.otherOrgDisabledObjId = otherOrgDisabledObjId.split(',');
38159
+ console.log(_this3.otherOrgDisabledObjId, otherOrgDisabledObjId.split(','));
38160
+ }
38014
38161
  if (res.data.customizedConfig) {
38015
38162
  if (res.data.customizedConfig.currentOrgSelectorCustomized) {
38016
38163
  _this3.currentMix = res.data.customizedConfig.currentOrgSelectorSelectMix == 'true';
@@ -38110,7 +38257,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
38110
38257
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
38111
38258
  // return this.$message.warning('暂未开放,敬请期待!');
38112
38259
  var param = {
38113
- 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 */],
38260
+ 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 */],
38114
38261
  data: {
38115
38262
  opinion: opinion,
38116
38263
  pendingId: pendingId,
@@ -38260,8 +38407,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
38260
38407
 
38261
38408
  var taskUnionExamine_component = normalizeComponent(
38262
38409
  component_taskUnionExaminevue_type_script_lang_js_,
38263
- taskUnionExaminevue_type_template_id_21dd6a72_render,
38264
- taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns,
38410
+ taskUnionExaminevue_type_template_id_ea4335d6_render,
38411
+ taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns,
38265
38412
  false,
38266
38413
  null,
38267
38414
  null,
@@ -41546,7 +41693,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41546
41693
  taskAction: 'complete'
41547
41694
  };
41548
41695
  utils_util["a" /* default */].ajax({
41549
- url: api["Mb" /* taskReadHtml */],
41696
+ url: api["Nb" /* taskReadHtml */],
41550
41697
  params: { taskAction: 'complete' },
41551
41698
  headers: {
41552
41699
  Accept: 'application/json,text/plain'
@@ -41578,7 +41725,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41578
41725
 
41579
41726
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
41580
41727
  utils_util["a" /* default */].ajax({
41581
- url: api["bc" /* toStartTaskReadIndex */],
41728
+ url: api["cc" /* toStartTaskReadIndex */],
41582
41729
  params: { pendingId: this.pendingId }
41583
41730
  }).then(function (res) {
41584
41731
  var status = res.status,
@@ -41614,7 +41761,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41614
41761
  if (mainConfig) {
41615
41762
  this.userModel = JSON.parse(mainConfig).userModel;
41616
41763
  } else {
41617
- utils_util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
41764
+ utils_util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
41618
41765
  var status = res.status,
41619
41766
  data = res.data;
41620
41767
 
@@ -41715,7 +41862,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41715
41862
  pendingId: this.pendingId
41716
41863
  };
41717
41864
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
41718
- utils_util["a" /* default */].ajax({ url: api["Vb" /* tempSave */], params: params }).then(function (res) {
41865
+ utils_util["a" /* default */].ajax({ url: api["Wb" /* tempSave */], params: params }).then(function (res) {
41719
41866
  var status = res.status,
41720
41867
  message = res.message;
41721
41868
 
@@ -42009,7 +42156,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42009
42156
  var _this15 = this;
42010
42157
 
42011
42158
  var params = {
42012
- url: api["kb" /* isCanStartSubFlow */],
42159
+ url: api["lb" /* isCanStartSubFlow */],
42013
42160
  data: {
42014
42161
  appId: this.taskExamineInfo.appId,
42015
42162
  inevitableNode: res.inevitableNode
@@ -42119,7 +42266,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42119
42266
  this.$confirm('确认' + res.value + '?').then(function () {
42120
42267
  // return this.$message.warning('请填写意见');
42121
42268
  var params = {
42122
- url: api["yb" /* rejectAndEnd */],
42269
+ url: api["zb" /* rejectAndEnd */],
42123
42270
  headers: { Accept: 'application/json,text/plain' },
42124
42271
  method: 'post',
42125
42272
  data: {
@@ -42784,7 +42931,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42784
42931
  userId: utils_util["a" /* default */].getStorage('userId'),
42785
42932
  type: 2
42786
42933
  };
42787
- utils_util["a" /* default */].ajax({ url: api["pb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
42934
+ utils_util["a" /* default */].ajax({ url: api["qb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
42788
42935
  var rCode = res.rCode,
42789
42936
  msg = res.msg,
42790
42937
  results = res.results;
@@ -42980,7 +43127,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42980
43127
  params.isSubFlow = taskExamineInfo.isSubFlow;
42981
43128
  params.nodeId = taskExamineInfo.nodeId;
42982
43129
  params.needRetrialAuth = needRetrialAuth;
42983
- return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["Lb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
43130
+ return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
42984
43131
  var status = res.status,
42985
43132
  message = res.message;
42986
43133
 
@@ -43339,7 +43486,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
43339
43486
  pendingUserIds = _nextNode.pendingUserIds;
43340
43487
 
43341
43488
  var params = {
43342
- url: api["hc" /* toTaskSuperviseSub */],
43489
+ url: api["ic" /* toTaskSuperviseSub */],
43343
43490
  params: {
43344
43491
  userId: utils_util["a" /* default */].getStorage('userId'),
43345
43492
  urgeUserIds: pendingUserIds,
@@ -43364,7 +43511,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
43364
43511
 
43365
43512
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
43366
43513
  utils_util["a" /* default */].ajax({
43367
- url: api["gc" /* toTaskSupervise */],
43514
+ url: api["hc" /* toTaskSupervise */],
43368
43515
  params: {
43369
43516
  businessId: this.businessId,
43370
43517
  userId: utils_util["a" /* default */].getStorage('userId')
@@ -43407,8 +43554,8 @@ var supervise_component = normalizeComponent(
43407
43554
  )
43408
43555
 
43409
43556
  /* harmony default export */ var supervise = (supervise_component.exports);
43410
- // 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&
43411
- var Circulatevue_type_template_id_3f042944_render = function () {
43557
+ // 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&
43558
+ var Circulatevue_type_template_id_e3855b2c_render = function () {
43412
43559
  var _vm = this
43413
43560
  var _h = _vm.$createElement
43414
43561
  var _c = _vm._self._c || _h
@@ -43596,11 +43743,11 @@ var Circulatevue_type_template_id_3f042944_render = function () {
43596
43743
  1
43597
43744
  )
43598
43745
  }
43599
- var Circulatevue_type_template_id_3f042944_staticRenderFns = []
43600
- Circulatevue_type_template_id_3f042944_render._withStripped = true
43746
+ var Circulatevue_type_template_id_e3855b2c_staticRenderFns = []
43747
+ Circulatevue_type_template_id_e3855b2c_render._withStripped = true
43601
43748
 
43602
43749
 
43603
- // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=3f042944&
43750
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=e3855b2c&
43604
43751
 
43605
43752
  // 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&
43606
43753
  var Circulatevue_type_script_lang_js_components;
@@ -43742,6 +43889,7 @@ var Circulatevue_type_script_lang_js_components;
43742
43889
  isOpinionRequired: 0,
43743
43890
  otherParams: { filid: 'other' },
43744
43891
  loading: false,
43892
+ subLoading: null,
43745
43893
  userModel: {}
43746
43894
  };
43747
43895
  },
@@ -43818,14 +43966,20 @@ var Circulatevue_type_script_lang_js_components;
43818
43966
  if (!this.showBtn) {
43819
43967
  param.data.pendingId = this.pendingId;
43820
43968
  delete param.data.processDefinitionId;
43969
+ this.subLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
43970
+ } else {
43971
+ this.loading = true;
43821
43972
  }
43822
- this.loading = true;
43823
43973
  utils_util["a" /* default */].ajax(param).then(function (res) {
43824
43974
  var message = res.message,
43825
43975
  status = res.status,
43826
43976
  rCode = res.rCode;
43827
43977
 
43828
- _this.loading = false;
43978
+ if (!_this.showBtn) {
43979
+ _this.subLoading.close();
43980
+ } else {
43981
+ _this.loading = false;
43982
+ }
43829
43983
  if (status == 'success' || rCode == 0) {
43830
43984
  _this.simpleTips && _this.$message.success('提交成功');
43831
43985
  _this.quit(true);
@@ -43956,8 +44110,8 @@ var Circulatevue_type_script_lang_js_components;
43956
44110
 
43957
44111
  var Circulate_component = normalizeComponent(
43958
44112
  component_Circulatevue_type_script_lang_js_,
43959
- Circulatevue_type_template_id_3f042944_render,
43960
- Circulatevue_type_template_id_3f042944_staticRenderFns,
44113
+ Circulatevue_type_template_id_e3855b2c_render,
44114
+ Circulatevue_type_template_id_e3855b2c_staticRenderFns,
43961
44115
  false,
43962
44116
  null,
43963
44117
  null,
@@ -44922,6 +45076,44 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
44922
45076
  //
44923
45077
  //
44924
45078
  //
45079
+ //
45080
+ //
45081
+ //
45082
+ //
45083
+ //
45084
+ //
45085
+ //
45086
+ //
45087
+ //
45088
+ //
45089
+ //
45090
+ //
45091
+ //
45092
+ //
45093
+ //
45094
+ //
45095
+ //
45096
+ //
45097
+ //
45098
+ //
45099
+ //
45100
+ //
45101
+ //
45102
+ //
45103
+ //
45104
+ //
45105
+ //
45106
+ //
45107
+ //
45108
+ //
45109
+ //
45110
+ //
45111
+ //
45112
+ //
45113
+ //
45114
+ //
45115
+ //
45116
+ //
44925
45117
 
44926
45118
 
44927
45119
 
@@ -45009,6 +45201,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45009
45201
  showCustomLimitTimeText: false,
45010
45202
  currentOrgDisabledObjId: [],
45011
45203
  nextNodeCheckType: 'select',
45204
+ nextOperateCheckType: 'select',
45012
45205
  readOnlyNotificationType: '',
45013
45206
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
45014
45207
  taskParams: {},
@@ -45495,7 +45688,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45495
45688
  taskAction: 'complete'
45496
45689
  };
45497
45690
  utils_util["a" /* default */].ajax({
45498
- url: api["Mb" /* taskReadHtml */],
45691
+ url: api["Nb" /* taskReadHtml */],
45499
45692
  params: { taskAction: 'complete' },
45500
45693
  headers: {
45501
45694
  Accept: 'application/json,text/plain'
@@ -45542,7 +45735,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45542
45735
 
45543
45736
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
45544
45737
  utils_util["a" /* default */].ajax({
45545
- url: api["bc" /* toStartTaskReadIndex */],
45738
+ url: api["cc" /* toStartTaskReadIndex */],
45546
45739
  params: { pendingId: this.pendingId }
45547
45740
  }).then(function (res) {
45548
45741
  var status = res.status,
@@ -45586,7 +45779,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45586
45779
  if (mainConfig) {
45587
45780
  this.userModel = JSON.parse(mainConfig).userModel;
45588
45781
  } else {
45589
- utils_util["a" /* default */].ajax({ url: api["mb" /* loginUserInfo */] }).then(function (res) {
45782
+ utils_util["a" /* default */].ajax({ url: api["nb" /* loginUserInfo */] }).then(function (res) {
45590
45783
  var status = res.status,
45591
45784
  data = res.data;
45592
45785
 
@@ -45687,7 +45880,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45687
45880
  pendingId: this.pendingId
45688
45881
  };
45689
45882
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
45690
- utils_util["a" /* default */].ajax({ url: api["Vb" /* tempSave */], params: params }).then(function (res) {
45883
+ utils_util["a" /* default */].ajax({ url: api["Wb" /* tempSave */], params: params }).then(function (res) {
45691
45884
  var status = res.status,
45692
45885
  message = res.message;
45693
45886
 
@@ -45993,7 +46186,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45993
46186
  var _this18 = this;
45994
46187
 
45995
46188
  var params = {
45996
- url: api["kb" /* isCanStartSubFlow */],
46189
+ url: api["lb" /* isCanStartSubFlow */],
45997
46190
  data: {
45998
46191
  appId: this.taskExamineInfo.appId,
45999
46192
  inevitableNode: res.inevitableNode
@@ -46103,7 +46296,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46103
46296
  this.$confirm('确认' + res.value + '?').then(function () {
46104
46297
  // return this.$message.warning('请填写意见');
46105
46298
  var params = {
46106
- url: api["yb" /* rejectAndEnd */],
46299
+ url: api["zb" /* rejectAndEnd */],
46107
46300
  headers: { Accept: 'application/json,text/plain' },
46108
46301
  method: 'post',
46109
46302
  data: {
@@ -46443,6 +46636,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46443
46636
  circularReadParamsMap = _res$data2.circularReadParamsMap,
46444
46637
  isPreset = _res$data2.isPreset,
46445
46638
  choiceOrgId = _res$data2.choiceOrgId,
46639
+ nextOperateCheckType = _res$data2.nextOperateCheckType,
46446
46640
  choiceDeptId = _res$data2.choiceDeptId,
46447
46641
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
46448
46642
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
@@ -46471,7 +46665,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46471
46665
  _this27.$emit('startTaskRead', res);
46472
46666
  _this27.$emit('start-task-read', res);
46473
46667
  _this27.circularReadParamsMap = circularReadParamsMap || {};
46474
- _this27.currentOrgName = currentOrgName;
46668
+ _this27.currentOrgName = _this27.nextOperateCheckType = nextOperateCheckType;
46475
46669
  _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
46476
46670
  _this27.readOnlyNotificationType = readOnlyNotificationType;
46477
46671
  _this27.isSpecial = isSpecial;
@@ -46788,7 +46982,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46788
46982
  userId: utils_util["a" /* default */].getStorage('userId'),
46789
46983
  type: 2
46790
46984
  };
46791
- utils_util["a" /* default */].ajax({ url: api["pb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
46985
+ utils_util["a" /* default */].ajax({ url: api["qb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
46792
46986
  var rCode = res.rCode,
46793
46987
  msg = res.msg,
46794
46988
  results = res.results;
@@ -47089,7 +47283,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
47089
47283
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
47090
47284
  }
47091
47285
 
47092
- return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["Lb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
47286
+ return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
47093
47287
  var status = res.status,
47094
47288
  message = res.message;
47095
47289
 
@@ -47171,8 +47365,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
47171
47365
 
47172
47366
  var flow_src_main_component = normalizeComponent(
47173
47367
  packages_flow_src_mainvue_type_script_lang_js_,
47174
- mainvue_type_template_id_9a490c28_render,
47175
- mainvue_type_template_id_9a490c28_staticRenderFns,
47368
+ mainvue_type_template_id_5e28124e_render,
47369
+ mainvue_type_template_id_5e28124e_staticRenderFns,
47176
47370
  false,
47177
47371
  null,
47178
47372
  null,
@@ -50412,7 +50606,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50412
50606
  return x.id;
50413
50607
  }).join(',');
50414
50608
  var params = {
50415
- url: api["Nb" /* taskReadWithDraw */],
50609
+ url: api["Ob" /* taskReadWithDraw */],
50416
50610
  params: {
50417
50611
  pendingIds: pendingIds
50418
50612
  }
@@ -50500,7 +50694,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50500
50694
  getCircularReadList: function getCircularReadList() {
50501
50695
  var _that = this;
50502
50696
  var params = {
50503
- url: api["rb" /* pendedhistoryListWithCircularReadJson */],
50697
+ url: api["sb" /* pendedhistoryListWithCircularReadJson */],
50504
50698
  params: { apprecordid: _that.businessId }
50505
50699
  };
50506
50700
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -50672,7 +50866,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50672
50866
 
50673
50867
  this.pressLoading = true;
50674
50868
  var params = {
50675
- url: api["sb" /* pressListJson */],
50869
+ url: api["tb" /* pressListJson */],
50676
50870
  params: { historyId: historyId },
50677
50871
  method: 'POST',
50678
50872
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -50773,7 +50967,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50773
50967
  var _this12 = this;
50774
50968
 
50775
50969
  var params = {
50776
- url: api["qb" /* pendedhistoryListJson */],
50970
+ url: api["rb" /* pendedhistoryListJson */],
50777
50971
  params: flow_list_src_mainvue_type_script_lang_js_extends({
50778
50972
  apprecordid: this.businessId,
50779
50973
  pendingAttr: 0,
@@ -50939,7 +51133,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50939
51133
  var _this15 = this;
50940
51134
 
50941
51135
  var param = {
50942
- url: api["Wb" /* toPresetInfoListIndex */],
51136
+ url: api["Xb" /* toPresetInfoListIndex */],
50943
51137
  params: { apprecordid: this.businessId }
50944
51138
  };
50945
51139
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -51198,7 +51392,7 @@ mainvue_type_template_id_3d02c60c_render._withStripped = true
51198
51392
 
51199
51393
  if (this.job.id !== item.id) {
51200
51394
  this.job = item;
51201
- utils_util["a" /* default */].ajax({ url: api["Ib" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
51395
+ utils_util["a" /* default */].ajax({ url: api["Jb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
51202
51396
  if (res.rCode == 0) {
51203
51397
  utils_util["a" /* default */].setStorage({
51204
51398
  type: _this.storage,
@@ -51907,7 +52101,7 @@ var _props;
51907
52101
  document.body.appendChild(iframe);
51908
52102
  }
51909
52103
  }
51910
- utils_util["a" /* default */].ajax({ method: 'post', url: api["nb" /* logout */] }).then(function (res) {
52104
+ utils_util["a" /* default */].ajax({ method: 'post', url: api["ob" /* logout */] }).then(function (res) {
51911
52105
  if (res.rCode == 0) {
51912
52106
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
51913
52107
  if (_this.onQuit && typeof _this.onQuit === 'function') {
@@ -52039,7 +52233,7 @@ mainvue_type_template_id_20e44f4a_render._withStripped = true
52039
52233
  props: {
52040
52234
  preview: {
52041
52235
  type: String,
52042
- default: api["tb" /* previewAdjunct */] + '?adjunctId='
52236
+ default: api["ub" /* previewAdjunct */] + '?adjunctId='
52043
52237
  },
52044
52238
  contents: [Object, String]
52045
52239
  },
@@ -53524,8 +53718,8 @@ layout_src_main.install = function (Vue) {
53524
53718
  };
53525
53719
 
53526
53720
  /* harmony default export */ var packages_layout = (layout_src_main);
53527
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=729dd354&
53528
- var mainvue_type_template_id_729dd354_render = function () {
53721
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=7795d992&
53722
+ var mainvue_type_template_id_7795d992_render = function () {
53529
53723
  var _vm = this
53530
53724
  var _h = _vm.$createElement
53531
53725
  var _c = _vm._self._c || _h
@@ -53562,6 +53756,7 @@ var mainvue_type_template_id_729dd354_render = function () {
53562
53756
  })
53563
53757
  : _vm._e(),
53564
53758
  _vm._t("default"),
53759
+ _vm._t("warning", null, { contents: _vm.warningText }),
53565
53760
  _c(
53566
53761
  "div",
53567
53762
  {
@@ -53621,75 +53816,81 @@ var mainvue_type_template_id_729dd354_render = function () {
53621
53816
  },
53622
53817
  },
53623
53818
  [
53624
- this.mode == "complex" &&
53625
- _vm.loginModel.indexOf("3") > -1
53819
+ this.mode == "complex"
53626
53820
  ? [
53627
- _vm._l(_vm.switchs, function (item) {
53628
- return [
53629
- item.tips
53630
- ? _c(
53631
- "div",
53632
- {
53633
- directives: [
53634
- {
53635
- name: "show",
53636
- rawName: "v-show",
53637
- value:
53638
- _vm.switchActive != item.type,
53639
- expression:
53640
- "switchActive != item.type",
53821
+ _vm.loginModel.indexOf("3") > -1
53822
+ ? [
53823
+ _vm._l(_vm.switchs, function (item) {
53824
+ return [
53825
+ item.tips
53826
+ ? _c(
53827
+ "div",
53828
+ {
53829
+ directives: [
53830
+ {
53831
+ name: "show",
53832
+ rawName: "v-show",
53833
+ value:
53834
+ _vm.switchActive !=
53835
+ item.type,
53836
+ expression:
53837
+ "switchActive != item.type",
53838
+ },
53839
+ ],
53840
+ key: item.type + "_0",
53841
+ staticClass:
53842
+ "es-login-model-tips",
53843
+ style: _vm.getBackground(
53844
+ item.background
53845
+ ),
53846
+ },
53847
+ [
53848
+ _vm._v(
53849
+ "\n " +
53850
+ _vm._s(item.tips) +
53851
+ "\n "
53852
+ ),
53853
+ ]
53854
+ )
53855
+ : _vm._e(),
53856
+ _c(
53857
+ "span",
53858
+ {
53859
+ directives: [
53860
+ {
53861
+ name: "show",
53862
+ rawName: "v-show",
53863
+ value:
53864
+ _vm.switchActive !=
53865
+ item.type,
53866
+ expression:
53867
+ "switchActive != item.type",
53868
+ },
53869
+ ],
53870
+ key: item.type + "_1",
53871
+ staticClass: "es-icon-box",
53872
+ attrs: {
53873
+ title:
53874
+ _vm.modelLength > 2
53875
+ ? item.name
53876
+ : "",
53641
53877
  },
53642
- ],
53643
- key: item.type + "_0",
53644
- staticClass: "es-login-model-tips",
53645
- style: _vm.getBackground(
53646
- item.background
53647
- ),
53648
- },
53649
- [
53650
- _vm._v(
53651
- "\n " +
53652
- _vm._s(item.tips) +
53653
- "\n "
53654
- ),
53655
- ]
53656
- )
53657
- : _vm._e(),
53658
- _c(
53659
- "span",
53660
- {
53661
- directives: [
53662
- {
53663
- name: "show",
53664
- rawName: "v-show",
53665
- value:
53666
- _vm.switchActive != item.type,
53667
- expression:
53668
- "switchActive != item.type",
53669
- },
53670
- ],
53671
- key: item.type + "_1",
53672
- staticClass: "es-icon-box",
53673
- attrs: {
53674
- title:
53675
- _vm.modelLength > 2
53676
- ? item.name
53677
- : "",
53678
- },
53679
- on: {
53680
- click: function ($event) {
53681
- _vm.switchLoginType(item)
53682
- },
53683
- },
53684
- },
53685
- [
53686
- _c("i", {
53687
- class: [item.icon, "es-icon"],
53688
- }),
53689
- ]
53690
- ),
53691
- ]
53692
- }),
53878
+ on: {
53879
+ click: function ($event) {
53880
+ _vm.switchLoginType(item)
53881
+ },
53882
+ },
53883
+ },
53884
+ [
53885
+ _c("i", {
53886
+ class: [item.icon, "es-icon"],
53887
+ }),
53888
+ ]
53889
+ ),
53890
+ ]
53891
+ }),
53892
+ ]
53893
+ : _vm._e(),
53693
53894
  ]
53694
53895
  : [
53695
53896
  _vm._l(_vm.icons, function (item) {
@@ -54537,11 +54738,11 @@ var mainvue_type_template_id_729dd354_render = function () {
54537
54738
  2
54538
54739
  )
54539
54740
  : _vm._e(),
54540
- _vm.warnInfo
54741
+ _vm.showWarnInfo
54541
54742
  ? _c("div", { staticClass: "es-warning" }, [
54542
54743
  _vm._v(
54543
54744
  "\n " +
54544
- _vm._s(_vm.warnInfo) +
54745
+ _vm._s(_vm.warningText) +
54545
54746
  "\n "
54546
54747
  ),
54547
54748
  ])
@@ -54779,6 +54980,7 @@ var mainvue_type_template_id_729dd354_render = function () {
54779
54980
  ? _c("es-ca-login", {
54780
54981
  ref: "calogin",
54781
54982
  attrs: {
54983
+ showSelect: _vm.showKeySelect,
54782
54984
  "install-path": _vm.installPath,
54783
54985
  "ca-model": _vm.caLoginModel,
54784
54986
  identifyingId: _vm.identifyingId,
@@ -54792,7 +54994,7 @@ var mainvue_type_template_id_729dd354_render = function () {
54792
54994
  )
54793
54995
  : _vm._e()
54794
54996
  }
54795
- var mainvue_type_template_id_729dd354_staticRenderFns = [
54997
+ var mainvue_type_template_id_7795d992_staticRenderFns = [
54796
54998
  function () {
54797
54999
  var _vm = this
54798
55000
  var _h = _vm.$createElement
@@ -54807,10 +55009,10 @@ var mainvue_type_template_id_729dd354_staticRenderFns = [
54807
55009
  ])
54808
55010
  },
54809
55011
  ]
54810
- mainvue_type_template_id_729dd354_render._withStripped = true
55012
+ mainvue_type_template_id_7795d992_render._withStripped = true
54811
55013
 
54812
55014
 
54813
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=729dd354&
55015
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=7795d992&
54814
55016
 
54815
55017
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=45dccfdc&
54816
55018
  var resetPasswordvue_type_template_id_45dccfdc_render = function () {
@@ -55192,7 +55394,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
55192
55394
  var _this2 = this;
55193
55395
 
55194
55396
  utils_util["a" /* default */].ajax({
55195
- url: api["hb" /* initModifyPassword */]
55397
+ url: api["ib" /* initModifyPassword */]
55196
55398
  }).then(function (res) {
55197
55399
  if (res.rCode === 0) {
55198
55400
  var results = JSON.parse(JSON.stringify(res.results));
@@ -55297,7 +55499,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
55297
55499
  data.operationCheckCode = this.operationCheckCode;
55298
55500
  utils_util["a" /* default */].ajax({
55299
55501
  method: 'post',
55300
- url: api["lb" /* loginModifyPassword */],
55502
+ url: api["mb" /* loginModifyPassword */],
55301
55503
  data: data
55302
55504
  }).then(function (res) {
55303
55505
  _this5.submit = false;
@@ -55900,6 +56102,8 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
55900
56102
  //
55901
56103
  //
55902
56104
  //
56105
+ //
56106
+ //
55903
56107
 
55904
56108
 
55905
56109
 
@@ -55919,7 +56123,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
55919
56123
  //初始登录配置接口地址
55920
56124
  initLogin: {
55921
56125
  type: String,
55922
- default: api["gb" /* initLogin */]
56126
+ default: api["hb" /* initLogin */]
55923
56127
  },
55924
56128
  size: String,
55925
56129
  mode: {
@@ -56051,7 +56255,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56051
56255
  },
56052
56256
  getTwoFactorLoginCode: {
56053
56257
  type: String,
56054
- default: api["ab" /* getTwoFactorLoginCode */]
56258
+ default: api["bb" /* getTwoFactorLoginCode */]
56055
56259
  },
56056
56260
  doTwoFactorLogin: {
56057
56261
  type: String,
@@ -56076,10 +56280,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56076
56280
  default: true
56077
56281
  },
56078
56282
  storage: String,
56079
- warning: {
56080
- type: [Boolean, String],
56081
- default: false
56082
- },
56283
+ warning: String,
56083
56284
  copyrightStyle: {
56084
56285
  type: Object,
56085
56286
  default: function _default() {
@@ -56141,7 +56342,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56141
56342
  }
56142
56343
  },
56143
56344
  caModel: String,
56144
- caInstallPath: String
56345
+ caInstallPath: String,
56346
+ showKeySelect: Boolean
56145
56347
  },
56146
56348
  computed: {
56147
56349
  transform: function transform() {
@@ -56180,17 +56382,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56180
56382
  return window.location.href || window.href;
56181
56383
  }
56182
56384
  },
56183
- warnInfo: function warnInfo() {
56184
- if (this.warning === false && !this.warningText) {
56185
- return false;
56186
- }
56187
- if (this.warningText && this.warningText !== 'true' && this.warningText !== true) {
56188
- return this.warningText;
56189
- }
56190
- if (this.warning && typeof this.warning === 'string') {
56191
- return this.warning;
56192
- }
56193
- return '本系统为非涉密系统,禁止上传和处理任何涉密文件';
56385
+ showWarnInfo: function showWarnInfo() {
56386
+ return this.$slots.warning || this.$scopedSlots.warning ? false : this.warningText ? true : false;
56194
56387
  },
56195
56388
  modelLength: function modelLength() {
56196
56389
  return Array.isArray(this.loginModel) ? this.loginModel.length : this.loginModel.split(',').length;
@@ -56239,7 +56432,6 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56239
56432
  types.forEach(function (item) {
56240
56433
  icon.push(_this.iconfonts[item]);
56241
56434
  });
56242
- console.log(icon);
56243
56435
  return icon;
56244
56436
  },
56245
56437
  isCaLogin: function isCaLogin() {
@@ -56369,7 +56561,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56369
56561
  checkCode: '',
56370
56562
  showAssistance: false,
56371
56563
  doAssistance: null,
56372
- warningText: '',
56564
+ warningText: this.warning,
56373
56565
  safes: {
56374
56566
  paste: function paste(event) {
56375
56567
  event.preventDefault();
@@ -57298,8 +57490,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
57298
57490
 
57299
57491
  var login_src_main_component = normalizeComponent(
57300
57492
  packages_login_src_mainvue_type_script_lang_js_,
57301
- mainvue_type_template_id_729dd354_render,
57302
- mainvue_type_template_id_729dd354_staticRenderFns,
57493
+ mainvue_type_template_id_7795d992_render,
57494
+ mainvue_type_template_id_7795d992_staticRenderFns,
57303
57495
  false,
57304
57496
  null,
57305
57497
  null,
@@ -58089,8 +58281,8 @@ simplicityvue_type_template_id_a8c92006_scoped_true_render._withStripped = true
58089
58281
 
58090
58282
  // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=a8c92006&scoped=true&
58091
58283
 
58092
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=53dddeda&scoped=true&
58093
- var avatarvue_type_template_id_53dddeda_scoped_true_render = function () {
58284
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
58285
+ var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
58094
58286
  var _vm = this
58095
58287
  var _h = _vm.$createElement
58096
58288
  var _c = _vm._self._c || _h
@@ -58131,11 +58323,11 @@ var avatarvue_type_template_id_53dddeda_scoped_true_render = function () {
58131
58323
  1
58132
58324
  )
58133
58325
  }
58134
- var avatarvue_type_template_id_53dddeda_scoped_true_staticRenderFns = []
58135
- avatarvue_type_template_id_53dddeda_scoped_true_render._withStripped = true
58326
+ var avatarvue_type_template_id_e722b45c_scoped_true_staticRenderFns = []
58327
+ avatarvue_type_template_id_e722b45c_scoped_true_render._withStripped = true
58136
58328
 
58137
58329
 
58138
- // CONCATENATED MODULE: ./packages/main/src/simplicity/avatar.vue?vue&type=template&id=53dddeda&scoped=true&
58330
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
58139
58331
 
58140
58332
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=script&lang=js&
58141
58333
  //
@@ -58197,7 +58389,6 @@ avatarvue_type_template_id_53dddeda_scoped_true_render._withStripped = true
58197
58389
  computed: {
58198
58390
  //用户头像
58199
58391
  _userHead: function _userHead() {
58200
- console.log(this.user);
58201
58392
  return this.userHead ? this.userHead : this.user.userHeadUrl;
58202
58393
  }
58203
58394
  },
@@ -58229,11 +58420,11 @@ avatarvue_type_template_id_53dddeda_scoped_true_render._withStripped = true
58229
58420
 
58230
58421
  var avatar_component = normalizeComponent(
58231
58422
  simplicity_avatarvue_type_script_lang_js_,
58232
- avatarvue_type_template_id_53dddeda_scoped_true_render,
58233
- avatarvue_type_template_id_53dddeda_scoped_true_staticRenderFns,
58423
+ avatarvue_type_template_id_e722b45c_scoped_true_render,
58424
+ avatarvue_type_template_id_e722b45c_scoped_true_staticRenderFns,
58234
58425
  false,
58235
58426
  null,
58236
- "53dddeda",
58427
+ "e722b45c",
58237
58428
  null
58238
58429
 
58239
58430
  )
@@ -60151,7 +60342,7 @@ appsvue_type_template_id_71b9cb14_scoped_true_render._withStripped = true
60151
60342
  },
60152
60343
  handleClick: function handleClick(res) {
60153
60344
  utils_util["a" /* default */].ajax({
60154
- url: api["wb" /* recordUserApp */],
60345
+ url: api["xb" /* recordUserApp */],
60155
60346
  params: {
60156
60347
  userId: this.user.userId,
60157
60348
  appId: res.id
@@ -60563,7 +60754,7 @@ userinfovue_type_template_id_1c52f6d2_render._withStripped = true
60563
60754
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
60564
60755
  initLogin && (initLogin = JSON.parse(initLogin));
60565
60756
  utils_util["a" /* default */].ajax({
60566
- url: api["rc" /* updateUserInfo */],
60757
+ url: api["sc" /* updateUserInfo */],
60567
60758
  params: {
60568
60759
  email: this.model.email,
60569
60760
  officeTel: this.model.officeTel,
@@ -60799,7 +60990,7 @@ var userinfo_component = normalizeComponent(
60799
60990
  var _this2 = this;
60800
60991
 
60801
60992
  utils_util["a" /* default */].ajax({
60802
- url: api["jb" /* initUserSet */]
60993
+ url: api["kb" /* initUserSet */]
60803
60994
  }).then(function (res) {
60804
60995
  if (res.rCode === 0) {
60805
60996
  var results = JSON.parse(JSON.stringify(res.results));
@@ -60840,7 +61031,7 @@ var userinfo_component = normalizeComponent(
60840
61031
  var notify = this.checked.join(',');
60841
61032
  utils_util["a" /* default */].ajax({
60842
61033
  method: 'post',
60843
- url: api["qc" /* updateUserCustomInfo */],
61034
+ url: api["rc" /* updateUserCustomInfo */],
60844
61035
  data: {
60845
61036
  notify: notify
60846
61037
  }
@@ -60870,7 +61061,7 @@ var userinfo_component = normalizeComponent(
60870
61061
  if (this.user.identityId !== res.id) {
60871
61062
  utils_util["a" /* default */].ajax({
60872
61063
  method: 'post',
60873
- url: api["Ib" /* switchUserTo */],
61064
+ url: api["Jb" /* switchUserTo */],
60874
61065
  data: { userId: res.value }
60875
61066
  }).then(function (res) {
60876
61067
  if (res.rCode == 0) {
@@ -61262,7 +61453,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61262
61453
  if (this.pageNum <= this.pageCount) {
61263
61454
  this.loading = true;
61264
61455
  utils_util["a" /* default */].ajax({
61265
- url: api["Jb" /* sysMsgPage */],
61456
+ url: api["Kb" /* sysMsgPage */],
61266
61457
  params: {
61267
61458
  pageNum: reload ? 1 : this.pageNum,
61268
61459
  pageSize: this.pageSize
@@ -61295,7 +61486,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61295
61486
  var _this2 = this;
61296
61487
 
61297
61488
  utils_util["a" /* default */].ajax({
61298
- url: api["fb" /* ignoreSysMsg */],
61489
+ url: api["gb" /* ignoreSysMsg */],
61299
61490
  params: {
61300
61491
  id: res.id
61301
61492
  }
@@ -61315,7 +61506,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61315
61506
  var _this3 = this;
61316
61507
 
61317
61508
  utils_util["a" /* default */].ajax({
61318
- url: api["eb" /* ignoreAllSysMsg */]
61509
+ url: api["fb" /* ignoreAllSysMsg */]
61319
61510
  }).then(function (res) {
61320
61511
  _this3.count = 0;
61321
61512
  _this3.msgs = [];
@@ -61675,7 +61866,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
61675
61866
  var _this = this;
61676
61867
 
61677
61868
  utils_util["a" /* default */].ajax({
61678
- url: api["fb" /* ignoreSysMsg */],
61869
+ url: api["gb" /* ignoreSysMsg */],
61679
61870
  params: {
61680
61871
  id: res.id
61681
61872
  }
@@ -61694,7 +61885,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
61694
61885
  var _this2 = this;
61695
61886
 
61696
61887
  utils_util["a" /* default */].ajax({
61697
- url: api["eb" /* ignoreAllSysMsg */]
61888
+ url: api["fb" /* ignoreAllSysMsg */]
61698
61889
  }).then(function (res) {
61699
61890
  _this2.msgs = [];
61700
61891
  _this2.$emit('ignore', { type: 'ignore', value: 'all' });
@@ -62480,7 +62671,7 @@ onlinevue_type_template_id_63844b4e_scoped_true_render._withStripped = true
62480
62671
  props: {
62481
62672
  sysuseronline: {
62482
62673
  type: String,
62483
- default: api["wc" /* userOnline */]
62674
+ default: api["xc" /* userOnline */]
62484
62675
  }
62485
62676
  },
62486
62677
  data: function data() {
@@ -63153,7 +63344,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
63153
63344
  },
63154
63345
  searchType: {
63155
63346
  type: String,
63156
- default: api["Cb" /* searchType */]
63347
+ default: api["Db" /* searchType */]
63157
63348
  },
63158
63349
  pageSize: {
63159
63350
  type: Number,
@@ -63939,7 +64130,7 @@ var events = [function (tabs, index, that) {
63939
64130
  //应用列表接口
63940
64131
  appsUrl: {
63941
64132
  type: String,
63942
- default: api["bb" /* getUserAppWithTag */]
64133
+ default: api["cb" /* getUserAppWithTag */]
63943
64134
  },
63944
64135
  //是否启用子应用菜单接口
63945
64136
  application: {
@@ -64764,8 +64955,8 @@ var events = [function (tabs, index, that) {
64764
64955
  var _this5 = this;
64765
64956
 
64766
64957
  this.webSocket = utils_util["a" /* default */].socket({
64767
- url: api["xc" /* wss */],
64768
- take: api["nc" /* topic */],
64958
+ url: api["yc" /* wss */],
64959
+ take: api["oc" /* topic */],
64769
64960
  success: function success(res) {
64770
64961
  var data = res.data || {};
64771
64962
  for (var i in data) {
@@ -64971,7 +65162,7 @@ var events = [function (tabs, index, that) {
64971
65162
  **/
64972
65163
  handlerClickMenu: function handlerClickMenu(res) {
64973
65164
  utils_util["a" /* default */].ajax({
64974
- url: api["wb" /* recordUserApp */],
65165
+ url: api["xb" /* recordUserApp */],
64975
65166
  params: {
64976
65167
  userId: this.user.userId,
64977
65168
  appId: res.id
@@ -65259,7 +65450,7 @@ var events = [function (tabs, index, that) {
65259
65450
  document.body.appendChild(iframe);
65260
65451
  }
65261
65452
  }
65262
- utils_util["a" /* default */].ajax({ method: 'post', url: api["nb" /* logout */] }).then(function (res) {
65453
+ utils_util["a" /* default */].ajax({ method: 'post', url: api["ob" /* logout */] }).then(function (res) {
65263
65454
  if (res.rCode == 0) {
65264
65455
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
65265
65456
  if (_this6.onQuit && typeof _this6.onQuit === 'function') {
@@ -66317,7 +66508,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66317
66508
  var _this2 = this;
66318
66509
 
66319
66510
  utils_util["a" /* default */].ajax({
66320
- url: api["jb" /* initUserSet */]
66511
+ url: api["kb" /* initUserSet */]
66321
66512
  }).then(function (res) {
66322
66513
  if (res.rCode === 0) {
66323
66514
  var results = JSON.parse(JSON.stringify(res.results));
@@ -66366,7 +66557,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66366
66557
 
66367
66558
  switch (type) {
66368
66559
  case 'job':
66369
- utils_util["a" /* default */].ajax({ url: api["Ib" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
66560
+ utils_util["a" /* default */].ajax({ url: api["Jb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
66370
66561
  if (res.rCode == 0) {
66371
66562
  utils_util["a" /* default */].setStorage({
66372
66563
  type: _this3.storage,
@@ -66407,7 +66598,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66407
66598
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
66408
66599
  initLogin && (initLogin = JSON.parse(initLogin));
66409
66600
  utils_util["a" /* default */].ajax({
66410
- url: api["rc" /* updateUserInfo */],
66601
+ url: api["sc" /* updateUserInfo */],
66411
66602
  params: {
66412
66603
  email: this.values.email,
66413
66604
  officeTel: this.values.officeTel,
@@ -66465,7 +66656,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66465
66656
  var notify = _this4.values.notify.sort().join(',');
66466
66657
  if (notify != _this4.notify.split(',').sort().join(',')) {
66467
66658
  utils_util["a" /* default */].ajax({
66468
- url: api["qc" /* updateUserCustomInfo */],
66659
+ url: api["rc" /* updateUserCustomInfo */],
66469
66660
  params: {
66470
66661
  notify: notify
66471
66662
  }
@@ -66820,7 +67011,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66820
67011
  if (this.pageNum <= this.pageCount) {
66821
67012
  this.loading = true;
66822
67013
  utils_util["a" /* default */].ajax({
66823
- url: api["Jb" /* sysMsgPage */],
67014
+ url: api["Kb" /* sysMsgPage */],
66824
67015
  params: {
66825
67016
  pageNum: reload ? 1 : this.pageNum,
66826
67017
  pageSize: this.pageSize
@@ -66853,7 +67044,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66853
67044
  var _this2 = this;
66854
67045
 
66855
67046
  utils_util["a" /* default */].ajax({
66856
- url: api["fb" /* ignoreSysMsg */],
67047
+ url: api["gb" /* ignoreSysMsg */],
66857
67048
  params: {
66858
67049
  id: res.id
66859
67050
  }
@@ -66873,7 +67064,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66873
67064
  var _this3 = this;
66874
67065
 
66875
67066
  utils_util["a" /* default */].ajax({
66876
- url: api["eb" /* ignoreAllSysMsg */]
67067
+ url: api["fb" /* ignoreAllSysMsg */]
66877
67068
  }).then(function (res) {
66878
67069
  _this3.count = 0;
66879
67070
  _this3.msgs = [];
@@ -67208,7 +67399,7 @@ noticevue_type_template_id_6c63684e_render._withStripped = true
67208
67399
  var _this = this;
67209
67400
 
67210
67401
  utils_util["a" /* default */].ajax({
67211
- url: api["eb" /* ignoreAllSysMsg */]
67402
+ url: api["fb" /* ignoreAllSysMsg */]
67212
67403
  }).then(function (res) {
67213
67404
  _this.count = 0;
67214
67405
  _this.msgs = [];
@@ -67715,7 +67906,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
67715
67906
  //获取用户信息的接口
67716
67907
  mainConfig: {
67717
67908
  type: String,
67718
- default: api["ob" /* mainConfig */]
67909
+ default: api["pb" /* mainConfig */]
67719
67910
  },
67720
67911
  iframeId: {
67721
67912
  type: String,
@@ -68143,7 +68334,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
68143
68334
  return;
68144
68335
  }
68145
68336
  utils_util["a" /* default */].ajax({
68146
- url: api["qc" /* updateUserCustomInfo */],
68337
+ url: api["rc" /* updateUserCustomInfo */],
68147
68338
  params: { color: escape(color.toLowerCase()) },
68148
68339
  data: { color: escape(color.toLowerCase()) }
68149
68340
  }).then(function (res) {
@@ -69351,8 +69542,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
69351
69542
  var _this11 = this;
69352
69543
 
69353
69544
  this.webSocket = utils_util["a" /* default */].socket({
69354
- url: api["xc" /* wss */],
69355
- take: api["nc" /* topic */],
69545
+ url: api["yc" /* wss */],
69546
+ take: api["oc" /* topic */],
69356
69547
  success: function success(res) {
69357
69548
  var data = res.data || {};
69358
69549
  for (var i in data) {
@@ -71182,7 +71373,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71182
71373
  text: '重发',
71183
71374
  format: false,
71184
71375
  method: 'post',
71185
- action: api["Db" /* sendBatch */]
71376
+ action: api["Eb" /* sendBatch */]
71186
71377
  }]
71187
71378
  }];
71188
71379
  }
@@ -71369,13 +71560,13 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71369
71560
  },
71370
71561
  data: function data() {
71371
71562
  return {
71372
- sendList: api["Fb" /* sendList */],
71373
- sendBatch: api["Db" /* sendBatch */],
71563
+ sendList: api["Gb" /* sendList */],
71564
+ sendBatch: api["Eb" /* sendBatch */],
71374
71565
  tableCount: 0,
71375
71566
  selectData: [],
71376
71567
  formTitle: '',
71377
71568
  showForm: false,
71378
- formData: api["Eb" /* sendInfo */],
71569
+ formData: api["Fb" /* sendInfo */],
71379
71570
  params: {},
71380
71571
  sendTypeDict: [],
71381
71572
  statusDict: []
@@ -71394,7 +71585,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71394
71585
  type: 'primary',
71395
71586
  checkbox: true,
71396
71587
  format: false,
71397
- action: api["Db" /* sendBatch */]
71588
+ action: api["Eb" /* sendBatch */]
71398
71589
  }]
71399
71590
  }, {
71400
71591
  type: 'search',
@@ -73337,7 +73528,7 @@ mainvue_type_template_id_c789bcdc_render._withStripped = true
73337
73528
  var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
73338
73529
  mainConfig && (this.userModel = JSON.parse(mainConfig).userModel);
73339
73530
  utils_util["a" /* default */].ajax({
73340
- url: api["ib" /* initRetrialAuth */]
73531
+ url: api["jb" /* initRetrialAuth */]
73341
73532
  }).then(function (res) {
73342
73533
  var rCode = res.rCode,
73343
73534
  results = res.results;
@@ -73446,7 +73637,7 @@ mainvue_type_template_id_c789bcdc_render._withStripped = true
73446
73637
  uuid: this.uuid
73447
73638
  };
73448
73639
  utils_util["a" /* default */].ajax({
73449
- url: api["Bb" /* scanCodeRetrialAuth */],
73640
+ url: api["Cb" /* scanCodeRetrialAuth */],
73450
73641
  method: 'post',
73451
73642
  data: params,
73452
73643
  params: params
@@ -74883,8 +75074,8 @@ select_ganged_src_main.install = function (Vue) {
74883
75074
  };
74884
75075
 
74885
75076
  /* harmony default export */ var select_ganged = (select_ganged_src_main);
74886
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=239d0c44&
74887
- var mainvue_type_template_id_239d0c44_render = function () {
75077
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=template&id=c339b1fa&
75078
+ var mainvue_type_template_id_c339b1fa_render = function () {
74888
75079
  var _vm = this
74889
75080
  var _h = _vm.$createElement
74890
75081
  var _c = _vm._self._c || _h
@@ -75456,11 +75647,11 @@ var mainvue_type_template_id_239d0c44_render = function () {
75456
75647
  )
75457
75648
  : _vm._e()
75458
75649
  }
75459
- var mainvue_type_template_id_239d0c44_staticRenderFns = []
75460
- mainvue_type_template_id_239d0c44_render._withStripped = true
75650
+ var mainvue_type_template_id_c339b1fa_staticRenderFns = []
75651
+ mainvue_type_template_id_c339b1fa_render._withStripped = true
75461
75652
 
75462
75653
 
75463
- // CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=239d0c44&
75654
+ // CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=c339b1fa&
75464
75655
 
75465
75656
  // EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
75466
75657
  var clickoutside_ = __webpack_require__(18);
@@ -75925,10 +76116,16 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
75925
76116
  clearTimeout(this.timer);
75926
76117
  this.timer = setTimeout(this.handleSearch, 500);
75927
76118
  }
76119
+ },
76120
+ mix: function mix(val) {
76121
+ if (val) {
76122
+ this.getSysParam();
76123
+ }
75928
76124
  }
75929
76125
  },
75930
76126
  created: function created() {
75931
76127
  this.reference = this.$refs.esSelector;
76128
+ this.mix && this.getSysParam();
75932
76129
  },
75933
76130
  mounted: function mounted() {
75934
76131
  var _this2 = this;
@@ -75947,6 +76144,23 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
75947
76144
  },
75948
76145
 
75949
76146
  methods: {
76147
+ getSysParam: function getSysParam() {
76148
+ if (utils_util["a" /* default */].getStorage('sysorgname') && utils_util["a" /* default */].getStorage('sysdepname')) {
76149
+ return;
76150
+ }
76151
+ utils_util["a" /* default */].ajax({
76152
+ url: api["ab" /* getSysParam */],
76153
+ params: {
76154
+ paramCode: 'sysorgname,sysdepname'
76155
+ }
76156
+ }).then(function (res) {
76157
+ if (res.rCode === 0) {
76158
+ var params = res.results.split(',');
76159
+ sessionStorage.setItem('sysorgname', params[0]);
76160
+ sessionStorage.setItem('sysdepname', params[1]);
76161
+ }
76162
+ });
76163
+ },
75950
76164
  isObject: function isObject(obj) {
75951
76165
  return utils_util["a" /* default */].isObject(obj);
75952
76166
  },
@@ -76055,13 +76269,14 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
76055
76269
  },
76056
76270
  handleConfirm: function handleConfirm(res) {
76057
76271
  this.visible = false;
76058
- if (utils_util["a" /* default */].isObject(res)) {
76059
- this.$emit('input', [res]);
76060
- this.$emit('confirm', [res], this.businessData);
76061
- } else {
76062
- this.$emit('input', res);
76063
- this.$emit('confirm', res, this.businessData);
76272
+ var val = utils_util["a" /* default */].isObject(res) ? [res] : res;
76273
+ if (this.mix) {
76274
+ val.forEach(function (item, index) {
76275
+ val[index]._typeName = utils_util["a" /* default */].getTypeName(item.stype);
76276
+ });
76064
76277
  }
76278
+ this.$emit('input', val);
76279
+ this.$emit('confirm', val, this.businessData);
76065
76280
  var inputChildNodes = this.$refs.reference ? this.$refs.reference.$el.childNodes : null;
76066
76281
  var input = inputChildNodes ? [].filter.call(inputChildNodes, function (item) {
76067
76282
  return item.tagName === 'INPUT';
@@ -76149,8 +76364,8 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
76149
76364
 
76150
76365
  var selector_src_main_component = normalizeComponent(
76151
76366
  packages_selector_src_mainvue_type_script_lang_js_,
76152
- mainvue_type_template_id_239d0c44_render,
76153
- mainvue_type_template_id_239d0c44_staticRenderFns,
76367
+ mainvue_type_template_id_c339b1fa_render,
76368
+ mainvue_type_template_id_c339b1fa_staticRenderFns,
76154
76369
  false,
76155
76370
  null,
76156
76371
  null,
@@ -76167,8 +76382,8 @@ selector_src_main.install = function (Vue) {
76167
76382
  };
76168
76383
 
76169
76384
  /* harmony default export */ var selector = (selector_src_main);
76170
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
76171
- var mainvue_type_template_id_4caee95f_render = function () {
76385
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/main.vue?vue&type=template&id=04e6e69e&
76386
+ var mainvue_type_template_id_04e6e69e_render = function () {
76172
76387
  var _vm = this
76173
76388
  var _h = _vm.$createElement
76174
76389
  var _c = _vm._self._c || _h
@@ -76431,11 +76646,11 @@ var mainvue_type_template_id_4caee95f_render = function () {
76431
76646
  1
76432
76647
  )
76433
76648
  }
76434
- var mainvue_type_template_id_4caee95f_staticRenderFns = []
76435
- mainvue_type_template_id_4caee95f_render._withStripped = true
76649
+ var mainvue_type_template_id_04e6e69e_staticRenderFns = []
76650
+ mainvue_type_template_id_04e6e69e_render._withStripped = true
76436
76651
 
76437
76652
 
76438
- // CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=4caee95f&
76653
+ // CONCATENATED MODULE: ./packages/selector-panel/src/main.vue?vue&type=template&id=04e6e69e&
76439
76654
 
76440
76655
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/tree.vue?vue&type=template&id=24ad732a&
76441
76656
  var treevue_type_template_id_24ad732a_render = function () {
@@ -76730,8 +76945,8 @@ var tree_component = normalizeComponent(
76730
76945
  )
76731
76946
 
76732
76947
  /* harmony default export */ var tree = (tree_component.exports);
76733
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/selection.vue?vue&type=template&id=2bc3d812&
76734
- var selectionvue_type_template_id_2bc3d812_render = function () {
76948
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/selection.vue?vue&type=template&id=c92fc4ae&
76949
+ var selectionvue_type_template_id_c92fc4ae_render = function () {
76735
76950
  var _vm = this
76736
76951
  var _h = _vm.$createElement
76737
76952
  var _c = _vm._self._c || _h
@@ -76886,11 +77101,11 @@ var selectionvue_type_template_id_2bc3d812_render = function () {
76886
77101
  1
76887
77102
  )
76888
77103
  }
76889
- var selectionvue_type_template_id_2bc3d812_staticRenderFns = []
76890
- selectionvue_type_template_id_2bc3d812_render._withStripped = true
77104
+ var selectionvue_type_template_id_c92fc4ae_staticRenderFns = []
77105
+ selectionvue_type_template_id_c92fc4ae_render._withStripped = true
76891
77106
 
76892
77107
 
76893
- // CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=2bc3d812&
77108
+ // CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=c92fc4ae&
76894
77109
 
76895
77110
  // EXTERNAL MODULE: external "sortablejs"
76896
77111
  var external_sortablejs_ = __webpack_require__(19);
@@ -77040,11 +77255,7 @@ var selectionvue_type_script_lang_js_extends = Object.assign || function (target
77040
77255
 
77041
77256
  methods: {
77042
77257
  getLabel: function getLabel(res) {
77043
- var tag = '';
77044
- if (this.mix) {
77045
- tag = utils_util["a" /* default */].getTypeName(res.stype);
77046
- }
77047
- return tag + (res[this.labelKey] ? res[this.labelKey] : res.label || res[this.valueKey]);
77258
+ return res[this.labelKey] ? res[this.labelKey] : res.label || res[this.valueKey];
77048
77259
  },
77049
77260
  handleSort: function handleSort(res) {
77050
77261
  this.$emit('sort', res);
@@ -77080,8 +77291,8 @@ var selectionvue_type_script_lang_js_extends = Object.assign || function (target
77080
77291
 
77081
77292
  var selection_component = normalizeComponent(
77082
77293
  src_selectionvue_type_script_lang_js_,
77083
- selectionvue_type_template_id_2bc3d812_render,
77084
- selectionvue_type_template_id_2bc3d812_staticRenderFns,
77294
+ selectionvue_type_template_id_c92fc4ae_render,
77295
+ selectionvue_type_template_id_c92fc4ae_staticRenderFns,
77085
77296
  false,
77086
77297
  null,
77087
77298
  null,
@@ -77428,7 +77639,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77428
77639
  selection: [],
77429
77640
  value: [],
77430
77641
  param: {
77431
- showarea: 2,
77642
+ showarea: 0,
77432
77643
  id: 0,
77433
77644
  filid: 'all'
77434
77645
  }
@@ -77456,7 +77667,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77456
77667
  selection: [],
77457
77668
  value: [],
77458
77669
  param: {
77459
- showarea: 2,
77670
+ showarea: 0,
77460
77671
  id: 0,
77461
77672
  filid: 'all'
77462
77673
  }
@@ -77484,7 +77695,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77484
77695
  name: 'filgroup',
77485
77696
  url: api["Z" /* getSelectorOrgTree */],
77486
77697
  param: {
77487
- showarea: 3,
77698
+ showarea: 4,
77488
77699
  id: 0,
77489
77700
  filid: 'all'
77490
77701
  }
@@ -77498,7 +77709,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77498
77709
  selection: [],
77499
77710
  value: [],
77500
77711
  param: {
77501
- showarea: 4,
77712
+ showarea: 5,
77502
77713
  id: 0,
77503
77714
  filid: 'all'
77504
77715
  }
@@ -77540,7 +77751,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77540
77751
  selection: [],
77541
77752
  value: [],
77542
77753
  param: {
77543
- showarea: 13,
77754
+ showarea: 14,
77544
77755
  id: 0,
77545
77756
  filid: 'all'
77546
77757
  }
@@ -78052,8 +78263,8 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
78052
78263
 
78053
78264
  var selector_panel_src_main_component = normalizeComponent(
78054
78265
  packages_selector_panel_src_mainvue_type_script_lang_js_,
78055
- mainvue_type_template_id_4caee95f_render,
78056
- mainvue_type_template_id_4caee95f_staticRenderFns,
78266
+ mainvue_type_template_id_04e6e69e_render,
78267
+ mainvue_type_template_id_04e6e69e_staticRenderFns,
78057
78268
  false,
78058
78269
  null,
78059
78270
  null,
@@ -81720,7 +81931,7 @@ mainvue_type_template_id_6baa7a0b_render._withStripped = true
81720
81931
  },
81721
81932
  url: {
81722
81933
  type: String,
81723
- default: api["cb" /* gethelpdoc */]
81934
+ default: api["db" /* gethelpdoc */]
81724
81935
  },
81725
81936
  param: {
81726
81937
  type: Object,
@@ -89184,7 +89395,7 @@ var mainvue_type_script_lang_js_props;
89184
89395
  source: '',
89185
89396
  excludeNames: '',
89186
89397
  boxHeight: this.listHeight,
89187
- previewAdjunct: api["tb" /* previewAdjunct */],
89398
+ previewAdjunct: api["ub" /* previewAdjunct */],
89188
89399
  kkfileview: null,
89189
89400
  dochubConfig: {}
89190
89401
  };
@@ -89441,7 +89652,7 @@ var mainvue_type_script_lang_js_props;
89441
89652
  this.dochubConfig = config.dochubConfig;
89442
89653
  }
89443
89654
 
89444
- var url = this.portrait || this.documentId ? this.dochubConfig.reuploadDocumentUrl || api["tc" /* uploadOnlyOne */] : this.dochubConfig.uploadDocumentUrl || api["vc" /* uploads */];
89655
+ var url = this.portrait || this.documentId ? this.dochubConfig.reuploadDocumentUrl || api["uc" /* uploadOnlyOne */] : this.dochubConfig.uploadDocumentUrl || api["wc" /* uploads */];
89445
89656
  this.uploadUrl = url.indexOf(this.host) > -1 ? url : this.host + url;
89446
89657
  this.requestFiles && this.getFiles();
89447
89658
  } else {
@@ -89464,7 +89675,7 @@ var mainvue_type_script_lang_js_props;
89464
89675
  _this3.dochubConfig = res.results.dochubConfig;
89465
89676
  sessionStorage.setItem('dochubConfig', JSON.stringify(res.results.dochubConfig));
89466
89677
  }
89467
- var _url = _this3.portrait ? _this3.dochubConfig.reuploadDocumentUrl || api["tc" /* uploadOnlyOne */] : _this3.dochubConfig.uploadDocumentUrl || api["vc" /* uploads */];
89678
+ var _url = _this3.portrait ? _this3.dochubConfig.reuploadDocumentUrl || api["uc" /* uploadOnlyOne */] : _this3.dochubConfig.uploadDocumentUrl || api["wc" /* uploads */];
89468
89679
  _this3.uploadUrl = _url.indexOf(_this3.host) > -1 ? _url : _this3.host + _url;
89469
89680
  if (res.results.kkViewRootPath) {
89470
89681
  _this3.kkfileview = res.results.kkViewRootPath;
@@ -89579,13 +89790,13 @@ var mainvue_type_script_lang_js_props;
89579
89790
  if (this.kkfileview) {
89580
89791
  this.openKkfileview(file);
89581
89792
  } else {
89582
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["vb" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
89793
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["wb" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
89583
89794
  }
89584
89795
  } else if (suffix.includes('pdf')) {
89585
89796
  if (this.kkfileview) {
89586
89797
  this.openKkfileview(file);
89587
89798
  } else {
89588
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["ub" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
89799
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["vb" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
89589
89800
  }
89590
89801
  } else if (suffix.includes('jpge') || suffix.includes('jpg') || suffix.includes('gif') || suffix.includes('png')) {
89591
89802
  this.imgUrl = res.url && utils_util["a" /* default */].startWith(url, ['http', '/', true]) ? res.url : this.host + (url ? url : this.previewAdjunct) + '?adjunctId=' + file.adjunctId;
@@ -89750,7 +89961,7 @@ var mainvue_type_script_lang_js_props;
89750
89961
  }
89751
89962
  },
89752
89963
  handleDownloads: function handleDownloads() {
89753
- var url = typeof this.downloads === 'string' ? this.downloads : this.dochubConfig.compressDownloadDocumentUrl || api["sc" /* uploadDownloads */];
89964
+ var url = typeof this.downloads === 'string' ? this.downloads : this.dochubConfig.compressDownloadDocumentUrl || api["tc" /* uploadDownloads */];
89754
89965
  utils_util["a" /* default */].win.open(this.host + url + '?ownId=' + this.ownId + '&code=' + this.code + (this.extendCode ? '&extendCode=' + this.extendCode : '') + '&businessId=' + this.ownId + '&fileName=文档.zip' + '&bucketCode=' + this.code);
89755
89966
  },
89756
89967
  handleDownload: function handleDownload(file) {
@@ -89790,7 +90001,7 @@ var mainvue_type_script_lang_js_props;
89790
90001
  ids = ids.join(',');
89791
90002
  utils_util["a" /* default */].ajax({
89792
90003
  method: this.method,
89793
- url: this.dochubConfig.sortDocumentsUrl || api["uc" /* uploadSort */],
90004
+ url: this.dochubConfig.sortDocumentsUrl || api["vc" /* uploadSort */],
89794
90005
  data: {
89795
90006
  ids: ids,
89796
90007
  documentIds: ids,
@@ -90401,7 +90612,7 @@ if (typeof window !== 'undefined' && window.Vue) {
90401
90612
  }
90402
90613
 
90403
90614
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
90404
- version: '0.6.69',
90615
+ version: '0.6.70',
90405
90616
  install: install,
90406
90617
  Button: packages_button,
90407
90618
  ButtonGroup: button_group,