eoss-ui 0.6.46 → 0.6.47

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 (259) hide show
  1. package/lib/button-group.js +132 -117
  2. package/lib/button.js +132 -117
  3. package/lib/checkbox-group.js +134 -119
  4. package/lib/config/api.js +10 -0
  5. package/lib/data-table-form.js +134 -119
  6. package/lib/data-table.js +137 -122
  7. package/lib/date-picker.js +132 -117
  8. package/lib/dialog.js +132 -117
  9. package/lib/eoss-ui.common.js +1663 -1291
  10. package/lib/flow-group.js +132 -117
  11. package/lib/flow-list.js +463 -272
  12. package/lib/flow.js +1066 -870
  13. package/lib/form.js +134 -119
  14. package/lib/handle-user.js +133 -118
  15. package/lib/handler.js +133 -118
  16. package/lib/icon.js +133 -118
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +132 -117
  19. package/lib/input.js +132 -117
  20. package/lib/login.js +146 -131
  21. package/lib/main.js +299 -284
  22. package/lib/nav.js +132 -117
  23. package/lib/notify.js +135 -120
  24. package/lib/page.js +132 -117
  25. package/lib/pagination.js +132 -117
  26. package/lib/player.js +132 -117
  27. package/lib/qr-code.js +145 -130
  28. package/lib/radio-group.js +134 -119
  29. package/lib/retrial-auth.js +136 -121
  30. package/lib/select-ganged.js +134 -119
  31. package/lib/select.js +134 -119
  32. package/lib/selector-panel.js +150 -135
  33. package/lib/selector.js +133 -118
  34. package/lib/sizer.js +134 -119
  35. package/lib/steps.js +132 -117
  36. package/lib/switch.js +132 -117
  37. package/lib/table-form.js +132 -117
  38. package/lib/tabs.js +132 -117
  39. package/lib/theme-chalk/flow.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +133 -118
  42. package/lib/tree-group.js +132 -117
  43. package/lib/tree.js +133 -118
  44. package/lib/upload.js +145 -130
  45. package/lib/wujie.js +132 -117
  46. package/lib/wxlogin.js +132 -117
  47. package/package.json +159 -159
  48. package/packages/button/index.js +5 -5
  49. package/packages/button/src/main.vue +418 -418
  50. package/packages/button-group/index.js +5 -5
  51. package/packages/button-group/src/main.vue +298 -298
  52. package/packages/calendar/index.js +5 -5
  53. package/packages/card/index.js +5 -5
  54. package/packages/card/src/main.vue +156 -156
  55. package/packages/cascader/index.js +5 -5
  56. package/packages/cascader/src/main.vue +168 -168
  57. package/packages/checkbox-group/index.js +5 -5
  58. package/packages/checkbox-group/src/main.vue +333 -333
  59. package/packages/clients/index.js +5 -5
  60. package/packages/clients/src/main.vue +144 -144
  61. package/packages/data-table/index.js +5 -5
  62. package/packages/data-table/src/children.vue +39 -39
  63. package/packages/data-table/src/column.vue +989 -989
  64. package/packages/data-table/src/main.vue +1822 -1822
  65. package/packages/data-table/src/sizer.vue +195 -195
  66. package/packages/data-table-form/index.js +5 -5
  67. package/packages/data-table-form/src/checkbox.vue +101 -101
  68. package/packages/data-table-form/src/colgroup.vue +17 -17
  69. package/packages/data-table-form/src/main.vue +181 -181
  70. package/packages/data-table-form/src/radio.vue +65 -65
  71. package/packages/data-table-form/src/table.vue +233 -233
  72. package/packages/data-table-form/src/tbody.vue +336 -336
  73. package/packages/data-table-form/src/thead.vue +68 -68
  74. package/packages/date-picker/index.js +5 -5
  75. package/packages/date-picker/src/main.vue +236 -236
  76. package/packages/dialog/index.js +5 -5
  77. package/packages/enable-drag/index.js +5 -5
  78. package/packages/enterprise/index.js +5 -5
  79. package/packages/enterprise/src/main.vue +66 -66
  80. package/packages/error-page/index.js +5 -5
  81. package/packages/error-page/src/main.vue +44 -44
  82. package/packages/flow/index.js +5 -5
  83. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  84. package/packages/flow/src/component/CustomPreset.vue +322 -322
  85. package/packages/flow/src/component/FileList.vue +99 -99
  86. package/packages/flow/src/component/Preset.vue +255 -255
  87. package/packages/flow/src/component/SendMsg.vue +229 -229
  88. package/packages/flow/src/component/TimeLimit.vue +190 -190
  89. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  90. package/packages/flow/src/form.vue +121 -121
  91. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  92. package/packages/flow/src/main.vue +3100 -2964
  93. package/packages/flow/src/processForm.vue +1031 -1018
  94. package/packages/flow/src/processReject.vue +293 -293
  95. package/packages/flow/src/reset.vue +899 -899
  96. package/packages/flow/src/startTaskRead.vue +597 -596
  97. package/packages/flow/src/supervise.vue +138 -138
  98. package/packages/flow/src/table.vue +58 -58
  99. package/packages/flow-group/index.js +5 -5
  100. package/packages/flow-group/src/main.vue +688 -688
  101. package/packages/flow-list/index.js +5 -5
  102. package/packages/flow-list/src/main.vue +1411 -1183
  103. package/packages/form/index.js +5 -5
  104. package/packages/form/src/main.vue +3583 -3583
  105. package/packages/form/src/table.vue +1426 -1426
  106. package/packages/handle-user/index.js +5 -5
  107. package/packages/handle-user/src/main.vue +138 -138
  108. package/packages/handler/index.js +5 -5
  109. package/packages/handler/src/main.vue +491 -491
  110. package/packages/icon/index.js +5 -5
  111. package/packages/icon/src/main.vue +101 -101
  112. package/packages/icons/index.js +5 -5
  113. package/packages/icons/src/main.vue +81 -81
  114. package/packages/input/index.js +5 -5
  115. package/packages/input/src/main.vue +356 -356
  116. package/packages/input-number/index.js +5 -5
  117. package/packages/input-number/src/main.vue +106 -106
  118. package/packages/label/index.js +5 -5
  119. package/packages/label/src/main.vue +457 -457
  120. package/packages/layout/index.js +5 -5
  121. package/packages/layout/src/item.vue +152 -152
  122. package/packages/layout/src/main.vue +31 -31
  123. package/packages/login/index.js +5 -5
  124. package/packages/login/src/main.vue +1935 -1935
  125. package/packages/login/src/resetPassword.vue +562 -562
  126. package/packages/main/index.js +5 -5
  127. package/packages/main/src/default/message.vue +249 -249
  128. package/packages/main/src/default/notice.vue +157 -157
  129. package/packages/main/src/default/userinfo.vue +505 -505
  130. package/packages/main/src/public/online.vue +89 -89
  131. package/packages/main/src/public/search.vue +461 -461
  132. package/packages/main/src/public/settings.vue +221 -221
  133. package/packages/main/src/simplicity/apps.vue +388 -388
  134. package/packages/main/src/simplicity/avatar.vue +82 -82
  135. package/packages/main/src/simplicity/handler.vue +259 -259
  136. package/packages/main/src/simplicity/index.vue +2049 -2049
  137. package/packages/main/src/simplicity/lists.vue +84 -84
  138. package/packages/main/src/simplicity/menu-list.vue +128 -128
  139. package/packages/main/src/simplicity/message.vue +259 -259
  140. package/packages/main/src/simplicity/notice.vue +190 -190
  141. package/packages/main/src/simplicity/router-page.vue +45 -45
  142. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  143. package/packages/main/src/simplicity/user.vue +257 -257
  144. package/packages/main/src/simplicity/userinfo.vue +312 -312
  145. package/packages/menu/index.js +5 -5
  146. package/packages/menu/src/main.vue +536 -536
  147. package/packages/nav/index.js +5 -5
  148. package/packages/nav/src/main.vue +351 -351
  149. package/packages/notify/index.js +5 -5
  150. package/packages/notify/src/main.vue +538 -538
  151. package/packages/page/index.js +5 -5
  152. package/packages/page/src/main.vue +167 -167
  153. package/packages/pagination/index.js +5 -5
  154. package/packages/pagination/src/main.vue +96 -96
  155. package/packages/player/index.js +5 -5
  156. package/packages/player/src/main.vue +194 -194
  157. package/packages/qr-code/index.js +5 -5
  158. package/packages/qr-code/src/main.vue +170 -170
  159. package/packages/radio-group/index.js +6 -6
  160. package/packages/radio-group/src/main.vue +319 -319
  161. package/packages/retrial-auth/index.js +5 -5
  162. package/packages/retrial-auth/src/main.vue +280 -280
  163. package/packages/select/index.js +5 -5
  164. package/packages/select/src/main.vue +775 -775
  165. package/packages/select-ganged/index.js +5 -5
  166. package/packages/select-ganged/src/main.vue +724 -724
  167. package/packages/selector/index.js +5 -5
  168. package/packages/selector/src/main.vue +689 -689
  169. package/packages/selector-panel/index.js +5 -5
  170. package/packages/selector-panel/src/main.vue +1027 -1027
  171. package/packages/selector-panel/src/selection.vue +177 -177
  172. package/packages/selector-panel/src/tree.vue +129 -129
  173. package/packages/sizer/index.js +5 -5
  174. package/packages/sizer/src/main.vue +254 -254
  175. package/packages/steps/index.js +5 -5
  176. package/packages/steps/src/main.vue +181 -181
  177. package/packages/switch/index.js +5 -5
  178. package/packages/switch/src/main.vue +154 -154
  179. package/packages/table-form/index.js +5 -5
  180. package/packages/tabs/index.js +5 -5
  181. package/packages/tabs/src/main.vue +788 -788
  182. package/packages/tabs-panel/index.js +5 -5
  183. package/packages/tabs-panel/src/main.vue +29 -29
  184. package/packages/theme-chalk/lib/flow.css +1 -1
  185. package/packages/theme-chalk/lib/index.css +1 -1
  186. package/packages/theme-chalk/src/base.scss +260 -260
  187. package/packages/theme-chalk/src/button-group.scss +175 -175
  188. package/packages/theme-chalk/src/button.scss +24 -24
  189. package/packages/theme-chalk/src/calendar.scss +113 -113
  190. package/packages/theme-chalk/src/card.scss +99 -99
  191. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  192. package/packages/theme-chalk/src/clients.scss +87 -87
  193. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  194. package/packages/theme-chalk/src/data-table.scss +293 -293
  195. package/packages/theme-chalk/src/date-picker.scss +7 -7
  196. package/packages/theme-chalk/src/dialog.scss +77 -77
  197. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  198. package/packages/theme-chalk/src/enterprise.scss +5 -5
  199. package/packages/theme-chalk/src/error-page.scss +18 -18
  200. package/packages/theme-chalk/src/flow-group.scss +110 -110
  201. package/packages/theme-chalk/src/flow-list.scss +36 -36
  202. package/packages/theme-chalk/src/flow.scss +325 -318
  203. package/packages/theme-chalk/src/form.scss +496 -496
  204. package/packages/theme-chalk/src/handle-user.scss +40 -40
  205. package/packages/theme-chalk/src/handler.scss +143 -143
  206. package/packages/theme-chalk/src/icon.scss +1789 -1789
  207. package/packages/theme-chalk/src/icons.scss +99 -99
  208. package/packages/theme-chalk/src/input.scss +9 -9
  209. package/packages/theme-chalk/src/label.scss +24 -24
  210. package/packages/theme-chalk/src/layout.scss +46 -46
  211. package/packages/theme-chalk/src/login.scss +969 -969
  212. package/packages/theme-chalk/src/main.scss +656 -656
  213. package/packages/theme-chalk/src/menu.scss +222 -222
  214. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  215. package/packages/theme-chalk/src/nav.scss +111 -111
  216. package/packages/theme-chalk/src/page.scss +3 -3
  217. package/packages/theme-chalk/src/pagination.scss +29 -29
  218. package/packages/theme-chalk/src/player.scss +9 -9
  219. package/packages/theme-chalk/src/qr-code.scss +17 -17
  220. package/packages/theme-chalk/src/radio-group.scss +9 -9
  221. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  222. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  223. package/packages/theme-chalk/src/select.scss +8 -8
  224. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  225. package/packages/theme-chalk/src/selector.scss +91 -91
  226. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  227. package/packages/theme-chalk/src/sizer.scss +36 -36
  228. package/packages/theme-chalk/src/steps.scss +88 -88
  229. package/packages/theme-chalk/src/switch.scss +3 -3
  230. package/packages/theme-chalk/src/table-form.scss +1 -1
  231. package/packages/theme-chalk/src/tabs.scss +87 -87
  232. package/packages/theme-chalk/src/tips.scss +7 -7
  233. package/packages/theme-chalk/src/toolbar.scss +179 -179
  234. package/packages/theme-chalk/src/tree-group.scss +72 -72
  235. package/packages/theme-chalk/src/tree.scss +165 -165
  236. package/packages/theme-chalk/src/upload.scss +167 -167
  237. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  238. package/packages/tips/index.js +5 -5
  239. package/packages/tips/src/main.vue +141 -141
  240. package/packages/toolbar/index.js +5 -5
  241. package/packages/toolbar/src/main.vue +430 -430
  242. package/packages/tree/index.js +5 -5
  243. package/packages/tree-group/index.js +5 -5
  244. package/packages/upload/index.js +5 -5
  245. package/packages/upload/src/main.vue +1335 -1335
  246. package/packages/upload/src/picture.js +15 -15
  247. package/packages/wujie/index.js +5 -5
  248. package/packages/wujie/src/main.vue +145 -145
  249. package/packages/wxlogin/index.js +5 -5
  250. package/packages/wxlogin/src/main.vue +128 -128
  251. package/src/config/api.js +281 -251
  252. package/src/config/image.js +2 -2
  253. package/src/index.js +1 -1
  254. package/src/utils/bus.js +3 -3
  255. package/src/utils/date-util.js +312 -312
  256. package/src/utils/http.js +50 -50
  257. package/src/utils/rules.js +18 -18
  258. package/src/utils/store.js +21 -21
  259. package/src/utils/webSocket.js +107 -107
