eoss-ui 0.6.69 → 0.6.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/lib/button-group.js +100 -79
  2. package/lib/button.js +100 -79
  3. package/lib/calogin.js +115 -92
  4. package/lib/checkbox-group.js +100 -79
  5. package/lib/config/api.js +3 -0
  6. package/lib/data-table-form.js +100 -79
  7. package/lib/data-table.js +100 -79
  8. package/lib/date-picker.js +100 -79
  9. package/lib/dialog.js +100 -79
  10. package/lib/eoss-ui.common.js +662 -433
  11. package/lib/flow-group.js +100 -79
  12. package/lib/flow-list.js +105 -84
  13. package/lib/flow.js +386 -192
  14. package/lib/form.js +100 -79
  15. package/lib/handle-user.js +101 -80
  16. package/lib/handler.js +101 -80
  17. package/lib/icon.js +101 -80
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +100 -79
  20. package/lib/input.js +100 -79
  21. package/lib/login.js +191 -172
  22. package/lib/main.js +149 -129
  23. package/lib/nav.js +100 -79
  24. package/lib/notify.js +85 -81
  25. package/lib/page.js +100 -79
  26. package/lib/pagination.js +100 -79
  27. package/lib/player.js +100 -79
  28. package/lib/qr-code.js +100 -79
  29. package/lib/radio-group.js +100 -79
  30. package/lib/retrial-auth.js +102 -81
  31. package/lib/select-ganged.js +100 -79
  32. package/lib/select.js +100 -79
  33. package/lib/selector-panel.js +115 -98
  34. package/lib/selector.js +157 -96
  35. package/lib/sizer.js +100 -79
  36. package/lib/steps.js +100 -79
  37. package/lib/switch.js +100 -79
  38. package/lib/table-form.js +100 -79
  39. package/lib/tabs.js +100 -79
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/theme-chalk/login.css +1 -1
  42. package/lib/tips.js +101 -80
  43. package/lib/tree-group.js +100 -79
  44. package/lib/tree.js +100 -79
  45. package/lib/upload.js +107 -86
  46. package/lib/utils/util.js +18 -1
  47. package/lib/wujie.js +100 -79
  48. package/lib/wxlogin.js +100 -79
  49. package/package.json +1 -1
  50. package/packages/.DS_Store +0 -0
  51. package/packages/calogin/.DS_Store +0 -0
  52. package/packages/calogin/src/main.vue +12 -10
  53. package/packages/flow/.DS_Store +0 -0
  54. package/packages/flow/src/component/Circulate.vue +9 -2
  55. package/packages/flow/src/component/taskUnionExamine.vue +8 -0
  56. package/packages/flow/src/main.vue +50 -7
  57. package/packages/login/.DS_Store +0 -0
  58. package/packages/login/src/main.vue +36 -46
  59. package/packages/main/.DS_Store +0 -0
  60. package/packages/main/src/public/search.vue +5 -9
  61. package/packages/main/src/simplicity/avatar.vue +0 -1
  62. package/packages/selector/.DS_Store +0 -0
  63. package/packages/selector/src/main.vue +56 -14
  64. package/packages/selector-panel/.DS_Store +0 -0
  65. package/packages/selector-panel/src/main.vue +5 -5
  66. package/packages/selector-panel/src/selection.vue +3 -10
  67. package/packages/theme-chalk/lib/index.css +1 -1
  68. package/packages/theme-chalk/lib/login.css +1 -1
  69. package/packages/theme-chalk/src/login.scss +4 -1
  70. package/src/.DS_Store +0 -0
  71. package/src/config/api.js +3 -0
  72. package/src/index.js +1 -1
  73. package/src/utils/util.js +60 -43
package/lib/tree-group.js CHANGED
@@ -1053,6 +1053,22 @@ var domEval = function domEval(code) {
1053
1053
  script.text = code;
1054
1054
  document.head.appendChild(script);
1055
1055
  };
