eoss-ui 0.5.82 → 0.5.84

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 (80) hide show
  1. package/CHANGELOG.md +929 -0
  2. package/lib/button-group.js +152 -73
  3. package/lib/button.js +124 -76
  4. package/lib/checkbox-group.js +70 -53
  5. package/lib/config/api.js +3 -0
  6. package/lib/data-table-form.js +70 -53
  7. package/lib/data-table.js +93 -71
  8. package/lib/date-picker.js +70 -53
  9. package/lib/dialog.js +86 -56
  10. package/lib/eoss-ui.common.js +1197 -258
  11. package/lib/flow-group.js +70 -53
  12. package/lib/flow-list.js +71 -54
  13. package/lib/flow.js +119 -84
  14. package/lib/form.js +88 -55
  15. package/lib/handle-user.js +71 -54
  16. package/lib/handler.js +70 -53
  17. package/lib/icon.js +70 -53
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +70 -53
  20. package/lib/input.js +70 -53
  21. package/lib/login.js +81 -61
  22. package/lib/main.js +901 -110
  23. package/lib/nav.js +70 -53
  24. package/lib/notify.js +49 -45
  25. package/lib/page.js +70 -53
  26. package/lib/pagination.js +70 -53
  27. package/lib/player.js +70 -53
  28. package/lib/qr-code.js +70 -53
  29. package/lib/radio-group.js +70 -53
  30. package/lib/retrial-auth.js +70 -53
  31. package/lib/select-ganged.js +70 -53
  32. package/lib/select.js +70 -53
  33. package/lib/selector-panel.js +70 -53
  34. package/lib/selector.js +70 -53
  35. package/lib/sizer.js +70 -53
  36. package/lib/steps.js +70 -53
  37. package/lib/switch.js +70 -53
  38. package/lib/table-form.js +70 -53
  39. package/lib/tabs.js +70 -53
  40. package/lib/theme-chalk/dialog.css +1 -1
  41. package/lib/theme-chalk/flow-group.css +1 -1
  42. package/lib/theme-chalk/form.css +1 -1
  43. package/lib/theme-chalk/index.css +1 -1
  44. package/lib/theme-chalk/main.css +1 -1
  45. package/lib/theme-chalk/simplicity.css +1 -1
  46. package/lib/tips.js +70 -53
  47. package/lib/tree-group.js +74 -57
  48. package/lib/tree.js +70 -53
  49. package/lib/upload.js +74 -57
  50. package/lib/utils/util.js +26 -13
  51. package/lib/wujie.js +70 -53
  52. package/lib/wxlogin.js +70 -53
  53. package/package.json +2 -2
  54. package/packages/button/src/main.vue +88 -55
  55. package/packages/button-group/src/main.vue +56 -13
  56. package/packages/data-table/src/column.vue +4 -0
  57. package/packages/data-table/src/main.vue +6 -7
  58. package/packages/dialog/src/main.vue +10 -1
  59. package/packages/flow/src/main.vue +26 -17
  60. package/packages/form/src/main.vue +10 -0
  61. package/packages/login/src/resetPassword.vue +4 -2
  62. package/packages/main/src/default/userinfo.vue +2 -1
  63. package/packages/main/src/public/search.vue +337 -0
  64. package/packages/main/src/simplicity/apps.vue +8 -2
  65. package/packages/main/src/simplicity/index.vue +38 -9
  66. package/packages/main/src/simplicity/userinfo.vue +1 -0
  67. package/packages/theme-chalk/lib/dialog.css +1 -1
  68. package/packages/theme-chalk/lib/flow-group.css +1 -1
  69. package/packages/theme-chalk/lib/form.css +1 -1
  70. package/packages/theme-chalk/lib/index.css +1 -1
  71. package/packages/theme-chalk/lib/main.css +1 -1
  72. package/packages/theme-chalk/lib/simplicity.css +1 -1
  73. package/packages/theme-chalk/src/dialog.scss +25 -0
  74. package/packages/theme-chalk/src/flow-group.scss +1 -0
  75. package/packages/theme-chalk/src/form.scss +6 -0
  76. package/packages/theme-chalk/src/simplicity.scss +159 -4
  77. package/packages/tree-group/src/main.vue +2 -3
  78. package/src/config/api.js +3 -0
  79. package/src/index.js +157 -157
  80. package/src/utils/util.js +18 -5
@@ -2020,11 +2020,24 @@ var identical = function identical(_ref7) {
2020
2020
  var indexOfObj = function indexOfObj(arry, target, key) {
2021
2021
  for (var i = 0; i < arry.length; i++) {
2022
2022
  if (key) {
2023
- if (typeof target === 'string' && arry[i][key] === target) {
2024
- return i;
2025
- }
2026
- if (target[key] === arry[i][key]) {
2027
- return i;
2023
+ if (key.indexOf(',') > -1) {
2024
+ var keys = key.split(',');
2025
+ for (var _i7 = 0; _i7 < keys.length; _i7++) {
2026
+ var k = keys[_i7];
2027
+ if (typeof target === 'string' && arry[_i7][k] === target) {
2028
+ return _i7;
2029
+ }
2030
+ if (target[k] === arry[_i7][k]) {
2031
+ return _i7;
2032
+ }
2033
+ }
2034
+ } else {
2035
+ if (typeof target === 'string' && arry[i][key] === target) {
2036
+ return i;
2037
+ }
2038
+ if (target[key] === arry[i][key]) {
2039
+ return i;
2040
+ }
2028
2041
  }
2029
2042
  } else {
2030
2043
  if (JSON.stringify(target) === JSON.stringify(arry[i])) {
@@ -2758,22 +2771,22 @@ var setStorage = function setStorage(_ref14) {
2758
2771
  localStorage.setItem(key[i], value);
2759
2772
  }
2760
2773
  } else {
2761
- for (var _i7 in key) {
2762
- var val = _typeof(key[_i7]) === 'object' ? JSON.stringify(key[_i7]) : key[_i7];
2763
- localStorage.setItem(_i7, val);
2774
+ for (var _i8 in key) {
2775
+ var val = _typeof(key[_i8]) === 'object' ? JSON.stringify(key[_i8]) : key[_i8];
2776
+ localStorage.setItem(_i8, val);
2764
2777
  }
2765
2778
  }
2766
2779
  } else {
2767
2780
  if (typeof key === 'string') {
2768
2781
  sessionStorage.setItem(key, value);
2769
2782
  } else if (Array.isArray(key)) {
2770
- for (var _i8 in key) {
2771
- sessionStorage.setItem(key[_i8], value);
2783
+ for (var _i9 in key) {
2784
+ sessionStorage.setItem(key[_i9], value);
2772
2785
  }
2773
2786
  } else {
2774
- for (var _i9 in key) {
2775
- var _val = _typeof(key[_i9]) === 'object' ? JSON.stringify(key[_i9]) : key[_i9];
2776
- sessionStorage.setItem(_i9, _val);
2787
+ for (var _i10 in key) {
2788
+ var _val = _typeof(key[_i10]) === 'object' ? JSON.stringify(key[_i10]) : key[_i10];
2789
+ sessionStorage.setItem(_i10, _val);
2777
2790
  }
2778
2791
  }
2779
2792
  }
@@ -3253,7 +3266,7 @@ var watermark = function watermark(option) {
3253
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3254
3267
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3255
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3256
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
3269
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return switchUserTo; });
3257
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3258
3271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3259
3272
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
@@ -3271,12 +3284,12 @@ var watermark = function watermark(option) {
3271
3284
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
3272
3285
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3273
3286
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3274
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
3287
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return userOnline; });
3275
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3276
3289
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
3277
3290
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3278
3291
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3279
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
3292
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return updateUserInfo; });
3280
3293
  /* unused harmony export getUserImgUrl */
3281
3294
  /* unused harmony export getDoorIndex */
3282
3295
  /* unused harmony export refreshOnlineUsers */
@@ -3285,17 +3298,18 @@ var watermark = function watermark(option) {
3285
3298
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3286
3299
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3287
3300
  /* unused harmony export getUserCustomInfo */
3288
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
3289
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
3301
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserCustomInfo; });
3302
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sysMsgPage; });
3290
3303
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3291
3304
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3305
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return searchType; });
3292
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3293
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
3294
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
3307
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return uploads; });
3308
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadOnlyOne; });
3295
3309
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3296
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
3310
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploadSort; });
3297
3311
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3298
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
3312
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadDownloads; });
3299
3313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3300
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3301
3315
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
@@ -3313,13 +3327,13 @@ var watermark = function watermark(option) {
3313
3327
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3314
3328
  /* unused harmony export getCurrentuser */
3315
3329
  /* unused harmony export mainDetail */
3316
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
3317
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
3330
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartFlow; });
3331
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return tempSave; });
3318
3332
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3319
3333
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3320
3334
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3321
3335
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
3322
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
3336
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateCommonOpinion; });
3323
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3324
3338
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3325
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
@@ -3328,52 +3342,52 @@ var watermark = function watermark(option) {
3328
3342
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3329
3343
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3330
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3331
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
3345
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskHandleHtml; });
3332
3346
  /* unused harmony export getView */
3333
3347
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
3334
3348
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3335
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
3336
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
3337
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
3338
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
3349
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskRejectHtml; });
3350
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskRejectHtml; });
3351
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskRead; });
3352
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toStartTaskReadIndex; });
3353
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReadHtml; });
3340
3354
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
3341
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
3342
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
3355
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toSendMsg; });
3356
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendMsg; });
3343
3357
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3344
3358
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3345
3359
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3346
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
3347
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
3360
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return wss; });
3361
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return topic; });
3348
3362
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3349
3363
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3350
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
3351
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
3352
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
3364
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskTransferIndex; });
3365
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskTransfer; });
3366
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toPresetInfoListIndex; });
3353
3367
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3354
3368
  /* unused harmony export historyListJson */
3355
3369
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3356
3370
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3357
3371
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3358
3372
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3359
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
3360
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
3361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
3362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
3363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
3364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
3365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
3366
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
3367
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
3368
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
3369
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
3370
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
3371
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
3372
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
3373
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionExamine; });
3374
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionExamine; });
3375
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTakeAdvice; });
3376
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTakeAdvice; });
3377
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskStartDraft; });
3378
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskStartDraft; });
3379
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskReview; });
3380
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskReview; });
3381
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskUnionSeal; });
3382
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskUnionSeal; });
3383
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTwoOfficesDispatch; });
3384
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return twoOfficesDispatch; });
3385
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendList; });
3386
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendInfo; });
3373
3387
  /* unused harmony export sendSave */
3374
3388
  /* unused harmony export sendUpdate */
3375
3389
  /* unused harmony export sendDelete */
3376
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
3390
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendBatch; });
3377
3391
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3378
3392
  // 登录
3379
3393
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3420,6 +3434,9 @@ var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题
3420
3434
  var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
3421
3435
  var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
3422
3436
  var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
3437
+ // 框架 - 搜索
3438
+ var searchType = '/oceanSearch/v2/search/catalog'; // 搜索分类类型
3439
+
3423
3440
  // 附件相关
3424
3441
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3425
3442
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
@@ -3899,6 +3916,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3899
3916
  }
3900
3917
  },
