eoss-ui 0.5.80 → 0.5.81-beta

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 (119) hide show
  1. package/lib/button-group.js +278 -264
  2. package/lib/button.js +70 -68
  3. package/lib/calendar.js +2 -2
  4. package/lib/card.js +2 -2
  5. package/lib/cascader.js +2 -2
  6. package/lib/checkbox-group.js +70 -69
  7. package/lib/clients.js +2 -2
  8. package/lib/config/api.js +1 -0
  9. package/lib/data-table-form.js +68 -66
  10. package/lib/data-table.js +76 -74
  11. package/lib/date-picker.js +70 -68
  12. package/lib/dialog.js +70 -69
  13. package/lib/enterprise.js +2 -2
  14. package/lib/eoss-ui.common.js +5670 -797
  15. package/lib/error-page.js +2 -2
  16. package/lib/flow-group.js +70 -68
  17. package/lib/flow-list.js +73 -71
  18. package/lib/flow.js +94 -92
  19. package/lib/form.js +70 -69
  20. package/lib/handle-user.js +71 -69
  21. package/lib/handler.js +74 -72
  22. package/lib/icon.js +3731 -12
  23. package/lib/icons.js +3 -3
  24. package/lib/index.js +1 -1
  25. package/lib/input-number.js +70 -68
  26. package/lib/input.js +70 -68
  27. package/lib/label.js +2 -2
  28. package/lib/layout.js +2 -2
  29. package/lib/login.js +146 -104
  30. package/lib/main.js +5643 -825
  31. package/lib/menu.js +2 -2
  32. package/lib/nav.js +70 -68
  33. package/lib/notify.js +72 -70
  34. package/lib/page.js +70 -68
  35. package/lib/pagination.js +2 -2
  36. package/lib/player.js +74 -72
  37. package/lib/qr-code.js +72 -70
  38. package/lib/radio-group.js +70 -68
  39. package/lib/retrial-auth.js +72 -70
  40. package/lib/select-ganged.js +70 -68
  41. package/lib/select.js +70 -68
  42. package/lib/selector-panel.js +73 -72
  43. package/lib/selector.js +79 -77
  44. package/lib/sizer.js +70 -68
  45. package/lib/steps.js +70 -68
  46. package/lib/switch.js +77 -75
  47. package/lib/table-form.js +70 -68
  48. package/lib/tabs-panel.js +2 -2
  49. package/lib/tabs.js +70 -68
  50. package/lib/theme-chalk/base.css +1 -1
  51. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  52. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  53. package/lib/theme-chalk/icon.css +1 -1
  54. package/lib/theme-chalk/index.css +1 -1
  55. package/lib/theme-chalk/login.css +1 -1
  56. package/lib/theme-chalk/main.css +1 -1
  57. package/lib/theme-chalk/menu.css +1 -1
  58. package/lib/theme-chalk/simplicity.css +1 -0
  59. package/lib/theme-chalk/sizer.css +1 -1
  60. package/lib/theme-chalk/upload.css +1 -1
  61. package/lib/tips.js +71 -69
  62. package/lib/toolbar.js +2 -2
  63. package/lib/tree-group.js +70 -68
  64. package/lib/tree.js +70 -68
  65. package/lib/upload.js +93 -92
  66. package/lib/utils/util.js +1 -1
  67. package/lib/wujie.js +70 -68
  68. package/lib/wxlogin.js +213 -211
  69. package/package.json +2 -2
  70. package/packages/data-table/src/main.vue +1 -0
  71. package/packages/handler/src/main.vue +3 -1
  72. package/packages/icon/src/main.vue +31 -10
  73. package/packages/icons/src/icon.json +1 -1
  74. package/packages/login/src/main.vue +13 -6
  75. package/packages/main/src/default/index.vue +2199 -0
  76. package/packages/main/src/main.vue +30 -2210
  77. package/packages/main/src/simplicity/apps.vue +301 -0
  78. package/packages/main/src/simplicity/avatar.vue +68 -0
  79. package/packages/main/src/simplicity/handler.vue +148 -0
  80. package/packages/main/src/simplicity/index.vue +1515 -0
  81. package/packages/main/src/simplicity/lists.vue +84 -0
  82. package/packages/main/src/simplicity/menu-list.vue +74 -0
  83. package/packages/main/src/simplicity/message.vue +237 -0
  84. package/packages/main/src/simplicity/notice.vue +145 -0
  85. package/packages/main/src/simplicity/settings.vue +119 -0
  86. package/packages/main/src/simplicity/sub-menu.vue +120 -0
  87. package/packages/main/src/simplicity/user.vue +243 -0
  88. package/packages/main/src/simplicity/userinfo.vue +302 -0
  89. package/packages/theme-chalk/lib/base.css +1 -1
  90. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  91. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  92. package/packages/theme-chalk/lib/icon.css +1 -1
  93. package/packages/theme-chalk/lib/index.css +1 -1
  94. package/packages/theme-chalk/lib/login.css +1 -1
  95. package/packages/theme-chalk/lib/main.css +1 -1
  96. package/packages/theme-chalk/lib/menu.css +1 -1
  97. package/packages/theme-chalk/lib/simplicity.css +1 -0
  98. package/packages/theme-chalk/lib/sizer.css +1 -1
  99. package/packages/theme-chalk/lib/upload.css +1 -1
  100. package/packages/theme-chalk/src/base.scss +1 -0
  101. package/packages/theme-chalk/src/common/var.scss +4 -0
  102. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  103. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  104. package/packages/theme-chalk/src/icon.scss +4 -4
  105. package/packages/theme-chalk/src/login.scss +644 -632
  106. package/packages/theme-chalk/src/main.scss +6 -2
  107. package/packages/theme-chalk/src/simplicity.scss +545 -0
  108. package/packages/upload/src/main.vue +15 -17
  109. package/src/config/api.js +1 -0
  110. package/src/index.js +1 -1
  111. package/src/utils/util.js +1 -1
  112. package/lib/theme-chalk/mainComp.css +0 -0
  113. package/packages/main/src/async-component/index.vue +0 -87
  114. package/packages/theme-chalk/lib/mainComp.css +0 -0
  115. package/packages/theme-chalk/src/mainComp.scss +0 -0
  116. /package/packages/main/src/{message.vue → default/message.vue} +0 -0
  117. /package/packages/main/src/{notice.vue → default/notice.vue} +0 -0
  118. /package/packages/main/src/{settings.vue → default/settings.vue} +0 -0
  119. /package/packages/main/src/{userinfo.vue → default/userinfo.vue} +0 -0
