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/flow.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'; // 上传接口
@@ -4090,7 +4107,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4090
4107
  // ESM COMPAT FLAG
4091
4108
  __webpack_require__.r(__webpack_exports__);
4092
4109
 
4093
- // 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&
4110
+ // 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&
4094
4111
  var render = function () {
4095
4112
  var _vm = this
4096
4113
  var _h = _vm.$createElement
@@ -5629,13 +5646,14 @@ var render = function () {
5629
5646
  ? _c(
5630
5647
  "es-dialog",
5631
5648
  {
5649
+ ref: "handleVisible",
5632
5650
  attrs: {
5633
5651
  "append-to-body": "",
5652
+ height: "auto",
5634
5653
  title: _vm.title,
5635
5654
  "close-on-click-modal": false,
5636
5655
  visible: _vm.handleVisible,
5637
5656
  closeParent: _vm.closeParent,
5638
- height: "auto",
5639
5657
  },
5640
5658
  on: {
5641
5659
  "update:visible": function ($event) {
@@ -5652,7 +5670,11 @@ var render = function () {
5652
5670
  },
5653
5671
  on: {
5654
5672
  cancel: function ($event) {
5655
- _vm.closeProcess($event, "handleVisible")
5673
+ _vm.closeProcess(
5674
+ $event,
5675
+ "handleVisible",
5676
+ _vm.closeParent
5677
+ )
5656
5678
  },
5657
5679
  },
5658
5680
  }),
@@ -5694,11 +5716,12 @@ var render = function () {
5694
5716
  ? _c(
5695
5717
  "es-dialog",
5696
5718
  {
5719
+ ref: "showReject",
5697
5720
  attrs: {
5698
5721
  "append-to-body": "",
5699
- "close-on-click-modal": false,
5700
- title: "驳回",
5701
5722
  height: "auto",
5723
+ title: "驳回",
5724
+ "close-on-click-modal": false,
5702
5725
  visible: _vm.showReject,
5703
5726
  },
5704
5727
  on: {
@@ -5729,12 +5752,13 @@ var render = function () {
5729
5752
  ? _c(
5730
5753
  "es-dialog",
5731
5754
  {
5755
+ ref: "showTaskRead",
5732
5756
  attrs: {
5733
5757
  "append-to-body": "",
5758
+ height: "auto",
5734
5759
  "close-on-click-modal": false,
5735
5760
  title: _vm.taskReadType === "transfer" ? "转办" : "分阅",
5736
5761
  visible: _vm.showTaskRead,
5737
- height: "auto",
5738
5762
  },
5739
5763
  on: {
5740
5764
  "update:visible": function ($event) {
@@ -5767,8 +5791,8 @@ var render = function () {
5767
5791
  {
5768
5792
  attrs: {
5769
5793
  "append-to-body": "",
5770
- "close-on-click-modal": false,
5771
5794
  title: "意见附件",
5795
+ "close-on-click-modal": false,
5772
5796
  visible: _vm.showFileList,
5773
5797
  },
5774
5798
  on: {
@@ -5794,12 +5818,13 @@ var render = function () {
5794
5818
  ? _c(
5795
5819
  "es-dialog",
5796
5820
  {
5821
+ ref: "showSendMsg",
5797
5822
  attrs: {
5798
5823
  "append-to-body": "",
5799
- "close-on-click-modal": false,
5824
+ height: "auto",
5800
5825
  title: "发送消息",
5826
+ "close-on-click-modal": false,
5801
5827
  visible: _vm.showSendMsg,
5802
- height: "auto",
5803
5828
  },
5804
5829
  on: {
5805
5830
  "update:visible": function ($event) {
@@ -5824,12 +5849,13 @@ var render = function () {
5824
5849
  ? _c(
5825
5850
  "es-dialog",
5826
5851
  {
5852
+ ref: "showTaskUnionExamine",
5827
5853
  attrs: {
5828
5854
  "append-to-body": "",
5855
+ height: "auto",
5829
5856
  "close-on-click-modal": false,
5830
5857
  title: _vm.flowTitle,
5831
5858
  visible: _vm.showTaskUnionExamine,
5832
- height: "auto",
5833
5859
  },
5834
5860
  on: {
5835
5861
  "update:visible": function ($event) {
@@ -5865,7 +5891,7 @@ var staticRenderFns = []
5865
5891
  render._withStripped = true
5866
5892
 
5867
5893
 
5868
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=ca6d1df4&
5894
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=44d35e77&
5869
5895
 
5870
5896
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
5871
5897
  var regenerator_ = __webpack_require__(13);
@@ -6819,7 +6845,7 @@ var _components;
6819
6845
  }
6820
6846
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
6821
6847
  util["a" /* default */].ajax({
6822
- url: data.id ? api["Wb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
6848
+ url: data.id ? api["Xb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
6823
6849
  data: info,
6824
6850
  header: { 'Content-Type': 'multipart/form-data' },
6825
6851
  method: 'post'
@@ -9577,7 +9603,7 @@ var processFormvue_type_script_lang_js_components;
9577
9603
  businessId: this.businessId
9578
9604
  };
9579
9605
  // 获取节点
9580
- util["a" /* default */].ajax({ url: api["Jb" /* toStartFlow */], params: params }).then(function (res) {
9606
+ util["a" /* default */].ajax({ url: api["Kb" /* toStartFlow */], params: params }).then(function (res) {
9581
9607
  //pc接口返回数据处理
9582
9608
  var status = res.status,
9583
9609
  message = res.message,
@@ -10024,7 +10050,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
10024
10050
  notificationType = _sendInfo.notificationType;
10025
10051
 
10026
10052
  var params = {
10027
- url: api["ub" /* sendMsg */],
10053
+ url: api["vb" /* sendMsg */],
10028
10054
  headers: { Accept: 'application/json,text/plain' },
10029
10055
  method: 'post',
10030
10056
  data: {
@@ -10086,7 +10112,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
10086
10112
 
10087
10113
  this.loading = true;
10088
10114
  util["a" /* default */].ajax({
10089
- url: api["Ib" /* toSendMsg */],
10115
+ url: api["Jb" /* toSendMsg */],
10090
10116
  params: { pendingId: this.$attrs.pendingId }
10091
10117
  }).then(function (res) {
10092
10118
  var status = res.status,
@@ -10904,7 +10930,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
10904
10930
  userId: util["a" /* default */].getStorage('userId'),
10905
10931
  nextNodeId: _this2.nextNode.nextNodeId
10906
10932
  };
10907
- util["a" /* default */].ajax({ url: api["zb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
10933
+ util["a" /* default */].ajax({ url: api["Ab" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
10908
10934
  var status = res.status,
10909
10935
  message = res.message;
10910
10936
 
@@ -10959,7 +10985,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
10959
10985
  isSinglePage: false,
10960
10986
  opinion: this.option
10961
10987
  };
10962
- util["a" /* default */].ajax({ url: api["Mb" /* toTaskRejectHtml */], params: params }).then(function (res) {
10988
+ util["a" /* default */].ajax({ url: api["Nb" /* toTaskRejectHtml */], params: params }).then(function (res) {
10963
10989
  var status = res.status,
10964
10990
  message = res.message,
10965
10991
  _res$data = res.data,
@@ -11635,7 +11661,7 @@ var startTaskReadvue_type_script_lang_js_components;
11635
11661
  taskExamine = this.taskExamine;
11636
11662
 
11637
11663
  var params = {
11638
- url: api["Qb" /* toTaskTransferIndex */],
11664
+ url: api["Rb" /* toTaskTransferIndex */],
11639
11665
  params: {
11640
11666
  opinion: opinion,
11641
11667
  pendingId: pendingId,
@@ -11760,7 +11786,7 @@ var startTaskReadvue_type_script_lang_js_components;
11760
11786
  var _this3 = this;
11761
11787
 
11762
11788
  var params = {
11763
- url: api["Kb" /* toStartTaskRead */],
11789
+ url: api["Lb" /* toStartTaskRead */],
11764
11790
  params: { pendingId: this.pendingId, taskAction: this.type }
11765
11791
  };
11766
11792
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -11833,7 +11859,7 @@ var startTaskReadvue_type_script_lang_js_components;
11833
11859
  type = this.type;
11834
11860
 
11835
11861
  var params = {
11836
- url: api["Db" /* taskTransfer */],
11862
+ url: api["Eb" /* taskTransfer */],
11837
11863
  data: {
11838
11864
  choiceDeptId: choiceDeptId,
11839
11865
  choiceOrgId: choiceOrgId,
@@ -11927,7 +11953,7 @@ var startTaskReadvue_type_script_lang_js_components;
11927
11953
  !download && delete params.isDownload;
11928
11954
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
11929
11955
  util["a" /* default */].ajax({
11930
- url: api["yb" /* taskReadHtml */],
11956
+ url: api["zb" /* taskReadHtml */],
11931
11957
  params: { taskAction: _this7.type },
11932
11958
  headers: {
11933
11959
  Accept: 'application/json,text/plain'
@@ -12420,7 +12446,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12420
12446
  pendingId = this.pendingId;
12421
12447
 
12422
12448
  var params = {
12423
- url: api["Ab" /* taskReview */],
12449
+ url: api["Bb" /* taskReview */],
12424
12450
  data: {
12425
12451
  nextUserId: nextOtherOrgObj.join(','),
12426
12452
  notificationType: noticeType.join(','),
@@ -12456,7 +12482,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12456
12482
  var _this2 = this;
12457
12483
 
12458
12484
  var params = {
12459
- url: api["Nb" /* toTaskReview */],
12485
+ url: api["Ob" /* toTaskReview */],
12460
12486
  params: { pendingId: this.pendingId }
12461
12487
  };
12462
12488
  util["a" /* default */].ajax(params).then(function (res) {
@@ -12491,7 +12517,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12491
12517
  var _this3 = this;
12492
12518
 
12493
12519
  var params = {
12494
- 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 */],
12520
+ 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 */],
12495
12521
  params: { pendingId: this.pendingId },
12496
12522
  headers: { Accept: 'application/json,text/plain' }
12497
12523
  };
@@ -12585,7 +12611,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12585
12611
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
12586
12612
  // return this.$message.warning('暂未开放,敬请期待!');
12587
12613
  var param = {
12588
- 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 */],
12614
+ 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 */],
12589
12615
  data: {
12590
12616
  opinion: opinion,
12591
12617
  pendingId: pendingId,
@@ -13405,6 +13431,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13405
13431
  //
13406
13432
  //
13407
13433
  //
13434
+ //
13435
+ //
13436
+ //
13437
+ //
13438
+ //
13408
13439
 
13409
13440
 
13410
13441
 
@@ -13805,7 +13836,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13805
13836
  taskAction: 'complete'
13806
13837
  };
13807
13838
  util["a" /* default */].ajax({
13808
- url: api["yb" /* taskReadHtml */],
13839
+ url: api["zb" /* taskReadHtml */],
13809
13840
  params: { taskAction: 'complete' },
13810
13841
  headers: {
13811
13842
  Accept: 'application/json,text/plain'
@@ -13837,7 +13868,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13837
13868
 
13838
13869
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
13839
13870
  util["a" /* default */].ajax({
13840
- url: api["Lb" /* toStartTaskReadIndex */],
13871
+ url: api["Mb" /* toStartTaskReadIndex */],
13841
13872
  params: { pendingId: this.pendingId }
13842
13873
  }).then(function (res) {
13843
13874
  var status = res.status,
@@ -13972,7 +14003,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13972
14003
  pendingId: this.pendingId
13973
14004
  };
13974
14005
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
13975
- util["a" /* default */].ajax({ url: api["Gb" /* tempSave */], params: params }).then(function (res) {
14006
+ util["a" /* default */].ajax({ url: api["Hb" /* tempSave */], params: params }).then(function (res) {
13976
14007
  var status = res.status,
13977
14008
  message = res.message;
13978
14009
 
@@ -14878,8 +14909,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
14878
14909
  * @param {String} type 当前点击的弹窗类型
14879
14910
  * @date 2022年5月25日
14880
14911
  **/
14881
- closeProcess: function closeProcess(val, type) {
14882
- this[type] = false;
14912
+ closeProcess: function closeProcess(val, type, closeParent) {
14913
+ if (closeParent) {
14914
+ this.$refs[type].handleClosed();
14915
+ } else {
14916
+ this[type] = false;
14917
+ }
14883
14918
  if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
14884
14919
  this.$emit('success');
14885
14920
  }
@@ -15175,7 +15210,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
15175
15210
  params.isSubFlow = taskExamineInfo.isSubFlow;
15176
15211
  params.nodeId = taskExamineInfo.nodeId;
15177
15212
  params.needRetrialAuth = needRetrialAuth;
15178
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["xb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
15213
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["yb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
15179
15214
  var status = res.status,
15180
15215
  message = res.message;
15181
15216