1056
+ /**
1057
+ * downloadFile
1058
+ * @desc:下载附件
1059
+ * @author huangbo
1060
+ * @date 2022年5月7日
1061
+ * @param {String} [code] - js内容
1062
+ **/
1063
+ var downloadFile = function downloadFile(fileUrl) {
1064
+ var link = document.createElement('a');
1065
+ link.href = fileUrl;
1066
+ link.rel = 'noopener noreferrer';
1067
+ link.target = '_blank';
1068
+ document.body.appendChild(link);
1069
+ link.click();
1070
+ document.body.removeChild(link);
1071
+ };
1056
1072
 
1057
1073
  /**
1058
1074
  * esEncode
@@ -1606,7 +1622,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1606
1622
  * @param {function} callback - 回调函数
1607
1623
  **/
1608
1624
  var getMainConfig = function getMainConfig(callback) {
1609
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "ob"] }).then(function (res) {
1625
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "pb"] }).then(function (res) {
1610
1626
  if (res && res.rCode === 0) {
1611
1627
  callback(res.results);
1612
1628
  }
@@ -1943,7 +1959,7 @@ var getTypeName = function getTypeName(type) {
1943
1959
  typeName = '[角色]';
1944
1960
  } else if (type === 'post') {
1945
1961
  typeName = '[岗位]';
1946
- } else if (type === 'otheremployee' || type === 'employee') {
1962
+ } else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
1947
1963
  if (sysdepname) {
1948
1964
  typeName = '[' + sysdepname + '员工]';
1949
1965
  } else {
@@ -2363,7 +2379,7 @@ var isLogined = function () {
2363
2379
  break;
2364
2380
  }
2365
2381
 
2366
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "nb"] }).then(function (res) {
2382
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "ob"] }).then(function (res) {
2367
2383
  if (res.rCode === 0) {
2368
2384
  removeStorage();
2369
2385
  }
@@ -3436,6 +3452,7 @@ var watermark = function watermark(option) {
3436
3452
  debounce: debounce,
3437
3453
  delUrlParam: delUrlParam,
3438
3454
  domEval: domEval,
3455
+ downloadFile: downloadFile,
3439
3456
  esDecode: esDecode,
3440
3457
  esEncode: esEncode,
3441
3458
  esmEncrypt: esmEncrypt,
@@ -3520,32 +3537,32 @@ var watermark = function watermark(option) {
3520
3537
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3521
3538
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3522
3539
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return logout; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initLogin; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return switchUserTo; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return logout; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initLogin; });
3542
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return switchUserTo; });
3526
3543
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3527
3544
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
3528
3545
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3529
3546
  /* unused harmony export updateCode */
3530
3547
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
3531
3548
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginModifyPassword; });
3549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginModifyPassword; });
3533
3550
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3534
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initModifyPassword; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initModifyPassword; });
3535
3552
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getTwoFactorLoginCode; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getTwoFactorLoginCode; });
3537
3554
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initRetrialAuth; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initRetrialAuth; });
3539
3556
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return scanCodeRetrialAuth; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return scanCodeRetrialAuth; });
3541
3558
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3542
3559
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return userOnline; });
3544
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getUserAppWithTag; });
3545
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return recordUserApp; });
3546
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return mainConfig; });
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initUserSet; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserInfo; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return userOnline; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getUserAppWithTag; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return recordUserApp; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return mainConfig; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initUserSet; });
3565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return updateUserInfo; });
3549
3566
  /* unused harmony export getUserImgUrl */
3550
3567
  /* unused harmony export getDoorIndex */
3551
3568
  /* unused harmony export refreshOnlineUsers */
@@ -3554,21 +3571,22 @@ var watermark = function watermark(option) {
3554
3571
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
3555
3572
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
3556
3573
  /* unused harmony export getUserCustomInfo */
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserCustomInfo; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sysMsgPage; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreSysMsg; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreAllSysMsg; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return searchType; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserCustomInfo; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sysMsgPage; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return ignoreSysMsg; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreAllSysMsg; });
3578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return searchType; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSysParam; });
3562
3580
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploads; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadOnlyOne; });
3581
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return uploads; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadOnlyOne; });
3565
3583
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadSort; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploadSort; });
3567
3585
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadDownloads; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct2; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunctOffice; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadDownloads; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunct2; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return previewAdjunctOffice; });
3572
3590
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3573
3591
  /* unused harmony export upload_updateClassify */