package/lib/main.js CHANGED
@@ -1611,7 +1611,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1611
1611
  * @param {function} callback - 回调函数
1612
1612
  **/
1613
1613
  var getMainConfig = function getMainConfig(callback) {
1614
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "hb"] }).then(function (res) {
1614
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "kb"] }).then(function (res) {
1615
1615
  if (res && res.rCode === 0) {
1616
1616
  callback(res.results);
1617
1617
  }
@@ -2358,7 +2358,7 @@ var isLogined = function isLogined(_ref10) {
2358
2358
  }
2359
2359
  var quit = getParams('quit') || getParams('logout');
2360
2360
  if (quit) {
2361
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "gb"] }).then(function (res) {
2361
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "jb"] }).then(function (res) {
2362
2362
  if (res.rCode === 0) {
2363
2363
  removeStorage();
2364
2364
  }
@@ -3477,142 +3477,147 @@ var watermark = function watermark(option) {
3477
3477
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3478
3478
 
3479
3479
  "use strict";
3480
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3481
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3482
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3483
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return logout; });
3484
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initLogin; });
3485
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return switchUserTo; });
3480
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3481
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3482
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3483
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return logout; });
3484
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initLogin; });
3485
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return switchUserTo; });
3486
3486
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3487
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getLoginCode; });
3488
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3487
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getLoginCode; });
3488
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3489
3489
  /* unused harmony export updateCode */
