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
package/lib/form.js CHANGED
@@ -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'; // 上传接口
@@ -3958,7 +3975,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
3958
3975
  // ESM COMPAT FLAG
3959
3976
  __webpack_require__.r(__webpack_exports__);
3960
3977
 
3961
- // 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&
3978
+ // 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&
3962
3979
  var render = function () {
3963
3980
  var _vm = this
3964
3981
  var _h = _vm.$createElement
@@ -4019,6 +4036,12 @@ var render = function () {
4019
4036
  attrs: { type: "text" },
4020
4037
  })
4021
4038
  : _vm._e(),
4039
+ !_vm.autocomplete
4040
+ ? _c("input", {
4041
+ staticClass: "hidden-input",
4042
+ attrs: { type: "password", autocomplete: "new-password" },
4043
+ })
4044
+ : _vm._e(),
4022
4045
  _vm.steps
4023
4046
  ? _c(
4024
4047
  "es-steps",
@@ -15504,7 +15527,7 @@ var staticRenderFns = []
15504
15527
  render._withStripped = true
15505
15528
 
15506
15529
 
15507
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=6bf66132&
15530
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=67acd6ba&
15508
15531
 
15509
15532
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
15510
15533
  var regenerator_ = __webpack_require__(13);
@@ -19576,6 +19599,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19576
19599
  //
19577
19600
  //
19578
19601
  //
19602
+ //
19603
+ //
19604
+ //
19605
+ //
19606
+ //
19607
+ //
19579
19608
 
19580
19609
 
19581
19610
 
@@ -19605,6 +19634,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19605
19634
  }
19606
19635
  },
19607
19636
  props: {
19637
+ autocomplete: {
19638
+ type: Boolean,
19639
+ default: true
19640
+ },
19608
19641
  hides: {
19609
19642
  type: Array,
19610
19643
  default: function _default() {
@@ -2021,11 +2021,24 @@ var identical = function identical(_ref7) {
2021
2021
  var indexOfObj = function indexOfObj(arry, target, key) {
2022
2022
  for (var i = 0; i < arry.length; i++) {
2023
2023
  if (key) {
2024
- if (typeof target === 'string' && arry[i][key] === target) {
2025
- return i;
2026
- }
2027
- if (target[key] === arry[i][key]) {
2028
- return i;
2024
+ if (key.indexOf(',') > -1) {
2025
+ var keys = key.split(',');
2026
+ for (var _i7 = 0; _i7 < keys.length; _i7++) {
2027
+ var k = keys[_i7];
2028
+ if (typeof target === 'string' && arry[_i7][k] === target) {
2029
+ return _i7;
2030
+ }
2031
+ if (target[k] === arry[_i7][k]) {
2032
+ return _i7;
2033
+ }
2034
+ }
2035
+ } else {
2036
+ if (typeof target === 'string' && arry[i][key] === target) {
2037
+ return i;
2038
+ }
2039
+ if (target[key] === arry[i][key]) {
2040
+ return i;
2041
+ }
2029
2042
  }
2030
2043
  } else {
2031
2044
  if (JSON.stringify(target) === JSON.stringify(arry[i])) {
@@ -2759,22 +2772,22 @@ var setStorage = function setStorage(_ref14) {
2759
2772
  localStorage.setItem(key[i], value);
2760
2773
  }
2761
2774
  } else {
2762
- for (var _i7 in key) {
2763
- var val = _typeof(key[_i7]) === 'object' ? JSON.stringify(key[_i7]) : key[_i7];
2764
- localStorage.setItem(_i7, val);
2775
+ for (var _i8 in key) {
2776
+ var val = _typeof(key[_i8]) === 'object' ? JSON.stringify(key[_i8]) : key[_i8];
2777
+ localStorage.setItem(_i8, val);
2765
2778
  }
2766
2779
  }
2767
2780
  } else {
2768
2781
  if (typeof key === 'string') {
2769
2782
  sessionStorage.setItem(key, value);
2770
2783
  } else if (Array.isArray(key)) {
2771
- for (var _i8 in key) {
2772
- sessionStorage.setItem(key[_i8], value);
2784
+ for (var _i9 in key) {
2785
+ sessionStorage.setItem(key[_i9], value);
2773
2786
  }
2774
2787
  } else {
2775
- for (var _i9 in key) {
2776
- var _val = _typeof(key[_i9]) === 'object' ? JSON.stringify(key[_i9]) : key[_i9];
2777
- sessionStorage.setItem(_i9, _val);
2788
+ for (var _i10 in key) {
2789
+ var _val = _typeof(key[_i10]) === 'object' ? JSON.stringify(key[_i10]) : key[_i10];
2790
+ sessionStorage.setItem(_i10, _val);
2778
2791
  }
2779
2792
  }
2780
2793
  }
@@ -3255,7 +3268,7 @@ var watermark = function watermark(option) {
3255
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3256
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3257
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3258
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
3271
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return switchUserTo; });
3259
3272
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3260
3273
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3261
3274
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
@@ -3273,12 +3286,12 @@ var watermark = function watermark(option) {
3273
3286
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
3274
3287
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3275
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3276
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
3289
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return userOnline; });
3277
3290
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3278
3291
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
3279
3292
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3280
3293
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3281
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
3294
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return updateUserInfo; });
3282
3295
  /* unused harmony export getUserImgUrl */
3283
3296
  /* unused harmony export getDoorIndex */
3284
3297
  /* unused harmony export refreshOnlineUsers */
@@ -3287,17 +3300,18 @@ var watermark = function watermark(option) {
3287
3300
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3288
3301
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3289
3302
  /* unused harmony export getUserCustomInfo */
3290
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
3291
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
3303
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserCustomInfo; });
3304
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sysMsgPage; });
3292
3305
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3293
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3307
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return searchType; });
3294
3308
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3295
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
3296
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
3309
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return uploads; });
3310
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadOnlyOne; });
3297
3311
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3298
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
3312
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploadSort; });
3299
3313
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3300
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
3314
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadDownloads; });
3301
3315
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3302
3316
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3303
3317
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
@@ -3315,13 +3329,13 @@ var watermark = function watermark(option) {
3315
3329
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3316
3330
  /* unused harmony export getCurrentuser */
3317
3331
  /* unused harmony export mainDetail */
3318
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
3319
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
3332
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartFlow; });
3333
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return tempSave; });
3320
3334
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3321
3335
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3322
3336
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3323
3337
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
3324
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
3338
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateCommonOpinion; });
3325
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3326
3340
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3327
3341
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
@@ -3330,52 +3344,52 @@ var watermark = function watermark(option) {
3330
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3331
3345
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3332
3346
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3333
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
3347
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskHandleHtml; });
3334
3348
  /* unused harmony export getView */