package/lib/menu.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 77);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 76);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -199,7 +199,7 @@ function normalizeComponent(
199
199
 
200
200
  /***/ }),
201
201
 
202
- /***/ 77:
202
+ /***/ 76:
203
203
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
204
204
 
205
205
  "use strict";
package/lib/nav.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 52);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 51);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -1387,7 +1387,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1387
1387
  * @param {function} callback - 回调函数
1388
1388
  **/
1389
1389
  var getMainConfig = function getMainConfig(callback) {
1390
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1390
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "fb"] }).then(function (res) {
1391
1391
  if (res && res.rCode === 0) {
1392
1392
  callback(res.results);
1393
1393
  }
@@ -2121,7 +2121,7 @@ var isLogined = function isLogined(_ref8) {
2121
2121
  }
2122
2122
  var quit = getParams('quit') || getParams('logout');
2123
2123
  if (quit) {
2124
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2124
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "eb"] }).then(function (res) {
2125
2125
  if (res.rCode === 0) {
2126
2126
  removeStorage();
2127
2127
  }
@@ -2560,7 +2560,7 @@ var replenish = function replenish(_ref12) {
2560
2560
  while (res.length <= len + precision) {
2561
2561
  res += '0';
2562
2562
  }
2563
- return parseFloat(res);
2563
+ return res;
2564
2564
  }
2565
2565
  return data;
2566
2566
  };
@@ -3249,29 +3249,29 @@ var watermark = function watermark(option) {
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3250
3250
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3251
3251
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3252
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3253
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3254
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3252
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3253
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3254
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
3255
3255
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3256
3256
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3257
3257
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3258
3258
  /* unused harmony export updateCode */
3259
3259
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3260
3260
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3261
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3261
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
3262
3262
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3263
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3263
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3265
3265
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3267
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3267
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3269
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3269
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
3270
3270
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3271
3271
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3272
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3273
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3274
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3272
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3273
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3274
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
3275
3275
  /* unused harmony export getUserImgUrl */
3276
3276
  /* unused harmony export getDoorIndex */
3277
3277
  /* unused harmony export refreshOnlineUsers */
@@ -3279,21 +3279,22 @@ var watermark = function watermark(option) {
3279
3279
  /* unused harmony export getApplicationIdArray */
3280
3280
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3281
3281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3282
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3282
3283
  /* unused harmony export getUserCustomInfo */
3283
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3284
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3285
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3286
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3284
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
3285
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
3286
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3287
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3287
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3288
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3289
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
3289
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
3290
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
3290
3291
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3291
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
3292
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
3292
3293
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3293
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
3294
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3295
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3296
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
3294
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
3295
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct; });
3296
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct2; });
3297
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunctOffice; });
3297
3298
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3298
3299
  /* unused harmony export upload_updateClassify */
