eoss-ui 0.6.68 → 0.6.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/lib/.DS_Store +0 -0
  2. package/lib/button-group.js +103 -81
  3. package/lib/button.js +103 -81
  4. package/lib/calogin.js +173 -115
  5. package/lib/checkbox-group.js +103 -81
  6. package/lib/config/api.js +3 -0
  7. package/lib/data-table-form.js +103 -81
  8. package/lib/data-table.js +103 -81
  9. package/lib/date-picker.js +103 -81
  10. package/lib/dialog.js +103 -81
  11. package/lib/eoss-ui.common.js +702 -440
  12. package/lib/flow-group.js +103 -81
  13. package/lib/flow-list.js +108 -86
  14. package/lib/flow.js +399 -197
  15. package/lib/form.js +103 -81
  16. package/lib/handle-user.js +104 -82
  17. package/lib/handler.js +104 -82
  18. package/lib/icon.js +104 -82
  19. package/lib/index.js +1 -1
  20. package/lib/input-number.js +103 -81
  21. package/lib/input.js +103 -81
  22. package/lib/login.js +203 -176
  23. package/lib/main.js +140 -119
  24. package/lib/nav.js +103 -81
  25. package/lib/notify.js +85 -81
  26. package/lib/page.js +103 -81
  27. package/lib/pagination.js +103 -81
  28. package/lib/player.js +103 -81
  29. package/lib/qr-code.js +103 -81
  30. package/lib/radio-group.js +103 -81
  31. package/lib/retrial-auth.js +105 -83
  32. package/lib/select-ganged.js +103 -81
  33. package/lib/select.js +103 -81
  34. package/lib/selector-panel.js +118 -100
  35. package/lib/selector.js +135 -89
  36. package/lib/sizer.js +103 -81
  37. package/lib/steps.js +103 -81
  38. package/lib/switch.js +103 -81
  39. package/lib/table-form.js +103 -81
  40. package/lib/tabs.js +103 -81
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/theme-chalk/login.css +1 -1
  43. package/lib/tips.js +104 -82
  44. package/lib/tree-group.js +103 -81
  45. package/lib/tree.js +103 -81
  46. package/lib/upload.js +110 -88
  47. package/lib/utils/util.js +21 -3
  48. package/lib/wujie.js +103 -81
  49. package/lib/wxlogin.js +103 -81
  50. package/package.json +2 -2
  51. package/packages/.DS_Store +0 -0
  52. package/packages/calogin/.DS_Store +0 -0
  53. package/packages/calogin/src/main.vue +75 -31
  54. package/packages/flow/.DS_Store +0 -0
  55. package/packages/flow/src/component/Circulate.vue +9 -2
  56. package/packages/flow/src/component/taskUnionExamine.vue +8 -0
  57. package/packages/flow/src/main.vue +46 -3
  58. package/packages/flow/src/selectUser.vue +6 -0
  59. package/packages/flow-list/.DS_Store +0 -0
  60. package/packages/login/.DS_Store +0 -0
  61. package/packages/login/src/main.vue +44 -48
  62. package/packages/main/.DS_Store +0 -0
  63. package/packages/main/src/simplicity/avatar.vue +0 -1
  64. package/packages/selector/.DS_Store +0 -0
  65. package/packages/selector/src/main.vue +33 -7
  66. package/packages/selector-panel/.DS_Store +0 -0
  67. package/packages/selector-panel/src/main.vue +5 -5
  68. package/packages/selector-panel/src/selection.vue +3 -10
  69. package/packages/theme-chalk/lib/index.css +1 -1
  70. package/packages/theme-chalk/lib/login.css +1 -1
  71. package/packages/theme-chalk/src/login.scss +4 -1
  72. package/src/.DS_Store +0 -0
  73. package/src/config/api.js +3 -0
  74. package/src/index.js +1 -1
  75. package/src/utils/util.js +60 -42
@@ -586,8 +586,9 @@ var ajaxStream = function ajaxStream(_ref2) {
586
586
  try {
587
587
  // 假设数据是 JSON 格式
588
588
  var parsedData = JSON.parse(data);
589
- info.time = parsedData.time;
590
- info.conversationId = parsedData.conversationId;
589
+ info = _extends({}, info, parsedData);
590
+ // info.time = parsedData.time;
591
+ // info.conversationId = parsedData.conversationId;
591
592
  var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
592
593
  var match = parsedData.message.match(thinkRegex);
593
594
  if (match) {
@@ -1051,6 +1052,22 @@ var domEval = function domEval(code) {
1051
1052
  script.text = code;
1052
1053
  document.head.appendChild(script);
1053
1054
  };
1055
+ /**
1056
+ * downloadFile
1057
+ * @desc:下载附件
1058
+ * @author huangbo
1059
+ * @date 2022年5月7日
1060
+ * @param {String} [code] - js内容
1061
+ **/
1062
+ var downloadFile = function downloadFile(fileUrl) {
1063
+ var link = document.createElement('a');
1064
+ link.href = fileUrl;
1065
+ link.rel = 'noopener noreferrer';
1066
+ link.target = '_blank';
1067
+ document.body.appendChild(link);
1068
+ link.click();
1069
+ document.body.removeChild(link);
1070
+ };
1054
1071
 
1055
1072
  /**
1056
1073
  * esEncode
@@ -1604,7 +1621,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1604
1621
  * @param {function} callback - 回调函数
1605
1622
  **/
1606
1623
  var getMainConfig = function getMainConfig(callback) {
1607
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "ob"] }).then(function (res) {
1624
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "pb"] }).then(function (res) {
1608
1625
  if (res && res.rCode === 0) {
1609
1626
  callback(res.results);
1610
1627
  }
@@ -1941,7 +1958,7 @@ var getTypeName = function getTypeName(type) {
1941
1958
  typeName = '[角色]';
1942
1959
  } else if (type === 'post') {
1943
1960
  typeName = '[岗位]';
1944
- } else if (type === 'otheremployee' || type === 'employee') {
1961
+ } else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
1945
1962
  if (sysdepname) {
1946
1963
  typeName = '[' + sysdepname + '员工]';
1947
1964
  } else {
@@ -2361,7 +2378,7 @@ var isLogined = function () {
2361
2378
  break;
2362
2379
  }
2363
2380
 
2364
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "nb"] }).then(function (res) {
2381
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "ob"] }).then(function (res) {
2365
2382
  if (res.rCode === 0) {
2366
2383
  removeStorage();
2367
2384
  }
@@ -3434,6 +3451,7 @@ var watermark = function watermark(option) {
3434
3451
  debounce: debounce,
3435
3452
  delUrlParam: delUrlParam,
3436
3453
  domEval: domEval,
3454
+ downloadFile: downloadFile,
3437
3455
  esDecode: esDecode,
3438
3456
  esEncode: esEncode,
3439
3457
  esmEncrypt: esmEncrypt,
@@ -3517,32 +3535,32 @@ var watermark = function watermark(option) {
3517
3535
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3518
3536
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3519
3537
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return logout; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initLogin; });
3522
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return switchUserTo; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return logout; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initLogin; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return switchUserTo; });
3523
3541
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3524
3542
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
3525
3543
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3526
3544
  /* unused harmony export updateCode */
3527
3545
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
3528
3546
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginModifyPassword; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginModifyPassword; });
3530
3548
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initModifyPassword; });
3549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initModifyPassword; });
3532
3550
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3533
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getTwoFactorLoginCode; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getTwoFactorLoginCode; });
3534
3552
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3535
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initRetrialAuth; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initRetrialAuth; });
3536
3554
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return scanCodeRetrialAuth; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return scanCodeRetrialAuth; });
3538
3556
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3539
3557
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return userOnline; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getUserAppWithTag; });
3542
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return recordUserApp; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return mainConfig; });
3544
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initUserSet; });
3545
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserInfo; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return userOnline; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getUserAppWithTag; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return recordUserApp; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return mainConfig; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initUserSet; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return updateUserInfo; });
3546
3564
  /* unused harmony export getUserImgUrl */
3547
3565
  /* unused harmony export getDoorIndex */
3548
3566
  /* unused harmony export refreshOnlineUsers */
@@ -3551,21 +3569,22 @@ var watermark = function watermark(option) {
3551
3569
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
3552
3570
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
3553
3571
  /* unused harmony export getUserCustomInfo */
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserCustomInfo; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sysMsgPage; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreSysMsg; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreAllSysMsg; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return searchType; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserCustomInfo; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sysMsgPage; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return ignoreSysMsg; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreAllSysMsg; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return searchType; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSysParam; });
3559
3578
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploads; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadOnlyOne; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return uploads; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadOnlyOne; });
3562
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadSort; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploadSort; });
3564
3583
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3565
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadDownloads; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct2; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunctOffice; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadDownloads; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunct2; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return previewAdjunctOffice; });
3569
3588
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3570
3589
  /* unused harmony export upload_updateClassify */
3571
3590
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3577,16 +3596,16 @@ var watermark = function watermark(option) {
3577
3596
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3578
3597
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
3579
3598
  /* unused harmony export findUserBaseInfo */
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return gethelpdoc; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return gethelpdoc; });
3581
3600
  /* unused harmony export getCurrentuser */
3582
3601
  /* unused harmony export mainDetail */
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartFlow; });
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return tempSave; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartFlow; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return tempSave; });
3585
3604
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3586
3605
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3587
3606
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return saveCommonOpinion; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateCommonOpinion; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return saveCommonOpinion; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateCommonOpinion; });
3590
3609
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3591
3610
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
3592
3611
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
@@ -3595,67 +3614,67 @@ var watermark = function watermark(option) {
3595
3614
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3596
3615
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
3597
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskHandleHtml; });
3617
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskHandleHtml; });
3599
3618
  /* unused harmony export getView */
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return register; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryList; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskRejectHtml; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskRejectHtml; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskRead; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskReadIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return rejectAndEnd; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toSendMsg; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendMsg; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return register; });
3620
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryList; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskRejectHtml; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskRejectHtml; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskRead; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toStartTaskReadIndex; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadHtml; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return rejectAndEnd; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toSendMsg; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendMsg; });
3610
3629
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return handleInfo; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginUserInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return wss; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return topic; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return handleInfo; });
3631
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return loginUserInfo; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return wss; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return topic; });
3615
3634
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
3616
3635
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
3617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTransferIndex; });
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTransfer; });
3619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toPresetInfoListIndex; });
3636
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskTransferIndex; });
3637
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskTransfer; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toPresetInfoListIndex; });
3620
3639
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3621
3640
  /* unused harmony export historyListJson */
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListJson; });
3623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pressListJson; });
3641
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListJson; });
3642
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pressListJson; });
3624
3643
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return isCanStartSubFlow; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionExamine; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionExamine; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTakeAdvice; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTakeAdvice; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskStartDraft; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSupervise; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSuperviseSub; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskStartDraft; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskReview; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskReview; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionSeal; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionSeal; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTwoOfficesDispatch; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return twoOfficesDispatch; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toResetProcessIndex; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return resetProcess; });
3642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskContinuationIndex; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskContinuation; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return isCanStartSubFlow; });
3645
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionExamine; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionExamine; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTakeAdvice; });
3648
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTakeAdvice; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskStartDraft; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSupervise; });
3651
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskSuperviseSub; });
3652
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskStartDraft; });
3653
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskReview; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReview; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskUnionSeal; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskUnionSeal; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTwoOfficesDispatch; });
3658
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return twoOfficesDispatch; });
3659
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toResetProcessIndex; });
3660
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return resetProcess; });
3661
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskContinuationIndex; });
3662
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskContinuation; });
3644
3663
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
3645
3664
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
3646
3665
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3647
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListWithCircularReadJson; });
3666
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pendedhistoryListWithCircularReadJson; });
3648
3667
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
3649
3668
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadWithDraw; });
3651
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3669
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReadWithDraw; });
3670
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3652
3671
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendList; });
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendInfo; });
3672
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendList; });
3673
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendInfo; });
3655
3674
  /* unused harmony export sendSave */
3656
3675
  /* unused harmony export sendUpdate */
3657
3676
  /* unused harmony export sendDelete */
3658
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendBatch; });
3677
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendBatch; });
3659
3678
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3660
3679
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3661
3680
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
@@ -3709,6 +3728,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
3709
3728
  // 框架 - 搜索
3710
3729
  var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
3711
3730
 