3335
3349
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
3336
3350
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3337
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
3338
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
3341
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
3351
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskRejectHtml; });
3352
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskRejectHtml; });
3353
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskRead; });
3354
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toStartTaskReadIndex; });
3355
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReadHtml; });
3342
3356
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
3343
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
3344
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
3357
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toSendMsg; });
3358
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendMsg; });
3345
3359
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3346
3360
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3347
3361
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3348
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
3349
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
3362
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return wss; });
3363
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return topic; });
3350
3364
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3351
3365
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3352
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
3354
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
3366
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskTransferIndex; });
3367
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskTransfer; });
3368
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toPresetInfoListIndex; });
3355
3369
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3356
3370
  /* unused harmony export historyListJson */
3357
3371
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3358
3372
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3359
3373
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3360
3374
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
3362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
3363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
3364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
3365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
3366
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
3367
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
3368
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
3369
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
3370
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
3371
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
3372
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
3373
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
3374
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
3375
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionExamine; });
3376
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionExamine; });
3377
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTakeAdvice; });
3378
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTakeAdvice; });
3379
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskStartDraft; });
3380
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskStartDraft; });
3381
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskReview; });
3382
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskReview; });
3383
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskUnionSeal; });
3384
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskUnionSeal; });
3385
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTwoOfficesDispatch; });
3386
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return twoOfficesDispatch; });
3387
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendList; });
3388
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendInfo; });
3375
3389
  /* unused harmony export sendSave */
3376
3390
  /* unused harmony export sendUpdate */
3377
3391
  /* unused harmony export sendDelete */
3378
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
3392
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendBatch; });
3379
3393
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3380
3394
  // 登录
3381
3395
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3422,6 +3436,9 @@ var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题
3422
3436
  var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
3423
3437
  var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
3424
3438
  var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
3439
+ // 框架 - 搜索
3440
+ var searchType = '/oceanSearch/v2/search/catalog'; // 搜索分类类型
3441
+
3425
3442
  // 附件相关
3426
3443
  var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
3427
3444
  var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
@@ -3964,7 +3981,7 @@ var util = __webpack_require__(0);
3964
3981
 
3965
3982
  if (this.job.id !== item.id) {
3966
3983
  this.job = item;
3967
- util["a" /* default */].ajax({ url: api["vb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
3984
+ util["a" /* default */].ajax({ url: api["wb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
3968
3985
  if (res.rCode == 0) {
3969
3986
  util["a" /* default */].setStorage({
3970
3987
  type: _this.storage,