3490
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getModifyPassCode; });
3491
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3492
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return loginModifyPassword; });
3490
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getModifyPassCode; });
3491
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3492
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return loginModifyPassword; });
3493
3493
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3494
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initModifyPassword; });
3495
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3496
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getTwoFactorLoginCode; });
3497
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3498
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return initRetrialAuth; });
3499
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getRetrialAuthCode; });
3500
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return scanCodeRetrialAuth; });
3501
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3502
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3503
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return userOnline; });
3504
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getUserAppWithTag; });
3505
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return recordUserApp; });
3506
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return mainConfig; });
3507
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initUserSet; });
3508
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return updateUserInfo; });
3494
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initModifyPassword; });
3495
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3496
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getTwoFactorLoginCode; });
3497
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3498
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initRetrialAuth; });
3499
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getRetrialAuthCode; });
3500
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return scanCodeRetrialAuth; });
3501
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3502
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3503
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return userOnline; });
3504
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getUserAppWithTag; });
3505
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return recordUserApp; });
3506
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return mainConfig; });
3507
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initUserSet; });
3508
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateUserInfo; });
3509
3509
  /* unused harmony export getUserImgUrl */
3510
3510
  /* unused harmony export getDoorIndex */
3511
3511
  /* unused harmony export refreshOnlineUsers */
3512
3512
  /* unused harmony export getQuickMenuIds */
3513
3513
  /* unused harmony export getApplicationIdArray */
3514
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplications; });
3515
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getComplexApplicationsNew; });
3514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getComplexApplications; });
3515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplicationsNew; });
3516
3516
  /* unused harmony export getUserCustomInfo */
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return updateUserCustomInfo; });
3518
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sysMsgPage; });
3519
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return ignoreSysMsg; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return ignoreAllSysMsg; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return searchType; });
3522
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getAdjunctProperties; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return uploads; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return uploadOnlyOne; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctFileInfos; });
3526
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return uploadSort; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return uploadDownloads; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunct2; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return previewAdjunctOffice; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return updateUserCustomInfo; });
3518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sysMsgPage; });
3519
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreSysMsg; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return ignoreAllSysMsg; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return searchType; });
3522
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctProperties; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploads; });
3524
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return uploadOnlyOne; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getAdjunctFileInfos; });
3526
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadSort; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return uploadDownloads; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return previewAdjunct; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct2; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunctOffice; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3533
3533
  /* unused harmony export upload_updateClassify */
3534
3534
  /* unused harmony export getDeleteAdjunctFileInfos */
3535
3535
  /* unused harmony export getPictureBase64 */
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getSelectorOrgTree; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getSelectorOrgDetail; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getOrgMainTree; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectOrgsubids; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getDictList; });
3536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgTree; });
3537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectorOrgDetail; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getOrgMainTree; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getSelectOrgsubids; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getDictList; });
3542
3542
  /* unused harmony export findUserBaseInfo */
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return gethelpdoc; });
3543
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return gethelpdoc; });
3544
3544
  /* unused harmony export getCurrentuser */
3545
3545
  /* unused harmony export mainDetail */
3546
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toStartFlow; });
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return tempSave; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3546
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toStartFlow; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return tempSave; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3549
3549
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3551
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return saveCommonOpinion; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return updateCommonOpinion; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getProcessDefList; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getNodeInfo; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getNotificationMsg; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getHandleInfoHtml; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskHandleHtml; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return saveCommonOpinion; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return updateCommonOpinion; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getProcessDefList; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getNodeInfo; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNotificationMsg; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getHandleInfoHtml; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskHandleHtml; });
3562
3562
  /* unused harmony export getView */
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return register; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pendedhistoryList; });
3565
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskRejectHtml; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskRejectHtml; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toStartTaskRead; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toStartTaskReadIndex; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskReadHtml; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return rejectAndEnd; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toSendMsg; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return sendMsg; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return handleInfo; });
3575
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return loginUserInfo; });
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return wss; });
3577
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return topic; });
3578
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getPresetCustomInfo; });
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getPresetNodeInfo; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskTransferIndex; });
3581
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskTransfer; });
3582
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toPresetInfoListIndex; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return register; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return pendedhistoryList; });
3565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskRejectHtml; });
3566
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskRejectHtml; });
3567
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toStartTaskRead; });
3568
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartTaskReadIndex; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskReadHtml; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return rejectAndEnd; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toSendMsg; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendMsg; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return handleInfo; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginUserInfo; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return wss; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return topic; });
3578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getPresetCustomInfo; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetNodeInfo; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskTransferIndex; });
3581
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskTransfer; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toPresetInfoListIndex; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3584
3584
  /* unused harmony export historyListJson */
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return pendedhistoryListJson; });
3586
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return pressListJson; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return isCanStartSubFlow; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskUnionExamine; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskUnionExamine; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskTakeAdvice; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskTakeAdvice; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toTaskStartDraft; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toTaskSupervise; });
3595
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskSuperviseSub; });
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskUnionSeal; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTwoOfficesDispatch; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return twoOfficesDispatch; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskContinuation; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getFreeStartFlowParams; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return freeStartFlowWithSubmitTask; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sendList; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sendInfo; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryListJson; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pressListJson; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return isCanStartSubFlow; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskUnionExamine; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskUnionExamine; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskTakeAdvice; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskTakeAdvice; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskStartDraft; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskSupervise; });
3595
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskSuperviseSub; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskStartDraft; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskReview; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReview; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskUnionSeal; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskUnionSeal; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTwoOfficesDispatch; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return twoOfficesDispatch; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toResetProcessIndex; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return resetProcess; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskContinuationIndex; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskContinuation; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getFreeStartFlowParams; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListWithCircularReadJson; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendList; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendInfo; });
3611
3616
  /* unused harmony export sendSave */