3299
3300
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3305,16 +3306,16 @@ var watermark = function watermark(option) {
3305
3306
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3306
3307
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3307
3308
  /* unused harmony export findUserBaseInfo */
3308
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3309
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3309
3310
  /* unused harmony export getCurrentuser */
3310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3311
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3312
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3311
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return mainDetail; });
3312
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
3313
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
3313
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3314
3315
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3315
3316
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3316
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
3317
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
3317
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
3318
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
3318
3319
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3319
3320
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3320
3321
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
@@ -3323,52 +3324,52 @@ var watermark = function watermark(option) {
3323
3324
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3324
3325
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3325
3326
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3326
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
3327
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
3327
3328
  /* unused harmony export getView */
3328
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
3329
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3330
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
3331
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
3332
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
3333
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
3334
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
3335
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
3336
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3337
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3329
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
3330
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryList; });
3331
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
3332
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
3333
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
3334
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
3335
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
3336
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
3337
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
3338
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
3338
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3339
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3341
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3342
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3340
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3341
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3342
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return wss; });
3343
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
3343
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3344
3345
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3345
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
3346
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
3347
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
3346
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
3347
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
3348
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
3348
3349
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3349
3350
  /* unused harmony export historyListJson */
3350
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3351
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3351
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pendedhistoryListJson; });
3352
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return pressListJson; });
3352
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3354
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3355
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3356
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
3357
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
3358
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
3359
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
3360
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
3361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
3362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
3363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
3364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
3365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
3366
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
3367
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
3354
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3355
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
3356
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
3357
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
3358
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
3359
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
3360
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
3361
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
3362
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
3363
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
3364
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
3365
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
3366
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
3367
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
3368
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
3368
3369
  /* unused harmony export sendSave */
3369
3370
  /* unused harmony export sendUpdate */
3370
3371
  /* unused harmony export sendDelete */
3371
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
3372
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
3372
3373
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3373
3374
  // 登录
3374
3375
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3406,6 +3407,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3406
3407
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3407
3408
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3408
3409
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3410
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3409
3411
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3410
3412
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3411
3413
  // 框架 - 系统消息
@@ -3730,7 +3732,7 @@ module.exports = require("axios");
3730
3732
 
3731
3733
  /***/ }),
3732
3734
 
3733
- /***/ 52:
3735
+ /***/ 51:
3734
3736
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3735
3737
 
3736
3738
  "use strict";
package/lib/notify.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 53);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 52);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -94,29 +94,29 @@ module.exports =
94
94
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
95
95
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
96
96
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
97
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
98
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
99
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
97
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
98
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
99
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
100
100
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
101
101
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
102
102
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
103
103
  /* unused harmony export updateCode */
104
104
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
105
105
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
106
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
106
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginModifyPassword; });
107
107
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
108
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
108
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initModifyPassword; });
109
109
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
110
110
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
111
111
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
112
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
112
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
113
113
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
114
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
114
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
115
115
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
116
116
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
117
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
118
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
119
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
117
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
118
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
119
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
120
120
  /* unused harmony export getUserImgUrl */