3901
3918
  props: {
3919
+ data: {},
3902
3920
  icon: String,
3903
3921
  iconPlacement: {
3904
3922
  type: String,
@@ -3928,10 +3946,14 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3928
3946
  syncKeys: Object,
3929
3947
  text: String,
3930
3948
  onClick: Function,
3931
- badge: [Object, Number],
3949
+ badge: [Object, Number, Function],
3932
3950
  float: String,
3933
3951
  selector: Boolean,
3934
- upload: Boolean
3952
+ upload: Boolean,
3953
+ outside: {
3954
+ type: Boolean,
3955
+ default: true
3956
+ }
3935
3957
  },
3936
3958
  computed: {
3937
3959
  _type: function _type() {
@@ -4121,6 +4143,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4121
4143
  var attrs = {};
4122
4144
  var listeners = {};
4123
4145
  var config = {};
4146
+ var badgeConfig = void 0;
4124
4147
  if (this.selector) {
4125
4148
  tag = 'es-selector';
4126
4149
  props = _extends({
@@ -4148,32 +4171,57 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4148
4171
  clas = clas.concat(['el-button', this._type ? 'el-button--' + this._type : 'el-button--default', this.size ? 'el-button--' + this.size : '', this.float ? 'es-button--' + this.float : '']);
4149
4172
  }
4150
4173
  if (this.badge) {
4151
- var _config = {};
4152
4174
  if (typeof this.badge === 'number') {
4153
- _config = { class: 'es-button-badge', props: { value: this.badge } };
4175
+ badgeConfig = {
4176
+ class: 'es-button-badge',
4177
+ props: { value: this.badge }
4178
+ };
4179
+ } else if (typeof this.badge === 'function') {
4180
+ var badge = this.badge(this.data);
4181
+ if (badge) {
4182
+ if (typeof badge === 'number') {
4183
+ badgeConfig = {
4184
+ class: 'es-button-badge',
4185
+ props: { value: badge }
4186
+ };
4187
+ } else {
4188
+ var value = badge.value,
4189
+ max = badge.max,
4190
+ isDot = badge.isDot,
4191
+ hidden = badge.hidden,
4192
+ type = badge.type;
4193
+
4194
+ badgeConfig = {
4195
+ class: this.badge.class ? this.badge.class + ' es-button-badge' : 'es-button-badge',
4196
+ props: { value: value, max: max, isDot: isDot, hidden: hidden, type: type }
4197
+ };
4198
+ }
4199
+ }
4154
4200
  } else {
4155
4201
  var _badge = this.badge,
4156
- value = _badge.value,
4157
- max = _badge.max,
4158
- isDot = _badge.isDot,
4159
- hidden = _badge.hidden,
4160
- type = _badge.type;
4202
+ _value = _badge.value,
4203
+ _max = _badge.max,
4204
+ _isDot = _badge.isDot,
4205
+ _hidden = _badge.hidden,
4206
+ _type2 = _badge.type;
4161
4207
 
4162
- _config = {
4208
+ badgeConfig = {
4163
4209
  class: this.badge.class ? this.badge.class + ' es-button-badge' : 'es-button-badge',
4164
- props: { value: value, max: max, isDot: isDot, hidden: hidden, type: type }
4210
+ props: { value: _value, max: _max, isDot: _isDot, hidden: _hidden, type: _type2 }
4165
4211
  };
4166
4212
  }
4167
- return h('el-badge', _config, [h(tag, {
4168
- class: clas,
4169
- props: _extends({}, this.$attrs, props),
4170
- attrs: attrs,
4171
- on: _extends({}, this.$listeners, { click: this.handleClick }),
4172
- directives: [{
4173
- name: 'show',
4174
- value: !this.hide
4175
- }]
4176
- }, this.iconPlacement === 'start' ? [this.icon ? h('i', { class: this.icon }) : '', this.$slots.default || this.text] : [this.$slots.default || this.text, this.icon ? h('i', { class: this.icon }) : ''])]);
4213
+ if (badgeConfig && Object.keys(badgeConfig).length && this.outside) {
4214
+ return h('el-badge', badgeConfig, [h(tag, {
4215
+ class: clas,
4216
+ props: _extends({}, this.$attrs, props),
4217
+ attrs: attrs,
4218
+ on: _extends({}, this.$listeners, { click: this.handleClick }),
4219
+ directives: [{
4220
+ name: 'show',
4221
+ value: !this.hide
4222
+ }]
4223
+ }, this.iconPlacement === 'start' ? [this.icon ? h('i', { class: this.icon }) : '', this.$slots.default || this.text] : [this.$slots.default || this.text, this.icon ? h('i', { class: this.icon }) : ''])]);
4224
+ }
4177
4225
  }
4178
4226
  }
4179
4227
  return h(tag, {
@@ -4185,11 +4233,11 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4185
4233
  name: 'show',
4186
4234
  value: !this.hide
4187
4235
  }]
4188
- }, this.iconPlacement === 'start' ? [this.icon ? h('i', { class: this.icon }) : '', this.upload ? h('el-button', {
4236
+ }, [].concat(this.iconPlacement === 'start' ? [this.icon ? h('i', { class: this.icon }) : '', this.upload ? h('el-button', {
4189
4237
  props: config
4190
4238
  }, [this.$slots.default || this.text]) : this.$slots.default || this.text] : [this.upload ? h('el-button', {
4191
4239
  props: config
4192
- }, [this.$slots.default || this.text]) : this.$slots.default || this.text, this.icon ? h('i', { class: this.icon }) : '']);
4240
+ }, [this.$slots.default || this.text]) : this.$slots.default || this.text, this.icon ? h('i', { class: this.icon }) : ''], [!this.outside && badgeConfig && Object.keys(badgeConfig).length ? h('el-badge', badgeConfig) : '']));
4193
4241
  }
4194
4242
  });
4195
4243
  // CONCATENATED MODULE: ./packages/button/src/main.vue?vue&type=script&lang=js&
@@ -4320,8 +4368,8 @@ main.install = function (Vue) {
4320
4368
  };
4321
4369
 
4322
4370
  /* harmony default export */ var packages_button = (main);
4323
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=70bfc4f2&
4324
- var mainvue_type_template_id_70bfc4f2_render = function () {
4371
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=template&id=4147892e&
4372
+ var mainvue_type_template_id_4147892e_render = function () {
4325
4373
  var _vm = this
4326
4374
  var _h = _vm.$createElement
4327
4375
  var _c = _vm._self._c || _h
@@ -4370,6 +4418,8 @@ var mainvue_type_template_id_70bfc4f2_render = function () {
4370
4418
  key: index,
4371
4419
  attrs: {
4372
4420
  stop: _vm.stop,
4421
+ data: _vm.data,
4422
+ outside: _vm.outside,
4373
4423
  size: _vm.size,
4374
4424
  type:
4375
4425
  _vm.mode == "plus" ? "text" : item.type,
@@ -4436,23 +4486,32 @@ var mainvue_type_template_id_70bfc4f2_render = function () {
4436
4486
  },
4437
4487
  },
4438
4488
  [
4439
- _vm.mode == "plus"
4440
- ? [_vm._v("更多")]
4441
- : _vm.moreText
4442
- ? [
4443
- _vm._v(
4444
- "\n " + _vm._s(_vm.moreText) + "\n "
4445
- ),
4446
- _c("i", {
4447
- class: {
4448
- "el-icon-arrow-down": !_vm.show,
4449
- "el-icon-arrow-up": _vm.show,
4450
- },
4451
- }),
4452
- ]
4453
- : _c("i", { staticClass: "es-icon-omit" }),
4489
+ _c(
4490
+ "el-badge",
4491
+ _vm._b({}, "el-badge", _vm.badges, false),
4492
+ [
4493
+ _vm.mode == "plus"
4494
+ ? [_vm._v("更多")]
4495
+ : _vm.moreText
4496
+ ? [
4497
+ _vm._v(
4498
+ "\n " +
4499
+ _vm._s(_vm.moreText) +
4500
+ "\n "
4501
+ ),
4502
+ _c("i", {
4503
+ class: {
4504
+ "el-icon-arrow-down": !_vm.show,
4505
+ "el-icon-arrow-up": _vm.show,
4506
+ },
4507
+ }),
4508
+ ]
4509
+ : _c("i", { staticClass: "es-icon-omit" }),
4510
+ ],
4511
+ 2
4512
+ ),
4454
4513
  ],
4455
- 2
4514
+ 1
4456
4515
  ),
4457
4516
  _c(
4458
4517
  "el-dropdown-menu",
@@ -4559,6 +4618,19 @@ var mainvue_type_template_id_70bfc4f2_render = function () {
4559
4618
  ) + "\n "
4560
4619
  ),
4561
4620
  ],
4621
+ item.badge
4622
+ ? _c(
4623
+ "el-badge",
4624
+ _vm._b(
4625
+ {},
4626
+ "el-badge",
4627
+ typeof item.badge === "number"
4628
+ ? { value: item.badge }
4629
+ : item.badge,
4630
+ false
4631
+ )
4632
+ )
4633
+ : _vm._e(),
4562
4634
  ],
4563
4635
  2
4564
4636
  )
@@ -4573,11 +4645,11 @@ var mainvue_type_template_id_70bfc4f2_render = function () {
4573
4645
  2
4574
4646
  )
4575
4647
  }
4576
- var mainvue_type_template_id_70bfc4f2_staticRenderFns = []
4577
- mainvue_type_template_id_70bfc4f2_render._withStripped = true
4648
+ var mainvue_type_template_id_4147892e_staticRenderFns = []
4649
+ mainvue_type_template_id_4147892e_render._withStripped = true
4578
4650
 
4579
4651
 
4580
- // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=70bfc4f2&
4652
+ // CONCATENATED MODULE: ./packages/button-group/src/main.vue?vue&type=template&id=4147892e&
4581
4653
 
4582
4654
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/button-group/src/main.vue?vue&type=script&lang=js&
4583
4655
  var mainvue_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; };
@@ -4703,6 +4775,18 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4703
4775
  //
4704
4776
  //
4705
4777
  //
4778
+ //
4779
+ //
4780
+ //
4781
+ //
4782
+ //
4783
+ //
4784
+ //
4785
+ //
4786
+ //
4787
+ //
4788
+ //
4789
+ //
4706
4790
 
4707
4791
 
4708
4792
  /* harmony default export */ var button_group_src_mainvue_type_script_lang_js_ = ({
@@ -4738,7 +4822,13 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4738
4822
  type: String,
4739
4823
  default: 'bottom'
4740
4824
  },
4741
- parseData: Function
4825
+ parseData: Function,
4826
+ badge: Object,
4827
+ sort: Boolean,
4828
+ outside: {
4829
+ type: Boolean,
4830
+ default: true
4831
+ }
4742
4832
  },
4743
4833
  computed: {
4744
4834
  btns: function btns() {
@@ -4750,6 +4840,14 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4750
4840
  other: function other() {
4751
4841
  var btns = this.length > 0 && (this.btns.length > this.length || this.length == 1) ? this.btns.slice(this.length - 1, this.btns.length) : [];
4752
4842
  return btns;
4843
+ },
4844
+ badges: function badges() {
4845
+ if (this.other.length && this.other.filter(function (item) {
4846
+ return item.badge;
4847
+ }).length) {
4848
+ return this.badge ? mainvue_type_script_lang_js_extends({ isDot: true }, this.badge) : { isDot: true };
4849
+ }
4850
+ return this.badge ? mainvue_type_script_lang_js_extends({ isDot: true, hidden: true }, this.badge) : { isDot: true, hidden: true };
4753
4851
  }
4754
4852
  },
4755
4853
  watch: {},
@@ -4792,7 +4890,19 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4792
4890
  }
4793
4891
  return true;
4794
4892
  });
4795
- return arry;
4893
+ var newBtns = arry.map(function (item) {
4894
+ var badge = void 0;
4895
+ if (item.badge && typeof item.badge === 'function') {
4896
+ badge = item.badge(_this.data.row);
4897
+ }
4898
+ return badge ? mainvue_type_script_lang_js_extends({}, item, { badge: badge }) : mainvue_type_script_lang_js_extends({}, item);
4899
+ });
4900
+ if (this.sort) {
4901
+ newBtns = newBtns.sort(function (a, b) {
4902
+ return (b.badge ? 1 : 0) - (a.badge ? 1 : 0);
4903
+ });
4904
+ }
4905
+ return newBtns;
4796
4906
  },
4797
4907
  handleChange: function handleChange(res) {
4798
4908
  this.show = res;
@@ -4843,8 +4953,8 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
4843
4953
 
4844
4954
  var src_main_component = normalizeComponent(
4845
4955
  packages_button_group_src_mainvue_type_script_lang_js_,
4846
- mainvue_type_template_id_70bfc4f2_render,
4847
- mainvue_type_template_id_70bfc4f2_staticRenderFns,
4956
+ mainvue_type_template_id_4147892e_render,
4957
+ mainvue_type_template_id_4147892e_staticRenderFns,
4848
4958
  false,
4849
4959
  null,
4850
4960
  null,
@@ -6908,8 +7018,8 @@ clients_src_main.install = function (Vue) {
6908
7018
  };
6909
7019
 
6910
7020
  /* harmony default export */ var clients = (clients_src_main);
6911
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=dd74e586&
6912
- var mainvue_type_template_id_dd74e586_render = function () {
7021
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=3a307e68&
7022
+ var mainvue_type_template_id_3a307e68_render = function () {
6913
7023
  var _vm = this
6914
7024
  var _h = _vm.$createElement
6915
7025
  var _c = _vm._self._c || _h
@@ -7038,7 +7148,7 @@ var mainvue_type_template_id_dd74e586_render = function () {
7038
7148
  })
7039
7149
  ),
7040
7150
  [
7041
- _vm._t("prepend"),
7151
+ _vm._t("suffix"),
7042
7152
  _vm._t("default"),
7043
7153
  _vm._l(_vm.theads, function (item, index) {
7044
7154
  return [
@@ -7123,7 +7233,7 @@ var mainvue_type_template_id_dd74e586_render = function () {
7123
7233
  : _vm._e(),
7124
7234
  ]
7125
7235
  }),
7126
- _vm._t("append"),
7236
+ _vm._t("prefix"),
7127
7237
  _vm.editable && !_vm.readonly
7128
7238
  ? _c("el-table-column", {
7129
7239
  staticClass: "eoss-ui-eidt-column",
@@ -7184,6 +7294,7 @@ var mainvue_type_template_id_dd74e586_render = function () {
7184
7294
  ]),
7185
7295
  })
7186
7296
  : _vm._e(),
7297
+ _c("template", { slot: "append" }, [_vm._t("append")], 2),
7187
7298
  ],
7188
7299
  2
7189
7300
  ),
@@ -7234,11 +7345,11 @@ var mainvue_type_template_id_dd74e586_render = function () {
7234
7345
  1
7235
7346
  )
7236
7347
  }
7237
- var mainvue_type_template_id_dd74e586_staticRenderFns = []
7238
- mainvue_type_template_id_dd74e586_render._withStripped = true
7348
+ var mainvue_type_template_id_3a307e68_staticRenderFns = []
7349
+ mainvue_type_template_id_3a307e68_render._withStripped = true
7239
7350
 
7240
7351
 
7241
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=dd74e586&
7352
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=3a307e68&
7242
7353
 
7243
7354
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=44b7ff61&
7244
7355
  var childrenvue_type_template_id_44b7ff61_render = function () {
@@ -7289,8 +7400,8 @@ childrenvue_type_template_id_44b7ff61_render._withStripped = true
7289
7400
 
7290
7401
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=44b7ff61&
7291
7402
 
7292
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=19baf4a0&
7293
- var columnvue_type_template_id_19baf4a0_render = function () {
7403
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=1dac0447&
7404
+ var columnvue_type_template_id_1dac0447_render = function () {
7294
7405
  var _vm = this
7295
7406
  var _h = _vm.$createElement
7296
7407
  var _c = _vm._self._c || _h
@@ -8103,11 +8214,11 @@ var columnvue_type_template_id_19baf4a0_render = function () {
8103
8214
  2
8104
8215
  )
8105
8216
  }
8106
- var columnvue_type_template_id_19baf4a0_staticRenderFns = []
8107
- columnvue_type_template_id_19baf4a0_render._withStripped = true
8217
+ var columnvue_type_template_id_1dac0447_staticRenderFns = []
8218
+ columnvue_type_template_id_1dac0447_render._withStripped = true
8108
8219
 
8109
8220
 
8110
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=19baf4a0&
8221
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=1dac0447&
8111
8222
 
8112
8223
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
8113
8224
  var regenerator_ = __webpack_require__(3);
@@ -8726,6 +8837,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8726
8837
  required = this.rules.required;
8727
8838
  }
8728
8839
  }