3612
3617
  /* unused harmony export sendUpdate */
3613
3618
  /* unused harmony export sendDelete */
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendBatch; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return sendBatch; });
3620
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3616
3621
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3617
3622
  // 登录
3618
3623
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3840,6 +3845,16 @@ var taskContinuation = '/bpm/task/taskHandle/taskContinuation.dhtml';
3840
3845
  var getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
3841
3846
  // 自由发起流程提交
3842
3847
  var freeStartFlowWithSubmitTask = '/bpm/bpmBackend/freeStartFlowWithSubmitTask';
3848
+ // 传阅新流程发起外单位数据校验
3849
+ var checkForeignOrgStartedCircularRead = '/bpm/bpmBackend/checkForeignOrgStartedCircularRead';
3850
+ // 获取传阅列表
3851
+ var pendedhistoryListWithCircularReadJson = '/bpm/pendedhistoryManager/pendedhistoryListWithCircularReadJson';
3852
+ // 传阅列表撤回
3853
+ var circularReadWithdraw = '/bpm/bpmBackend/circularReadWithdraw';
3854
+ // 阅转办提交流程
3855
+ var startReadTransferHandleFlowWithTaskReadEnd = '/bpm/bpmBackend/startReadTransferHandleFlowWithTaskReadEnd';
3856
+ // 阅转办校验接口
3857
+ var checkBusinessIdStartedReadTransferHandle = '/bpm/bpmBackend/checkBusinessIdStartedReadTransferHandle';
3843
3858
  // notifySend 消息发送
3844
3859
  var sendList = '/notify2/notifySendRecord/listJson';
3845
3860
  var sendInfo = '/notify2/notifySendRecord/info';
@@ -5110,7 +5125,7 @@ var api = __webpack_require__(1);
5110
5125
  if (res.url && util["a" /* default */].startWith(res.url, ['http', 'https', '/'])) {
5111
5126
  this.userHead = res.url;
5112
5127
  } else {
5113
- this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["r" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
5128
+ this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["u" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
5114
5129
  }
5115
5130
  this.$emit('change', this.userHead);
5116
5131
  }
@@ -6987,7 +7002,7 @@ var external_throttle_debounce_ = __webpack_require__(12);
6987
7002
  },