3574
3592
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3580,16 +3598,16 @@ var watermark = function watermark(option) {
3580
3598
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3581
3599
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
3582
3600
  /* unused harmony export findUserBaseInfo */
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return gethelpdoc; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return gethelpdoc; });
3584
3602
  /* unused harmony export getCurrentuser */
3585
3603
  /* unused harmony export mainDetail */
3586
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartFlow; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return tempSave; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartFlow; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return tempSave; });
3588
3606
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3589
3607
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3590
3608
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return saveCommonOpinion; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateCommonOpinion; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return saveCommonOpinion; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateCommonOpinion; });
3593
3611
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3594
3612
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
3595
3613
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
@@ -3598,67 +3616,67 @@ var watermark = function watermark(option) {
3598
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3599
3617
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
3600
3618
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskHandleHtml; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskHandleHtml; });
3602
3620
  /* unused harmony export getView */
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return register; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryList; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskRejectHtml; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskRejectHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskRead; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskReadIndex; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadHtml; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return rejectAndEnd; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toSendMsg; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendMsg; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return register; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryList; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskRejectHtml; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskRejectHtml; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskRead; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toStartTaskReadIndex; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadHtml; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return rejectAndEnd; });
3629
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toSendMsg; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendMsg; });
3613
3631
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return handleInfo; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginUserInfo; });
3616
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return wss; });
3617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return topic; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return handleInfo; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return loginUserInfo; });
3634
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return wss; });
3635
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return topic; });
3618
3636
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
3619
3637
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
3620
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTransferIndex; });
3621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTransfer; });
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toPresetInfoListIndex; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskTransferIndex; });
3639
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskTransfer; });
3640
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toPresetInfoListIndex; });
3623
3641
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3624
3642
  /* unused harmony export historyListJson */
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListJson; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pressListJson; });
3643
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListJson; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pressListJson; });
3627
3645
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return isCanStartSubFlow; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionExamine; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionExamine; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTakeAdvice; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTakeAdvice; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskStartDraft; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSupervise; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSuperviseSub; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskStartDraft; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskReview; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskReview; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionSeal; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionSeal; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTwoOfficesDispatch; });
3642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return twoOfficesDispatch; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toResetProcessIndex; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return resetProcess; });
3645
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskContinuationIndex; });
3646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskContinuation; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return isCanStartSubFlow; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionExamine; });
3648
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionExamine; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTakeAdvice; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTakeAdvice; });
3651
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskStartDraft; });
3652
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSupervise; });
3653
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskSuperviseSub; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskStartDraft; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskReview; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReview; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskUnionSeal; });
3658
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskUnionSeal; });
3659
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTwoOfficesDispatch; });
3660
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return twoOfficesDispatch; });
3661
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toResetProcessIndex; });
3662
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return resetProcess; });
3663
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskContinuationIndex; });
3664
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskContinuation; });
3647
3665
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
3648
3666
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
3649
3667
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListWithCircularReadJson; });
3668
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pendedhistoryListWithCircularReadJson; });
3651
3669
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
3652
3670
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadWithDraw; });
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3671
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReadWithDraw; });
3672
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3655
3673
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3656
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendList; });
3657
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendInfo; });
3674
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendList; });
3675
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendInfo; });
3658
3676
  /* unused harmony export sendSave */
3659
3677
  /* unused harmony export sendUpdate */
3660
3678
  /* unused harmony export sendDelete */
3661
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendBatch; });
3679
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendBatch; });
3662
3680
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3663
3681
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3664
3682
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
@@ -3712,6 +3730,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
3712
3730
  // 框架 - 搜索
3713
3731
  var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
3714
3732
 
3733
+ // 系统参数
3734
+ var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
3735
+
3715
3736
  // 附件相关
3716
3737
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3717
3738
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
package/lib/tree.js CHANGED
@@ -1053,6 +1053,22 @@ var domEval = function domEval(code) {
1053
1053
  script.text = code;
1054
1054
  document.head.appendChild(script);
1055
1055
  };