3731
+ // 系统参数
3732
+ var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
3733
+
3712
3734
  // 附件相关
3713
3735
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3714
3736
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
@@ -5883,8 +5905,8 @@ calendar_src_main.install = function (Vue) {
5883
5905
  };
5884
5906
 
5885
5907
  /* harmony default export */ var calendar = (calendar_src_main);
5886
- // 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=3ba625d0&scoped=true&
5887
- var mainvue_type_template_id_3ba625d0_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 () {
5888
5910
  var _vm = this
5889
5911
  var _h = _vm.$createElement
5890
5912
  var _c = _vm._self._c || _h
@@ -5892,11 +5914,11 @@ var mainvue_type_template_id_3ba625d0_scoped_true_render = function () {
5892
5914
  _c("span", { on: { click: _vm.getCertificate } }, [_vm._t("default")], 2),
5893
5915
  ])
5894
5916
  }
5895
- var mainvue_type_template_id_3ba625d0_scoped_true_staticRenderFns = []
5896
- mainvue_type_template_id_3ba625d0_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
5897
5919
 
5898
5920
 
5899
- // CONCATENATED MODULE: ./packages/calogin/src/main.vue?vue&type=template&id=3ba625d0&scoped=true&
5921
+ // CONCATENATED MODULE: ./packages/calogin/src/main.vue?vue&type=template&id=4a913332&scoped=true&
5900
5922
 
5901
5923
  // CONCATENATED MODULE: ./packages/calogin/src/plugin.js
5902
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; };
@@ -6951,6 +6973,7 @@ var caPlugin = new CA_ExtInterface();
6951
6973
  /* harmony default export */ var calogin_src_mainvue_type_script_lang_js_ = ({
6952
6974
  name: 'EsCaLogin',
6953
6975
  props: {
6976
+ installPath: String,
6954
6977
  caModel: {
6955
6978
  type: String,
6956
6979
  required: true
@@ -6973,7 +6996,9 @@ var caPlugin = new CA_ExtInterface();
6973
6996
  return [];
6974
6997
  }
6975
6998
  },
6976
- success: Function
6999
+ success: Function,
7000
+ // 是否显示证书选择框,默认为true
7001
+ showSelect: Boolean
6977
7002
  },
6978
7003
  data: function data() {
6979
7004
  return {
@@ -6989,7 +7014,7 @@ var caPlugin = new CA_ExtInterface();
6989
7014
  computed: {
6990
7015
  param: function param() {
6991
7016
  // 生成不重复的 DLL 名称列表
6992
- var dllnames = [].concat(new Set(this.dllnames.concat(this.dllname)));
7017
+ var dllnames = Array.from(new Set(this.dllnames.concat(this.dllname)));
6993
7018
 
6994
7019
  return '<?xml version="1.0" encoding="utf-8"?>\n <authinfo>\n <liblist>\n ' + dllnames.map(function (dllname) {
6995
7020
  return '<lib type="SKF" version="1.0" dllname="' + dllname + '"><algid val="SHA1" sm2_hashalg="SM3" /></lib>';
@@ -7021,7 +7046,7 @@ var caPlugin = new CA_ExtInterface();
7021
7046
  // 检查 PNXClient 是否存在
7022
7047
  if (!window.PNXClient) {
7023
7048
  this.$message.error('控件加载失败,请刷新页面重试!');
7024
- this.$emit('error');
7049
+ this.$emit('error', { code: 0, msg: '控件加载失败,请刷新页面重试!' });
7025
7050
  return;
7026
7051
  }
7027
7052
  switch (this.caModel) {
@@ -7030,8 +7055,21 @@ var caPlugin = new CA_ExtInterface();
7030
7055
  try {
7031
7056
  src_plugin.getVersion();
7032
7057
  } catch (e) {
7033
- this.$message.error('未安装控件,请进行安装控件!');
7034
- this.$emit('error');
7058
+ if (this.installPath) {
7059
+ this.$confirm('未安装控件,请进行安装控件!', '控件下载', {
7060
+ confirmButtonText: '下载',
7061
+ cancelButtonText: '取消',
7062
+ type: 'warning'
7063
+ }).then(function () {
7064
+ utils_util["a" /* default */].downloadFile(_this.installPath);
7065
+ }).catch(function () {});
7066
+ } else {
7067
+ this.$message.error('未安装控件,请进行安装控件!');
7068
+ }
7069
+ this.$emit('error', {
7070
+ type: 1,
7071
+ msg: '未安装控件,请进行安装控件!'
7072
+ });
7035
7073
  return;
7036
7074
  }
7037
7075
  try {
@@ -7039,8 +7077,8 @@ var caPlugin = new CA_ExtInterface();
7039
7077
  src_plugin.clearFilter();
7040
7078
  // 初始化vctk控件
7041
7079
  src_plugin.initialize('', this.param);
7042
- // 控制证书为一个时,不弹出证书选择框
7043
- src_plugin.setChooseSingleCert(1);
7080
+ // 控制证书为一个时,并且不显示选择框时,不弹出证书选择框
7081
+ !this.showSelect && src_plugin.setChooseSingleCert(1);
7044
7082
 
7045
7083
  // 生成签名信息
7046
7084
  this.signedData = src_plugin.p7SignString(this.identifyingId, true, true);
@@ -7050,15 +7088,19 @@ var caPlugin = new CA_ExtInterface();
7050
7088
  if (errorCode !== 0) {
7051
7089
  if (errorCode === 3758096386 || errorCode === 2148532334) {
7052
7090
  this.$message.error('用户取消操作!');
7053
- this.$emit('error');
7091
+ this.$emit('error', { code: 52, msg: '用户取消操作!' });
7054
7092
  return;
7055
7093
  } else if (errorCode === -536870815 || errorCode === 3758096481) {
7056
7094
  this.$message.error('没有找到有效的证书,如果使用的是KEY,请确认已经插入key!');
7057
- this.$emit('error');
7095
+ this.$emit('error', {
7096
+ type: 2,
7097
+ msg: '没有找到有效的证书,如果使用的是KEY,请确认已经插入key!'
7098
+ });
7058
7099
  return;
7059
7100
  } else {
7060
- this.$message.error(src_plugin.getLastErrorMessage());
7061
- this.$emit('error');
7101
+ var msg = src_plugin.getLastErrorMessage();
7102
+ this.$message.error(msg);
7103
+ this.$emit('error', { code: 3, msg: msg });
7062
7104
  return;
7063
7105
  }
7064
7106
  }
@@ -7067,7 +7109,7 @@ var caPlugin = new CA_ExtInterface();
7067
7109
  } catch (error) {
7068
7110
  // 捕获其他可能的异常
7069
7111
  this.$message.error('\u64CD\u4F5C\u5931\u8D25: ' + error.message);
7070
- this.$emit('error');
7112
+ this.$emit('error', { code: 4, msg: error.message });
7071
7113
  }
7072
7114
  break;
7073
7115
  //曙光:
@@ -7079,12 +7121,15 @@ var caPlugin = new CA_ExtInterface();
7079
7121
 
7080
7122
  if (!retValue || retCode !== 0) {
7081
7123
  _this.$message.error(retCode !== 0 ? retMsg : '未找到证书,请插入证书UKEY!');
7082
- _this.$emit('error');
7124
+ _this.$emit('error', {
7125
+ type: 2,
7126
+ msg: retCode !== 0 ? retMsg : '未找到证书,请插入证书UKEY!'
7127
+ });
7083
7128
  return;
7084
7129
  }
7085
7130
  var userList = retValue.split('&&&');
7086
- if (userList.length === 1) {
7087
- //如果只有一个证书,直接获取证书信息
7131
+ if (userList.length === 1 && !_this.showSelect) {
7132
+ //如果只有一个证书,并且不显示选择框时,直接获取证书信息
7088
7133
  _this.certId = userList[0].split('||')[1];
7089
7134
  _this.getCertInfo(_this.certId);
7090
7135
  } else {
@@ -7106,12 +7151,25 @@ var caPlugin = new CA_ExtInterface();
7106
7151
  _this.certId = res.value;
7107
7152
  _this.getCertInfo(_this.certId);
7108
7153
  }).catch(function () {
7109
- _this.$emit('error');
7154
+ _this.$emit('error', { code: 52, msg: '用户取消操作!' });
7110
7155
  });
7111
7156
  }
7112
7157
  }).catch(function (err) {
7113
- _this.$message.error('请检查是否安装并启用证书助手控件!');
7114
- _this.$emit('error');
7158
+ if (_this.installPath) {
7159
+ _this.$confirm('请检查是否安装并启用证书助手控件!', '控件下载', {
7160
+ confirmButtonText: '下载',
7161
+ cancelButtonText: '取消',
7162
+ type: 'warning'
7163
+ }).then(function () {
7164
+ utils_util["a" /* default */].downloadFile(_this.installPath);
7165
+ }).catch(function () {});
7166
+ } else {
7167
+ _this.$message.error('请检查是否安装并启用证书助手控件!');
7168
+ }
7169
+ _this.$emit('error', {
7170
+ type: 1,
7171
+ msg: '请检查是否安装并启用证书助手控件!'
7172
+ });
7115
7173
  });
7116
7174
  break;
7117
7175
  //四川:
@@ -7131,7 +7189,7 @@ var caPlugin = new CA_ExtInterface();
7131
7189
 
7132
7190
  if (retCode !== 0) {
7133
7191
  _this2.$message.error(retMsg);
7134
- _this2.$emit('error');
7192
+ _this2.$emit('error', { code: retCode, msg: retMsg });
7135
7193
  return;
7136
7194
  }
7137
7195
  //设置证书原文
@@ -7146,7 +7204,7 @@ var caPlugin = new CA_ExtInterface();
7146
7204
 
7147
7205
  if (retCode !== 0) {
7148
7206
  _this2.$message.error(retMsg);
7149
- _this2.$emit('error');
7207
+ _this2.$emit('error', { code: retCode, msg: retMsg });
7150
7208
  return;
7151
7209
  }
7152
7210
  _this2.idCard = src_plugin.base64Decode(retValue);
@@ -7160,7 +7218,7 @@ var caPlugin = new CA_ExtInterface();
7160
7218
 
7161
7219
  if (retCode !== 0) {
7162
7220
  _this2.$message.error(retMsg);
7163
- _this2.$emit('error');
7221
+ _this2.$emit('error', { code: retCode, msg: retMsg });
7164
7222
  return;
7165
7223
  }
7166
7224
  _this2.b64originData = retValue + _this2.identifyingId;
@@ -7177,7 +7235,7 @@ var caPlugin = new CA_ExtInterface();
7177
7235
  _this2.cerLogin();
7178
7236
  } else {
7179
7237
  _this2.$message.error(retMsg);
7180
- _this2.$emit('error');
7238
+ _this2.$emit('error', { code: retCode, msg: retMsg });
7181
7239
  }
7182
7240
  return;
7183
7241
  }
@@ -7191,16 +7249,16 @@ var caPlugin = new CA_ExtInterface();
7191
7249
  certId: _this2.certId
7192
7250
  });
7193
7251
  }).catch(function (err) {
7194
- _this2.$emit('error');
7252
+ _this2.$emit('error', { code: 5, msg: err });
7195
7253
  });
7196
7254
  }).catch(function (err) {
7197
- _this2.$emit('error');
7255
+ _this2.$emit('error', { code: 6, msg: err });
7198
7256
  });
7199
7257
  }).catch(function (err) {
7200
- _this2.$emit('error');
7258
+ _this2.$emit('error', { code: 7, msg: err });
7201
7259
  });
7202
7260
  }).catch(function (err) {
7203
- _this2.$emit('error');
7261
+ _this2.$emit('error', { code: 8, msg: err });
7204
7262
  });
7205
7263
  },
7206
7264
  cerLogin: function cerLogin() {
@@ -7237,7 +7295,7 @@ var caPlugin = new CA_ExtInterface();
7237
7295
  return;
7238
7296
  }
7239
7297
  _this3.$message.error(retMsg);
7240
- _this3.$emit('error');
7298
+ _this3.$emit('error', { code: retCode, msg: retMsg });
7241
7299
  return;
7242
7300
  }
7243
7301
  src_plugin.getMessage({
@@ -7253,7 +7311,7 @@ var caPlugin = new CA_ExtInterface();
7253
7311
  _this3.cerLogin();
7254
7312
  } else {
7255
7313
  _this3.$message.error(retMsg);
7256
- _this3.$emit('error');
7314
+ _this3.$emit('error', { code: retCode, msg: retMsg });
7257
7315
  }
7258
7316
  return;
7259
7317
  }