121
121
  /* unused harmony export getDoorIndex */
122
122
  /* unused harmony export refreshOnlineUsers */
@@ -124,21 +124,22 @@ module.exports =
124
124
  /* unused harmony export getApplicationIdArray */
125
125
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
126
126
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
127
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
127
128
  /* unused harmony export getUserCustomInfo */
128
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
129
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
130
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
131
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
129
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
130
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
131
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
132
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
132
133
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
133
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
134
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
134
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
135
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
135
136
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
136
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
137
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
137
138
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
138
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
139
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
140
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
141
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
139
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
140
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct; });
141
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct2; });
142
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunctOffice; });
142
143
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
143
144
  /* unused harmony export upload_updateClassify */
144
145
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -150,16 +151,16 @@ module.exports =
150
151
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
151
152
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
152
153
  /* unused harmony export findUserBaseInfo */
153
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
154
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
154
155
  /* unused harmony export getCurrentuser */
155
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
156
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
157
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
156
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return mainDetail; });
157
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
158
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
158
159
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
159
160
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
160
161
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
161
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
162
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
162
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
163
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
163
164
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
164
165
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
165
166
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
@@ -168,52 +169,52 @@ module.exports =
168
169
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
169
170
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
170
171
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
171
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
172
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
172
173
  /* unused harmony export getView */
173
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
174
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
175
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
176
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
177
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
178
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
179
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
180
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
181
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
182
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
174
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
175
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryList; });
176
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
177
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
178
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
179
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
180
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
181
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
182
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
183
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
183
184
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
184
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
185
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
186
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
187
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
185
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
186
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
187
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return wss; });
188
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
188
189
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
189
190
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
190
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
191
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
192
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
191
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
192
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
193
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
193
194
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
194
195
  /* unused harmony export historyListJson */
195
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
196
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
196
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pendedhistoryListJson; });
197
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return pressListJson; });
197
198
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
198
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
199
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
200
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
201
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
202
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
203
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
204
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
205
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
206
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
207
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
208
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
209
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
210
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
211
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
212
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
199
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
200
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
201
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
202
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
203
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
204
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
205
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
206
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
207
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
208
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
209
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
210
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
211
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
212
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
213
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
213
214
  /* unused harmony export sendSave */
214
215
  /* unused harmony export sendUpdate */
215
216
  /* unused harmony export sendDelete */
216
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
217
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
217
218
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
218
219
  // 登录
219
220
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -251,6 +252,7 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
251
252
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
252
253
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
253
254
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
255
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
254
256
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
255
257
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
256
258
  // 框架 - 系统消息
@@ -540,7 +542,7 @@ function normalizeComponent(
540
542
 
541
543
  /***/ }),
542
544
 
543
- /***/ 53:
545
+ /***/ 52:
544
546
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
545
547
 
546
548
  "use strict";
@@ -774,7 +776,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
774
776
  text: '重发',
775
777
  format: false,
776
778
  method: 'post',
777
- action: api["qb" /* sendBatch */]
779
+ action: api["rb" /* sendBatch */]
778
780
  }]
779
781
  }];
780
782
  }
@@ -961,13 +963,13 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
961
963
  },
962
964
  data: function data() {
963
965
  return {
964
- sendList: api["sb" /* sendList */],
965
- sendBatch: api["qb" /* sendBatch */],
966
+ sendList: api["tb" /* sendList */],
967
+ sendBatch: api["rb" /* sendBatch */],
966
968
  tableCount: 0,
967
969
  selectData: [],
968
970
  formTitle: '',
969
971
  showForm: false,
970
- formData: api["rb" /* sendInfo */],
972
+ formData: api["sb" /* sendInfo */],
971
973
  params: {},
972
974
  sendTypeDict: [],
973
975
  statusDict: []
@@ -986,7 +988,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
986
988
  type: 'primary',
987
989
  checkbox: true,
988
990
  format: false,
989
- action: api["qb" /* sendBatch */]
991
+ action: api["rb" /* sendBatch */]
990
992
  }]
991
993
  }, {
992
994
  type: 'search',