1056
+ /**
1057
+ * downloadFile
1058
+ * @desc:下载附件
1059
+ * @author huangbo
1060
+ * @date 2022年5月7日
1061
+ * @param {String} [code] - js内容
1062
+ **/
1063
+ var downloadFile = function downloadFile(fileUrl) {
1064
+ var link = document.createElement('a');
1065
+ link.href = fileUrl;
1066
+ link.rel = 'noopener noreferrer';
1067
+ link.target = '_blank';
1068
+ document.body.appendChild(link);
1069
+ link.click();
1070
+ document.body.removeChild(link);
1071
+ };
1056
1072
 
1057
1073
  /**
1058
1074
  * esEncode
@@ -1606,7 +1622,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1606
1622
  * @param {function} callback - 回调函数
1607
1623
  **/
1608
1624
  var getMainConfig = function getMainConfig(callback) {
1609
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "ob"] }).then(function (res) {
1625
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "pb"] }).then(function (res) {
1610
1626
  if (res && res.rCode === 0) {
1611
1627
  callback(res.results);
1612
1628
  }
@@ -1943,7 +1959,7 @@ var getTypeName = function getTypeName(type) {
1943
1959
  typeName = '[角色]';
1944
1960
  } else if (type === 'post') {
1945
1961
  typeName = '[岗位]';
1946
- } else if (type === 'otheremployee' || type === 'employee') {
1962
+ } else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
1947
1963
  if (sysdepname) {
1948
1964
  typeName = '[' + sysdepname + '员工]';
1949
1965
  } else {
@@ -2363,7 +2379,7 @@ var isLogined = function () {
2363
2379
  break;
2364
2380
  }
2365
2381
 
2366
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "nb"] }).then(function (res) {
2382
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "ob"] }).then(function (res) {
2367
2383
  if (res.rCode === 0) {
2368
2384
  removeStorage();
2369
2385
  }
@@ -3436,6 +3452,7 @@ var watermark = function watermark(option) {
3436
3452
  debounce: debounce,
3437
3453
  delUrlParam: delUrlParam,
3438
3454
  domEval: domEval,
3455
+ downloadFile: downloadFile,
3439
3456
  esDecode: esDecode,
3440
3457
  esEncode: esEncode,
3441
3458
  esmEncrypt: esmEncrypt,
@@ -3520,32 +3537,32 @@ var watermark = function watermark(option) {
3520
3537
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3521
3538
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3522
3539
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return logout; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initLogin; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return switchUserTo; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return logout; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initLogin; });
3542
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return switchUserTo; });
3526
3543
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3527
3544
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
3528
3545
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3529
3546
  /* unused harmony export updateCode */
3530
3547
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
3531
3548
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginModifyPassword; });
3549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginModifyPassword; });
3533
3550
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3534
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initModifyPassword; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initModifyPassword; });
3535
3552
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getTwoFactorLoginCode; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getTwoFactorLoginCode; });
3537
3554
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initRetrialAuth; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initRetrialAuth; });
3539
3556
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return scanCodeRetrialAuth; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return scanCodeRetrialAuth; });
3541
3558
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3542
3559
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return userOnline; });
3544
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getUserAppWithTag; });
3545
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return recordUserApp; });
3546
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return mainConfig; });
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initUserSet; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserInfo; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return userOnline; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getUserAppWithTag; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return recordUserApp; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return mainConfig; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initUserSet; });
3565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return updateUserInfo; });
3549
3566
  /* unused harmony export getUserImgUrl */
3550
3567
  /* unused harmony export getDoorIndex */
3551
3568
  /* unused harmony export refreshOnlineUsers */
@@ -3554,21 +3571,22 @@ var watermark = function watermark(option) {
3554
3571
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
3555
3572
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
3556
3573
  /* unused harmony export getUserCustomInfo */
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserCustomInfo; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sysMsgPage; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreSysMsg; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreAllSysMsg; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return searchType; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserCustomInfo; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sysMsgPage; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return ignoreSysMsg; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreAllSysMsg; });
3578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return searchType; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSysParam; });
3562
3580
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploads; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadOnlyOne; });
3581
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return uploads; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadOnlyOne; });
3565
3583
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadSort; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploadSort; });
3567
3585
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadDownloads; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct2; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunctOffice; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadDownloads; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunct2; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return previewAdjunctOffice; });
3572
3590
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3573
3591
  /* unused harmony export upload_updateClassify */