8840
+ if (this.type === 'handle') {
8841
+ config.sort = true;
8842
+ config.outside = false;
8843
+ }
8729
8844
  var minWidth = this.label || this.title ? (this.label || this.title).length * 14 + 20 : this.width ? '' : '180px';
8730
8845
  config = columnvue_type_script_lang_js_extends({}, config, {
8731
8846
  filterIcon: this.icon,
@@ -9045,8 +9160,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
9045
9160
 
9046
9161
  var column_component = normalizeComponent(
9047
9162
  src_columnvue_type_script_lang_js_,
9048
- columnvue_type_template_id_19baf4a0_render,
9049
- columnvue_type_template_id_19baf4a0_staticRenderFns,
9163
+ columnvue_type_template_id_1dac0447_render,
9164
+ columnvue_type_template_id_1dac0447_staticRenderFns,
9050
9165
  false,
9051
9166
  null,
9052
9167
  null,
@@ -9541,6 +9656,7 @@ var mainvue_type_script_lang_js_components;
9541
9656
  //
9542
9657
  //
9543
9658
  //
9659
+ //
9544
9660
 
9545
9661
 
9546
9662
 
@@ -9549,7 +9665,7 @@ var mainvue_type_script_lang_js_components;
9549
9665
 
9550
9666
 
9551
9667
 
9552
- var dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils_util["a" /* default */].win.dataTableMode || 'default';
9668
+ var systemMode = utils_util["a" /* default */].win.top.systemMode || utils_util["a" /* default */].win.systemMode || 'default';
9553
9669
  /* harmony default export */ var data_table_src_mainvue_type_script_lang_js_ = ({
9554
9670
  name: 'EsDataTable',
9555
9671
  inheritAttrs: false,
@@ -9575,7 +9691,7 @@ var dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils
9575
9691
  props: {
9576
9692
  mode: {
9577
9693
  type: String,
9578
- default: dataTableMode
9694
+ default: systemMode
9579
9695
  },
9580
9696
  service: String,
9581
9697
  loading: {
@@ -10052,8 +10168,7 @@ var dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils
10052
10168
  }
10053
10169
  },
10054
10170
  param: {
10055
- deep: true,
10056
- handler: function handler() {
10171
+ handler: function handler(val) {
10057
10172
  this.getTableData();
10058
10173
  }
10059
10174
  },
@@ -10894,8 +11009,8 @@ var dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils
10894
11009
 
10895
11010
  var data_table_src_main_component = normalizeComponent(
10896
11011
  packages_data_table_src_mainvue_type_script_lang_js_,
10897
- mainvue_type_template_id_dd74e586_render,
10898
- mainvue_type_template_id_dd74e586_staticRenderFns,
11012
+ mainvue_type_template_id_3a307e68_render,
11013
+ mainvue_type_template_id_3a307e68_staticRenderFns,
10899
11014
  false,
10900
11015
  null,
10901
11016
  null,
@@ -13032,8 +13147,8 @@ date_picker_src_main.install = function (Vue) {
13032
13147
  };
13033
13148
 
13034
13149
  /* harmony default export */ var date_picker = (date_picker_src_main);
13035
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=2c75b6d0&
13036
- var mainvue_type_template_id_2c75b6d0_render = function () {
13150
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/dialog/src/main.vue?vue&type=template&id=8647525a&
13151
+ var mainvue_type_template_id_8647525a_render = function () {
13037
13152
  var _vm = this
13038
13153
  var _h = _vm.$createElement
13039
13154
  var _c = _vm._self._c || _h
@@ -13044,7 +13159,11 @@ var mainvue_type_template_id_2c75b6d0_render = function () {
13044
13159
  {
13045
13160
  ref: _vm.wujieName,
13046
13161
  staticClass: "es-dialog",
13047
- class: { "is-middle": _vm.middle },
13162
+ class: {
13163
+ "es-dialog-plus": _vm.mode == "plus",
13164
+ "is-middle": _vm.middle,
13165
+ "es-title-hide": !_vm.titles,
13166
+ },
13048
13167
  attrs: {
13049
13168
  title: _vm.titles,
13050
13169
  visible: _vm.show,
@@ -13543,11 +13662,11 @@ var mainvue_type_template_id_2c75b6d0_render = function () {
13543
13662
  2
13544
13663
  )
13545
13664
  }
13546
- var mainvue_type_template_id_2c75b6d0_staticRenderFns = []
13547
- mainvue_type_template_id_2c75b6d0_render._withStripped = true
13665
+ var mainvue_type_template_id_8647525a_staticRenderFns = []
13666
+ mainvue_type_template_id_8647525a_render._withStripped = true
13548
13667
 
13549
13668
 
13550
- // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=2c75b6d0&
13669
+ // CONCATENATED MODULE: ./packages/dialog/src/main.vue?vue&type=template&id=8647525a&
13551
13670
 
13552
13671
  // EXTERNAL MODULE: external "wujie-vue2"
13553
13672
  var external_wujie_vue2_ = __webpack_require__(7);
@@ -13821,6 +13940,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
13821
13940
  //
13822
13941
  //
13823
13942
  //
13943
+ //
13944
+ //
13945
+ //
13946
+ //
13824
13947
 
13825
13948
 
13826
13949
 
@@ -13831,6 +13954,7 @@ var availWidth = 0;
13831
13954
  var availHeight = 0;
13832
13955
  availWidth = utils_util["a" /* default */].win.top.document.body.offsetWidth - 260;
13833
13956
  availHeight = utils_util["a" /* default */].win.top.document.body.offsetHeight - 60;
13957
+ var mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.top.systemMode || utils_util["a" /* default */].win.systemMode || 'default';
13834
13958
  /* harmony default export */ var dialog_src_mainvue_type_script_lang_js_ = ({
13835
13959
  name: 'EsDialog',
13836
13960
  inheritAttrs: false,
@@ -13853,6 +13977,10 @@ availHeight = utils_util["a" /* default */].win.top.document.body.offsetHeight -
13853
13977
  }
13854
13978
  },
13855
13979
  props: {
13980
+ mode: {
13981
+ type: String,
13982
+ default: mainvue_type_script_lang_js_systemMode
13983
+ },
13856
13984
  title: String,
13857
13985
  busEvent: String,
13858
13986
  contents: [Array, Object],
@@ -14101,8 +14229,8 @@ availHeight = utils_util["a" /* default */].win.top.document.body.offsetHeight -
14101
14229
 
14102
14230
  var dialog_src_main_component = normalizeComponent(
14103
14231
  packages_dialog_src_mainvue_type_script_lang_js_,
14104
- mainvue_type_template_id_2c75b6d0_render,
14105
- mainvue_type_template_id_2c75b6d0_staticRenderFns,
14232
+ mainvue_type_template_id_8647525a_render,
14233
+ mainvue_type_template_id_8647525a_staticRenderFns,
14106
14234
  false,
14107
14235
  null,
14108
14236
  null,
@@ -14368,8 +14496,8 @@ error_page_src_main.install = function (Vue) {
14368
14496
  };
14369
14497
 
14370
14498
  /* harmony default export */ var error_page = (error_page_src_main);
14371
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=6bf66132&
14372
- var mainvue_type_template_id_6bf66132_render = function () {
14499
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=67acd6ba&
14500
+ var mainvue_type_template_id_67acd6ba_render = function () {
14373
14501
  var _vm = this
14374
14502
  var _h = _vm.$createElement
14375
14503
  var _c = _vm._self._c || _h
@@ -14429,6 +14557,12 @@ var mainvue_type_template_id_6bf66132_render = function () {
14429
14557
  attrs: { type: "text" },
14430
14558
  })
14431
14559
  : _vm._e(),
14560
+ !_vm.autocomplete
14561
+ ? _c("input", {
14562
+ staticClass: "hidden-input",
14563
+ attrs: { type: "password", autocomplete: "new-password" },
14564
+ })
14565
+ : _vm._e(),
14432
14566
  _vm.steps
14433
14567
  ? _c(
14434
14568
  "es-steps",
@@ -25910,11 +26044,11 @@ var mainvue_type_template_id_6bf66132_render = function () {
25910
26044
  )
25911
26045
  : _vm._e()
25912
26046
  }
25913
- var mainvue_type_template_id_6bf66132_staticRenderFns = []
25914
- mainvue_type_template_id_6bf66132_render._withStripped = true
26047
+ var mainvue_type_template_id_67acd6ba_staticRenderFns = []
26048
+ mainvue_type_template_id_67acd6ba_render._withStripped = true
25915
26049
 
25916
26050
 
25917
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=6bf66132&
26051
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=67acd6ba&
25918
26052
 
25919
26053
  // CONCATENATED MODULE: ./src/utils/rules.js
25920
26054
  // 手机号
@@ -29989,6 +30123,12 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
29989
30123
  //
29990
30124
  //
29991
30125
  //
30126
+ //
30127
+ //
30128
+ //
30129
+ //
30130
+ //
30131
+ //
29992
30132
 
29993
30133
 
29994
30134
 
@@ -30018,6 +30158,10 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
30018
30158
  }
30019
30159
  },
30020
30160
  props: {
30161
+ autocomplete: {
30162
+ type: Boolean,
30163
+ default: true
30164
+ },
30021
30165
  hides: {
30022
30166
  type: Array,
30023
30167
  default: function _default() {
@@ -31295,8 +31439,8 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
31295
31439
 
31296
31440
  var form_src_main_component = normalizeComponent(
31297
31441
  packages_form_src_mainvue_type_script_lang_js_,
31298
- mainvue_type_template_id_6bf66132_render,
31299
- mainvue_type_template_id_6bf66132_staticRenderFns,
31442
+ mainvue_type_template_id_67acd6ba_render,
31443
+ mainvue_type_template_id_67acd6ba_staticRenderFns,
31300
31444
  false,
31301
31445
  null,
31302
31446
  null,
@@ -31313,8 +31457,8 @@ form_src_main.install = function (Vue) {
31313
31457
  };
31314
31458
 
31315
31459
  /* harmony default export */ var packages_form = (form_src_main);
31316
- // 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=ca6d1df4&
31317
- var mainvue_type_template_id_ca6d1df4_render = function () {
31460
+ // 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=44d35e77&
31461
+ var mainvue_type_template_id_44d35e77_render = function () {
31318
31462
  var _vm = this
31319
31463
  var _h = _vm.$createElement
31320
31464
  var _c = _vm._self._c || _h
@@ -32852,13 +32996,14 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
32852
32996
  ? _c(
32853
32997
  "es-dialog",
32854
32998
  {
32999
+ ref: "handleVisible",
32855
33000
  attrs: {
32856
33001
  "append-to-body": "",
33002
+ height: "auto",
32857
33003
  title: _vm.title,
32858
33004
  "close-on-click-modal": false,
32859
33005
  visible: _vm.handleVisible,
32860
33006
  closeParent: _vm.closeParent,
32861
- height: "auto",
32862
33007
  },
32863
33008
  on: {
32864
33009
  "update:visible": function ($event) {
@@ -32875,7 +33020,11 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
32875
33020
  },
32876
33021
  on: {
32877
33022
  cancel: function ($event) {
32878
- _vm.closeProcess($event, "handleVisible")
33023
+ _vm.closeProcess(
33024
+ $event,
33025
+ "handleVisible",
33026
+ _vm.closeParent
33027
+ )
32879
33028
  },
32880
33029
  },
32881
33030
  }),
@@ -32917,11 +33066,12 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
32917
33066
  ? _c(
32918
33067
  "es-dialog",
32919
33068
  {
33069
+ ref: "showReject",
32920
33070
  attrs: {
32921
33071
  "append-to-body": "",
32922
- "close-on-click-modal": false,
32923
- title: "驳回",
32924
33072
  height: "auto",
33073
+ title: "驳回",
33074
+ "close-on-click-modal": false,
32925
33075
  visible: _vm.showReject,
32926
33076
  },
32927
33077
  on: {
@@ -32952,12 +33102,13 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
32952
33102
  ? _c(
32953
33103
  "es-dialog",
32954
33104
  {
33105
+ ref: "showTaskRead",
32955
33106
  attrs: {
32956
33107
  "append-to-body": "",
33108
+ height: "auto",
32957
33109
  "close-on-click-modal": false,
32958
33110
  title: _vm.taskReadType === "transfer" ? "转办" : "分阅",
32959
33111
  visible: _vm.showTaskRead,
32960
- height: "auto",
32961
33112
  },
32962
33113
  on: {
32963
33114
  "update:visible": function ($event) {
@@ -32990,8 +33141,8 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
32990
33141
  {
32991
33142
  attrs: {
32992
33143
  "append-to-body": "",
32993
- "close-on-click-modal": false,
32994
33144
  title: "意见附件",
33145
+ "close-on-click-modal": false,
32995
33146
  visible: _vm.showFileList,
32996
33147
  },
32997
33148
  on: {
@@ -33017,12 +33168,13 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
33017
33168
  ? _c(
33018
33169
  "es-dialog",
33019
33170
  {
33171
+ ref: "showSendMsg",
33020
33172
  attrs: {
33021
33173
  "append-to-body": "",
33022
- "close-on-click-modal": false,
33174
+ height: "auto",
33023
33175
  title: "发送消息",
33176
+ "close-on-click-modal": false,
33024
33177
  visible: _vm.showSendMsg,
33025
- height: "auto",
33026
33178
  },
33027
33179
  on: {
33028
33180
  "update:visible": function ($event) {
@@ -33047,12 +33199,13 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
33047
33199
  ? _c(
33048
33200
  "es-dialog",
33049
33201
  {
33202
+ ref: "showTaskUnionExamine",
33050
33203
  attrs: {
33051
33204
  "append-to-body": "",
33205
+ height: "auto",
33052
33206
  "close-on-click-modal": false,
33053
33207
  title: _vm.flowTitle,
33054
33208
  visible: _vm.showTaskUnionExamine,
33055
- height: "auto",
33056
33209
  },
33057
33210
  on: {
33058
33211
  "update:visible": function ($event) {
@@ -33084,11 +33237,11 @@ var mainvue_type_template_id_ca6d1df4_render = function () {
33084
33237
  )
33085
33238
  : _vm._e()
33086
33239
  }
33087
- var mainvue_type_template_id_ca6d1df4_staticRenderFns = []
33088
- mainvue_type_template_id_ca6d1df4_render._withStripped = true
33240
+ var mainvue_type_template_id_44d35e77_staticRenderFns = []
33241
+ mainvue_type_template_id_44d35e77_render._withStripped = true
33089
33242
 
33090
33243
 
33091
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=ca6d1df4&
33244
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=44d35e77&
33092
33245
 
33093
33246
  // 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=28c062bc&
33094
33247
  var CommonOpinionsvue_type_template_id_28c062bc_render = function () {
@@ -34029,7 +34182,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
34029
34182
  }
34030
34183
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
34031
34184
  utils_util["a" /* default */].ajax({
34032
- url: data.id ? api["Wb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
34185
+ url: data.id ? api["Xb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
34033
34186
  data: info,
34034
34187
  header: { 'Content-Type': 'multipart/form-data' },
34035
34188
  method: 'post'
@@ -36787,7 +36940,7 @@ var processFormvue_type_script_lang_js_components;
36787
36940
  businessId: this.businessId
36788
36941
  };
36789
36942
  // 获取节点
36790
- utils_util["a" /* default */].ajax({ url: api["Jb" /* toStartFlow */], params: params }).then(function (res) {
36943
+ utils_util["a" /* default */].ajax({ url: api["Kb" /* toStartFlow */], params: params }).then(function (res) {
36791
36944
  //pc接口返回数据处理
36792
36945
  var status = res.status,
36793
36946
  message = res.message,
@@ -37391,7 +37544,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
37391
37544
  notificationType = _sendInfo.notificationType;
37392
37545
 
37393
37546
  var params = {
37394
- url: api["ub" /* sendMsg */],
37547
+ url: api["vb" /* sendMsg */],
37395
37548
  headers: { Accept: 'application/json,text/plain' },
37396
37549
  method: 'post',
37397
37550
  data: {
@@ -37453,7 +37606,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
37453
37606
 
37454
37607
  this.loading = true;
37455
37608
  utils_util["a" /* default */].ajax({
37456
- url: api["Ib" /* toSendMsg */],
37609
+ url: api["Jb" /* toSendMsg */],
37457
37610
  params: { pendingId: this.$attrs.pendingId }
37458
37611
  }).then(function (res) {
37459
37612
  var status = res.status,
@@ -38271,7 +38424,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
38271
38424
  userId: utils_util["a" /* default */].getStorage('userId'),
38272
38425
  nextNodeId: _this2.nextNode.nextNodeId
38273
38426
  };
38274
- utils_util["a" /* default */].ajax({ url: api["zb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
38427
+ utils_util["a" /* default */].ajax({ url: api["Ab" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
38275
38428
  var status = res.status,
38276
38429
  message = res.message;
38277
38430
 
@@ -38326,7 +38479,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
38326
38479
  isSinglePage: false,
38327
38480
  opinion: this.option
38328
38481
  };
38329
- utils_util["a" /* default */].ajax({ url: api["Mb" /* toTaskRejectHtml */], params: params }).then(function (res) {
38482
+ utils_util["a" /* default */].ajax({ url: api["Nb" /* toTaskRejectHtml */], params: params }).then(function (res) {
38330
38483
  var status = res.status,
38331
38484
  message = res.message,
38332
38485
  _res$data = res.data,
@@ -39002,7 +39155,7 @@ var startTaskReadvue_type_script_lang_js_components;
39002
39155
  taskExamine = this.taskExamine;
39003
39156
 
39004
39157
  var params = {
39005
- url: api["Qb" /* toTaskTransferIndex */],
39158
+ url: api["Rb" /* toTaskTransferIndex */],
39006
39159
  params: {
39007
39160
  opinion: opinion,
39008
39161
  pendingId: pendingId,
@@ -39127,7 +39280,7 @@ var startTaskReadvue_type_script_lang_js_components;
39127
39280
  var _this3 = this;
39128
39281
 
39129
39282
  var params = {
39130
- url: api["Kb" /* toStartTaskRead */],
39283
+ url: api["Lb" /* toStartTaskRead */],
39131
39284
  params: { pendingId: this.pendingId, taskAction: this.type }
39132
39285
  };
39133
39286
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -39200,7 +39353,7 @@ var startTaskReadvue_type_script_lang_js_components;
39200
39353
  type = this.type;
39201
39354
 
39202
39355
  var params = {
39203
- url: api["Db" /* taskTransfer */],
39356
+ url: api["Eb" /* taskTransfer */],
39204
39357
  data: {
39205
39358
  choiceDeptId: choiceDeptId,
39206
39359
  choiceOrgId: choiceOrgId,
@@ -39294,7 +39447,7 @@ var startTaskReadvue_type_script_lang_js_components;
39294
39447
  !download && delete params.isDownload;
39295
39448
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
39296
39449
  utils_util["a" /* default */].ajax({
39297
- url: api["yb" /* taskReadHtml */],
39450
+ url: api["zb" /* taskReadHtml */],
39298
39451
  params: { taskAction: _this7.type },
39299
39452
  headers: {
39300
39453
  Accept: 'application/json,text/plain'
@@ -39787,7 +39940,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
39787
39940
  pendingId = this.pendingId;
39788
39941
 
39789
39942
  var params = {
39790
- url: api["Ab" /* taskReview */],
39943
+ url: api["Bb" /* taskReview */],
39791
39944
  data: {
39792
39945
  nextUserId: nextOtherOrgObj.join(','),
39793
39946
  notificationType: noticeType.join(','),
@@ -39823,7 +39976,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
39823
39976
  var _this2 = this;
39824
39977
 
39825
39978
  var params = {
39826
- url: api["Nb" /* toTaskReview */],
39979
+ url: api["Ob" /* toTaskReview */],
39827
39980
  params: { pendingId: this.pendingId }
39828
39981
  };
39829
39982
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -39858,7 +40011,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
39858
40011
  var _this3 = this;
39859
40012
 
39860
40013
  var params = {
39861
- url: this.type == 'takeAdvice' ? api["Pb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Ob" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Sb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Tb" /* toTwoOfficesDispatch */] : api["Rb" /* toTaskUnionExamine */],
40014
+ url: this.type == 'takeAdvice' ? api["Qb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Pb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Tb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Ub" /* toTwoOfficesDispatch */] : api["Sb" /* toTaskUnionExamine */],
39862
40015
  params: { pendingId: this.pendingId },
39863
40016
  headers: { Accept: 'application/json,text/plain' }
39864
40017
  };
@@ -39952,7 +40105,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
39952
40105
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
39953
40106
  // return this.$message.warning('暂未开放,敬请期待!');
39954
40107
  var param = {
39955
- url: this.type === 'startDraf' ? api["Bb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Fb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Vb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Cb" /* taskTakeAdvice */] : api["Eb" /* taskUnionExamine */],
40108
+ url: this.type === 'startDraf' ? api["Cb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Gb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Wb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Db" /* taskTakeAdvice */] : api["Fb" /* taskUnionExamine */],
39956
40109
  data: {
39957
40110
  opinion: opinion,
39958
40111
  pendingId: pendingId,
@@ -40772,6 +40925,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40772
40925
  //
40773
40926
  //
40774
40927
  //
40928
+ //
40929
+ //
40930
+ //
40931
+ //
40932
+ //
40775
40933
 
40776
40934
 
40777
40935
 
@@ -41172,7 +41330,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
41172
41330
  taskAction: 'complete'
41173
41331
  };
41174
41332
  utils_util["a" /* default */].ajax({
41175
- url: api["yb" /* taskReadHtml */],
41333
+ url: api["zb" /* taskReadHtml */],
41176
41334
  params: { taskAction: 'complete' },
41177
41335
  headers: {
41178
41336
  Accept: 'application/json,text/plain'
@@ -41204,7 +41362,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
41204
41362
 
41205
41363
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
41206
41364
  utils_util["a" /* default */].ajax({
41207
- url: api["Lb" /* toStartTaskReadIndex */],
41365
+ url: api["Mb" /* toStartTaskReadIndex */],
41208
41366
  params: { pendingId: this.pendingId }
41209
41367
  }).then(function (res) {
41210
41368
  var status = res.status,
@@ -41339,7 +41497,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
41339
41497
  pendingId: this.pendingId
41340
41498
  };
41341
41499
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
41342
- utils_util["a" /* default */].ajax({ url: api["Gb" /* tempSave */], params: params }).then(function (res) {
41500
+ utils_util["a" /* default */].ajax({ url: api["Hb" /* tempSave */], params: params }).then(function (res) {
41343
41501
  var status = res.status,
41344
41502
  message = res.message;
41345
41503
 
@@ -42245,8 +42403,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
42245
42403
  * @param {String} type 当前点击的弹窗类型
42246
42404
  * @date 2022年5月25日
42247
42405
  **/
42248
- closeProcess: function closeProcess(val, type) {
42249
- this[type] = false;
42406
+ closeProcess: function closeProcess(val, type, closeParent) {
42407
+ if (closeParent) {
42408
+ this.$refs[type].handleClosed();
42409
+ } else {
42410
+ this[type] = false;
42411
+ }
42250
42412
  if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
42251
42413
  this.$emit('success');
42252
42414
  }
@@ -42542,7 +42704,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
42542
42704
  params.isSubFlow = taskExamineInfo.isSubFlow;
42543
42705
  params.nodeId = taskExamineInfo.nodeId;
42544
42706
  params.needRetrialAuth = needRetrialAuth;
42545
- return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["xb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
42707
+ return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["yb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
42546
42708
  var status = res.status,
42547
42709
  message = res.message;
42548
42710
 
@@ -42623,8 +42785,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
42623
42785
 
42624
42786
  var flow_src_main_component = normalizeComponent(
42625
42787
  packages_flow_src_mainvue_type_script_lang_js_,
42626
- mainvue_type_template_id_ca6d1df4_render,
42627
- mainvue_type_template_id_ca6d1df4_staticRenderFns,
42788
+ mainvue_type_template_id_44d35e77_render,
42789
+ mainvue_type_template_id_44d35e77_staticRenderFns,
42628
42790
  false,
42629
42791
  null,
42630
42792
  null,
@@ -45806,7 +45968,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
45806
45968
  var _this9 = this;
45807
45969
 
45808
45970
  var param = {
45809
- url: api["Hb" /* toPresetInfoListIndex */],
45971
+ url: api["Ib" /* toPresetInfoListIndex */],
45810
45972
  params: { apprecordid: this.businessId }
45811
45973
  };
45812
45974
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -46060,7 +46222,7 @@ mainvue_type_template_id_737d6f93_render._withStripped = true
46060
46222
 
46061
46223
  if (this.job.id !== item.id) {
46062
46224
  this.job = item;
46063
- utils_util["a" /* default */].ajax({ url: api["vb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
46225
+ utils_util["a" /* default */].ajax({ url: api["wb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
46064
46226
  if (res.rCode == 0) {
46065
46227
  utils_util["a" /* default */].setStorage({
46066
46228
  type: _this.storage,
@@ -49204,8 +49366,8 @@ mainvue_type_template_id_bf56655a_render._withStripped = true
49204
49366
 
49205
49367
  // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=bf56655a&
49206
49368
 
49207
- // 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=579bc87d&
49208
- var resetPasswordvue_type_template_id_579bc87d_render = function () {
49369
+ // 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=cab38660&
49370
+ var resetPasswordvue_type_template_id_cab38660_render = function () {
49209
49371
  var _vm = this
49210
49372
  var _h = _vm.$createElement
49211
49373
  var _c = _vm._self._c || _h
@@ -49258,6 +49420,7 @@ var resetPasswordvue_type_template_id_579bc87d_render = function () {
49258
49420
  "element-loading-background": "rgba(0, 0, 0, 0.65)",
49259
49421
  model: _vm.formData,
49260
49422
  contents: _vm.page,
49423
+ autocomplete: false,
49261
49424
  },
49262
49425
  on: { submit: _vm.handleSubmit },
49263
49426
  }),
@@ -49265,11 +49428,11 @@ var resetPasswordvue_type_template_id_579bc87d_render = function () {
49265
49428
  1
49266
49429
  )
49267
49430
  }
49268
- var resetPasswordvue_type_template_id_579bc87d_staticRenderFns = []
49269
- resetPasswordvue_type_template_id_579bc87d_render._withStripped = true
49431
+ var resetPasswordvue_type_template_id_cab38660_staticRenderFns = []
49432
+ resetPasswordvue_type_template_id_cab38660_render._withStripped = true
49270
49433
 
49271
49434
 
49272
- // CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=579bc87d&
49435
+ // CONCATENATED MODULE: ./packages/login/src/resetPassword.vue?vue&type=template&id=cab38660&
49273
49436
 
49274
49437
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=script&lang=js&
49275
49438
  var resetPasswordvue_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; };
@@ -49313,6 +49476,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
49313
49476
  //
49314
49477
  //
49315
49478
  //
49479
+ //
49316
49480
 
49317
49481
 
49318
49482
 
@@ -49554,6 +49718,8 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
49554
49718
  if (types.length) {
49555
49719
  this.activeIndex = types[0];
49556
49720
  }
49721
+ } else {
49722
+ this.activeIndex = '0';
49557
49723
  }
49558
49724
  },
49559
49725
  destroyed: function destroyed() {
@@ -49688,7 +49854,6 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
49688
49854
  } else {
49689
49855
  var msg = res.msg || '系统错误,请联系管理员!';
49690
49856
  _this4.$message.error(msg);
49691
- _this4.btnText = '获取验证码';
49692
49857
  _this4.disabled = false;
49693
49858
  delete _this4.formData.verificationCode;
49694
49859
  clearInterval(_this4.timer);
@@ -49749,8 +49914,8 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
49749
49914
 
49750
49915
  var resetPassword_component = normalizeComponent(
49751
49916
  src_resetPasswordvue_type_script_lang_js_,
49752
- resetPasswordvue_type_template_id_579bc87d_render,
49753
- resetPasswordvue_type_template_id_579bc87d_staticRenderFns,
49917
+ resetPasswordvue_type_template_id_cab38660_render,
49918
+ resetPasswordvue_type_template_id_cab38660_staticRenderFns,
49754
49919
  false,
49755
49920
  null,
49756
49921
  null,
@@ -51403,8 +51568,8 @@ mainvue_type_template_id_a3c25372_render._withStripped = true
51403
51568
 
51404
51569
  // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=a3c25372&
51405
51570
 
51406
- // 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/index.vue?vue&type=template&id=6b2bf155&scoped=true&
51407
- var simplicityvue_type_template_id_6b2bf155_scoped_true_render = function () {
51571
+ // 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/index.vue?vue&type=template&id=bafba8ca&scoped=true&
51572
+ var simplicityvue_type_template_id_bafba8ca_scoped_true_render = function () {
51408
51573
  var _vm = this
51409
51574
  var _h = _vm.$createElement
51410
51575
  var _c = _vm._self._c || _h
@@ -51423,7 +51588,9 @@ var simplicityvue_type_template_id_6b2bf155_scoped_true_render = function () {
51423
51588
  _vm._v(
51424
51589
  "\n " +
51425
51590
  _vm._s(
51426
- _vm.simpleUserInfo.orgShortName || _vm.simpleUserInfo.orgName
51591
+ _vm.userModel.orgName ||
51592
+ _vm.simpleUserInfo.orgShortName ||
51593
+ _vm.simpleUserInfo.orgName
51427
51594
  ) +
51428
51595
  "\n "
51429
51596
  ),
@@ -51971,6 +52138,19 @@ var simplicityvue_type_template_id_6b2bf155_scoped_true_render = function () {
51971
52138
  attrs: { data: _vm.sysMsg, winopen: _vm.winopen },
51972
52139
  on: { opened: _vm.handleOpened },
51973
52140
  }),
52141
+ _c(
52142
+ "es-dialog",
52143
+ {
52144
+ attrs: { visible: _vm.showSearch, size: "lg" },
52145
+ on: {
52146
+ "update:visible": function ($event) {
52147
+ _vm.showSearch = $event
52148
+ },
52149
+ },
52150
+ },
52151
+ [_c("search")],
52152
+ 1
52153
+ ),
51974
52154
  _c(
51975
52155
  "es-dialog",
51976
52156
  {
@@ -52006,11 +52186,11 @@ var simplicityvue_type_template_id_6b2bf155_scoped_true_render = function () {
52006
52186
  ),
52007
52187
  ])
52008
52188
  }
52009
- var simplicityvue_type_template_id_6b2bf155_scoped_true_staticRenderFns = []
52010
- simplicityvue_type_template_id_6b2bf155_scoped_true_render._withStripped = true
52189
+ var simplicityvue_type_template_id_bafba8ca_scoped_true_staticRenderFns = []
52190
+ simplicityvue_type_template_id_bafba8ca_scoped_true_render._withStripped = true
52011
52191
 
52012
52192
 
52013
- // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=6b2bf155&scoped=true&
52193
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=bafba8ca&scoped=true&
52014
52194
 
52015
52195
  // 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=1560e8bf&scoped=true&
52016
52196
  var avatarvue_type_template_id_1560e8bf_scoped_true_render = function () {
@@ -53142,8 +53322,8 @@ var sub_menu_component = normalizeComponent(
53142
53322
  )
53143
53323
 
53144
53324
  /* harmony default export */ var sub_menu = (sub_menu_component.exports);
53145
- // 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/apps.vue?vue&type=template&id=1bb0ddc3&scoped=true&
53146
- var appsvue_type_template_id_1bb0ddc3_scoped_true_render = function () {
53325
+ // 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/apps.vue?vue&type=template&id=8d4e39ba&scoped=true&
53326
+ var appsvue_type_template_id_8d4e39ba_scoped_true_render = function () {
53147
53327
  var this$1 = this
53148
53328
  var _vm = this
53149
53329
  var _h = _vm.$createElement
@@ -53356,7 +53536,12 @@ var appsvue_type_template_id_1bb0ddc3_scoped_true_render = function () {
53356
53536
  }),
53357
53537
  _c(
53358
53538
  "el-badge",
53359
- _vm._b({}, "el-badge", _vm.getBadge(item), false),
53539
+ _vm._b(
53540
+ { staticClass: "es-simplicity_apps-texts" },
53541
+ "el-badge",
53542
+ _vm.getBadge(item),
53543
+ false
53544
+ ),
53360
53545
  [
53361
53546
  _c(
53362
53547
  "div",
@@ -53468,7 +53653,12 @@ var appsvue_type_template_id_1bb0ddc3_scoped_true_render = function () {
53468
53653
  }),
53469
53654
  _c(
53470
53655
  "el-badge",
53471
- _vm._b({}, "el-badge", _vm.getBadge(item), false),
53656
+ _vm._b(
53657
+ { staticClass: "es-simplicity_apps-texts" },
53658
+ "el-badge",
53659
+ _vm.getBadge(item),
53660
+ false
53661
+ ),
53472
53662
  [
53473
53663
  _c(
53474
53664
  "div",
@@ -53545,11 +53735,11 @@ var appsvue_type_template_id_1bb0ddc3_scoped_true_render = function () {
53545
53735
  ]
53546
53736
  )
53547
53737
  }
53548
- var appsvue_type_template_id_1bb0ddc3_scoped_true_staticRenderFns = []
53549
- appsvue_type_template_id_1bb0ddc3_scoped_true_render._withStripped = true
53738
+ var appsvue_type_template_id_8d4e39ba_scoped_true_staticRenderFns = []
53739
+ appsvue_type_template_id_8d4e39ba_scoped_true_render._withStripped = true
53550
53740
 
53551
53741
 
53552
- // CONCATENATED MODULE: ./packages/main/src/simplicity/apps.vue?vue&type=template&id=1bb0ddc3&scoped=true&
53742
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/apps.vue?vue&type=template&id=8d4e39ba&scoped=true&
53553
53743
 
53554
53744
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/apps.vue?vue&type=script&lang=js&
53555
53745
  //
@@ -53738,6 +53928,12 @@ appsvue_type_template_id_1bb0ddc3_scoped_true_render._withStripped = true
53738
53928
  //
53739
53929
  //
53740
53930
  //
53931
+ //
53932
+ //
53933
+ //
53934
+ //
53935
+ //
53936
+ //
53741
53937
 
53742
53938
 
53743
53939
  /* harmony default export */ var appsvue_type_script_lang_js_ = ({
@@ -53921,11 +54117,11 @@ appsvue_type_template_id_1bb0ddc3_scoped_true_render._withStripped = true
53921
54117
 
53922
54118
  var apps_component = normalizeComponent(
53923
54119
  simplicity_appsvue_type_script_lang_js_,
53924
- appsvue_type_template_id_1bb0ddc3_scoped_true_render,
53925
- appsvue_type_template_id_1bb0ddc3_scoped_true_staticRenderFns,
54120
+ appsvue_type_template_id_8d4e39ba_scoped_true_render,
54121
+ appsvue_type_template_id_8d4e39ba_scoped_true_staticRenderFns,
53926
54122
  false,
53927
54123
  null,
53928
- "1bb0ddc3",
54124
+ "8d4e39ba",
53929
54125
  null
53930
54126
 
53931
54127
  )
@@ -54098,8 +54294,8 @@ uservue_type_template_id_edaa0dc4_scoped_true_render._withStripped = true
54098
54294
 
54099
54295
  // CONCATENATED MODULE: ./packages/main/src/simplicity/user.vue?vue&type=template&id=edaa0dc4&scoped=true&
54100
54296
 
54101
- // 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/userinfo.vue?vue&type=template&id=0dbd4cc6&
54102
- var userinfovue_type_template_id_0dbd4cc6_render = function () {
54297
+ // 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/userinfo.vue?vue&type=template&id=9a76ed7c&
54298
+ var userinfovue_type_template_id_9a76ed7c_render = function () {
54103
54299
  var _vm = this
54104
54300
  var _h = _vm.$createElement
54105
54301
  var _c = _vm._self._c || _h
@@ -54108,18 +54304,18 @@ var userinfovue_type_template_id_0dbd4cc6_render = function () {
54108
54304
  {
54109
54305
  ref: "form",
54110
54306
  staticClass: "es-user-info",
54111
- attrs: { model: _vm.model, contents: _vm.forms },
54307
+ attrs: { model: _vm.model, contents: _vm.forms, autocomplete: false },
54112
54308
  on: { submit: _vm.handleFormSubmit },
54113
54309
  },
54114
54310
  [_c("template", { slot: "other" }, [_vm._t("default")], 2)],
54115
54311
  2
54116
54312
  )
54117
54313
  }
54118
- var userinfovue_type_template_id_0dbd4cc6_staticRenderFns = []
54119
- userinfovue_type_template_id_0dbd4cc6_render._withStripped = true
54314
+ var userinfovue_type_template_id_9a76ed7c_staticRenderFns = []
54315
+ userinfovue_type_template_id_9a76ed7c_render._withStripped = true
54120
54316
 
54121
54317
 
54122
- // CONCATENATED MODULE: ./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=0dbd4cc6&
54318
+ // CONCATENATED MODULE: ./packages/main/src/simplicity/userinfo.vue?vue&type=template&id=9a76ed7c&
54123
54319
 
54124
54320
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/userinfo.vue?vue&type=script&lang=js&
54125
54321
  //
@@ -54135,6 +54331,7 @@ userinfovue_type_template_id_0dbd4cc6_render._withStripped = true
54135
54331
  //
54136
54332
  //
54137
54333
  //
54334
+ //
54138
54335
 
54139
54336
 
54140
54337
 
@@ -54292,7 +54489,7 @@ userinfovue_type_template_id_0dbd4cc6_render._withStripped = true
54292
54489
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
54293
54490
  initLogin && (initLogin = JSON.parse(initLogin));
54294
54491
  utils_util["a" /* default */].ajax({
54295
- url: api["Yb" /* updateUserInfo */],
54492
+ url: api["Zb" /* updateUserInfo */],
54296
54493
  params: {
54297
54494
  email: this.model.email,
54298
54495
  officeTel: this.model.officeTel,
@@ -54377,8 +54574,8 @@ userinfovue_type_template_id_0dbd4cc6_render._withStripped = true
54377
54574
 
54378
54575
  var userinfo_component = normalizeComponent(
54379
54576
  simplicity_userinfovue_type_script_lang_js_,
54380
- userinfovue_type_template_id_0dbd4cc6_render,
54381
- userinfovue_type_template_id_0dbd4cc6_staticRenderFns,
54577
+ userinfovue_type_template_id_9a76ed7c_render,
54578
+ userinfovue_type_template_id_9a76ed7c_staticRenderFns,
54382
54579
  false,
54383
54580
  null,
54384
54581
  null,
@@ -54556,7 +54753,7 @@ var userinfo_component = normalizeComponent(
54556
54753
  var notify = this.checked.join(',');
54557
54754
  utils_util["a" /* default */].ajax({
54558
54755
  method: 'post',
54559
- url: api["Xb" /* updateUserCustomInfo */],
54756
+ url: api["Yb" /* updateUserCustomInfo */],
54560
54757
  data: {
54561
54758
  notify: notify
54562
54759
  }
@@ -54586,7 +54783,7 @@ var userinfo_component = normalizeComponent(
54586
54783
  if (this.user.identityId !== res.id) {
54587
54784
  utils_util["a" /* default */].ajax({
54588
54785
  method: 'post',
54589
- url: api["vb" /* switchUserTo */],
54786
+ url: api["wb" /* switchUserTo */],
54590
54787
  data: { userId: res.value }
54591
54788
  }).then(function (res) {
54592
54789
  if (res.rCode == 0) {
@@ -54972,7 +55169,7 @@ messagevue_type_template_id_0ee7ab90_render._withStripped = true
54972
55169
  if (this.pageNum <= this.pageCount) {
54973
55170
  this.loading = true;
54974
55171
  utils_util["a" /* default */].ajax({
54975
- url: api["wb" /* sysMsgPage */],
55172
+ url: api["xb" /* sysMsgPage */],
54976
55173
  params: {
54977
55174
  pageNum: reload ? 1 : this.pageNum,
54978
55175
  pageSize: this.pageSize
@@ -55795,7 +55992,7 @@ onlinevue_type_template_id_63844b4e_scoped_true_render._withStripped = true
55795
55992
  props: {
55796
55993
  sysuseronline: {
55797
55994
  type: String,
55798
- default: api["dc" /* userOnline */]
55995
+ default: api["ec" /* userOnline */]
55799
55996
  }
55800
55997
  },
55801
55998
  data: function data() {
@@ -55878,6 +56075,721 @@ var online_component = normalizeComponent(
55878
56075
  )
55879
56076
 
55880
56077
  /* harmony default export */ var online = (online_component.exports);
56078
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=template&id=19fcf182&
56079
+ var searchvue_type_template_id_19fcf182_render = function () {
56080
+ var _vm = this
56081
+ var _h = _vm.$createElement
56082
+ var _c = _vm._self._c || _h
56083
+ return _c(
56084
+ "div",
56085
+ { staticClass: "es-public-search-box" },
56086
+ [
56087
+ _c("el-input", {
56088
+ staticClass: "es-public-search-input",
56089
+ attrs: {
56090
+ placeholder: "请输入关键字",
56091
+ clearable: "",
56092
+ "prefix-icon": "el-icon-search",
56093
+ round: "",
56094
+ },
56095
+ model: {
56096
+ value: _vm.keyWords,
56097
+ callback: function ($$v) {
56098
+ _vm.keyWords = $$v
56099
+ },
56100
+ expression: "keyWords",
56101
+ },
56102
+ }),
56103
+ _c(
56104
+ "el-tabs",
56105
+ {
56106
+ staticClass: "es-public-search-tabs",
56107
+ model: {
56108
+ value: _vm.active,
56109
+ callback: function ($$v) {
56110
+ _vm.active = $$v
56111
+ },
56112
+ expression: "active",
56113
+ },
56114
+ },
56115
+ [
56116
+ _c(
56117
+ "el-tab-pane",
56118
+ {
56119
+ directives: [
56120
+ {
56121
+ name: "loading",
56122
+ rawName: "v-loading",
56123
+ value: _vm.loading,
56124
+ expression: "loading",
56125
+ },
56126
+ ],
56127
+ attrs: {
56128
+ label: "综合",
56129
+ name: "0",
56130
+ "element-loading-background": "rgba(0, 0, 0, 0.01)",
56131
+ "element-loading-text": "加载中...",
56132
+ },
56133
+ },
56134
+ [
56135
+ _c(
56136
+ "el-scrollbar",
56137
+ { staticClass: "es-scrollbar" },
56138
+ [
56139
+ _vm._l(_vm.types, function (item, index) {
56140
+ return [
56141
+ item.records && item.records.length
56142
+ ? _c(
56143
+ "div",
56144
+ {
56145
+ key: item.id,
56146
+ staticClass: "es-public-search-content",
56147
+ },
56148
+ [
56149
+ _c(
56150
+ "div",
56151
+ { staticClass: "es-public-search-title" },
56152
+ [_vm._v(_vm._s(item.name))]
56153
+ ),
56154
+ _c(
56155
+ "ul",
56156
+ { staticClass: "es-public-search-list" },
56157
+ _vm._l(
56158
+ item.records.slice(0, 3),
56159
+ function (ele) {
56160
+ return _c(
56161
+ "li",
56162
+ {
56163
+ key: ele.id,
56164
+ staticClass:
56165
+ "es-public-search-list-item",
56166
+ },
56167
+ [
56168
+ _c(
56169
+ "es-icon",
56170
+ _vm._b(
56171
+ {
56172
+ staticClass:
56173
+ "es-public-search-item-icon",
56174
+ style: _vm.setStyle(ele, index),
56175
+ },
56176
+ "es-icon",
56177
+ _vm.getIcon(ele, index),
56178
+ false
56179
+ )
56180
+ ),
56181
+ _c(
56182
+ "div",
56183
+ {
56184
+ staticClass:
56185
+ "es-public-search-item-name",
56186
+ },
56187
+ [
56188
+ _vm._v(
56189
+ "\n " +
56190
+ _vm._s(ele.name || ele.title) +
56191
+ "\n "
56192
+ ),
56193
+ ]
56194
+ ),
56195
+ ele.summary
56196
+ ? _c(
56197
+ "div",
56198
+ {
56199
+ staticClass:
56200
+ "es-public-search-item-texts",
56201
+ },
56202
+ [
56203
+ _vm._v(
56204
+ "\n " +
56205
+ _vm._s(ele.summary) +
56206
+ "\n "
56207
+ ),
56208
+ ]
56209
+ )
56210
+ : _vm._e(),
56211
+ _c(
56212
+ "div",
56213
+ {
56214
+ staticClass:
56215
+ "es-public-search-item-texts",
56216
+ },
56217
+ [
56218
+ Array.isArray(
56219
+ ele.infos || ele.footer
56220
+ )
56221
+ ? _vm._l(
56222
+ ele.infos || ele.footer,
56223
+ function (text, idx) {
56224
+ return _c(
56225
+ "span",
56226
+ {
56227
+ key: idx,
56228
+ staticClass:
56229
+ "es-public-search-item-text",
56230
+ },
56231
+ [_vm._v(_vm._s(text))]
56232
+ )
56233
+ }
56234
+ )
56235
+ : [
56236
+ _vm._v(
56237
+ _vm._s(
56238
+ ele.infos || ele.footer
56239
+ )
56240
+ ),
56241
+ ],
56242
+ ],
56243
+ 2
56244
+ ),
56245
+ ],
56246
+ 1
56247
+ )
56248
+ }
56249
+ ),
56250
+ 0
56251
+ ),
56252
+ _c(
56253
+ "div",
56254
+ { staticClass: "es-public-search-more" },
56255
+ [
56256
+ _c(
56257
+ "span",
56258
+ {
56259
+ staticClass: "es-public-search-more-text",
56260
+ on: {
56261
+ click: function ($event) {
56262
+ _vm.handleTabs(item, index)
56263
+ },
56264
+ },
56265
+ },
56266
+ [
56267
+ _vm._v("在"),
56268
+ _c(
56269
+ "span",
56270
+ {
56271
+ staticClass:
56272
+ "es-public-search-more-quote",
56273
+ },
56274
+ [_vm._v(_vm._s(item.name))]
56275
+ ),
56276
+ _vm._v("中搜索全部"),
56277
+ ]
56278
+ ),
56279
+ ]
56280
+ ),
56281
+ ]
56282
+ )
56283
+ : _vm._e(),
56284
+ ]
56285
+ }),
56286
+ ],
56287
+ 2
56288
+ ),
56289
+ ],
56290
+ 1
56291
+ ),
56292
+ _vm._l(_vm.types, function (item, index) {
56293
+ return _c(
56294
+ "el-tab-pane",
56295
+ {
56296
+ directives: [
56297
+ {
56298
+ name: "loading",
56299
+ rawName: "v-loading",
56300
+ value: _vm.loadings[item.id || String(index + 1)],
56301
+ expression: "loadings[item.id || String(index + 1)]",
56302
+ },
56303
+ ],
56304
+ key: item.id,
56305
+ attrs: {
56306
+ lazy: "",
56307
+ label: item.name,
56308
+ name: item.id || String(index + 1),
56309
+ "element-loading-background": "rgba(0, 0, 0, 0.01)",
56310
+ "element-loading-text": "加载中...",
56311
+ },
56312
+ },
56313
+ [
56314
+ _c(
56315
+ "el-scrollbar",
56316
+ {
56317
+ staticClass: "es-scrollbar",
56318
+ attrs: {
56319
+ "infinite-scroll": function () {
56320
+ _vm.handleSearch(item, index)
56321
+ },
56322
+ "infinite-scroll-disabled": _vm.disabled,
56323
+ "infinite-scroll-immediate": false,
56324
+ },
56325
+ },
56326
+ [
56327
+ _c("div", { staticClass: "es-public-search-info" }, [
56328
+ _vm._v(
56329
+ "\n " + _vm._s(item.totalCount) + '条与"'
56330
+ ),
56331
+ _c(
56332
+ "span",
56333
+ { staticClass: "es-public-search-more-quote" },
56334
+ [_vm._v(_vm._s(_vm.keyWords))]
56335
+ ),
56336
+ _vm._v('"相关的搜索结果\n '),
56337
+ ]),
56338
+ _c(
56339
+ "ul",
56340
+ { staticClass: "es-public-search-lists" },
56341
+ _vm._l(item.records, function (ele) {
56342
+ return _c(
56343
+ "li",
56344
+ {
56345
+ key: ele.id,
56346
+ staticClass: "es-public-search-list-item",
56347
+ },
56348
+ [
56349
+ _c(
56350
+ "es-icon",
56351
+ _vm._b(
56352
+ {
56353
+ staticClass: "es-public-search-item-icon",
56354
+ style: _vm.setStyle(ele, index),
56355
+ },
56356
+ "es-icon",
56357
+ _vm.getIcon(ele),
56358
+ false
56359
+ )
56360
+ ),
56361
+ _c(
56362
+ "div",
56363
+ { staticClass: "es-public-search-item-name" },
56364
+ [
56365
+ _vm._v(
56366
+ "\n " +
56367
+ _vm._s(ele.name || ele.title) +
56368
+ "\n "
56369
+ ),
56370
+ ]
56371
+ ),
56372
+ ele.summary
56373
+ ? _c(
56374
+ "div",
56375
+ {
56376
+ staticClass: "es-public-search-item-texts",
56377
+ },
56378
+ [
56379
+ _vm._v(
56380
+ "\n " +
56381
+ _vm._s(ele.summary) +
56382
+ "\n "
56383
+ ),
56384
+ ]
56385
+ )
56386
+ : _vm._e(),
56387
+ _c(
56388
+ "div",
56389
+ { staticClass: "es-public-search-item-texts" },
56390
+ [
56391
+ Array.isArray(ele.infos || ele.footer)
56392
+ ? _vm._l(
56393
+ ele.infos || ele.footer,
56394
+ function (text, idx) {
56395
+ return _c(
56396
+ "span",
56397
+ {
56398
+ key: idx,
56399
+ staticClass:
56400
+ "es-public-search-item-text",
56401
+ },
56402
+ [_vm._v(_vm._s(text))]
56403
+ )
56404
+ }
56405
+ )
56406
+ : [_vm._v(_vm._s(ele.infos || ele.footer))],
56407
+ ],
56408
+ 2
56409
+ ),
56410
+ ],
56411
+ 1
56412
+ )
56413
+ }),
56414
+ 0
56415
+ ),
56416
+ _vm.noMore[item.id || String(index + 1)]
56417
+ ? _c("p", [_vm._v("没有更多了")])
56418
+ : _vm._e(),
56419
+ ]
56420
+ ),
56421
+ ],
56422
+ 1
56423
+ )
56424
+ }),
56425
+ ],
56426
+ 2
56427
+ ),
56428
+ ],
56429
+ 1
56430
+ )
56431
+ }
56432
+ var searchvue_type_template_id_19fcf182_staticRenderFns = []
56433
+ searchvue_type_template_id_19fcf182_render._withStripped = true
56434
+
56435
+
56436
+ // CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=template&id=19fcf182&
56437
+
56438
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/public/search.vue?vue&type=script&lang=js&
56439
+ var searchvue_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; };
56440
+
56441
+ //
56442
+ //
56443
+ //
56444
+ //
56445
+ //
56446
+ //
56447
+ //
56448
+ //
56449
+ //
56450
+ //
56451
+ //
56452
+ //
56453
+ //
56454
+ //
56455
+ //
56456
+ //
56457
+ //
56458
+ //
56459
+ //
56460
+ //
56461
+ //
56462
+ //
56463
+ //
56464
+ //
56465
+ //
56466
+ //
56467
+ //
56468
+ //
56469
+ //
56470
+ //
56471
+ //
56472
+ //
56473
+ //
56474
+ //
56475
+ //
56476
+ //
56477
+ //
56478
+ //
56479
+ //
56480
+ //
56481
+ //
56482
+ //
56483
+ //
56484
+ //
56485
+ //
56486
+ //
56487
+ //
56488
+ //
56489
+ //
56490
+ //
56491
+ //
56492
+ //
56493
+ //
56494
+ //
56495
+ //
56496
+ //
56497
+ //
56498
+ //
56499
+ //
56500
+ //
56501
+ //
56502
+ //
56503
+ //
56504
+ //
56505
+ //
56506
+ //
56507
+ //
56508
+ //
56509
+ //
56510
+ //
56511
+ //
56512
+ //
56513
+ //
56514
+ //
56515
+ //
56516
+ //
56517
+ //
56518
+ //
56519
+ //
56520
+ //
56521
+ //
56522
+ //
56523
+ //
56524
+ //
56525
+ //
56526
+ //
56527
+ //
56528
+ //
56529
+ //
56530
+ //
56531
+ //
56532
+ //
56533
+ //
56534
+ //
56535
+ //
56536
+ //
56537
+ //
56538
+ //
56539
+ //
56540
+ //
56541
+ //
56542
+ //
56543
+ //
56544
+ //
56545
+ //
56546
+ //
56547
+ //
56548
+ //
56549
+ //
56550
+ //
56551
+ //
56552
+ //
56553
+ //
56554
+ //
56555
+ //
56556
+ //
56557
+ //
56558
+ //
56559
+ //
56560
+ //
56561
+ //
56562
+ //
56563
+ //
56564
+ //
56565
+ //
56566
+ //
56567
+ //
56568
+ //
56569
+ //
56570
+ //
56571
+ //
56572
+ //
56573
+ //
56574
+
56575
+
56576
+
56577
+
56578
+ /* harmony default export */ var searchvue_type_script_lang_js_ = ({
56579
+ name: 'Search',
56580
+ components: {},
56581
+ props: {
56582
+ searchType: {
56583
+ type: String,
56584
+ default: api["rb" /* searchType */]
56585
+ },
56586
+ pageSize: {
56587
+ type: Number,
56588
+ default: 10
56589
+ }
56590
+ },
56591
+ data: function data() {
56592
+ return {
56593
+ icons: {
56594
+ ppt: 'es-icon-ppt',
56595
+ png: 'es-icon-picture',
56596
+ gif: 'es-icon-picture',
56597
+ jpg: 'es-icon-picture',
56598
+ xls: 'es-icon-excel',
56599
+ xlsx: 'es-icon-excel',
56600
+ docx: 'es-icon-word',
56601
+ doc: 'es-icon-word',
56602
+ rar: 'es-icon-zip',
56603
+ zip: 'es-icon-zip',
56604
+ txt: 'es-icon-txt',
56605
+ ipa: 'es-icon-ios',
56606
+ apk: 'es-icon-android',
56607
+ mp4: 'es-icon-video',
56608
+ avi: 'es-icon-video',
56609
+ mp3: 'es-icon-audioo',
56610
+ wma: 'es-icon-audioo',
56611
+ pdf: 'es-icon-pdf'
56612
+ },
56613
+ colors: ['#46D3BA', '#2591F7', '#40C274', '#E34D59', '#FF9C52', '#17C27B'],
56614
+ keyWords: '',
56615
+ active: '0',
56616
+ types: [],
56617
+ lists: [],
56618
+ loadings: {},
56619
+ noMore: {},
56620
+ isLoading: false
56621
+ };
56622
+ },
56623
+
56624
+ computed: {
56625
+ loading: function loading() {
56626
+ return this.active == '0' && this.isLoading;
56627
+ },
56628
+ disabled: function disabled() {
56629
+ return this.loadings[this.active] || this.noMore[this.active];
56630
+ }
56631
+ },
56632
+ watch: {
56633
+ keyWords: function keyWords(val) {
56634
+ this.handleSearchAll(val);
56635
+ }
56636
+ },
56637
+ beforeCreate: function beforeCreate() {
56638
+ var _this = this;
56639
+
56640
+ this.handleSearchAll = Object(external_throttle_debounce_["debounce"])(500, function (res) {
56641
+ _this.searchAll(res);
56642
+ });
56643
+ },
56644
+ created: function created() {
56645
+ this.getTypes();
56646
+ },
56647
+ mounted: function mounted() {},
56648
+
56649
+ methods: {
56650
+ getIcon: function getIcon(res) {
56651
+ var icon = void 0;
56652
+ var cls = void 0;
56653
+ if (res.icon) {
56654
+ icon = this.icons[res.icon.toLowerCase()];
56655
+ if (!icon) {
56656
+ if (res.icon == '#last') {
56657
+ icon = res.title.substr(-1, 1);
56658
+ cls = 'es-public-search-item-icon-text';
56659
+ } else {
56660
+ cls = 'es-public-search-item-icons';
56661
+ icon = res.icon;
56662
+ }
56663
+ }
56664
+ } else {
56665
+ var key = res.title.split('.')[1];
56666
+ icon = key ? this.icons[key.toLowerCase()] : '';
56667
+ if (!icon) {
56668
+ icon = res.title.substr(-1, 1);
56669
+ cls = 'es-public-search-item-icon-text';
56670
+ }
56671
+ }
56672
+ return { class: cls, contents: icon };
56673
+ },
56674
+ setStyle: function setStyle(res, index) {
56675
+ if (res.icon) {
56676
+ var icon = this.icons[res.icon.toLowerCase()];
56677
+ if (!icon && res.icon != '#last') {
56678
+ return { backgroundColor: this.colors[index % this.colors.length] };
56679
+ }
56680
+ } else {
56681
+ return { backgroundColor: this.colors[index % this.colors.length] };
56682
+ }
56683
+ return {};
56684
+ },
56685
+ getTypes: function getTypes() {
56686
+ var _this2 = this;
56687
+
56688
+ utils_util["a" /* default */].ajax({
56689
+ url: this.searchType,
56690
+ params: {
56691
+ terminalType: 'web,pc'
56692
+ }
56693
+ }).then(function (res) {
56694
+ if (res.rCode == 0) {
56695
+ var results = res.results;
56696
+
56697
+ var loadings = {};
56698
+ var noMore = {};
56699
+ var types = results.catelog.map(function (item, index) {
56700
+ loadings[item.id || String(index + 1)] = false;
56701
+ noMore[item.id || String(index + 1)] = false;
56702
+ return searchvue_type_script_lang_js_extends({}, item, { pageNum: 0, pageCount: 1, records: [] });
56703
+ });
56704
+ _this2.types = types;
56705
+ _this2.loadings = loadings;
56706
+ _this2.noMore = noMore;
56707
+ }
56708
+ });
56709
+ },
56710
+ searchAll: function searchAll(keyWords) {
56711
+ for (var i = 0; i < this.types.length; i++) {
56712
+ if (keyWords) {
56713
+ this.handleSearch(this.types[i], i);
56714
+ } else {
56715
+ this.isLoading = false;
56716
+ this.types[i].records = [];
56717
+ this.types[i].totalCount = 0;
56718
+ this.types[i].pageCount = 1;
56719
+ this.types[i].pageNum = 0;
56720
+ }
56721
+ }
56722
+ },
56723
+ handleSearch: function handleSearch(obj, index) {
56724
+ var _this3 = this;
56725
+
56726
+ if (obj.pageNum < obj.pageCount) {
56727
+ this.$set(this.loadings, obj.id || String(index + 1), true);
56728
+ if (this.active == '0') {
56729
+ this.isLoading = true;
56730
+ }
56731
+ utils_util["a" /* default */].ajax({
56732
+ url: obj.dataRequestUrl,
56733
+ params: {
56734
+ pageNum: obj.pageNum + 1,
56735
+ pageSize: this.pageSize,
56736
+ keyWords: this.keyWords
56737
+ }
56738
+ }).then(function (res) {
56739
+ _this3.$set(_this3.loadings, obj.id || String(index + 1), false);
56740
+ var flag = false;
56741
+ for (var i in _this3.loadings) {
56742
+ if (_this3.loadings[i]) {
56743
+ flag = true;
56744
+ break;
56745
+ }
56746
+ }
56747
+ !flag && (_this3.isLoading = false);
56748
+ if (res.rCode == 0) {
56749
+ var results = res.results;
56750
+
56751
+ obj.totalCount = results.totalCount;
56752
+ obj.pageCount = results.pageCount;
56753
+ obj.pageNum = results.pageNum;
56754
+ obj.records = obj.records.concat(results.records);
56755
+ _this3.$set(_this3.noMore, obj.id || String(index + 1), results.pageNum >= results.pageCount);
56756
+ }
56757
+ }).catch(function (err) {
56758
+ _this3.isLoading = false;
56759
+ _this3.$set(_this3.loadings, obj.id || String(index + 1), false);
56760
+ if (err.message && err.message !== 'canceled') {
56761
+ _this3.$message.error(err.message);
56762
+ }
56763
+ });
56764
+ }
56765
+ },
56766
+ handleTabs: function handleTabs(res, index) {
56767
+ this.active = res.id || String(index + 1);
56768
+ }
56769
+ }
56770
+ });
56771
+ // CONCATENATED MODULE: ./packages/main/src/public/search.vue?vue&type=script&lang=js&
56772
+ /* harmony default export */ var public_searchvue_type_script_lang_js_ = (searchvue_type_script_lang_js_);
56773
+ // CONCATENATED MODULE: ./packages/main/src/public/search.vue
56774
+
56775
+
56776
+
56777
+
56778
+
56779
+ /* normalize component */
56780
+
56781
+ var search_component = normalizeComponent(
56782
+ public_searchvue_type_script_lang_js_,
56783
+ searchvue_type_template_id_19fcf182_render,
56784
+ searchvue_type_template_id_19fcf182_staticRenderFns,
56785
+ false,
56786
+ null,
56787
+ null,
56788
+ null
56789
+
56790
+ )
56791
+
56792
+ /* harmony default export */ var public_search = (search_component.exports);
55881
56793
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=script&lang=js&
55882
56794
  var simplicityvue_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; };
55883
56795
 
@@ -56188,6 +57100,14 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
56188
57100
  //
56189
57101
  //
56190
57102
  //
57103
+ //
57104
+ //
57105
+ //
57106
+ //
57107
+ //
57108
+ //
57109
+ //
57110
+
56191
57111
 
56192
57112
 
56193
57113
 
@@ -56203,7 +57123,7 @@ var simplicityvue_type_script_lang_js_extends = Object.assign || function (targe
56203
57123
 
56204
57124
 
56205
57125
  var isIE = navigator.userAgent.indexOf('MSIE') != -1;
56206
- var simplicityvue_type_script_lang_js_dataTableMode = utils_util["a" /* default */].win.dataTableMode || 'default';
57126
+ var simplicityvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.systemMode || 'default';
56207
57127
  var events = [function (tabs, index, that) {
56208
57128
  var tab = tabs[index];
56209
57129
 
@@ -56268,13 +57188,14 @@ var events = [function (tabs, index, that) {
56268
57188
  notice: notice,
56269
57189
  settings: settings,
56270
57190
  routerPage: router_page,
56271
- online: online
57191
+ online: online,
57192
+ search: public_search
56272
57193
  },
56273
57194
  props: {
56274
57195
  //模式
56275
57196
  mode: {
56276
57197
  type: String,
56277
- default: simplicityvue_type_script_lang_js_dataTableMode
57198
+ default: simplicityvue_type_script_lang_js_systemMode
56278
57199
  },
56279
57200
  //记录菜单点击率作为工作台常用应用数据
56280
57201
  recordApp: {
@@ -56439,6 +57360,8 @@ var events = [function (tabs, index, that) {
56439
57360
  userNums: 1,
56440
57361
  //消息列表展示状态
56441
57362
  showMsg: false,
57363
+ //搜索
57364
+ showSearch: false,
56442
57365
  //消息数
56443
57366
  notice: 0,
56444
57367
  //即时消息
@@ -57000,7 +57923,7 @@ var events = [function (tabs, index, that) {
57000
57923
  return flag;
57001
57924
  }
57002
57925
  } else {
57003
- var num = this.menuTips[obj.id] || this.menuTips[obj.code];
57926
+ var num = this.menuTips[obj.id] || this.menuTips[obj.code] || this.menuTips[obj.appCode];
57004
57927
  if (num && Number(num)) {
57005
57928
  this.$set(obj, 'tips', Number(num));
57006
57929
  return this.menuTips[obj.id];
@@ -57036,8 +57959,8 @@ var events = [function (tabs, index, that) {
57036
57959
  var _this4 = this;
57037
57960
 
57038
57961
  this.webSocket = utils_util["a" /* default */].socket({
57039
- url: api["ec" /* wss */],
57040
- take: api["Ub" /* topic */],
57962
+ url: api["fc" /* wss */],
57963
+ take: api["Vb" /* topic */],
57041
57964
  success: function success(res) {
57042
57965
  var data = res.data || {};
57043
57966
  for (var i in data) {
@@ -57336,7 +58259,7 @@ var events = [function (tabs, index, that) {
57336
58259
  **/
57337
58260
  handleRemove: function handleRemove(name) {
57338
58261
  var len = this.tabs.length - 1;
57339
- var i = utils_util["a" /* default */].indexOfObj(this.tabs, name, 'id');
58262
+ var i = utils_util["a" /* default */].indexOfObj(this.tabs, name, 'id,code,appCode');
57340
58263
  if (i > -1) {
57341
58264
  this.tabs.splice(i, 1);
57342
58265
  if (this.tabs.length == 0) {
@@ -57459,7 +58382,11 @@ var events = [function (tabs, index, that) {
57459
58382
  this.showSet = false;
57460
58383
  break;
57461
58384
  case 'search':
57462
- this.handlerSetDrawer(res);
58385
+ if (res.url) {
58386
+ this.handlerSetDrawer(res);
58387
+ } else {
58388
+ this.showSearch = true;
58389
+ }
57463
58390
  this.showMsg = false;
57464
58391
  this.showSet = false;
57465
58392
  break;
@@ -57583,7 +58510,7 @@ var events = [function (tabs, index, that) {
57583
58510
  clearTimeout(this.sysMsgOut);
57584
58511
  }
57585
58512
  },
57586
- jumpMenu: function jumpMenu(res) {
58513
+ jumpMenu: function jumpMenu(res, close) {
57587
58514
  var _this10 = this;
57588
58515
 
57589
58516
  var apps = res;
@@ -57592,8 +58519,9 @@ var events = [function (tabs, index, that) {
57592
58519
  }
57593
58520
  var obj = this.getMenu(this.menus, apps[apps.length - 1]);
57594
58521
  if (obj) {
57595
- var i = utils_util["a" /* default */].indexOfObj(this.tabs, obj, 'id');
58522
+ var i = utils_util["a" /* default */].indexOfObj(this.tabs, obj, 'id,code,appCode');
57596
58523
  var n = utils_util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
58524
+ var old = this.activeName;
57597
58525
  this.activeName = obj.id;
57598
58526
  if (i == -1) {
57599
58527
  var tab = this.setIframeType(obj);
@@ -57609,6 +58537,16 @@ var events = [function (tabs, index, that) {
57609
58537
  });
57610
58538
  }
57611
58539
  }
58540
+ if (close) {
58541
+ if (close === old) {
58542
+ this.tabs.splice(n, 0);
58543
+ } else {
58544
+ var d = utils_util["a" /* default */].indexOfObj(this.tabs, close, 'id,code,appCode');
58545
+ if (d > -1) {
58546
+ this.tabs.splice(d, 0);
58547
+ }
58548
+ }
58549
+ }
57612
58550
  } else {
57613
58551
  this.$message.error('没有此菜单!');
57614
58552
  }
@@ -57647,11 +58585,11 @@ var events = [function (tabs, index, that) {
57647
58585
 
57648
58586
  var simplicity_component = normalizeComponent(
57649
58587
  src_simplicityvue_type_script_lang_js_,
57650
- simplicityvue_type_template_id_6b2bf155_scoped_true_render,
57651
- simplicityvue_type_template_id_6b2bf155_scoped_true_staticRenderFns,
58588
+ simplicityvue_type_template_id_bafba8ca_scoped_true_render,
58589
+ simplicityvue_type_template_id_bafba8ca_scoped_true_staticRenderFns,
57652
58590
  false,
57653
58591
  null,
57654
- "6b2bf155",
58592
+ "bafba8ca",
57655
58593
  null
57656
58594
 
57657
58595
  )
@@ -58051,8 +58989,8 @@ defaultvue_type_template_id_576bd3b4_render._withStripped = true
58051
58989
 
58052
58990
  // CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=576bd3b4&
58053
58991
 
58054
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=bd3da0e0&
58055
- var userinfovue_type_template_id_bd3da0e0_render = function () {
58992
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=d207c2e8&
58993
+ var userinfovue_type_template_id_d207c2e8_render = function () {
58056
58994
  var _vm = this
58057
58995
  var _h = _vm.$createElement
58058
58996
  var _c = _vm._self._c || _h
@@ -58061,18 +58999,18 @@ var userinfovue_type_template_id_bd3da0e0_render = function () {
58061
58999
  {
58062
59000
  ref: "form",
58063
59001
  staticClass: "es-user-info",
58064
- attrs: { model: _vm.values, contents: _vm.forms },
59002
+ attrs: { model: _vm.values, contents: _vm.forms, autocomplete: false },
58065
59003
  on: { change: _vm.handleFormChange, submit: _vm.handleFormSubmit },
58066
59004
  },
58067
59005
  [_c("template", { slot: "other" }, [_vm._t("default")], 2)],
58068
59006
  2
58069
59007
  )
58070
59008
  }
58071
- var userinfovue_type_template_id_bd3da0e0_staticRenderFns = []
58072
- userinfovue_type_template_id_bd3da0e0_render._withStripped = true
59009
+ var userinfovue_type_template_id_d207c2e8_staticRenderFns = []
59010
+ userinfovue_type_template_id_d207c2e8_render._withStripped = true
58073
59011
 
58074
59012
 
58075
- // CONCATENATED MODULE: ./packages/main/src/default/userinfo.vue?vue&type=template&id=bd3da0e0&
59013
+ // CONCATENATED MODULE: ./packages/main/src/default/userinfo.vue?vue&type=template&id=d207c2e8&
58076
59014
 
58077
59015
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=script&lang=js&
58078
59016
  var userinfovue_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; };
@@ -58091,6 +59029,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
58091
59029
  //
58092
59030
  //
58093
59031
  //
59032
+ //
58094
59033
 
58095
59034
 
58096
59035
 
@@ -58370,7 +59309,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
58370
59309
 
58371
59310
  switch (type) {
58372
59311
  case 'job':
58373
- utils_util["a" /* default */].ajax({ url: api["vb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
59312
+ utils_util["a" /* default */].ajax({ url: api["wb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
58374
59313
  if (res.rCode == 0) {
58375
59314
  utils_util["a" /* default */].setStorage({
58376
59315
  type: _this3.storage,
@@ -58411,7 +59350,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
58411
59350
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
58412
59351
  initLogin && (initLogin = JSON.parse(initLogin));
58413
59352
  utils_util["a" /* default */].ajax({
58414
- url: api["Yb" /* updateUserInfo */],
59353
+ url: api["Zb" /* updateUserInfo */],
58415
59354
  params: {
58416
59355
  email: this.values.email,
58417
59356
  officeTel: this.values.officeTel,
@@ -58472,7 +59411,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
58472
59411
  var notify = _this4.values.notify.sort().join(',');
58473
59412
  if (notify != _this4.notify.split(',').sort().join(',')) {
58474
59413
  utils_util["a" /* default */].ajax({
58475
- url: api["Xb" /* updateUserCustomInfo */],
59414
+ url: api["Yb" /* updateUserCustomInfo */],
58476
59415
  params: {
58477
59416
  notify: notify
58478
59417
  }
@@ -58520,8 +59459,8 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
58520
59459
 
58521
59460
  var default_userinfo_component = normalizeComponent(
58522
59461
  src_default_userinfovue_type_script_lang_js_,
58523
- userinfovue_type_template_id_bd3da0e0_render,
58524
- userinfovue_type_template_id_bd3da0e0_staticRenderFns,
59462
+ userinfovue_type_template_id_d207c2e8_render,
59463
+ userinfovue_type_template_id_d207c2e8_staticRenderFns,
58525
59464
  false,
58526
59465
  null,
58527
59466
  null,
@@ -59313,7 +60252,7 @@ messagevue_type_template_id_503171a2_render._withStripped = true
59313
60252
  if (this.pageNum <= this.pageCount) {
59314
60253
  this.loading = true;
59315
60254
  utils_util["a" /* default */].ajax({
59316
- url: api["wb" /* sysMsgPage */],
60255
+ url: api["xb" /* sysMsgPage */],
59317
60256
  params: {
59318
60257
  pageNum: reload ? 1 : this.pageNum,
59319
60258
  pageSize: this.pageSize
@@ -60502,7 +61441,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
60502
61441
  return;
60503
61442
  }
60504
61443
  utils_util["a" /* default */].ajax({
60505
- url: api["Xb" /* updateUserCustomInfo */],
61444
+ url: api["Yb" /* updateUserCustomInfo */],
60506
61445
  params: { color: escape(color.toLowerCase()) },
60507
61446
  data: { color: escape(color.toLowerCase()) }
60508
61447
  }).then(function (res) {
@@ -61632,8 +62571,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
61632
62571
  var _this11 = this;
61633
62572
 
61634
62573
  this.webSocket = utils_util["a" /* default */].socket({
61635
- url: api["ec" /* wss */],
61636
- take: api["Ub" /* topic */],
62574
+ url: api["fc" /* wss */],
62575
+ take: api["Vb" /* topic */],
61637
62576
  success: function success(res) {
61638
62577
  var data = res.data || {};
61639
62578
  for (var i in data) {
@@ -63328,7 +64267,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
63328
64267
  text: '重发',
63329
64268
  format: false,
63330
64269
  method: 'post',
63331
- action: api["rb" /* sendBatch */]
64270
+ action: api["sb" /* sendBatch */]
63332
64271
  }]
63333
64272
  }];
63334
64273
  }
@@ -63515,13 +64454,13 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
63515
64454
  },
63516
64455
  data: function data() {
63517
64456
  return {
63518
- sendList: api["tb" /* sendList */],
63519
- sendBatch: api["rb" /* sendBatch */],
64457
+ sendList: api["ub" /* sendList */],
64458
+ sendBatch: api["sb" /* sendBatch */],
63520
64459
  tableCount: 0,
63521
64460
  selectData: [],
63522
64461
  formTitle: '',
63523
64462
  showForm: false,
63524
- formData: api["sb" /* sendInfo */],
64463
+ formData: api["tb" /* sendInfo */],
63525
64464
  params: {},
63526
64465
  sendTypeDict: [],
63527
64466
  statusDict: []
@@ -63540,7 +64479,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
63540
64479
  type: 'primary',
63541
64480
  checkbox: true,
63542
64481
  format: false,
63543
- action: api["rb" /* sendBatch */]
64482
+ action: api["sb" /* sendBatch */]
63544
64483
  }]
63545
64484
  }, {
63546
64485
  type: 'search',
@@ -74870,8 +75809,8 @@ tree_src_main.install = function (Vue) {
74870
75809
  };
74871
75810
 
74872
75811
  /* harmony default export */ var packages_tree = (tree_src_main);
74873
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=5bc60415&
74874
- var mainvue_type_template_id_5bc60415_render = function () {
75812
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=template&id=90d6042e&
75813
+ var mainvue_type_template_id_90d6042e_render = function () {
74875
75814
  var _vm = this
74876
75815
  var _h = _vm.$createElement
74877
75816
  var _c = _vm._self._c || _h
@@ -75239,11 +76178,11 @@ var mainvue_type_template_id_5bc60415_render = function () {
75239
76178
  2
75240
76179
  )
75241
76180
  }
75242
- var mainvue_type_template_id_5bc60415_staticRenderFns = []
75243
- mainvue_type_template_id_5bc60415_render._withStripped = true
76181
+ var mainvue_type_template_id_90d6042e_staticRenderFns = []
76182
+ mainvue_type_template_id_90d6042e_render._withStripped = true
75244
76183
 
75245
76184
 
75246
- // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=5bc60415&
76185
+ // CONCATENATED MODULE: ./packages/tree-group/src/main.vue?vue&type=template&id=90d6042e&
75247
76186
 
75248
76187
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/tree-group/src/main.vue?vue&type=script&lang=js&
75249
76188
  var tree_group_src_mainvue_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; };
@@ -75440,14 +76379,14 @@ var tree_group_src_mainvue_type_script_lang_js_extends = Object.assign || functi
75440
76379
  //
75441
76380
 
75442
76381
 
75443
- var mainvue_type_script_lang_js_dataTableMode = utils_util["a" /* default */].win.top.dataTableMode || utils_util["a" /* default */].win.dataTableMode || 'default';
76382
+ var src_mainvue_type_script_lang_js_systemMode = utils_util["a" /* default */].win.top.systemMode || utils_util["a" /* default */].win.systemMode || 'default';
75444
76383
  /* harmony default export */ var tree_group_src_mainvue_type_script_lang_js_ = ({
75445
76384
  name: 'EsTreeGroup',
75446
76385
  inheritAttrs: false,
75447
76386
  props: {
75448
76387
  mode: {
75449
76388
  type: String,
75450
- default: mainvue_type_script_lang_js_dataTableMode
76389
+ default: src_mainvue_type_script_lang_js_systemMode
75451
76390
  },
75452
76391
  host: {
75453
76392
  type: String,
@@ -75802,8 +76741,8 @@ var mainvue_type_script_lang_js_dataTableMode = utils_util["a" /* default */].wi
75802
76741
 
75803
76742
  var tree_group_src_main_component = normalizeComponent(
75804
76743
  packages_tree_group_src_mainvue_type_script_lang_js_,
75805
- mainvue_type_template_id_5bc60415_render,
75806
- mainvue_type_template_id_5bc60415_staticRenderFns,
76744
+ mainvue_type_template_id_90d6042e_render,
76745
+ mainvue_type_template_id_90d6042e_staticRenderFns,
75807
76746
  false,
75808
76747
  null,
75809
76748
  null,
@@ -81482,7 +82421,7 @@ var _props;
81482
82421
  this.fileTotalSize = config.totalSize;
81483
82422
  this.dochubConfig = config.dochubConfig || {};
81484
82423
 
81485
- var url = this.portrait ? this.dochubConfig.reuploadDocument || api["ac" /* uploadOnlyOne */] : this.dochubConfig.uploadDocument || api["cc" /* uploads */];
82424
+ var url = this.portrait ? this.dochubConfig.reuploadDocument || api["bc" /* uploadOnlyOne */] : this.dochubConfig.uploadDocument || api["dc" /* uploads */];
81486
82425
  this.url = url.indexOf(this.host) > -1 ? url : this.host + url;
81487
82426
  } else {
81488
82427
  utils_util["a" /* default */].ajax({
@@ -81501,7 +82440,7 @@ var _props;
81501
82440
  }).join(',');
81502
82441
  }
81503
82442
  _this3.dochubConfig = res.results.dochubConfig || {};
81504
- var _url = _this3.portrait ? _this3.dochubConfig.reuploadDocument || api["ac" /* uploadOnlyOne */] : _this3.dochubConfig.uploadDocument || api["cc" /* uploads */];
82443
+ var _url = _this3.portrait ? _this3.dochubConfig.reuploadDocument || api["bc" /* uploadOnlyOne */] : _this3.dochubConfig.uploadDocument || api["dc" /* uploads */];
81505
82444
  _this3.url = _url.indexOf(_this3.host) > -1 ? _url : _this3.host + _url;
81506
82445
  if (res.results.kkViewRootPath) {
81507
82446
  _this3.kkfileview = res.results.kkViewRootPath;
@@ -81785,7 +82724,7 @@ var _props;
81785
82724
  }
81786
82725
  },
81787
82726
  handleDownloads: function handleDownloads() {
81788
- var url = typeof this.downloads === 'string' ? this.downloads : this.dochubConfig.compressDownloadDocument || api["Zb" /* uploadDownloads */];
82727
+ var url = typeof this.downloads === 'string' ? this.downloads : this.dochubConfig.compressDownloadDocument || api["ac" /* uploadDownloads */];
81789
82728
  utils_util["a" /* default */].win.open(this.host + url + '?ownId=' + this.ownId + '&code=' + this.code + (this.extendCode ? '&extendCode=' + this.extendCode : ''));
81790
82729
  },
81791
82730
  handleDownload: function handleDownload(file) {
@@ -81825,7 +82764,7 @@ var _props;
81825
82764
  ids = ids.join(',');
81826
82765
  utils_util["a" /* default */].ajax({
81827
82766
  method: this.method,
81828
- url: this.dochubConfig.sortDocumentsUrl || api["bc" /* uploadSort */],
82767
+ url: this.dochubConfig.sortDocumentsUrl || api["cc" /* uploadSort */],
81829
82768
  data: {
81830
82769
  ids: ids
81831
82770
  },
@@ -82418,7 +83357,7 @@ if (typeof window !== 'undefined' && window.Vue) {
82418
83357
  }
82419
83358
 
82420
83359
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
82421
- version: '0.5.82',
83360
+ version: '0.5.84',
82422
83361
  install: install,
82423
83362
  Button: packages_button,
82424
83363
  ButtonGroup: button_group,