@@ -7267,13 +7325,13 @@ var caPlugin = new CA_ExtInterface();
7267
7325
  certId: _this3.certId
7268
7326
  });
7269
7327
  }).catch(function (err) {
7270
- _this3.$emit('error');
7328
+ _this3.$emit('error', { code: 9, msg: err });
7271
7329
  });
7272
7330
  }).catch(function () {
7273
- _this3.$emit('error');
7331
+ _this3.$emit('error', { code: 10, msg: err });
7274
7332
  });
7275
7333
  }).catch(function () {
7276
- _this3.$emit('error');
7334
+ _this3.$emit('error', { code: 11, msg: err });
7277
7335
  });
7278
7336
  }
7279
7337
  }
@@ -7290,11 +7348,11 @@ var caPlugin = new CA_ExtInterface();
7290
7348
 
7291
7349
  var calogin_src_main_component = normalizeComponent(
7292
7350
  packages_calogin_src_mainvue_type_script_lang_js_,
7293
- mainvue_type_template_id_3ba625d0_scoped_true_render,
7294
- mainvue_type_template_id_3ba625d0_scoped_true_staticRenderFns,
7351
+ mainvue_type_template_id_4a913332_scoped_true_render,
7352
+ mainvue_type_template_id_4a913332_scoped_true_staticRenderFns,
7295
7353
  false,
7296
7354
  null,
7297
- "3ba625d0",
7355
+ "4a913332",
7298
7356
  null
7299
7357
 
7300
7358
  )
@@ -26702,8 +26760,8 @@ form_src_main.install = function (Vue) {
26702
26760
  };
26703
26761
 
26704
26762
  /* harmony default export */ var packages_form = (form_src_main);