3574
3592
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3580,16 +3598,16 @@ var watermark = function watermark(option) {
3580
3598
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3581
3599
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
3582
3600
  /* unused harmony export findUserBaseInfo */
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return gethelpdoc; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return gethelpdoc; });
3584
3602
  /* unused harmony export getCurrentuser */
3585
3603
  /* unused harmony export mainDetail */
3586
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartFlow; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return tempSave; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartFlow; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return tempSave; });
3588
3606
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3589
3607
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3590
3608
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return saveCommonOpinion; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateCommonOpinion; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return saveCommonOpinion; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateCommonOpinion; });
3593
3611
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3594
3612
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
3595
3613
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
@@ -3598,67 +3616,67 @@ var watermark = function watermark(option) {
3598
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3599
3617
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
3600
3618
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskHandleHtml; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskHandleHtml; });
3602
3620
  /* unused harmony export getView */
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return register; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryList; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskRejectHtml; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskRejectHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskRead; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskReadIndex; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadHtml; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return rejectAndEnd; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toSendMsg; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendMsg; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return register; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryList; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskRejectHtml; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskRejectHtml; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskRead; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toStartTaskReadIndex; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadHtml; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return rejectAndEnd; });
3629
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toSendMsg; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendMsg; });
3613
3631
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return handleInfo; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginUserInfo; });
3616
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return wss; });
3617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return topic; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return handleInfo; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return loginUserInfo; });
3634
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return wss; });
3635
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return topic; });
3618
3636
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
3619
3637
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
3620
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTransferIndex; });
3621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTransfer; });
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toPresetInfoListIndex; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskTransferIndex; });
3639
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskTransfer; });
3640
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toPresetInfoListIndex; });
3623
3641
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3624
3642
  /* unused harmony export historyListJson */
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListJson; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pressListJson; });
3643
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListJson; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pressListJson; });
3627
3645
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return isCanStartSubFlow; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionExamine; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionExamine; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTakeAdvice; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTakeAdvice; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskStartDraft; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSupervise; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSuperviseSub; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskStartDraft; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskReview; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskReview; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionSeal; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionSeal; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTwoOfficesDispatch; });
3642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return twoOfficesDispatch; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toResetProcessIndex; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return resetProcess; });
3645
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskContinuationIndex; });
3646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskContinuation; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return isCanStartSubFlow; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionExamine; });
3648
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionExamine; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTakeAdvice; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTakeAdvice; });
3651
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskStartDraft; });
3652
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSupervise; });
3653
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskSuperviseSub; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskStartDraft; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskReview; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReview; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskUnionSeal; });
3658
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskUnionSeal; });
3659
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTwoOfficesDispatch; });
3660
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return twoOfficesDispatch; });
3661
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toResetProcessIndex; });
3662
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return resetProcess; });
3663
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskContinuationIndex; });
3664
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskContinuation; });
3647
3665
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
3648
3666
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
3649
3667
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListWithCircularReadJson; });
3668
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pendedhistoryListWithCircularReadJson; });
3651
3669
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
3652
3670
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadWithDraw; });
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3671
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReadWithDraw; });
3672
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3655
3673
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3656
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendList; });
3657
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendInfo; });
3674
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendList; });
3675
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendInfo; });
3658
3676
  /* unused harmony export sendSave */
3659
3677
  /* unused harmony export sendUpdate */
3660
3678
  /* unused harmony export sendDelete */
3661
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendBatch; });
3679
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendBatch; });
3662
3680
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3663
3681
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3664
3682
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
@@ -3712,6 +3730,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
3712
3730
  // 框架 - 搜索
3713
3731
  var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
3714
3732
 
3733
+ // 系统参数
3734
+ var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
3735
+
3715
3736
  // 附件相关
3716
3737
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3717
3738
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口