6988
7003
  handleClick: function handleClick(res) {
6989
7004
  util["a" /* default */].ajax({
6990
- url: api["ob" /* recordUserApp */],
7005
+ url: api["sb" /* recordUserApp */],
6991
7006
  params: {
6992
7007
  userId: this.user.userId,
6993
7008
  appId: res.id
@@ -6996,10 +7011,10 @@ var external_throttle_debounce_ = __webpack_require__(12);
6996
7011
  this.$emit('click', res);
6997
7012
  },
6998
7013
 
6999
- /**
7000
- * @desc:获取气泡提醒
7001
- * @author huangbo
7002
- * @date 2024年9月7日
7014
+ /**
7015
+ * @desc:获取气泡提醒
7016
+ * @author huangbo
7017
+ * @date 2024年9月7日
7003
7018
  **/
7004
7019
  getBadge: function getBadge(res) {
7005
7020
  var num = res.tips || 0;
@@ -7399,7 +7414,7 @@ userinfovue_type_template_id_028fdb19_render._withStripped = true
7399
7414
  var initLogin = util["a" /* default */].getStorage('initLogin');
7400
7415
  initLogin && (initLogin = JSON.parse(initLogin));
7401
7416
  util["a" /* default */].ajax({
7402
- url: api["hc" /* updateUserInfo */],
7417
+ url: api["mc" /* updateUserInfo */],
7403
7418
  params: {
7404
7419
  email: this.model.email,
7405
7420
  officeTel: this.model.officeTel,
@@ -7635,7 +7650,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7635
7650
  var _this2 = this;
7636
7651
 
7637
7652
  util["a" /* default */].ajax({
7638
- url: api["cb" /* initUserSet */]
7653
+ url: api["fb" /* initUserSet */]
7639
7654
  }).then(function (res) {
7640
7655
  if (res.rCode === 0) {
7641
7656
  var results = JSON.parse(JSON.stringify(res.results));
@@ -7676,7 +7691,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7676
7691
  var notify = this.checked.join(',');
7677
7692
  util["a" /* default */].ajax({
7678
7693
  method: 'post',
7679
- url: api["gc" /* updateUserCustomInfo */],
7694
+ url: api["lc" /* updateUserCustomInfo */],
7680
7695
  data: {
7681
7696
  notify: notify
7682
7697
  }
@@ -7706,7 +7721,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7706
7721
  if (this.user.identityId !== res.id) {
7707
7722
  util["a" /* default */].ajax({
7708
7723
  method: 'post',
7709
- url: api["zb" /* switchUserTo */],
7724
+ url: api["Eb" /* switchUserTo */],
7710
7725
  data: { userId: res.value }
7711
7726
  }).then(function (res) {
7712
7727
  if (res.rCode == 0) {
@@ -8098,7 +8113,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8098
8113
  if (this.pageNum <= this.pageCount) {
8099
8114
  this.loading = true;
8100
8115
  util["a" /* default */].ajax({
8101
- url: api["Ab" /* sysMsgPage */],
8116
+ url: api["Fb" /* sysMsgPage */],
8102
8117
  params: {
8103
8118
  pageNum: reload ? 1 : this.pageNum,
8104
8119
  pageSize: this.pageSize
@@ -8131,7 +8146,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8131
8146
  var _this2 = this;
8132
8147
 
8133
8148
  util["a" /* default */].ajax({
8134
- url: api["Y" /* ignoreSysMsg */],
8149
+ url: api["bb" /* ignoreSysMsg */],
8135
8150
  params: {
8136
8151
  id: res.id
8137
8152
  }
@@ -8151,7 +8166,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8151
8166
  var _this3 = this;
8152
8167
 
8153
8168
  util["a" /* default */].ajax({
8154
- url: api["X" /* ignoreAllSysMsg */]
8169
+ url: api["ab" /* ignoreAllSysMsg */]
8155
8170
  }).then(function (res) {
8156
8171
  _this3.count = 0;
8157
8172
  _this3.msgs = [];
@@ -8511,7 +8526,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
8511
8526
  var _this = this;
8512
8527
 
8513
8528
  util["a" /* default */].ajax({
8514
- url: api["Y" /* ignoreSysMsg */],
8529
+ url: api["bb" /* ignoreSysMsg */],
8515
8530
  params: {
8516
8531
  id: res.id
8517
8532
  }
@@ -8530,7 +8545,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
8530
8545
  var _this2 = this;
8531
8546
 
8532
8547
  util["a" /* default */].ajax({
8533
- url: api["X" /* ignoreAllSysMsg */]
8548
+ url: api["ab" /* ignoreAllSysMsg */]
8534
8549
  }).then(function (res) {
8535
8550
  _this2.msgs = [];
8536
8551
  _this2.$emit('ignore', { type: 'ignore', value: 'all' });
@@ -9316,7 +9331,7 @@ onlinevue_type_template_id_63844b4e_scoped_true_render._withStripped = true
9316
9331
  props: {
9317
9332
  sysuseronline: {
9318
9333
  type: String,
9319
- default: api["mc" /* userOnline */]
9334
+ default: api["rc" /* userOnline */]
9320
9335
  }
9321
9336
  },
9322
9337
  data: function data() {
@@ -9987,7 +10002,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
9987
10002
  },
9988
10003
  searchType: {
9989
10004
  type: String,
9990
- default: api["ub" /* searchType */]
10005
+ default: api["yb" /* searchType */]
9991
10006
  },
9992
10007
  pageSize: {
9993
10008
  type: Number,
@@ -10768,7 +10783,7 @@ var events = [function (tabs, index, that) {
10768
10783
  //应用列表接口
10769
10784
  appsUrl: {
10770
10785
  type: String,
10771
- default: api["U" /* getUserAppWithTag */]
10786
+ default: api["X" /* getUserAppWithTag */]
10772
10787
  },
10773
10788
  //是否启用子应用菜单接口
10774
10789
  application: {
@@ -10943,9 +10958,9 @@ var events = [function (tabs, index, that) {
10943
10958
  return this.menuUrl;
10944
10959
  }
10945
10960
  if (this.application) {
10946
- return api["D" /* getComplexApplicationsNew */];
10961
+ return api["G" /* getComplexApplicationsNew */];
10947
10962
  }
10948
- return api["C" /* getComplexApplications */];
10963
+ return api["F" /* getComplexApplications */];
10949
10964
  },
10950
10965
 
10951
10966
  //人工智能配置
@@ -11010,10 +11025,10 @@ var events = [function (tabs, index, that) {
11010
11025
  },
11011
11026
 
11012
11027
  methods: {
11013
- /**
11014
- * @desc:匹配路由
11015
- * @author huangbo
11016
- * @date 2024年9月7日
11028
+ /**
11029
+ * @desc:匹配路由
11030
+ * @author huangbo
11031
+ * @date 2024年9月7日
11017
11032
  **/
11018
11033
  hasRouter: function hasRouter(res, url, code) {
11019
11034
  if (!url) {
@@ -11057,10 +11072,10 @@ var events = [function (tabs, index, that) {
11057
11072
  return false;
11058
11073
  },
11059
11074
 
11060
- /**
11061
- * @desc:获取初始数据
11062
- * @author huangbo
11063
- * @date 2024年9月7日
11075
+ /**
11076
+ * @desc:获取初始数据
11077
+ * @author huangbo
11078
+ * @date 2024年9月7日
11064
11079
  **/
11065
11080
  init: function init(results, first) {
11066
11081
  this.setConfig(results);
@@ -11069,10 +11084,10 @@ var events = [function (tabs, index, that) {
11069
11084
  }
11070
11085
  },
11071
11086
 
11072
- /**
11073
- * @desc:设置用户配置及信息
11074
- * @author huangbo
11075
- * @date 2024年9月7日
11087
+ /**
11088
+ * @desc:设置用户配置及信息
11089
+ * @author huangbo
11090
+ * @date 2024年9月7日
11076
11091
  **/
11077
11092
  setConfig: function setConfig(results) {
11078
11093
  localStorage.setItem('mainConfig', JSON.stringify(results));
@@ -11204,10 +11219,10 @@ var events = [function (tabs, index, that) {
11204
11219
  }
11205
11220
  },
11206
11221
 
11207
- /**
11208
- * @desc:获取所有应用
11209
- * @author huangbo
11210
- * @date 2024年9月7日
11222
+ /**
11223
+ * @desc:获取所有应用
11224
+ * @author huangbo
11225
+ * @date 2024年9月7日
11211
11226
  **/
11212
11227
  getApplications: function getApplications() {
11213
11228
  var _this = this;
@@ -11255,10 +11270,10 @@ var events = [function (tabs, index, that) {
11255
11270
  });
11256
11271
  },
11257
11272
 
11258
- /**
11259
- * @desc:获取菜单列表
11260
- * @author huangbo
11261
- * @date 2024年9月7日
11273
+ /**
11274
+ * @desc:获取菜单列表
11275
+ * @author huangbo
11276
+ * @date 2024年9月7日
11262
11277
  **/
11263
11278
  getMenus: function getMenus(loading) {
11264
11279
  var _this2 = this;
@@ -11291,10 +11306,10 @@ var events = [function (tabs, index, that) {
11291
11306
  });
11292
11307
  },
11293
11308
 
11294
- /**
11295
- * @desc:处理菜单列表
11296
- * @author huangbo
11297
- * @date 2024年9月7日
11309
+ /**
11310
+ * @desc:处理菜单列表
11311
+ * @author huangbo
11312
+ * @date 2024年9月7日
11298
11313
  **/
11299
11314
  renderMenus: function renderMenus(res) {
11300
11315
  this.menus = res;
@@ -11384,10 +11399,10 @@ var events = [function (tabs, index, that) {
11384
11399
  }
11385
11400
  },
11386
11401
 
11387
- /**
11388
- * @desc:设置页面加载类型
11389
- * @author huangbo
11390
- * @date 2024年9月7日
11402
+ /**
11403
+ * @desc:设置页面加载类型
11404
+ * @author huangbo
11405
+ * @date 2024年9月7日
11391
11406
  **/
11392
11407
  setIframeType: function setIframeType(res) {
11393
11408
  var url = res.url;
@@ -11443,10 +11458,10 @@ var events = [function (tabs, index, that) {
11443
11458
  return res;
11444
11459
  },
11445
11460
 
11446
- /**
11447
- * @desc:获取菜单
11448
- * @author huangbo
11449
- * @date 2024年9月7日
11461
+ /**
11462
+ * @desc:获取菜单
11463
+ * @author huangbo
11464
+ * @date 2024年9月7日
11450
11465
  **/
11451
11466
  getMenu: function getMenu(menus, res, key) {
11452
11467
  if (Array.isArray(menus)) {
@@ -11475,10 +11490,10 @@ var events = [function (tabs, index, that) {
11475
11490
  return false;
11476
11491
  },
11477
11492
 
11478
- /**
11479
- * @desc:获取菜单第一条数据
11480
- * @author huangbo
11481
- * @date 2024年9月7日
11493
+ /**
11494
+ * @desc:获取菜单第一条数据
11495
+ * @author huangbo
11496
+ * @date 2024年9月7日
11482
11497
  **/
11483
11498
  getFirst: function getFirst(obj) {
11484
11499
  if (!obj) {
@@ -11497,10 +11512,10 @@ var events = [function (tabs, index, that) {
11497
11512
  }
11498
11513
  },
11499
11514
 
11500
- /**
11501
- * @desc:遍历设置菜单气泡提醒
11502
- * @author huangbo
11503
- * @date 2024年9月7日
11515
+ /**
11516
+ * @desc:遍历设置菜单气泡提醒
11517
+ * @author huangbo
11518
+ * @date 2024年9月7日
11504
11519
  **/
11505
11520
  setTips: function setTips(obj) {
11506
11521
  var _this3 = this;
@@ -11563,10 +11578,10 @@ var events = [function (tabs, index, that) {
11563
11578
  }
11564
11579
  },
11565
11580
 
11566
- /**
11567
- * @desc:获取气泡提醒
11568
- * @author huangbo
11569
- * @date 2024年9月7日
11581
+ /**
11582
+ * @desc:获取气泡提醒
11583
+ * @author huangbo
11584
+ * @date 2024年9月7日
11570
11585
  **/
11571
11586
  getBadge: function getBadge(res) {
11572
11587
  var num = res.tips || 0;
@@ -11580,17 +11595,17 @@ var events = [function (tabs, index, that) {
11580
11595
  };
11581
11596
  },
11582
11597
 
11583
- /**
11584
- * @desc:开启weosocket
11585
- * @author huangbo
11586
- * @date 2024年9月7日
11598
+ /**
11599
+ * @desc:开启weosocket
11600
+ * @author huangbo
11601
+ * @date 2024年9月7日
11587
11602
  **/
11588
11603
  initWebSocket: function initWebSocket() {
11589
11604
  var _this5 = this;
11590
11605
 
11591
11606
  this.webSocket = util["a" /* default */].socket({
11592
- url: api["nc" /* wss */],
11593
- take: api["dc" /* topic */],
11607
+ url: api["sc" /* wss */],
11608
+ take: api["ic" /* topic */],
11594
11609
  success: function success(res) {
11595
11610
  var data = res.data || {};
11596
11611
  for (var i in data) {
@@ -11631,10 +11646,10 @@ var events = [function (tabs, index, that) {
11631
11646
  });
11632
11647
  },
11633
11648
 
11634
- /**
11635
- * @desc:显示用户信息
11636
- * @author huangbo
11637
- * @date 2024年9月7日
11649
+ /**
11650
+ * @desc:显示用户信息
11651
+ * @author huangbo
11652
+ * @date 2024年9月7日
11638
11653
  **/
11639
11654
  showUserInfo: function showUserInfo() {
11640
11655
  if (this.showUser === false) {
@@ -11642,19 +11657,19 @@ var events = [function (tabs, index, that) {
11642
11657
  }
11643
11658
  },
11644
11659
 
11645
- /**
11646
- * @desc:删除更多应用菜单点击
11647
- * @author huangbo
11648
- * @date 2024年9月7日
11660
+ /**
11661
+ * @desc:删除更多应用菜单点击
11662
+ * @author huangbo
11663
+ * @date 2024年9月7日
11649
11664
  **/
11650
11665
  handleDelete: function handleDelete(index) {
11651
11666
  this.newApps.splice(index, 1);
11652
11667
  },
11653
11668
 
11654
- /**
11655
- * @desc:储存更多应用菜单点击
11656
- * @author huangbo
11657
- * @date 2024年9月7日
11669
+ /**
11670
+ * @desc:储存更多应用菜单点击
11671
+ * @author huangbo
11672
+ * @date 2024年9月7日
11658
11673
  **/
11659
11674
  handlerClickApps: function handlerClickApps(res) {
11660
11675
  if (res.permission === false) {
@@ -11667,10 +11682,10 @@ var events = [function (tabs, index, that) {
11667
11682
  this.handlerClickApp(res);
11668
11683
  },
11669
11684
 
11670
- /**
11671
- * @desc:侧边应用菜单点击
11672
- * @author huangbo
11673
- * @date 2024年9月7日
11685
+ /**
11686
+ * @desc:侧边应用菜单点击
11687
+ * @author huangbo
11688
+ * @date 2024年9月7日
11674
11689
  **/
11675
11690
  handlerClickApp: function handlerClickApp(res) {
11676
11691
  this.showMsg = false;
@@ -11757,10 +11772,10 @@ var events = [function (tabs, index, that) {
11757
11772
  }
11758
11773
  },
11759
11774
 
11760
- /**
11761
- * @desc:显示Drawer界面
11762
- * @author huangbo
11763
- * @date 2024年9月7日
11775
+ /**
11776
+ * @desc:显示Drawer界面
11777
+ * @author huangbo
11778
+ * @date 2024年9月7日
11764
11779
  **/
11765
11780
  handlerSetDrawer: function handlerSetDrawer(res, type) {
11766
11781
  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
@@ -11780,23 +11795,23 @@ var events = [function (tabs, index, that) {
11780
11795
  }
11781
11796
  },
11782
11797
 
11783
- /**
11784
- * @desc:关闭Drawer界面
11785
- * @author huangbo
11786
- * @date 2024年9月7日
11798
+ /**
11799
+ * @desc:关闭Drawer界面
11800
+ * @author huangbo
11801
+ * @date 2024年9月7日
11787
11802
  **/
11788
11803
  handleCloseDrawer: function handleCloseDrawer() {
11789
11804
  this.drawer = { visible: false };
11790
11805
  },
11791
11806
 
11792
- /**
11793
- * @desc:菜单点击
11794
- * @author huangbo
11795
- * @date 2024年9月7日
11807
+ /**
11808
+ * @desc:菜单点击
11809
+ * @author huangbo
11810
+ * @date 2024年9月7日
11796
11811
  **/
11797
11812
  handlerClickMenu: function handlerClickMenu(res) {
11798
11813
  util["a" /* default */].ajax({
11799
- url: api["ob" /* recordUserApp */],
11814
+ url: api["sb" /* recordUserApp */],
11800
11815
  params: {
11801
11816
  userId: this.user.userId,
11802
11817
  appId: res.id
@@ -11831,19 +11846,19 @@ var events = [function (tabs, index, that) {
11831
11846
  },
11832
11847
 
11833
11848
 
11834
- /**
11835
- * @desc:用户详情请求成功
11836
- * @author huangbo
11837
- * @date 2024年9月7日
11849
+ /**
11850
+ * @desc:用户详情请求成功
11851
+ * @author huangbo
11852
+ * @date 2024年9月7日
11838
11853
  **/
11839
11854
  handleSuccess: function handleSuccess(res) {
11840
11855
  this.simpleUserInfo = res.simpleUserInfo;
11841
11856
  },
11842
11857
 
11843
- /**
11844
- * @desc:修改用户配置
11845
- * @author huangbo
11846
- * @date 2024年9月7日
11858
+ /**
11859
+ * @desc:修改用户配置
11860
+ * @author huangbo
11861
+ * @date 2024年9月7日
11847
11862
  **/
11848
11863
  handleChangeConfig: function handleChangeConfig(name, res) {
11849
11864
  if (name == 'userHeadUrl') {
@@ -11859,10 +11874,10 @@ var events = [function (tabs, index, that) {
11859
11874
  }
11860
11875
  },
11861
11876
 
11862
- /**
11863
- * @desc:关闭webSocket
11864
- * @author huangbo
11865
- * @date 2024年9月7日
11877
+ /**
11878
+ * @desc:关闭webSocket
11879
+ * @author huangbo
11880
+ * @date 2024年9月7日
11866
11881
  **/
11867
11882
  handlerClose: function handlerClose() {
11868
11883
  if (this.webSocket) {
@@ -11870,10 +11885,10 @@ var events = [function (tabs, index, that) {
11870
11885
  }
11871
11886
  },
11872
11887
 
11873
- /**
11874
- * @desc:刷新选中iframe页签
11875
- * @author huangbo
11876
- * @date 2024年9月7日
11888
+ /**
11889
+ * @desc:刷新选中iframe页签
11890
+ * @author huangbo
11891
+ * @date 2024年9月7日
11877
11892
  **/
11878
11893
  handleRefresh: function handleRefresh() {
11879
11894
  var i = util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
@@ -11894,10 +11909,10 @@ var events = [function (tabs, index, that) {
11894
11909
  }
11895
11910
  },
11896
11911
 
11897
- /**
11898
- * @desc:删除iframe
11899
- * @author huangbo
11900
- * @date 2024年9月7日
11912
+ /**
11913
+ * @desc:删除iframe
11914
+ * @author huangbo
11915
+ * @date 2024年9月7日
11901
11916
  **/
11902
11917
  handleRemove: function handleRemove(name) {
11903
11918
  var len = this.tabs.length - 1;
@@ -11914,10 +11929,10 @@ var events = [function (tabs, index, that) {
11914
11929
  }
11915
11930
  },
11916
11931
 
11917
- /**
11918
- * @desc:tabs鼠标右键事件
11919
- * @author huangbo
11920
- * @date 2024年9月7日
11932
+ /**
11933
+ * @desc:tabs鼠标右键事件
11934
+ * @author huangbo
11935
+ * @date 2024年9月7日
11921
11936
  **/
11922
11937
  handleContextmenu: function handleContextmenu(tabs, e) {
11923
11938
  var disabled = {};
@@ -11942,10 +11957,10 @@ var events = [function (tabs, index, that) {
11942
11957
  window.addEventListener('click', this.closeTabsEvents);
11943
11958
  },
11944
11959
 
11945
- /**
11946
- * @desc:tabs页签事件
11947
- * @author huangbo
11948
- * @date 2024年9月7日
11960
+ /**
11961
+ * @desc:tabs页签事件
11962
+ * @author huangbo
11963
+ * @date 2024年9月7日
11949
11964
  **/
11950
11965
  handleTabsEvents: function handleTabsEvents(num) {
11951
11966
  if (this.pane !== null) {
@@ -11963,10 +11978,10 @@ var events = [function (tabs, index, that) {
11963
11978
  window.removeEventListener('click', this.closeTabsEvents);
11964
11979
  },
11965
11980
 
11966
- /**
11967
- * @desc:handler工具栏点击事件
11968
- * @author huangbo
11969
- * @date 2024年9月7日
11981
+ /**
11982
+ * @desc:handler工具栏点击事件
11983
+ * @author huangbo
11984
+ * @date 2024年9月7日
11970
11985
  **/
11971
11986
  handleClick: function handleClick(res) {
11972
11987
  var type = res.type,
@@ -12044,10 +12059,10 @@ var events = [function (tabs, index, that) {
12044
12059
  this.$emit('handler-click', res);
12045
12060
  },
12046
12061
 
12047
- /**
12048
- * @desc:退出登录
12049
- * @author huangbo
12050
- * @date 2024年9月7日
12062
+ /**
12063
+ * @desc:退出登录
12064
+ * @author huangbo
12065
+ * @date 2024年9月7日
12051
12066
  **/
12052
12067
  handleQuit: function handleQuit() {
12053
12068
  var _this6 = this;
@@ -12074,7 +12089,7 @@ var events = [function (tabs, index, that) {
12074
12089
  document.body.appendChild(iframe);
12075
12090
  }
12076
12091
  }
12077
- util["a" /* default */].ajax({ method: 'post', url: api["gb" /* logout */] }).then(function (res) {
12092
+ util["a" /* default */].ajax({ method: 'post', url: api["jb" /* logout */] }).then(function (res) {
12078
12093
  if (res.rCode == 0) {
12079
12094
  util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
12080
12095
  if (_this6.onQuit && typeof _this6.onQuit === 'function') {
@@ -12122,10 +12137,10 @@ var events = [function (tabs, index, that) {
12122
12137
  }).catch(function (e) {});
12123
12138
  },
12124
12139
 
12125
- /**
12126
- * @desc:主题、消息回调
12127
- * @author huangbo
12128
- * @date 2024年9月7日
12140
+ /**
12141
+ * @desc:主题、消息回调
12142
+ * @author huangbo
12143
+ * @date 2024年9月7日
12129
12144
  **/
12130
12145
  handleChange: function handleChange(res) {
12131
12146
  var type = res.type,
@@ -12141,10 +12156,10 @@ var events = [function (tabs, index, that) {
12141
12156
  }
12142
12157
  },
12143
12158
 
12144
- /**
12145
- * @desc:菜单布局样式切换
12146
- * @author huangbo
12147
- * @date 2024年9月7日
12159
+ /**
12160
+ * @desc:菜单布局样式切换
12161
+ * @author huangbo
12162
+ * @date 2024年9月7日
12148
12163
  **/
12149
12164
  handleLayout: function handleLayout(res, active) {
12150
12165
  if (active) {
@@ -12153,10 +12168,10 @@ var events = [function (tabs, index, that) {
12153
12168
  this.$emit('chang-layout', res, active);
12154
12169
  },
12155
12170
 
12156
- /**
12157
- * @desc:消息修改总数
12158
- * @author huangbo
12159
- * @date 2024年9月7日
12171
+ /**
12172
+ * @desc:消息修改总数
12173
+ * @author huangbo
12174
+ * @date 2024年9月7日
12160
12175
  **/
12161
12176
  handleMenuTips: function handleMenuTips(id, num) {
12162
12177
  if (num) {
@@ -12167,10 +12182,10 @@ var events = [function (tabs, index, that) {
12167
12182
  }
12168
12183
  },
12169
12184
 
12170
- /**
12171
- * @desc:处理即时消息
12172
- * @author huangbo
12173
- * @date 2024年9月7日
12185
+ /**
12186
+ * @desc:处理即时消息
12187
+ * @author huangbo
12188
+ * @date 2024年9月7日
12174
12189
  **/
12175
12190
  handleOpened: function handleOpened(res) {
12176
12191
  var _this7 = this;
@@ -13130,7 +13145,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13130
13145
  var _this2 = this;
13131
13146
 
13132
13147
  util["a" /* default */].ajax({
13133
- url: api["cb" /* initUserSet */]
13148
+ url: api["fb" /* initUserSet */]
13134
13149
  }).then(function (res) {
13135
13150
  if (res.rCode === 0) {
13136
13151
  var results = JSON.parse(JSON.stringify(res.results));
@@ -13170,7 +13185,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13170
13185
  if (res.url) {
13171
13186
  url = res.url;
13172
13187
  } else {
13173
- url = api["r" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
13188
+ url = api["u" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
13174
13189
  }
13175
13190
  this.$emit('change', 'userHeadUrl', url);
13176
13191
  },
@@ -13179,7 +13194,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13179
13194
 
13180
13195
  switch (type) {
13181
13196
  case 'job':
13182
- util["a" /* default */].ajax({ url: api["zb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
13197
+ util["a" /* default */].ajax({ url: api["Eb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
13183
13198
  if (res.rCode == 0) {
13184
13199
  util["a" /* default */].setStorage({
13185
13200
  type: _this3.storage,
@@ -13220,7 +13235,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13220
13235
  var initLogin = util["a" /* default */].getStorage('initLogin');
13221
13236
  initLogin && (initLogin = JSON.parse(initLogin));
13222
13237
  util["a" /* default */].ajax({
13223
- url: api["hc" /* updateUserInfo */],
13238
+ url: api["mc" /* updateUserInfo */],
13224
13239
  params: {
13225
13240
  email: this.values.email,
13226
13241
  officeTel: this.values.officeTel,
@@ -13280,7 +13295,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13280
13295
  var notify = _this4.values.notify.sort().join(',');
13281
13296
  if (notify != _this4.notify.split(',').sort().join(',')) {
13282
13297
  util["a" /* default */].ajax({
13283
- url: api["gc" /* updateUserCustomInfo */],
13298
+ url: api["lc" /* updateUserCustomInfo */],
13284
13299
  params: {
13285
13300
  notify: notify
13286
13301
  }
@@ -13635,7 +13650,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13635
13650
  if (this.pageNum <= this.pageCount) {
13636
13651
  this.loading = true;
13637
13652
  util["a" /* default */].ajax({
13638
- url: api["Ab" /* sysMsgPage */],
13653
+ url: api["Fb" /* sysMsgPage */],
13639
13654
  params: {
13640
13655
  pageNum: reload ? 1 : this.pageNum,
13641
13656
  pageSize: this.pageSize
@@ -13668,7 +13683,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13668
13683
  var _this2 = this;
13669
13684
 
13670
13685
  util["a" /* default */].ajax({
13671
- url: api["Y" /* ignoreSysMsg */],
13686
+ url: api["bb" /* ignoreSysMsg */],
13672
13687
  params: {
13673
13688
  id: res.id
13674
13689
  }
@@ -13688,7 +13703,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13688
13703
  var _this3 = this;
13689
13704
 
13690
13705
  util["a" /* default */].ajax({
13691
- url: api["X" /* ignoreAllSysMsg */]
13706
+ url: api["ab" /* ignoreAllSysMsg */]
13692
13707
  }).then(function (res) {
13693
13708
  _this3.count = 0;
13694
13709
  _this3.msgs = [];
@@ -14023,7 +14038,7 @@ noticevue_type_template_id_6c63684e_render._withStripped = true
14023
14038
  var _this = this;
14024
14039
 
14025
14040
  util["a" /* default */].ajax({
14026
- url: api["X" /* ignoreAllSysMsg */]
14041
+ url: api["ab" /* ignoreAllSysMsg */]
14027
14042
  }).then(function (res) {
14028
14043
  _this.count = 0;
14029
14044
  _this.msgs = [];
@@ -14523,7 +14538,7 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
14523
14538
  //获取用户信息的接口
14524
14539
  mainConfig: {
14525
14540
  type: String,
14526
- default: api["hb" /* mainConfig */]
14541
+ default: api["kb" /* mainConfig */]
14527
14542
  },
14528
14543
  iframeId: {
14529
14544
  type: String,
@@ -14632,9 +14647,9 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
14632
14647
  return this.menuUrl;
14633
14648
  }
14634
14649
  if (this.application) {
14635
- return api["D" /* getComplexApplicationsNew */];
14650
+ return api["G" /* getComplexApplicationsNew */];
14636
14651
  }
14637
- return api["C" /* getComplexApplications */];
14652
+ return api["F" /* getComplexApplications */];
14638
14653
  },
14639
14654
 
14640
14655
  //是否双列右侧菜单
@@ -14945,7 +14960,7 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
14945
14960
  return;
14946
14961
  }
14947
14962
  util["a" /* default */].ajax({
14948
- url: api["gc" /* updateUserCustomInfo */],
14963
+ url: api["lc" /* updateUserCustomInfo */],
14949
14964
  params: { color: escape(color.toLowerCase()) },
14950
14965
  data: { color: escape(color.toLowerCase()) }
14951
14966
  }).then(function (res) {
@@ -16149,8 +16164,8 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
16149
16164
  var _this11 = this;
16150
16165
 
16151
16166
  this.webSocket = util["a" /* default */].socket({
16152
- url: api["nc" /* wss */],
16153
- take: api["dc" /* topic */],
16167
+ url: api["sc" /* wss */],
16168
+ take: api["ic" /* topic */],
16154
16169
  success: function success(res) {
16155
16170
  var data = res.data || {};
16156
16171
  for (var i in data) {