26705
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=5f8259cf&
26706
- var mainvue_type_template_id_5f8259cf_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 () {
26707
26765
  var _vm = this
26708
26766
  var _h = _vm.$createElement
26709
26767
  var _c = _vm._self._c || _h
@@ -26720,6 +26778,74 @@ var mainvue_type_template_id_5f8259cf_render = function () {
26720
26778
  ? _c(
26721
26779
  "div",
26722
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
+ ]),
26723
26849
  _c("CommonOpinions", {
26724
26850
  directives: [
26725
26851
  {
@@ -26757,12 +26883,16 @@ var mainvue_type_template_id_5f8259cf_render = function () {
26757
26883
  [
26758
26884
  _c(
26759
26885
  "el-form-item",
26760
- { attrs: { prop: "nextNodeId", label: "下步节点" } },
26886
+ {
26887
+ staticStyle: { "margin-top": "20px" },
26888
+ attrs: { prop: "nextNodeId", label: "下步节点" },
26889
+ },
26761
26890
  [
26762
26891
  _vm.nextNodeCheckType == "select"
26763
26892
  ? _c(
26764
26893
  "el-select",
26765
26894
  {
26895
+ staticStyle: { width: "100% !important" },
26766
26896
  attrs: { placeholder: "请选择下步节点" },
26767
26897
  model: {
26768
26898
  value: _vm.circulateForm.nextNodeId,
@@ -26813,7 +26943,7 @@ var mainvue_type_template_id_5f8259cf_render = function () {
26813
26943
  ref: "circulate",
26814
26944
  staticStyle: { "margin-top": "10px" },
26815
26945
  attrs: {
26816
- businessId: _vm.businessId,
26946
+ businessId: _vm.businessIds,
26817
26947
  selectorParams: _vm.params,
26818
26948
  "pending-id": _vm.pendingId,
26819
26949
  showBtn: false,
@@ -27569,58 +27699,101 @@ var mainvue_type_template_id_5f8259cf_render = function () {
27569
27699
  },
27570
27700
  },
27571
27701
  [
27572
- _c(
27573
- "el-select",
27574
- {
27575
- attrs: {
27576
- placeholder:
27577
- "请选择下步操作",
27578
- disabled:
27579
- _vm.operationList &&
27580
- _vm.operationList
27581
- .length == 1,
27582
- },
27583
- on: {
27584
- change: function (
27585
- $event
27586
- ) {
27587
- _vm.selecNext(
27588
- $event,
27589
- true
27590
- )
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
+ },
27591
27741
  },
27592
- },
27593
- model: {
27594
- value:
27595
- _vm.nextNode
27596
- .nextOperate,
27597
- callback: function (
27598
- $$v
27599
- ) {
27600
- _vm.$set(
27601
- _vm.nextNode,
27602
- "nextOperate",
27603
- $$v
27604
- )
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",
27605
27768
  },
27606
- expression:
27607
- "nextNode.nextOperate",
27608
- },
27609
- },
27610
- _vm._l(
27611
- _vm.operationList,
27612
- function (items) {
27613
- return _c("el-option", {
27614
- key: items.key,
27615
- attrs: {
27616
- label: items.value,
27617
- value: items.key,
27769
+ on: {
27770
+ change: function (
27771
+ $event
27772
+ ) {
27773
+ _vm.selecNext(
27774
+ $event,
27775
+ true
27776
+ )
27618
27777
  },
27619
- })
27620
- }
27621
- ),
27622
- 1
27623
- ),
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(),
27624
27797
  ],
27625
27798
  1
27626
27799
  )
@@ -29259,11 +29432,11 @@ var mainvue_type_template_id_5f8259cf_render = function () {
29259
29432
  )
29260
29433
  : _vm._e()
29261
29434
  }
29262
- var mainvue_type_template_id_5f8259cf_staticRenderFns = []
29263
- mainvue_type_template_id_5f8259cf_render._withStripped = true
29435
+ var mainvue_type_template_id_5e28124e_staticRenderFns = []
29436
+ mainvue_type_template_id_5e28124e_render._withStripped = true
29264
29437
 
29265
29438
 
29266
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5f8259cf&
29439
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=5e28124e&
29267
29440
 
29268
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&
29269
29442
  var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
@@ -30213,7 +30386,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
30213
30386
  }
30214
30387
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
30215
30388
  utils_util["a" /* default */].ajax({
30216
- url: data.id ? api["pc" /* updateCommonOpinion */] : api["Ab" /* saveCommonOpinion */],
30389
+ url: data.id ? api["qc" /* updateCommonOpinion */] : api["Bb" /* saveCommonOpinion */],
30217
30390
  data: info,
30218
30391
  header: { 'Content-Type': 'multipart/form-data' },
30219
30392
  method: 'post'
@@ -30881,8 +31054,8 @@ processFormvue_type_template_id_d7f4c800_render._withStripped = true
30881
31054
 
30882
31055
  // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=d7f4c800&
30883
31056
 
30884
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=1de54739&
30885
- var selectUservue_type_template_id_1de54739_render = function () {
31057
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=12e8d2a9&
31058
+ var selectUservue_type_template_id_12e8d2a9_render = function () {
30886
31059
  var _vm = this
30887
31060
  var _h = _vm.$createElement
30888
31061
  var _c = _vm._self._c || _h
@@ -30999,6 +31172,7 @@ var selectUservue_type_template_id_1de54739_render = function () {
30999
31172
  !_vm.isCustomUser ||
31000
31173
  _vm.isCurrentNodeForbiddenChangeCandidate == 1,
31001
31174
  filterable: Boolean(_vm.isCustomUser),
31175
+ where: _vm.newWhere,
31002
31176
  multiple: _vm.newMultiple,
31003
31177
  param: Object.assign({}, _vm.newParams, { info: "no" }),
31004
31178
  disableds: _vm.disableds,
@@ -31025,11 +31199,11 @@ var selectUservue_type_template_id_1de54739_render = function () {
31025
31199
  2
31026
31200
  )
31027
31201
  }
31028
- var selectUservue_type_template_id_1de54739_staticRenderFns = []
31029
- selectUservue_type_template_id_1de54739_render._withStripped = true
31202
+ var selectUservue_type_template_id_12e8d2a9_staticRenderFns = []
31203
+ selectUservue_type_template_id_12e8d2a9_render._withStripped = true
31030
31204
 
31031
31205
 
31032
- // CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=1de54739&
31206
+ // CONCATENATED MODULE: ./packages/flow/src/selectUser.vue?vue&type=template&id=12e8d2a9&
31033
31207
 
31034
31208
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=script&lang=js&
31035
31209
  var selectUservue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -31124,6 +31298,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31124
31298
  //
31125
31299
  //
31126
31300
  //
31301
+ //
31127
31302
 
31128
31303
 
31129
31304
 
@@ -31217,7 +31392,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31217
31392
  newNextUser: [],
31218
31393
  newOptions: [],
31219
31394
  newSelectUserList: [],
31220
- url: api["db" /* handleInfo */],
31395
+ url: api["eb" /* handleInfo */],
31221
31396
  newCheckboxList: [],
31222
31397
  newPresetEdit: 0,
31223
31398
  newMultiple: false,
@@ -31232,6 +31407,11 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31232
31407
  };
31233
31408
  },
31234
31409
 
31410
+ computed: {
31411
+ newWhere: function newWhere() {
31412
+ return selectUservue_type_script_lang_js_extends({ mid: JSON.parse(utils_util["a" /* default */].getStorage('mainConfig')).userModel.orgId + '-org-1' }, this.where);
31413
+ }
31414
+ },
31235
31415
  watch: {
31236
31416
  newPresetEdit: function newPresetEdit(val) {
31237
31417
  var _this = this;
@@ -31334,7 +31514,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31334
31514
  if (query !== '') {
31335
31515
  this.searchLoading = true;
31336
31516
  utils_util["a" /* default */].ajax({
31337
- url: api["db" /* handleInfo */],
31517
+ url: api["eb" /* handleInfo */],
31338
31518
  params: { searchKey: query, query: query, type: 'user' }
31339
31519
  }).then(function (res) {
31340
31520
  var status = res.status,
@@ -31505,8 +31685,8 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31505
31685
 
31506
31686
  var selectUser_component = normalizeComponent(
31507
31687
  src_selectUservue_type_script_lang_js_,
31508
- selectUservue_type_template_id_1de54739_render,
31509
- selectUservue_type_template_id_1de54739_staticRenderFns,
31688
+ selectUservue_type_template_id_12e8d2a9_render,
31689
+ selectUservue_type_template_id_12e8d2a9_staticRenderFns,
31510
31690
  false,
31511
31691
  null,
31512
31692
  null,
@@ -32833,7 +33013,7 @@ var processFormvue_type_script_lang_js_components;
32833
33013
  if (mainConfig) {
32834
33014
  this.userModel = JSON.parse(mainConfig).userModel;
32835
33015
  } else {
32836
- 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) {
32837
33017
  var status = res.status,
32838
33018
  data = res.data;
32839
33019
 
@@ -33064,7 +33244,7 @@ var processFormvue_type_script_lang_js_components;
33064
33244
  params = newParm;
33065
33245
  }
33066
33246
  utils_util["a" /* default */].ajax({
33067
- 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 */],
33068
33248
  method: 'post',
33069
33249
  data: params
33070
33250
  }).then(function (res) {
@@ -33264,7 +33444,7 @@ var processFormvue_type_script_lang_js_components;
33264
33444
  businessId: this.businessId
33265
33445
  };
33266
33446
  // 获取节点
33267
- 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) {
33268
33448
  //pc接口返回数据处理
33269
33449
  var status = res.status,
33270
33450
  message = res.message,
@@ -33901,7 +34081,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
33901
34081
  notificationType = _sendInfo.notificationType;
33902
34082
 
33903
34083
  var params = {
33904
- url: api["Gb" /* sendMsg */],
34084
+ url: api["Hb" /* sendMsg */],
33905
34085
  headers: { Accept: 'application/json,text/plain' },
33906
34086
  method: 'post',
33907
34087
  data: {
@@ -33963,7 +34143,7 @@ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
33963
34143
 
33964
34144
  this.loading = true;
33965
34145
  utils_util["a" /* default */].ajax({
33966
- url: api["Yb" /* toSendMsg */],
34146
+ url: api["Zb" /* toSendMsg */],
33967
34147
  params: { pendingId: this.$attrs.pendingId }
33968
34148
  }).then(function (res) {
33969
34149
  var status = res.status,
@@ -34828,7 +35008,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
34828
35008
  userId: utils_util["a" /* default */].getStorage('userId'),
34829
35009
  nextNodeId: _this2.nextNode.nextNodeId
34830
35010
  };
34831
- 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) {
34832
35012
  var status = res.status,
34833
35013
  message = res.message;
34834
35014
 
@@ -34892,7 +35072,7 @@ processRejectvue_type_template_id_67bb0710_render._withStripped = true
34892
35072
  isSinglePage: false,
34893
35073
  opinion: this.option
34894
35074
  };
34895
- 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) {
34896
35076
  var status = res.status,
34897
35077
  message = res.message,
34898
35078
  _res$data = res.data,
@@ -35685,7 +35865,7 @@ var startTaskReadvue_type_script_lang_js_components;
35685
35865
  taskExamine = this.taskExamine;
35686
35866
 
35687
35867
  var params = {
35688
- url: api["jc" /* toTaskTransferIndex */],
35868
+ url: api["kc" /* toTaskTransferIndex */],
35689
35869
  params: {
35690
35870
  opinion: opinion,
35691
35871
  pendingId: pendingId,
@@ -35810,7 +35990,7 @@ var startTaskReadvue_type_script_lang_js_components;
35810
35990
  var _this4 = this;
35811
35991
 
35812
35992
  var params = {
35813
- url: api["ac" /* toStartTaskRead */],
35993
+ url: api["bc" /* toStartTaskRead */],
35814
35994
  params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
35815
35995
  };
35816
35996
  if (this.typeCode == 'read') {
@@ -35899,7 +36079,7 @@ var startTaskReadvue_type_script_lang_js_components;
35899
36079
  type = this.type;
35900
36080
 
35901
36081
  var params = {
35902
- url: api["Sb" /* taskTransfer */],
36082
+ url: api["Tb" /* taskTransfer */],
35903
36083
  data: {
35904
36084
  choiceDeptId: choiceDeptId,
35905
36085
  choiceOrgId: choiceOrgId,
@@ -35998,7 +36178,7 @@ var startTaskReadvue_type_script_lang_js_components;
35998
36178
  params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
35999
36179
  }
36000
36180
  utils_util["a" /* default */].ajax({
36001
- url: api["Mb" /* taskReadHtml */],
36181
+ url: api["Nb" /* taskReadHtml */],
36002
36182
  params: { taskAction: _this8.type },
36003
36183
  headers: {
36004
36184
  Accept: 'application/json,text/plain'
@@ -36878,7 +37058,7 @@ var resetvue_type_script_lang_js_components;
36878
37058
  if (mainConfig) {
36879
37059
  this.userModel = JSON.parse(mainConfig).userModel;
36880
37060
  } else {
36881
- 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) {
36882
37062
  var status = res.status,
36883
37063
  data = res.data;
36884
37064
 
@@ -37086,7 +37266,7 @@ var resetvue_type_script_lang_js_components;
37086
37266
  }, _this4.subParams);
37087
37267
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
37088
37268
  utils_util["a" /* default */].ajax({
37089
- url: _this4.type == 'reset' ? api["zb" /* resetProcess */] : api["Kb" /* taskContinuation */],
37269
+ url: _this4.type == 'reset' ? api["Ab" /* resetProcess */] : api["Lb" /* taskContinuation */],
37090
37270
  method: 'post',
37091
37271
  data: params
37092
37272
  }).then(function (res) {
@@ -37290,7 +37470,7 @@ var resetvue_type_script_lang_js_components;
37290
37470
  var _this7 = this;
37291
37471
 
37292
37472
  var params = {
37293
- url: this.type == 'continuation' ? api["cc" /* toTaskContinuationIndex */] : api["Xb" /* toResetProcessIndex */],
37473
+ url: this.type == 'continuation' ? api["dc" /* toTaskContinuationIndex */] : api["Yb" /* toResetProcessIndex */],
37294
37474
  params: resetvue_type_script_lang_js_extends({
37295
37475
  appId: this.appId
37296
37476
  }, this.flowParams)
@@ -37396,8 +37576,8 @@ var reset_component = normalizeComponent(
37396
37576
  )
37397
37577
 
37398
37578
  /* harmony default export */ var src_reset = (reset_component.exports);
37399
- // 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&
37400
- 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 () {
37401
37581
  var _vm = this
37402
37582
  var _h = _vm.$createElement
37403
37583
  var _c = _vm._self._c || _h
@@ -37515,6 +37695,7 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
37515
37695
  nextUser: _vm.infoList.nextOtherOrgObj,
37516
37696
  multiple: _vm.newMultiple,
37517
37697
  mix: _vm.otherMix,
37698
+ disableds: _vm.otherOrgDisabledObjId,
37518
37699
  types:
37519
37700
  _vm.foreignOrgTabs.length > 0
37520
37701
  ? _vm.foreignOrgTabs
@@ -37651,11 +37832,11 @@ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
37651
37832
  1
37652
37833
  )
37653
37834
  }
37654
- var taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns = []
37655
- 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
37656
37837
 
37657
37838
 
37658
- // 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&
37659
37840
 
37660
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&
37661
37842
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -37789,6 +37970,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37789
37970
  //
37790
37971
  //
37791
37972
  //
37973
+ //
37792
37974
 
37793
37975
 
37794
37976
 
@@ -37827,6 +38009,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37827
38009
  foreignOrgTabsParam: {},
37828
38010
  currentOrgTabsParam: {},
37829
38011
  currentOrgProcessKey: '',
38012
+ otherOrgDisabledObjId: [],
37830
38013
  isSubFlow: true,
37831
38014
  choiceDeptId: '',
37832
38015
  choiceOrgId: '',
@@ -37872,7 +38055,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37872
38055
  pendingId = this.pendingId;
37873
38056
 
37874
38057
  var params = {
37875
- url: api["Pb" /* taskReview */],
38058
+ url: api["Qb" /* taskReview */],
37876
38059
  data: {
37877
38060
  nextUserId: nextOtherOrgObj.join(','),
37878
38061
  notificationType: noticeType.join(','),
@@ -37908,7 +38091,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37908
38091
  var _this2 = this;
37909
38092
 
37910
38093
  var params = {
37911
- url: api["ec" /* toTaskReview */],
38094
+ url: api["fc" /* toTaskReview */],
37912
38095
  params: { pendingId: this.pendingId }
37913
38096
  };
37914
38097
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -37944,7 +38127,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37944
38127
  var _this3 = this;
37945
38128
 
37946
38129
  var params = {
37947
- 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 */],
37948
38131
  params: { pendingId: this.pendingId },
37949
38132
  headers: { Accept: 'application/json,text/plain' }
37950
38133
  };
@@ -37962,6 +38145,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37962
38145
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
37963
38146
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
37964
38147
  unionDispatchOrgId = _res$data2.unionDispatchOrgId,
38148
+ otherOrgDisabledObjId = _res$data2.otherOrgDisabledObjId,
37965
38149
  orgNames = _res$data2.orgNames,
37966
38150
  _res$data2$nodeInfoMa = _res$data2.nodeInfoMap.nodeExtAttr,
37967
38151
  userSelectionType = _res$data2$nodeInfoMa.userSelectionType,
@@ -37969,6 +38153,11 @@ var taskUnionExaminevue_type_script_lang_js_components;
37969
38153
  isHideCurrentOrg = _res$data2$nodeInfoMa.isHideCurrentOrg,
37970
38154
  isOpinionRequired = _res$data2$nodeInfoMa.isOpinionRequired;
37971
38155
 
38156
+ console.log(otherOrgDisabledObjId, 'otherOrgDisabledObjId');
38157
+ if (otherOrgDisabledObjId) {
38158
+ _this3.otherOrgDisabledObjId = otherOrgDisabledObjId.split(',');
38159
+ console.log(_this3.otherOrgDisabledObjId, otherOrgDisabledObjId.split(','));
38160
+ }
37972
38161
  if (res.data.customizedConfig) {
37973
38162
  if (res.data.customizedConfig.currentOrgSelectorCustomized) {
37974
38163
  _this3.currentMix = res.data.customizedConfig.currentOrgSelectorSelectMix == 'true';
@@ -38068,7 +38257,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
38068
38257
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
38069
38258
  // return this.$message.warning('暂未开放,敬请期待!');
38070
38259
  var param = {
38071
- 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 */],
38072
38261
  data: {
38073
38262
  opinion: opinion,
38074
38263
  pendingId: pendingId,
@@ -38218,8 +38407,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
38218
38407
 
38219
38408
  var taskUnionExamine_component = normalizeComponent(
38220
38409
  component_taskUnionExaminevue_type_script_lang_js_,
38221
- taskUnionExaminevue_type_template_id_21dd6a72_render,
38222
- taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns,
38410
+ taskUnionExaminevue_type_template_id_ea4335d6_render,
38411
+ taskUnionExaminevue_type_template_id_ea4335d6_staticRenderFns,
38223
38412
  false,
38224
38413
  null,
38225
38414
  null,
@@ -41504,7 +41693,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41504
41693
  taskAction: 'complete'
41505
41694
  };
41506
41695
  utils_util["a" /* default */].ajax({
41507
- url: api["Mb" /* taskReadHtml */],
41696
+ url: api["Nb" /* taskReadHtml */],
41508
41697
  params: { taskAction: 'complete' },
41509
41698
  headers: {
41510
41699
  Accept: 'application/json,text/plain'
@@ -41536,7 +41725,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41536
41725
 
41537
41726
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
41538
41727
  utils_util["a" /* default */].ajax({
41539
- url: api["bc" /* toStartTaskReadIndex */],
41728
+ url: api["cc" /* toStartTaskReadIndex */],
41540
41729
  params: { pendingId: this.pendingId }
41541
41730
  }).then(function (res) {
41542
41731
  var status = res.status,
@@ -41572,7 +41761,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41572
41761
  if (mainConfig) {
41573
41762
  this.userModel = JSON.parse(mainConfig).userModel;
41574
41763
  } else {
41575
- 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) {
41576
41765
  var status = res.status,
41577
41766
  data = res.data;
41578
41767
 
@@ -41673,7 +41862,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41673
41862
  pendingId: this.pendingId
41674
41863
  };
41675
41864
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
41676
- 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) {
41677
41866
  var status = res.status,
41678
41867
  message = res.message;
41679
41868
 
@@ -41967,7 +42156,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
41967
42156
  var _this15 = this;
41968
42157
 
41969
42158
  var params = {
41970
- url: api["kb" /* isCanStartSubFlow */],
42159
+ url: api["lb" /* isCanStartSubFlow */],
41971
42160
  data: {
41972
42161
  appId: this.taskExamineInfo.appId,
41973
42162
  inevitableNode: res.inevitableNode
@@ -42077,7 +42266,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42077
42266
  this.$confirm('确认' + res.value + '?').then(function () {
42078
42267
  // return this.$message.warning('请填写意见');
42079
42268
  var params = {
42080
- url: api["yb" /* rejectAndEnd */],
42269
+ url: api["zb" /* rejectAndEnd */],
42081
42270
  headers: { Accept: 'application/json,text/plain' },
42082
42271
  method: 'post',
42083
42272
  data: {
@@ -42742,7 +42931,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42742
42931
  userId: utils_util["a" /* default */].getStorage('userId'),
42743
42932
  type: 2
42744
42933
  };
42745
- 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) {
42746
42935
  var rCode = res.rCode,
42747
42936
  msg = res.msg,
42748
42937
  results = res.results;
@@ -42938,7 +43127,7 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
42938
43127
  params.isSubFlow = taskExamineInfo.isSubFlow;
42939
43128
  params.nodeId = taskExamineInfo.nodeId;
42940
43129
  params.needRetrialAuth = needRetrialAuth;
42941
- 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) {
42942
43131
  var status = res.status,
42943
43132
  message = res.message;
42944
43133
 
@@ -43297,7 +43486,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
43297
43486
  pendingUserIds = _nextNode.pendingUserIds;
43298
43487
 
43299
43488
  var params = {
43300
- url: api["hc" /* toTaskSuperviseSub */],
43489
+ url: api["ic" /* toTaskSuperviseSub */],
43301
43490
  params: {
43302
43491
  userId: utils_util["a" /* default */].getStorage('userId'),
43303
43492
  urgeUserIds: pendingUserIds,
@@ -43322,7 +43511,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
43322
43511
 
43323
43512
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
43324
43513
  utils_util["a" /* default */].ajax({
43325
- url: api["gc" /* toTaskSupervise */],
43514
+ url: api["hc" /* toTaskSupervise */],
43326
43515
  params: {
43327
43516
  businessId: this.businessId,
43328
43517
  userId: utils_util["a" /* default */].getStorage('userId')
@@ -43365,8 +43554,8 @@ var supervise_component = normalizeComponent(
43365
43554
  )
43366
43555
 
43367
43556
  /* harmony default export */ var supervise = (supervise_component.exports);
43368
- // 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&
43369
- 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 () {
43370
43559
  var _vm = this
43371
43560
  var _h = _vm.$createElement
43372
43561
  var _c = _vm._self._c || _h
@@ -43554,11 +43743,11 @@ var Circulatevue_type_template_id_3f042944_render = function () {
43554
43743
  1
43555
43744
  )
43556
43745
  }
43557
- var Circulatevue_type_template_id_3f042944_staticRenderFns = []
43558
- 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
43559
43748
 
43560
43749
 
43561
- // 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&
43562
43751
 
43563
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&
43564
43753
  var Circulatevue_type_script_lang_js_components;
@@ -43700,6 +43889,7 @@ var Circulatevue_type_script_lang_js_components;
43700
43889
  isOpinionRequired: 0,
43701
43890
  otherParams: { filid: 'other' },
43702
43891
  loading: false,
43892
+ subLoading: null,
43703
43893
  userModel: {}
43704
43894
  };
43705
43895
  },
@@ -43776,14 +43966,20 @@ var Circulatevue_type_script_lang_js_components;
43776
43966
  if (!this.showBtn) {
43777
43967
  param.data.pendingId = this.pendingId;
43778
43968
  delete param.data.processDefinitionId;
43969
+ this.subLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
43970
+ } else {
43971
+ this.loading = true;
43779
43972
  }
43780
- this.loading = true;
43781
43973
  utils_util["a" /* default */].ajax(param).then(function (res) {
43782
43974
  var message = res.message,
43783
43975
  status = res.status,
43784
43976
  rCode = res.rCode;
43785
43977
 
43786
- _this.loading = false;
43978
+ if (!_this.showBtn) {
43979
+ _this.subLoading.close();
43980
+ } else {
43981
+ _this.loading = false;
43982
+ }
43787
43983
  if (status == 'success' || rCode == 0) {
43788
43984
  _this.simpleTips && _this.$message.success('提交成功');
43789
43985
  _this.quit(true);
@@ -43914,8 +44110,8 @@ var Circulatevue_type_script_lang_js_components;
43914
44110
 
43915
44111
  var Circulate_component = normalizeComponent(
43916
44112
  component_Circulatevue_type_script_lang_js_,
43917
- Circulatevue_type_template_id_3f042944_render,
43918
- Circulatevue_type_template_id_3f042944_staticRenderFns,
44113
+ Circulatevue_type_template_id_e3855b2c_render,
44114
+ Circulatevue_type_template_id_e3855b2c_staticRenderFns,
43919
44115
  false,
43920
44116
  null,
43921
44117
  null,
@@ -44880,6 +45076,44 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
44880
45076
  //
44881
45077
  //
44882
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
+ //
44883
45117
 
44884
45118
 
44885
45119
 
@@ -44967,6 +45201,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
44967
45201
  showCustomLimitTimeText: false,
44968
45202
  currentOrgDisabledObjId: [],
44969
45203
  nextNodeCheckType: 'select',
45204
+ nextOperateCheckType: 'select',
44970
45205
  readOnlyNotificationType: '',
44971
45206
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
44972
45207
  taskParams: {},
@@ -45453,7 +45688,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45453
45688
  taskAction: 'complete'
45454
45689
  };
45455
45690
  utils_util["a" /* default */].ajax({
45456
- url: api["Mb" /* taskReadHtml */],
45691
+ url: api["Nb" /* taskReadHtml */],
45457
45692
  params: { taskAction: 'complete' },
45458
45693
  headers: {
45459
45694
  Accept: 'application/json,text/plain'
@@ -45500,7 +45735,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45500
45735
 
45501
45736
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
45502
45737
  utils_util["a" /* default */].ajax({
45503
- url: api["bc" /* toStartTaskReadIndex */],
45738
+ url: api["cc" /* toStartTaskReadIndex */],
45504
45739
  params: { pendingId: this.pendingId }
45505
45740
  }).then(function (res) {
45506
45741
  var status = res.status,
@@ -45544,7 +45779,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45544
45779
  if (mainConfig) {
45545
45780
  this.userModel = JSON.parse(mainConfig).userModel;
45546
45781
  } else {
45547
- 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) {
45548
45783
  var status = res.status,
45549
45784
  data = res.data;
45550
45785
 
@@ -45645,7 +45880,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45645
45880
  pendingId: this.pendingId
45646
45881
  };
45647
45882
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
45648
- 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) {
45649
45884
  var status = res.status,
45650
45885
  message = res.message;
45651
45886
 
@@ -45951,7 +46186,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
45951
46186
  var _this18 = this;
45952
46187
 
45953
46188
  var params = {
45954
- url: api["kb" /* isCanStartSubFlow */],
46189
+ url: api["lb" /* isCanStartSubFlow */],
45955
46190
  data: {
45956
46191
  appId: this.taskExamineInfo.appId,
45957
46192
  inevitableNode: res.inevitableNode
@@ -46061,7 +46296,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46061
46296
  this.$confirm('确认' + res.value + '?').then(function () {
46062
46297
  // return this.$message.warning('请填写意见');
46063
46298
  var params = {
46064
- url: api["yb" /* rejectAndEnd */],
46299
+ url: api["zb" /* rejectAndEnd */],
46065
46300
  headers: { Accept: 'application/json,text/plain' },
46066
46301
  method: 'post',
46067
46302
  data: {
@@ -46401,6 +46636,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46401
46636
  circularReadParamsMap = _res$data2.circularReadParamsMap,
46402
46637
  isPreset = _res$data2.isPreset,
46403
46638
  choiceOrgId = _res$data2.choiceOrgId,
46639
+ nextOperateCheckType = _res$data2.nextOperateCheckType,
46404
46640
  choiceDeptId = _res$data2.choiceDeptId,
46405
46641
  readOnlyNotificationType = _res$data2.readOnlyNotificationType,
46406
46642
  notificationMessageReadOnly = _res$data2.notificationMessageReadOnly,
@@ -46429,7 +46665,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46429
46665
  _this27.$emit('startTaskRead', res);
46430
46666
  _this27.$emit('start-task-read', res);
46431
46667
  _this27.circularReadParamsMap = circularReadParamsMap || {};
46432
- _this27.currentOrgName = currentOrgName;
46668
+ _this27.currentOrgName = _this27.nextOperateCheckType = nextOperateCheckType;
46433
46669
  _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
46434
46670
  _this27.readOnlyNotificationType = readOnlyNotificationType;
46435
46671
  _this27.isSpecial = isSpecial;
@@ -46644,6 +46880,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46644
46880
  if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
46645
46881
  this.flowSuccess(true);
46646
46882
  // this.$emit('success');
46883
+ } else {
46884
+ this.$emit('cancel');
46647
46885
  }
46648
46886
  },
46649
46887
 
@@ -46744,7 +46982,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
46744
46982
  userId: utils_util["a" /* default */].getStorage('userId'),
46745
46983
  type: 2
46746
46984
  };
46747
- 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) {
46748
46986
  var rCode = res.rCode,
46749
46987
  msg = res.msg,
46750
46988
  results = res.results;
@@ -47045,7 +47283,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
47045
47283
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
47046
47284
  }
47047
47285
 
47048
- 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) {
47049
47287
  var status = res.status,
47050
47288
  message = res.message;
47051
47289
 
@@ -47127,8 +47365,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
47127
47365
 
47128
47366
  var flow_src_main_component = normalizeComponent(
47129
47367
  packages_flow_src_mainvue_type_script_lang_js_,
47130
- mainvue_type_template_id_5f8259cf_render,
47131
- mainvue_type_template_id_5f8259cf_staticRenderFns,
47368
+ mainvue_type_template_id_5e28124e_render,
47369
+ mainvue_type_template_id_5e28124e_staticRenderFns,
47132
47370
  false,
47133
47371
  null,
47134
47372
  null,
@@ -50368,7 +50606,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50368
50606
  return x.id;
50369
50607
  }).join(',');
50370
50608
  var params = {
50371
- url: api["Nb" /* taskReadWithDraw */],
50609
+ url: api["Ob" /* taskReadWithDraw */],
50372
50610
  params: {
50373
50611
  pendingIds: pendingIds
50374
50612
  }
@@ -50456,7 +50694,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50456
50694
  getCircularReadList: function getCircularReadList() {
50457
50695
  var _that = this;
50458
50696
  var params = {
50459
- url: api["rb" /* pendedhistoryListWithCircularReadJson */],
50697
+ url: api["sb" /* pendedhistoryListWithCircularReadJson */],
50460
50698
  params: { apprecordid: _that.businessId }
50461
50699
  };
50462
50700
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -50628,7 +50866,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50628
50866
 
50629
50867
  this.pressLoading = true;
50630
50868
  var params = {
50631
- url: api["sb" /* pressListJson */],
50869
+ url: api["tb" /* pressListJson */],
50632
50870
  params: { historyId: historyId },
50633
50871
  method: 'POST',
50634
50872
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -50729,7 +50967,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50729
50967
  var _this12 = this;
50730
50968
 
50731
50969
  var params = {
50732
- url: api["qb" /* pendedhistoryListJson */],
50970
+ url: api["rb" /* pendedhistoryListJson */],
50733
50971
  params: flow_list_src_mainvue_type_script_lang_js_extends({
50734
50972
  apprecordid: this.businessId,
50735
50973
  pendingAttr: 0,
@@ -50895,7 +51133,7 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
50895
51133
  var _this15 = this;
50896
51134
 
50897
51135
  var param = {
50898
- url: api["Wb" /* toPresetInfoListIndex */],
51136
+ url: api["Xb" /* toPresetInfoListIndex */],
50899
51137
  params: { apprecordid: this.businessId }
50900
51138
  };
50901
51139
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -51154,7 +51392,7 @@ mainvue_type_template_id_3d02c60c_render._withStripped = true
51154
51392
 
51155
51393
  if (this.job.id !== item.id) {
51156
51394
  this.job = item;
51157
- 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) {
51158
51396
  if (res.rCode == 0) {
51159
51397
  utils_util["a" /* default */].setStorage({
51160
51398
  type: _this.storage,
@@ -51863,7 +52101,7 @@ var _props;
51863
52101
  document.body.appendChild(iframe);
51864
52102
  }
51865
52103
  }
51866
- 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) {
51867
52105
  if (res.rCode == 0) {
51868
52106
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
51869
52107
  if (_this.onQuit && typeof _this.onQuit === 'function') {
@@ -51995,7 +52233,7 @@ mainvue_type_template_id_20e44f4a_render._withStripped = true
51995
52233
  props: {
51996
52234
  preview: {
51997
52235
  type: String,
51998
- default: api["tb" /* previewAdjunct */] + '?adjunctId='
52236
+ default: api["ub" /* previewAdjunct */] + '?adjunctId='
51999
52237
  },
52000
52238
  contents: [Object, String]
52001
52239
  },
@@ -53480,8 +53718,8 @@ layout_src_main.install = function (Vue) {
53480
53718
  };
53481
53719
 
53482
53720
  /* harmony default export */ var packages_layout = (layout_src_main);
53483
- // 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=950692f2&
53484
- var mainvue_type_template_id_950692f2_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 () {
53485
53723
  var _vm = this
53486
53724
  var _h = _vm.$createElement
53487
53725
  var _c = _vm._self._c || _h
@@ -53518,6 +53756,7 @@ var mainvue_type_template_id_950692f2_render = function () {
53518
53756
  })
53519
53757
  : _vm._e(),
53520
53758
  _vm._t("default"),
53759
+ _vm._t("warning", null, { contents: _vm.warningText }),
53521
53760
  _c(
53522
53761
  "div",
53523
53762
  {
@@ -53577,75 +53816,81 @@ var mainvue_type_template_id_950692f2_render = function () {
53577
53816
  },
53578
53817
  },
53579
53818
  [
53580
- this.mode == "complex" &&
53581
- _vm.loginModel.indexOf("3") > -1
53819
+ this.mode == "complex"
53582
53820
  ? [
53583
- _vm._l(_vm.switchs, function (item) {
53584
- return [
53585
- item.tips
53586
- ? _c(
53587
- "div",
53588
- {
53589
- directives: [
53590
- {
53591
- name: "show",
53592
- rawName: "v-show",
53593
- value:
53594
- _vm.switchActive != item.type,
53595
- expression:
53596
- "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
+ : "",
53597
53877
  },
53598
- ],
53599
- key: item.type + "_0",
53600
- staticClass: "es-login-model-tips",
53601
- style: _vm.getBackground(
53602
- item.background
53603
- ),
53604
- },
53605
- [
53606
- _vm._v(
53607
- "\n " +
53608
- _vm._s(item.tips) +
53609
- "\n "
53610
- ),
53611
- ]
53612
- )
53613
- : _vm._e(),
53614
- _c(
53615
- "span",
53616
- {
53617
- directives: [
53618
- {
53619
- name: "show",
53620
- rawName: "v-show",
53621
- value:
53622
- _vm.switchActive != item.type,
53623
- expression:
53624
- "switchActive != item.type",
53625
- },
53626
- ],
53627
- key: item.type + "_1",
53628
- staticClass: "es-icon-box",
53629
- attrs: {
53630
- title:
53631
- _vm.modelLength > 2
53632
- ? item.name
53633
- : "",
53634
- },
53635
- on: {
53636
- click: function ($event) {
53637
- _vm.switchLoginType(item)
53638
- },
53639
- },
53640
- },
53641
- [
53642
- _c("i", {
53643
- class: [item.icon, "es-icon"],
53644
- }),
53645
- ]
53646
- ),
53647
- ]
53648
- }),
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(),
53649
53894
  ]
53650
53895
  : [
53651
53896
  _vm._l(_vm.icons, function (item) {
@@ -54493,11 +54738,11 @@ var mainvue_type_template_id_950692f2_render = function () {
54493
54738
  2
54494
54739
  )
54495
54740
  : _vm._e(),
54496
- _vm.warnInfo
54741
+ _vm.showWarnInfo
54497
54742
  ? _c("div", { staticClass: "es-warning" }, [
54498
54743
  _vm._v(
54499
54744
  "\n " +
54500
- _vm._s(_vm.warnInfo) +
54745
+ _vm._s(_vm.warningText) +
54501
54746
  "\n "
54502
54747
  ),
54503
54748
  ])
@@ -54717,7 +54962,7 @@ var mainvue_type_template_id_950692f2_render = function () {
54717
54962
  },
54718
54963
  [
54719
54964
  _c("p", { staticClass: "es-launch-text es-launch-user-name" }, [
54720
- _vm._v(_vm._s(_vm.userName) + ",你好!"),
54965
+ _vm._v(_vm._s(_vm.userName) + ",您好!"),
54721
54966
  ]),
54722
54967
  _c(
54723
54968
  "p",
@@ -54735,6 +54980,8 @@ var mainvue_type_template_id_950692f2_render = function () {
54735
54980
  ? _c("es-ca-login", {
54736
54981
  ref: "calogin",
54737
54982
  attrs: {
54983
+ showSelect: _vm.showKeySelect,
54984
+ "install-path": _vm.installPath,
54738
54985
  "ca-model": _vm.caLoginModel,
54739
54986
  identifyingId: _vm.identifyingId,
54740
54987
  success: _vm.caLogin,
@@ -54747,7 +54994,7 @@ var mainvue_type_template_id_950692f2_render = function () {
54747
54994
  )
54748
54995
  : _vm._e()
54749
54996
  }
54750
- var mainvue_type_template_id_950692f2_staticRenderFns = [
54997
+ var mainvue_type_template_id_7795d992_staticRenderFns = [
54751
54998
  function () {
54752
54999
  var _vm = this
54753
55000
  var _h = _vm.$createElement
@@ -54762,10 +55009,10 @@ var mainvue_type_template_id_950692f2_staticRenderFns = [
54762
55009
  ])
54763
55010
  },
54764
55011
  ]
54765
- mainvue_type_template_id_950692f2_render._withStripped = true
55012
+ mainvue_type_template_id_7795d992_render._withStripped = true
54766
55013
 
54767
55014
 
54768
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=950692f2&
55015
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=7795d992&
54769
55016
 
54770
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&
54771
55018
  var resetPasswordvue_type_template_id_45dccfdc_render = function () {
@@ -55147,7 +55394,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
55147
55394
  var _this2 = this;
55148
55395
 
55149
55396
  utils_util["a" /* default */].ajax({
55150
- url: api["hb" /* initModifyPassword */]
55397
+ url: api["ib" /* initModifyPassword */]
55151
55398
  }).then(function (res) {
55152
55399
  if (res.rCode === 0) {
55153
55400
  var results = JSON.parse(JSON.stringify(res.results));
@@ -55252,7 +55499,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
55252
55499
  data.operationCheckCode = this.operationCheckCode;
55253
55500
  utils_util["a" /* default */].ajax({
55254
55501
  method: 'post',
55255
- url: api["lb" /* loginModifyPassword */],
55502
+ url: api["mb" /* loginModifyPassword */],
55256
55503
  data: data
55257
55504
  }).then(function (res) {
55258
55505
  _this5.submit = false;
@@ -55854,6 +56101,9 @@ function login_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
55854
56101
  //
55855
56102
  //
55856
56103
  //
56104
+ //
56105
+ //
56106
+ //
55857
56107
 
55858
56108
 
55859
56109
 
@@ -55873,7 +56123,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
55873
56123
  //初始登录配置接口地址
55874
56124
  initLogin: {
55875
56125
  type: String,
55876
- default: api["gb" /* initLogin */]
56126
+ default: api["hb" /* initLogin */]
55877
56127
  },
55878
56128
  size: String,
55879
56129
  mode: {
@@ -56005,7 +56255,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56005
56255
  },
56006
56256
  getTwoFactorLoginCode: {
56007
56257
  type: String,
56008
- default: api["ab" /* getTwoFactorLoginCode */]
56258
+ default: api["bb" /* getTwoFactorLoginCode */]
56009
56259
  },
56010
56260
  doTwoFactorLogin: {
56011
56261
  type: String,
@@ -56030,10 +56280,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56030
56280
  default: true
56031
56281
  },
56032
56282
  storage: String,
56033
- warning: {
56034
- type: [Boolean, String],
56035
- default: false
56036
- },
56283
+ warning: String,
56037
56284
  copyrightStyle: {
56038
56285
  type: Object,
56039
56286
  default: function _default() {
@@ -56094,7 +56341,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56094
56341
  return [];
56095
56342
  }
56096
56343
  },
56097
- caModel: String
56344
+ caModel: String,
56345
+ caInstallPath: String,
56346
+ showKeySelect: Boolean
56098
56347
  },
56099
56348
  computed: {
56100
56349
  transform: function transform() {
@@ -56133,17 +56382,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56133
56382
  return window.location.href || window.href;
56134
56383
  }
56135
56384
  },
56136
- warnInfo: function warnInfo() {
56137
- if (this.warning === false && !this.warningText) {
56138
- return false;
56139
- }
56140
- if (this.warningText && this.warningText !== 'true' && this.warningText !== true) {
56141
- return this.warningText;
56142
- }
56143
- if (this.warning && typeof this.warning === 'string') {
56144
- return this.warning;
56145
- }
56146
- return '本系统为非涉密系统,禁止上传和处理任何涉密文件';
56385
+ showWarnInfo: function showWarnInfo() {
56386
+ return this.$slots.warning || this.$scopedSlots.warning ? false : this.warningText ? true : false;
56147
56387
  },
56148
56388
  modelLength: function modelLength() {
56149
56389
  return Array.isArray(this.loginModel) ? this.loginModel.length : this.loginModel.split(',').length;
@@ -56192,7 +56432,6 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56192
56432
  types.forEach(function (item) {
56193
56433
  icon.push(_this.iconfonts[item]);
56194
56434
  });
56195
- console.log(icon);
56196
56435
  return icon;
56197
56436
  },
56198
56437
  isCaLogin: function isCaLogin() {
@@ -56322,7 +56561,7 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56322
56561
  checkCode: '',
56323
56562
  showAssistance: false,
56324
56563
  doAssistance: null,
56325
- warningText: '',
56564
+ warningText: this.warning,
56326
56565
  safes: {
56327
56566
  paste: function paste(event) {
56328
56567
  event.preventDefault();
@@ -56348,7 +56587,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56348
56587
  launchKey: 'day',
56349
56588
  launchTime: 2000,
56350
56589
  switchActive: this.switchsActive,
56351
- loginDownloadApp: this.loginDownloadApps
56590
+ loginDownloadApp: this.loginDownloadApps,
56591
+ installPath: this.caInstallPath
56352
56592
  };
56353
56593
  },
56354
56594
  beforeCreate: function beforeCreate() {
@@ -56764,6 +57004,9 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
56764
57004
  if (res.subsystemExtend.loginDownloadApp) {
56765
57005
  this.loginDownloadApp = res.subsystemExtend.loginDownloadApp;
56766
57006
  }
57007
+ if (res.subsystemExtend.caInstallPath) {
57008
+ this.installPath = res.subsystemExtend.caInstallPath;
57009
+ }
56767
57010
  }
56768
57011
  this.passModifyModel = res.passModifyModel;
56769
57012
  this.wechatAppid = res.wechatAppid;
@@ -57247,8 +57490,8 @@ var ceshi = utils_util["a" /* default */].getParams('ceshi');
57247
57490
 
57248
57491
  var login_src_main_component = normalizeComponent(
57249
57492
  packages_login_src_mainvue_type_script_lang_js_,
57250
- mainvue_type_template_id_950692f2_render,
57251
- mainvue_type_template_id_950692f2_staticRenderFns,
57493
+ mainvue_type_template_id_7795d992_render,
57494
+ mainvue_type_template_id_7795d992_staticRenderFns,
57252
57495
  false,
57253
57496
  null,
57254
57497
  null,
@@ -58038,8 +58281,8 @@ simplicityvue_type_template_id_a8c92006_scoped_true_render._withStripped = true
58038
58281
 
58039
58282
  // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=a8c92006&scoped=true&
58040
58283
 
58041
- // 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&
58042
- 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 () {
58043
58286
  var _vm = this
58044
58287
  var _h = _vm.$createElement
58045
58288
  var _c = _vm._self._c || _h
@@ -58080,11 +58323,11 @@ var avatarvue_type_template_id_53dddeda_scoped_true_render = function () {
58080
58323
  1
58081
58324
  )
58082
58325
  }
58083
- var avatarvue_type_template_id_53dddeda_scoped_true_staticRenderFns = []
58084
- 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
58085
58328
 
58086
58329
 
58087
- // 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&
58088
58331
 
58089
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&
58090
58333
  //
@@ -58146,7 +58389,6 @@ avatarvue_type_template_id_53dddeda_scoped_true_render._withStripped = true
58146
58389
  computed: {
58147
58390
  //用户头像
58148
58391
  _userHead: function _userHead() {
58149
- console.log(this.user);
58150
58392
  return this.userHead ? this.userHead : this.user.userHeadUrl;
58151
58393
  }
58152
58394
  },
@@ -58178,11 +58420,11 @@ avatarvue_type_template_id_53dddeda_scoped_true_render._withStripped = true
58178
58420
 
58179
58421
  var avatar_component = normalizeComponent(
58180
58422
  simplicity_avatarvue_type_script_lang_js_,
58181
- avatarvue_type_template_id_53dddeda_scoped_true_render,
58182
- 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,
58183
58425
  false,
58184
58426
  null,
58185
- "53dddeda",
58427
+ "e722b45c",
58186
58428
  null
58187
58429
 
58188
58430
  )
@@ -60100,7 +60342,7 @@ appsvue_type_template_id_71b9cb14_scoped_true_render._withStripped = true
60100
60342
  },
60101
60343
  handleClick: function handleClick(res) {
60102
60344
  utils_util["a" /* default */].ajax({
60103
- url: api["wb" /* recordUserApp */],
60345
+ url: api["xb" /* recordUserApp */],
60104
60346
  params: {
60105
60347
  userId: this.user.userId,
60106
60348
  appId: res.id
@@ -60512,7 +60754,7 @@ userinfovue_type_template_id_1c52f6d2_render._withStripped = true
60512
60754
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
60513
60755
  initLogin && (initLogin = JSON.parse(initLogin));
60514
60756
  utils_util["a" /* default */].ajax({
60515
- url: api["rc" /* updateUserInfo */],
60757
+ url: api["sc" /* updateUserInfo */],
60516
60758
  params: {
60517
60759
  email: this.model.email,
60518
60760
  officeTel: this.model.officeTel,
@@ -60748,7 +60990,7 @@ var userinfo_component = normalizeComponent(
60748
60990
  var _this2 = this;
60749
60991
 
60750
60992
  utils_util["a" /* default */].ajax({
60751
- url: api["jb" /* initUserSet */]
60993
+ url: api["kb" /* initUserSet */]
60752
60994
  }).then(function (res) {
60753
60995
  if (res.rCode === 0) {
60754
60996
  var results = JSON.parse(JSON.stringify(res.results));
@@ -60789,7 +61031,7 @@ var userinfo_component = normalizeComponent(
60789
61031
  var notify = this.checked.join(',');
60790
61032
  utils_util["a" /* default */].ajax({
60791
61033
  method: 'post',
60792
- url: api["qc" /* updateUserCustomInfo */],
61034
+ url: api["rc" /* updateUserCustomInfo */],
60793
61035
  data: {
60794
61036
  notify: notify
60795
61037
  }
@@ -60819,7 +61061,7 @@ var userinfo_component = normalizeComponent(
60819
61061
  if (this.user.identityId !== res.id) {
60820
61062
  utils_util["a" /* default */].ajax({
60821
61063
  method: 'post',
60822
- url: api["Ib" /* switchUserTo */],
61064
+ url: api["Jb" /* switchUserTo */],
60823
61065
  data: { userId: res.value }
60824
61066
  }).then(function (res) {
60825
61067
  if (res.rCode == 0) {
@@ -61211,7 +61453,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61211
61453
  if (this.pageNum <= this.pageCount) {
61212
61454
  this.loading = true;
61213
61455
  utils_util["a" /* default */].ajax({
61214
- url: api["Jb" /* sysMsgPage */],
61456
+ url: api["Kb" /* sysMsgPage */],
61215
61457
  params: {
61216
61458
  pageNum: reload ? 1 : this.pageNum,
61217
61459
  pageSize: this.pageSize
@@ -61244,7 +61486,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61244
61486
  var _this2 = this;
61245
61487
 
61246
61488
  utils_util["a" /* default */].ajax({
61247
- url: api["fb" /* ignoreSysMsg */],
61489
+ url: api["gb" /* ignoreSysMsg */],
61248
61490
  params: {
61249
61491
  id: res.id
61250
61492
  }
@@ -61264,7 +61506,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
61264
61506
  var _this3 = this;
61265
61507
 
61266
61508
  utils_util["a" /* default */].ajax({
61267
- url: api["eb" /* ignoreAllSysMsg */]
61509
+ url: api["fb" /* ignoreAllSysMsg */]
61268
61510
  }).then(function (res) {
61269
61511
  _this3.count = 0;
61270
61512
  _this3.msgs = [];
@@ -61624,7 +61866,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
61624
61866
  var _this = this;
61625
61867
 
61626
61868
  utils_util["a" /* default */].ajax({
61627
- url: api["fb" /* ignoreSysMsg */],
61869
+ url: api["gb" /* ignoreSysMsg */],
61628
61870
  params: {
61629
61871
  id: res.id
61630
61872
  }
@@ -61643,7 +61885,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
61643
61885
  var _this2 = this;
61644
61886
 
61645
61887
  utils_util["a" /* default */].ajax({
61646
- url: api["eb" /* ignoreAllSysMsg */]
61888
+ url: api["fb" /* ignoreAllSysMsg */]
61647
61889
  }).then(function (res) {
61648
61890
  _this2.msgs = [];
61649
61891
  _this2.$emit('ignore', { type: 'ignore', value: 'all' });
@@ -62429,7 +62671,7 @@ onlinevue_type_template_id_63844b4e_scoped_true_render._withStripped = true
62429
62671
  props: {
62430
62672
  sysuseronline: {
62431
62673
  type: String,
62432
- default: api["wc" /* userOnline */]
62674
+ default: api["xc" /* userOnline */]
62433
62675
  }
62434
62676
  },
62435
62677
  data: function data() {
@@ -63102,7 +63344,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
63102
63344
  },
63103
63345
  searchType: {
63104
63346
  type: String,
63105
- default: api["Cb" /* searchType */]
63347
+ default: api["Db" /* searchType */]
63106
63348
  },
63107
63349
  pageSize: {
63108
63350
  type: Number,
@@ -63888,7 +64130,7 @@ var events = [function (tabs, index, that) {
63888
64130
  //应用列表接口
63889
64131
  appsUrl: {
63890
64132
  type: String,
63891
- default: api["bb" /* getUserAppWithTag */]
64133
+ default: api["cb" /* getUserAppWithTag */]
63892
64134
  },
63893
64135
  //是否启用子应用菜单接口
63894
64136
  application: {
@@ -64713,8 +64955,8 @@ var events = [function (tabs, index, that) {
64713
64955
  var _this5 = this;
64714
64956
 
64715
64957
  this.webSocket = utils_util["a" /* default */].socket({
64716
- url: api["xc" /* wss */],
64717
- take: api["nc" /* topic */],
64958
+ url: api["yc" /* wss */],
64959
+ take: api["oc" /* topic */],
64718
64960
  success: function success(res) {
64719
64961
  var data = res.data || {};
64720
64962
  for (var i in data) {
@@ -64920,7 +65162,7 @@ var events = [function (tabs, index, that) {
64920
65162
  **/
64921
65163
  handlerClickMenu: function handlerClickMenu(res) {
64922
65164
  utils_util["a" /* default */].ajax({
64923
- url: api["wb" /* recordUserApp */],
65165
+ url: api["xb" /* recordUserApp */],
64924
65166
  params: {
64925
65167
  userId: this.user.userId,
64926
65168
  appId: res.id
@@ -65208,7 +65450,7 @@ var events = [function (tabs, index, that) {
65208
65450
  document.body.appendChild(iframe);
65209
65451
  }
65210
65452
  }
65211
- 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) {
65212
65454
  if (res.rCode == 0) {
65213
65455
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
65214
65456
  if (_this6.onQuit && typeof _this6.onQuit === 'function') {
@@ -66266,7 +66508,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66266
66508
  var _this2 = this;
66267
66509
 
66268
66510
  utils_util["a" /* default */].ajax({
66269
- url: api["jb" /* initUserSet */]
66511
+ url: api["kb" /* initUserSet */]
66270
66512
  }).then(function (res) {
66271
66513
  if (res.rCode === 0) {
66272
66514
  var results = JSON.parse(JSON.stringify(res.results));
@@ -66315,7 +66557,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66315
66557
 
66316
66558
  switch (type) {
66317
66559
  case 'job':
66318
- 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) {
66319
66561
  if (res.rCode == 0) {
66320
66562
  utils_util["a" /* default */].setStorage({
66321
66563
  type: _this3.storage,
@@ -66356,7 +66598,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66356
66598
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
66357
66599
  initLogin && (initLogin = JSON.parse(initLogin));
66358
66600
  utils_util["a" /* default */].ajax({
66359
- url: api["rc" /* updateUserInfo */],
66601
+ url: api["sc" /* updateUserInfo */],
66360
66602
  params: {
66361
66603
  email: this.values.email,
66362
66604
  officeTel: this.values.officeTel,
@@ -66414,7 +66656,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
66414
66656
  var notify = _this4.values.notify.sort().join(',');
66415
66657
  if (notify != _this4.notify.split(',').sort().join(',')) {
66416
66658
  utils_util["a" /* default */].ajax({
66417
- url: api["qc" /* updateUserCustomInfo */],
66659
+ url: api["rc" /* updateUserCustomInfo */],
66418
66660
  params: {
66419
66661
  notify: notify
66420
66662
  }
@@ -66769,7 +67011,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66769
67011
  if (this.pageNum <= this.pageCount) {
66770
67012
  this.loading = true;
66771
67013
  utils_util["a" /* default */].ajax({
66772
- url: api["Jb" /* sysMsgPage */],
67014
+ url: api["Kb" /* sysMsgPage */],
66773
67015
  params: {
66774
67016
  pageNum: reload ? 1 : this.pageNum,
66775
67017
  pageSize: this.pageSize
@@ -66802,7 +67044,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66802
67044
  var _this2 = this;
66803
67045
 
66804
67046
  utils_util["a" /* default */].ajax({
66805
- url: api["fb" /* ignoreSysMsg */],
67047
+ url: api["gb" /* ignoreSysMsg */],
66806
67048
  params: {
66807
67049
  id: res.id
66808
67050
  }
@@ -66822,7 +67064,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
66822
67064
  var _this3 = this;
66823
67065
 
66824
67066
  utils_util["a" /* default */].ajax({
66825
- url: api["eb" /* ignoreAllSysMsg */]
67067
+ url: api["fb" /* ignoreAllSysMsg */]
66826
67068
  }).then(function (res) {
66827
67069
  _this3.count = 0;
66828
67070
  _this3.msgs = [];
@@ -67157,7 +67399,7 @@ noticevue_type_template_id_6c63684e_render._withStripped = true
67157
67399
  var _this = this;
67158
67400
 
67159
67401
  utils_util["a" /* default */].ajax({
67160
- url: api["eb" /* ignoreAllSysMsg */]
67402
+ url: api["fb" /* ignoreAllSysMsg */]
67161
67403
  }).then(function (res) {
67162
67404
  _this.count = 0;
67163
67405
  _this.msgs = [];
@@ -67664,7 +67906,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
67664
67906
  //获取用户信息的接口
67665
67907
  mainConfig: {
67666
67908
  type: String,
67667
- default: api["ob" /* mainConfig */]
67909
+ default: api["pb" /* mainConfig */]
67668
67910
  },
67669
67911
  iframeId: {
67670
67912
  type: String,
@@ -68092,7 +68334,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
68092
68334
  return;
68093
68335
  }
68094
68336
  utils_util["a" /* default */].ajax({
68095
- url: api["qc" /* updateUserCustomInfo */],
68337
+ url: api["rc" /* updateUserCustomInfo */],
68096
68338
  params: { color: escape(color.toLowerCase()) },
68097
68339
  data: { color: escape(color.toLowerCase()) }
68098
68340
  }).then(function (res) {
@@ -69300,8 +69542,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
69300
69542
  var _this11 = this;
69301
69543
 
69302
69544
  this.webSocket = utils_util["a" /* default */].socket({
69303
- url: api["xc" /* wss */],
69304
- take: api["nc" /* topic */],
69545
+ url: api["yc" /* wss */],
69546
+ take: api["oc" /* topic */],
69305
69547
  success: function success(res) {
69306
69548
  var data = res.data || {};
69307
69549
  for (var i in data) {
@@ -71131,7 +71373,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71131
71373
  text: '重发',
71132
71374
  format: false,
71133
71375
  method: 'post',
71134
- action: api["Db" /* sendBatch */]
71376
+ action: api["Eb" /* sendBatch */]
71135
71377
  }]
71136
71378
  }];
71137
71379
  }
@@ -71318,13 +71560,13 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71318
71560
  },
71319
71561
  data: function data() {
71320
71562
  return {
71321
- sendList: api["Fb" /* sendList */],
71322
- sendBatch: api["Db" /* sendBatch */],
71563
+ sendList: api["Gb" /* sendList */],
71564
+ sendBatch: api["Eb" /* sendBatch */],
71323
71565
  tableCount: 0,
71324
71566
  selectData: [],
71325
71567
  formTitle: '',
71326
71568
  showForm: false,
71327
- formData: api["Eb" /* sendInfo */],
71569
+ formData: api["Fb" /* sendInfo */],
71328
71570
  params: {},
71329
71571
  sendTypeDict: [],
71330
71572
  statusDict: []
@@ -71343,7 +71585,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
71343
71585
  type: 'primary',
71344
71586
  checkbox: true,
71345
71587
  format: false,
71346
- action: api["Db" /* sendBatch */]
71588
+ action: api["Eb" /* sendBatch */]
71347
71589
  }]
71348
71590
  }, {
71349
71591
  type: 'search',
@@ -73286,7 +73528,7 @@ mainvue_type_template_id_c789bcdc_render._withStripped = true
73286
73528
  var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
73287
73529
  mainConfig && (this.userModel = JSON.parse(mainConfig).userModel);
73288
73530
  utils_util["a" /* default */].ajax({
73289
- url: api["ib" /* initRetrialAuth */]
73531
+ url: api["jb" /* initRetrialAuth */]
73290
73532
  }).then(function (res) {
73291
73533
  var rCode = res.rCode,
73292
73534
  results = res.results;
@@ -73395,7 +73637,7 @@ mainvue_type_template_id_c789bcdc_render._withStripped = true
73395
73637
  uuid: this.uuid
73396
73638
  };
73397
73639
  utils_util["a" /* default */].ajax({
73398
- url: api["Bb" /* scanCodeRetrialAuth */],
73640
+ url: api["Cb" /* scanCodeRetrialAuth */],
73399
73641
  method: 'post',
73400
73642
  data: params,
73401
73643
  params: params
@@ -74832,8 +75074,8 @@ select_ganged_src_main.install = function (Vue) {
74832
75074
  };
74833
75075
 
74834
75076
  /* harmony default export */ var select_ganged = (select_ganged_src_main);
74835
- // 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&
74836
- 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 () {
74837
75079
  var _vm = this
74838
75080
  var _h = _vm.$createElement
74839
75081
  var _c = _vm._self._c || _h
@@ -75405,11 +75647,11 @@ var mainvue_type_template_id_239d0c44_render = function () {
75405
75647
  )
75406
75648
  : _vm._e()
75407
75649
  }
75408
- var mainvue_type_template_id_239d0c44_staticRenderFns = []
75409
- 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
75410
75652
 
75411
75653
 
75412
- // 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&
75413
75655
 
75414
75656
  // EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
75415
75657
  var clickoutside_ = __webpack_require__(18);
@@ -75874,10 +76116,16 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
75874
76116
  clearTimeout(this.timer);
75875
76117
  this.timer = setTimeout(this.handleSearch, 500);
75876
76118
  }
76119
+ },
76120
+ mix: function mix(val) {
76121
+ if (val) {
76122
+ this.getSysParam();
76123
+ }
75877
76124
  }
75878
76125
  },
75879
76126
  created: function created() {
75880
76127
  this.reference = this.$refs.esSelector;
76128
+ this.mix && this.getSysParam();
75881
76129
  },
75882
76130
  mounted: function mounted() {
75883
76131
  var _this2 = this;
@@ -75896,6 +76144,23 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
75896
76144
  },
75897
76145
 
75898
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
+ },
75899
76164
  isObject: function isObject(obj) {
75900
76165
  return utils_util["a" /* default */].isObject(obj);
75901
76166
  },
@@ -76004,13 +76269,14 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
76004
76269
  },
76005
76270
  handleConfirm: function handleConfirm(res) {
76006
76271
  this.visible = false;
76007
- if (utils_util["a" /* default */].isObject(res)) {
76008
- this.$emit('input', [res]);
76009
- this.$emit('confirm', [res], this.businessData);
76010
- } else {
76011
- this.$emit('input', res);
76012
- 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
+ });
76013
76277
  }
76278
+ this.$emit('input', val);
76279
+ this.$emit('confirm', val, this.businessData);
76014
76280
  var inputChildNodes = this.$refs.reference ? this.$refs.reference.$el.childNodes : null;
76015
76281
  var input = inputChildNodes ? [].filter.call(inputChildNodes, function (item) {
76016
76282
  return item.tagName === 'INPUT';
@@ -76098,8 +76364,8 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
76098
76364
 
76099
76365
  var selector_src_main_component = normalizeComponent(
76100
76366
  packages_selector_src_mainvue_type_script_lang_js_,
76101
- mainvue_type_template_id_239d0c44_render,
76102
- mainvue_type_template_id_239d0c44_staticRenderFns,
76367
+ mainvue_type_template_id_c339b1fa_render,
76368
+ mainvue_type_template_id_c339b1fa_staticRenderFns,
76103
76369
  false,
76104
76370
  null,
76105
76371
  null,
@@ -76116,8 +76382,8 @@ selector_src_main.install = function (Vue) {
76116
76382
  };
76117
76383
 
76118
76384
  /* harmony default export */ var selector = (selector_src_main);
76119
- // 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&
76120
- 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 () {
76121
76387
  var _vm = this
76122
76388
  var _h = _vm.$createElement
76123
76389
  var _c = _vm._self._c || _h
@@ -76380,11 +76646,11 @@ var mainvue_type_template_id_4caee95f_render = function () {
76380
76646
  1
76381
76647
  )
76382
76648
  }
76383
- var mainvue_type_template_id_4caee95f_staticRenderFns = []
76384
- 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
76385
76651
 
76386
76652
 
76387
- // 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&
76388
76654
 
76389
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&
76390
76656
  var treevue_type_template_id_24ad732a_render = function () {
@@ -76679,8 +76945,8 @@ var tree_component = normalizeComponent(
76679
76945
  )
76680
76946
 
76681
76947
  /* harmony default export */ var tree = (tree_component.exports);
76682
- // 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&
76683
- 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 () {
76684
76950
  var _vm = this
76685
76951
  var _h = _vm.$createElement
76686
76952
  var _c = _vm._self._c || _h
@@ -76835,11 +77101,11 @@ var selectionvue_type_template_id_2bc3d812_render = function () {
76835
77101
  1
76836
77102
  )
76837
77103
  }
76838
- var selectionvue_type_template_id_2bc3d812_staticRenderFns = []
76839
- 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
76840
77106
 
76841
77107
 
76842
- // 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&
76843
77109
 
76844
77110
  // EXTERNAL MODULE: external "sortablejs"
76845
77111
  var external_sortablejs_ = __webpack_require__(19);
@@ -76989,11 +77255,7 @@ var selectionvue_type_script_lang_js_extends = Object.assign || function (target
76989
77255
 
76990
77256
  methods: {
76991
77257
  getLabel: function getLabel(res) {
76992
- var tag = '';
76993
- if (this.mix) {
76994
- tag = utils_util["a" /* default */].getTypeName(res.stype);
76995
- }
76996
- 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];
76997
77259
  },
76998
77260
  handleSort: function handleSort(res) {
76999
77261
  this.$emit('sort', res);
@@ -77029,8 +77291,8 @@ var selectionvue_type_script_lang_js_extends = Object.assign || function (target
77029
77291
 
77030
77292
  var selection_component = normalizeComponent(
77031
77293
  src_selectionvue_type_script_lang_js_,
77032
- selectionvue_type_template_id_2bc3d812_render,
77033
- selectionvue_type_template_id_2bc3d812_staticRenderFns,
77294
+ selectionvue_type_template_id_c92fc4ae_render,
77295
+ selectionvue_type_template_id_c92fc4ae_staticRenderFns,
77034
77296
  false,
77035
77297
  null,
77036
77298
  null,
@@ -77377,7 +77639,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77377
77639
  selection: [],
77378
77640
  value: [],
77379
77641
  param: {
77380
- showarea: 2,
77642
+ showarea: 0,
77381
77643
  id: 0,
77382
77644
  filid: 'all'
77383
77645
  }
@@ -77405,7 +77667,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77405
77667
  selection: [],
77406
77668
  value: [],
77407
77669
  param: {
77408
- showarea: 2,
77670
+ showarea: 0,
77409
77671
  id: 0,
77410
77672
  filid: 'all'
77411
77673
  }
@@ -77433,7 +77695,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77433
77695
  name: 'filgroup',
77434
77696
  url: api["Z" /* getSelectorOrgTree */],
77435
77697
  param: {
77436
- showarea: 3,
77698
+ showarea: 4,
77437
77699
  id: 0,
77438
77700
  filid: 'all'
77439
77701
  }
@@ -77447,7 +77709,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77447
77709
  selection: [],
77448
77710
  value: [],
77449
77711
  param: {
77450
- showarea: 4,
77712
+ showarea: 5,
77451
77713
  id: 0,
77452
77714
  filid: 'all'
77453
77715
  }
@@ -77489,7 +77751,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
77489
77751
  selection: [],
77490
77752
  value: [],
77491
77753
  param: {
77492
- showarea: 13,
77754
+ showarea: 14,
77493
77755
  id: 0,
77494
77756
  filid: 'all'
77495
77757
  }
@@ -78001,8 +78263,8 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
78001
78263
 
78002
78264
  var selector_panel_src_main_component = normalizeComponent(
78003
78265
  packages_selector_panel_src_mainvue_type_script_lang_js_,
78004
- mainvue_type_template_id_4caee95f_render,
78005
- mainvue_type_template_id_4caee95f_staticRenderFns,
78266
+ mainvue_type_template_id_04e6e69e_render,
78267
+ mainvue_type_template_id_04e6e69e_staticRenderFns,
78006
78268
  false,
78007
78269
  null,
78008
78270
  null,
@@ -81669,7 +81931,7 @@ mainvue_type_template_id_6baa7a0b_render._withStripped = true
81669
81931
  },
81670
81932
  url: {
81671
81933
  type: String,
81672
- default: api["cb" /* gethelpdoc */]
81934
+ default: api["db" /* gethelpdoc */]
81673
81935
  },
81674
81936
  param: {
81675
81937
  type: Object,
@@ -89133,7 +89395,7 @@ var mainvue_type_script_lang_js_props;
89133
89395
  source: '',
89134
89396
  excludeNames: '',
89135
89397
  boxHeight: this.listHeight,
89136
- previewAdjunct: api["tb" /* previewAdjunct */],
89398
+ previewAdjunct: api["ub" /* previewAdjunct */],
89137
89399
  kkfileview: null,
89138
89400
  dochubConfig: {}
89139
89401
  };
@@ -89390,7 +89652,7 @@ var mainvue_type_script_lang_js_props;
89390
89652
  this.dochubConfig = config.dochubConfig;
89391
89653
  }
89392
89654
 
89393
- 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 */];
89394
89656
  this.uploadUrl = url.indexOf(this.host) > -1 ? url : this.host + url;
89395
89657
  this.requestFiles && this.getFiles();
89396
89658
  } else {
@@ -89413,7 +89675,7 @@ var mainvue_type_script_lang_js_props;
89413
89675
  _this3.dochubConfig = res.results.dochubConfig;
89414
89676
  sessionStorage.setItem('dochubConfig', JSON.stringify(res.results.dochubConfig));
89415
89677
  }
89416
- 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 */];
89417
89679
  _this3.uploadUrl = _url.indexOf(_this3.host) > -1 ? _url : _this3.host + _url;
89418
89680
  if (res.results.kkViewRootPath) {
89419
89681
  _this3.kkfileview = res.results.kkViewRootPath;
@@ -89528,13 +89790,13 @@ var mainvue_type_script_lang_js_props;
89528
89790
  if (this.kkfileview) {
89529
89791
  this.openKkfileview(file);
89530
89792
  } else {
89531
- 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);
89532
89794
  }
89533
89795
  } else if (suffix.includes('pdf')) {
89534
89796
  if (this.kkfileview) {
89535
89797
  this.openKkfileview(file);
89536
89798
  } else {
89537
- 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);
89538
89800
  }
89539
89801
  } else if (suffix.includes('jpge') || suffix.includes('jpg') || suffix.includes('gif') || suffix.includes('png')) {
89540
89802
  this.imgUrl = res.url && utils_util["a" /* default */].startWith(url, ['http', '/', true]) ? res.url : this.host + (url ? url : this.previewAdjunct) + '?adjunctId=' + file.adjunctId;
@@ -89699,7 +89961,7 @@ var mainvue_type_script_lang_js_props;
89699
89961
  }
89700
89962
  },
89701
89963
  handleDownloads: function handleDownloads() {
89702
- 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 */];
89703
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);
89704
89966
  },
89705
89967
  handleDownload: function handleDownload(file) {
@@ -89739,7 +90001,7 @@ var mainvue_type_script_lang_js_props;
89739
90001
  ids = ids.join(',');
89740
90002
  utils_util["a" /* default */].ajax({
89741
90003
  method: this.method,
89742
- url: this.dochubConfig.sortDocumentsUrl || api["uc" /* uploadSort */],
90004
+ url: this.dochubConfig.sortDocumentsUrl || api["vc" /* uploadSort */],
89743
90005
  data: {
89744
90006
  ids: ids,
89745
90007
  documentIds: ids,
@@ -90350,7 +90612,7 @@ if (typeof window !== 'undefined' && window.Vue) {
90350
90612
  }
90351
90613
 
90352
90614
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
90353
- version: '0.6.68',
90615
+ version: '0.6.70',
90354
90616
  install: install,
90355
90617
  Button: packages_button,
90356
90618
  ButtonGroup: button_group,