eoss-ui 0.6.60 → 0.6.62

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 (265) hide show
  1. package/lib/button-group.js +118 -114
  2. package/lib/button.js +118 -114
  3. package/lib/checkbox-group.js +120 -116
  4. package/lib/config/api.js +3 -1
  5. package/lib/data-table-form.js +120 -116
  6. package/lib/data-table.js +123 -119
  7. package/lib/date-picker.js +118 -114
  8. package/lib/dialog.js +118 -114
  9. package/lib/eoss-ui.common.js +2085 -1334
  10. package/lib/flow-group.js +118 -114
  11. package/lib/flow-list.js +246 -208
  12. package/lib/flow.js +1712 -995
  13. package/lib/form.js +120 -116
  14. package/lib/handle-user.js +119 -115
  15. package/lib/handler.js +119 -115
  16. package/lib/icon.js +119 -115
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +118 -114
  19. package/lib/input.js +118 -114
  20. package/lib/login.js +131 -127
  21. package/lib/main.js +285 -281
  22. package/lib/nav.js +118 -114
  23. package/lib/notify.js +121 -117
  24. package/lib/page.js +118 -114
  25. package/lib/pagination.js +118 -114
  26. package/lib/player.js +118 -114
  27. package/lib/qr-code.js +131 -127
  28. package/lib/radio-group.js +120 -116
  29. package/lib/retrial-auth.js +121 -117
  30. package/lib/select-ganged.js +120 -116
  31. package/lib/select.js +120 -116
  32. package/lib/selector-panel.js +136 -132
  33. package/lib/selector.js +119 -115
  34. package/lib/sizer.js +120 -116
  35. package/lib/steps.js +118 -114
  36. package/lib/switch.js +118 -114
  37. package/lib/table-form.js +118 -114
  38. package/lib/tabs.js +118 -114
  39. package/lib/tips.js +119 -115
  40. package/lib/tree-group.js +118 -114
  41. package/lib/tree.js +119 -115
  42. package/lib/upload.js +130 -126
  43. package/lib/wujie.js +118 -114
  44. package/lib/wxlogin.js +118 -114
  45. package/package.json +159 -159
  46. package/packages/button/index.js +5 -5
  47. package/packages/button/src/main.vue +418 -418
  48. package/packages/button-group/index.js +5 -5
  49. package/packages/button-group/src/main.vue +298 -298
  50. package/packages/calendar/index.js +5 -5
  51. package/packages/card/index.js +5 -5
  52. package/packages/card/src/main.vue +156 -156
  53. package/packages/cascader/index.js +5 -5
  54. package/packages/cascader/src/main.vue +168 -168
  55. package/packages/checkbox-group/index.js +5 -5
  56. package/packages/checkbox-group/src/main.vue +333 -333
  57. package/packages/clients/index.js +5 -5
  58. package/packages/clients/src/main.vue +151 -151
  59. package/packages/data-table/index.js +5 -5
  60. package/packages/data-table/src/children.vue +39 -39
  61. package/packages/data-table/src/column.vue +989 -989
  62. package/packages/data-table/src/main.vue +1822 -1822
  63. package/packages/data-table/src/sizer.vue +195 -195
  64. package/packages/data-table-form/index.js +5 -5
  65. package/packages/data-table-form/src/checkbox.vue +101 -101
  66. package/packages/data-table-form/src/colgroup.vue +17 -17
  67. package/packages/data-table-form/src/main.vue +181 -181
  68. package/packages/data-table-form/src/radio.vue +65 -65
  69. package/packages/data-table-form/src/table.vue +233 -233
  70. package/packages/data-table-form/src/tbody.vue +336 -336
  71. package/packages/data-table-form/src/thead.vue +68 -68
  72. package/packages/date-picker/index.js +5 -5
  73. package/packages/date-picker/src/main.vue +236 -236
  74. package/packages/dialog/index.js +5 -5
  75. package/packages/enable-drag/index.js +5 -5
  76. package/packages/enterprise/index.js +5 -5
  77. package/packages/enterprise/src/main.vue +66 -66
  78. package/packages/error-page/index.js +5 -5
  79. package/packages/error-page/src/main.vue +44 -44
  80. package/packages/flow/index.js +5 -5
  81. package/packages/flow/src/component/Circulate.vue +322 -0
  82. package/packages/flow/src/component/CommonOpinions.vue +346 -345
  83. package/packages/flow/src/component/CustomPreset.vue +322 -322
  84. package/packages/flow/src/component/FileList.vue +99 -99
  85. package/packages/flow/src/component/Preset.vue +255 -255
  86. package/packages/flow/src/component/SendMsg.vue +241 -229
  87. package/packages/flow/src/component/TimeLimit.vue +190 -190
  88. package/packages/flow/src/component/taskUnionExamine.vue +619 -611
  89. package/packages/flow/src/form.vue +121 -121
  90. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  91. package/packages/flow/src/main.vue +3275 -3175
  92. package/packages/flow/src/processForm.vue +1091 -1087
  93. package/packages/flow/src/processReject.vue +294 -293
  94. package/packages/flow/src/reset.vue +900 -900
  95. package/packages/flow/src/startTaskRead.vue +659 -646
  96. package/packages/flow/src/supervise.vue +149 -144
  97. package/packages/flow/src/table.vue +58 -58
  98. package/packages/flow-group/index.js +5 -5
  99. package/packages/flow-group/src/main.vue +688 -688
  100. package/packages/flow-list/index.js +5 -5
  101. package/packages/flow-list/src/main.vue +1718 -1691
  102. package/packages/form/index.js +5 -5
  103. package/packages/form/src/main.vue +3583 -3583
  104. package/packages/form/src/table.vue +1426 -1426
  105. package/packages/handle-user/index.js +5 -5
  106. package/packages/handle-user/src/main.vue +138 -138
  107. package/packages/handler/index.js +5 -5
  108. package/packages/handler/src/main.vue +493 -493
  109. package/packages/icon/index.js +5 -5
  110. package/packages/icon/src/main.vue +101 -101
  111. package/packages/icons/index.js +5 -5
  112. package/packages/icons/src/main.vue +81 -81
  113. package/packages/input/index.js +5 -5
  114. package/packages/input/src/main.vue +356 -356
  115. package/packages/input-number/index.js +5 -5
  116. package/packages/input-number/src/main.vue +106 -106
  117. package/packages/label/index.js +5 -5
  118. package/packages/label/src/main.vue +457 -457
  119. package/packages/layout/index.js +5 -5
  120. package/packages/layout/src/item.vue +152 -152
  121. package/packages/layout/src/main.vue +31 -31
  122. package/packages/login/index.js +5 -5
  123. package/packages/login/src/main.vue +1942 -1942
  124. package/packages/login/src/resetPassword.vue +562 -562
  125. package/packages/main/index.js +5 -5
  126. package/packages/main/src/default/message.vue +249 -249
  127. package/packages/main/src/default/notice.vue +157 -157
  128. package/packages/main/src/default/userinfo.vue +503 -503
  129. package/packages/main/src/public/online.vue +89 -89
  130. package/packages/main/src/public/search.vue +462 -462
  131. package/packages/main/src/public/settings.vue +221 -221
  132. package/packages/main/src/simplicity/apps.vue +388 -388
  133. package/packages/main/src/simplicity/avatar.vue +82 -82
  134. package/packages/main/src/simplicity/handler.vue +259 -259
  135. package/packages/main/src/simplicity/index.vue +2086 -2086
  136. package/packages/main/src/simplicity/lists.vue +84 -84
  137. package/packages/main/src/simplicity/menu-list.vue +135 -135
  138. package/packages/main/src/simplicity/message.vue +259 -259
  139. package/packages/main/src/simplicity/notice.vue +190 -190
  140. package/packages/main/src/simplicity/router-page.vue +45 -45
  141. package/packages/main/src/simplicity/sub-menu.vue +264 -264
  142. package/packages/main/src/simplicity/user.vue +257 -257
  143. package/packages/main/src/simplicity/userinfo.vue +312 -312
  144. package/packages/menu/index.js +5 -5
  145. package/packages/menu/src/main.vue +584 -584
  146. package/packages/nav/index.js +5 -5
  147. package/packages/nav/src/main.vue +351 -351
  148. package/packages/notify/index.js +5 -5
  149. package/packages/notify/src/main.vue +538 -538
  150. package/packages/page/index.js +5 -5
  151. package/packages/page/src/main.vue +167 -167
  152. package/packages/pagination/index.js +5 -5
  153. package/packages/pagination/src/main.vue +96 -96
  154. package/packages/player/index.js +5 -5
  155. package/packages/player/src/main.vue +194 -194
  156. package/packages/qr-code/index.js +5 -5
  157. package/packages/qr-code/src/main.vue +170 -170
  158. package/packages/radio-group/index.js +6 -6
  159. package/packages/radio-group/src/main.vue +319 -319
  160. package/packages/retrial-auth/index.js +5 -5
  161. package/packages/retrial-auth/src/main.vue +280 -280
  162. package/packages/select/index.js +5 -5
  163. package/packages/select/src/main.vue +778 -778
  164. package/packages/select-ganged/index.js +5 -5
  165. package/packages/select-ganged/src/main.vue +724 -724
  166. package/packages/selector/index.js +5 -5
  167. package/packages/selector/src/main.vue +687 -687
  168. package/packages/selector-panel/index.js +5 -5
  169. package/packages/selector-panel/src/main.vue +1027 -1027
  170. package/packages/selector-panel/src/selection.vue +177 -177
  171. package/packages/selector-panel/src/tree.vue +129 -129
  172. package/packages/sizer/index.js +5 -5
  173. package/packages/sizer/src/main.vue +254 -254
  174. package/packages/steps/index.js +5 -5
  175. package/packages/steps/src/main.vue +181 -181
  176. package/packages/switch/index.js +5 -5
  177. package/packages/switch/src/main.vue +154 -154
  178. package/packages/table-form/index.js +5 -5
  179. package/packages/tabs/index.js +5 -5
  180. package/packages/tabs/src/main.vue +788 -788
  181. package/packages/tabs-panel/index.js +5 -5
  182. package/packages/tabs-panel/src/main.vue +29 -29
  183. package/packages/theme-chalk/src/base.scss +260 -260
  184. package/packages/theme-chalk/src/button-group.scss +176 -176
  185. package/packages/theme-chalk/src/button.scss +24 -24
  186. package/packages/theme-chalk/src/calendar.scss +113 -113
  187. package/packages/theme-chalk/src/card.scss +99 -99
  188. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  189. package/packages/theme-chalk/src/clients.scss +87 -87
  190. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  191. package/packages/theme-chalk/src/data-table.scss +293 -293
  192. package/packages/theme-chalk/src/date-picker.scss +7 -7
  193. package/packages/theme-chalk/src/dialog.scss +77 -77
  194. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  195. package/packages/theme-chalk/src/enterprise.scss +5 -5
  196. package/packages/theme-chalk/src/error-page.scss +18 -18
  197. package/packages/theme-chalk/src/flow-group.scss +110 -110
  198. package/packages/theme-chalk/src/flow-list.scss +39 -39
  199. package/packages/theme-chalk/src/flow.scss +343 -343
  200. package/packages/theme-chalk/src/form.scss +496 -496
  201. package/packages/theme-chalk/src/handle-user.scss +40 -40
  202. package/packages/theme-chalk/src/handler.scss +143 -143
  203. package/packages/theme-chalk/src/icon.scss +1792 -1792
  204. package/packages/theme-chalk/src/icons.scss +99 -99
  205. package/packages/theme-chalk/src/input.scss +9 -9
  206. package/packages/theme-chalk/src/label.scss +24 -24
  207. package/packages/theme-chalk/src/layout.scss +46 -46
  208. package/packages/theme-chalk/src/login.scss +969 -969
  209. package/packages/theme-chalk/src/main.scss +663 -663
  210. package/packages/theme-chalk/src/menu.scss +222 -222
  211. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  212. package/packages/theme-chalk/src/nav.scss +111 -111
  213. package/packages/theme-chalk/src/page.scss +3 -3
  214. package/packages/theme-chalk/src/pagination.scss +29 -29
  215. package/packages/theme-chalk/src/player.scss +9 -9
  216. package/packages/theme-chalk/src/qr-code.scss +17 -17
  217. package/packages/theme-chalk/src/radio-group.scss +9 -9
  218. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  219. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  220. package/packages/theme-chalk/src/select.scss +8 -8
  221. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  222. package/packages/theme-chalk/src/selector.scss +91 -91
  223. package/packages/theme-chalk/src/simplicity.scss +1351 -1351
  224. package/packages/theme-chalk/src/sizer.scss +36 -36
  225. package/packages/theme-chalk/src/steps.scss +88 -88
  226. package/packages/theme-chalk/src/switch.scss +3 -3
  227. package/packages/theme-chalk/src/table-form.scss +1 -1
  228. package/packages/theme-chalk/src/tabs.scss +87 -87
  229. package/packages/theme-chalk/src/tips.scss +7 -7
  230. package/packages/theme-chalk/src/toolbar.scss +179 -179
  231. package/packages/theme-chalk/src/tree-group.scss +72 -72
  232. package/packages/theme-chalk/src/tree.scss +165 -165
  233. package/packages/theme-chalk/src/upload.scss +168 -168
  234. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  235. package/packages/tips/index.js +5 -5
  236. package/packages/tips/src/main.vue +141 -141
  237. package/packages/toolbar/index.js +5 -5
  238. package/packages/toolbar/src/main.vue +430 -430
  239. package/packages/tree/index.js +5 -5
  240. package/packages/tree-group/index.js +5 -5
  241. package/packages/upload/index.js +5 -5
  242. package/packages/upload/src/main.vue +1347 -1347
  243. package/packages/upload/src/picture.js +15 -15
  244. package/packages/wujie/index.js +5 -5
  245. package/packages/wujie/src/main.vue +145 -145
  246. package/packages/wxlogin/index.js +5 -5
  247. package/packages/wxlogin/src/main.vue +128 -128
  248. package/src/config/api.js +290 -286
  249. package/src/config/image.js +2 -2
  250. package/src/index.js +160 -160
  251. package/src/utils/bus.js +3 -3
  252. package/src/utils/date-util.js +312 -312
  253. package/src/utils/http.js +50 -50
  254. package/src/utils/rules.js +18 -18
  255. package/src/utils/store.js +21 -21
  256. package/src/utils/webSocket.js +107 -107
  257. package/packages/.DS_Store +0 -0
  258. package/packages/autocomplete/.DS_Store +0 -0
  259. package/packages/menu/.DS_Store +0 -0
  260. package/packages/scrollbar/.DS_Store +0 -0
  261. package/packages/select/.DS_Store +0 -0
  262. package/packages/theme-chalk/src/.DS_Store +0 -0
  263. package/packages/upload/.DS_Store +0 -0
  264. package/src/.DS_Store +0 -0
  265. package/src/utils/.DS_Store +0 -0
package/lib/main.js CHANGED
@@ -1601,7 +1601,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1601
1601
  * @param {function} callback - 回调函数
1602
1602
  **/
1603
1603
  var getMainConfig = function getMainConfig(callback) {
1604
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "lb"] }).then(function (res) {
1604
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "nb"] }).then(function (res) {
1605
1605
  if (res && res.rCode === 0) {
1606
1606
  callback(res.results);
1607
1607
  }
@@ -2358,7 +2358,7 @@ var isLogined = function () {
2358
2358
  break;
2359
2359
  }
2360
2360
 
2361
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "kb"] }).then(function (res) {
2361
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "mb"] }).then(function (res) {
2362
2362
  if (res.rCode === 0) {
2363
2363
  removeStorage();
2364
2364
  }
@@ -3510,149 +3510,151 @@ var watermark = function watermark(option) {
3510
3510
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3511
3511
 
3512
3512
  "use strict";
3513
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3514
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3515
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3516
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return logout; });
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initLogin; });
3518
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return switchUserTo; });
3513
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return logout; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initLogin; });
3518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return switchUserTo; });
3519
3519
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getLoginCode; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getLoginCode; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3522
3522
  /* unused harmony export updateCode */
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getModifyPassCode; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getModifyPassCode; });
3524
3524
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginModifyPassword; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return loginModifyPassword; });
3526
3526
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initModifyPassword; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getTwoFactorLoginCode; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initRetrialAuth; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getRetrialAuthCode; });
3533
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return scanCodeRetrialAuth; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initModifyPassword; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getTwoFactorLoginCode; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initRetrialAuth; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getRetrialAuthCode; });
3533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return scanCodeRetrialAuth; });
3534
3534
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3535
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return userOnline; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getUserAppWithTag; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return recordUserApp; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return mainConfig; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initUserSet; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateUserInfo; });
3535
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return userOnline; });
3537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getUserAppWithTag; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return recordUserApp; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return mainConfig; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initUserSet; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserInfo; });
3542
3542
  /* unused harmony export getUserImgUrl */
3543
3543
  /* unused harmony export getDoorIndex */
3544
3544
  /* unused harmony export refreshOnlineUsers */
3545
3545
  /* unused harmony export getQuickMenuIds */
3546
3546
  /* unused harmony export getApplicationIdArray */
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplications; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplicationsNew; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplications; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplicationsNew; });
3549
3549
  /* unused harmony export getUserCustomInfo */
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return updateUserCustomInfo; });
3551
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sysMsgPage; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return ignoreSysMsg; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreAllSysMsg; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return searchType; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctProperties; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploads; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploadOnlyOne; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctFileInfos; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadSort; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadDownloads; });
3562
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunct2; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunctOffice; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateUserCustomInfo; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sysMsgPage; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreSysMsg; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return ignoreAllSysMsg; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return searchType; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctProperties; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploads; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadOnlyOne; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctFileInfos; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadSort; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadDownloads; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunct; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct2; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunctOffice; });
3565
3565
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3566
3566
  /* unused harmony export upload_updateClassify */
3567
3567
  /* unused harmony export getDeleteAdjunctFileInfos */
3568
3568
  /* unused harmony export getPictureBase64 */
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectorOrgTree; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgDetail; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getOrgMainTree; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectOrgsubids; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getDictList; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getSelectorOrgTree; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getSelectorOrgDetail; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getOrgMainTree; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectOrgsubids; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCode; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getDictList; });
3575
3575
  /* unused harmony export findUserBaseInfo */
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return gethelpdoc; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return gethelpdoc; });
3577
3577
  /* unused harmony export getCurrentuser */
3578
3578
  /* unused harmony export mainDetail */
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartFlow; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return tempSave; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartFlow; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return tempSave; });
3581
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3582
3582
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return saveCommonOpinion; });
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateCommonOpinion; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return saveCommonOpinion; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateCommonOpinion; });
3586
3586
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getProcessDefList; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNodeInfo; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNotificationMsg; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getHandleInfoHtml; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskHandleHtml; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getProcessDefList; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNodeInfo; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findCodeValues; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysParam; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCodes; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getNotificationMsg; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getHandleInfoHtml; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskHandleHtml; });
3595
3595
  /* unused harmony export getView */
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return register; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryList; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskRejectHtml; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskRejectHtml; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toStartTaskRead; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartTaskReadIndex; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskReadHtml; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return rejectAndEnd; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toSendMsg; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendMsg; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return handleInfo; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return loginUserInfo; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return wss; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return topic; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetCustomInfo; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getPresetNodeInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskTransferIndex; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskTransfer; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toPresetInfoListIndex; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return register; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryList; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskRejectHtml; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskRejectHtml; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartTaskRead; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskReadIndex; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskReadHtml; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return rejectAndEnd; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toSendMsg; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendMsg; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowHtml; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return handleInfo; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginUserInfo; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return wss; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return topic; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getPresetCustomInfo; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetNodeInfo; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTransferIndex; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTransfer; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toPresetInfoListIndex; });
3616
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3617
3617
  /* unused harmony export historyListJson */
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListJson; });
3619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pressListJson; });
3618
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryListJson; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pressListJson; });
3620
3620
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return isCanStartSubFlow; });
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskUnionExamine; });
3623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskUnionExamine; });
3624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskTakeAdvice; });
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskTakeAdvice; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskStartDraft; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskSupervise; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskSuperviseSub; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskStartDraft; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskReview; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReview; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskUnionSeal; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskUnionSeal; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTwoOfficesDispatch; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return twoOfficesDispatch; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toResetProcessIndex; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return resetProcess; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskContinuationIndex; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskContinuation; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getFreeStartFlowParams; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return isCanStartSubFlow; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskUnionExamine; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskUnionExamine; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskTakeAdvice; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskTakeAdvice; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskStartDraft; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskSupervise; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSuperviseSub; });
3629
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskStartDraft; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskReview; });
3631
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReview; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionSeal; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionSeal; });
3634
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTwoOfficesDispatch; });
3635
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return twoOfficesDispatch; });
3636
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toResetProcessIndex; });
3637
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return resetProcess; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskContinuationIndex; });
3639
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskContinuation; });
3640
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getFreeStartFlowParams; });
3641
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return freeStartFlowWithSubmitTask; });
3642
3642
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryListWithCircularReadJson; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return fyListJson; });
3643
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListWithCircularReadJson; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return fyListJson; });
3645
3645
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReadWithDraw; });
3647
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadWithDraw; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3648
3648
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3649
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendList; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendInfo; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendList; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendInfo; });
3651
3651
  /* unused harmony export sendSave */
3652
3652
  /* unused harmony export sendUpdate */
3653
3653
  /* unused harmony export sendDelete */
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendBatch; });
3655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendBatch; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return formContents; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfoForStart; });
3656
3658
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3657
3659
  // 登录
3658
3660
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3907,6 +3909,8 @@ var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
3907
3909
  // 表单结构
3908
3910
 
3909
3911
  var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
3912
+ var directStartTaskCircularRead = '/bpm/bpmBackend/directStartTaskCircularRead';
3913
+ var getNodeInfoForStart = '/bpm/task/taskHandle/getNodeInfoForStart.dhtml';
3910
3914
 
3911
3915
  /***/ }),
3912
3916
  /* 2 */
@@ -5171,7 +5175,7 @@ var api = __webpack_require__(1);
5171
5175
  if (res.url && util["a" /* default */].startWith(res.url, ['http', 'https', '/'])) {
5172
5176
  this.userHead = res.url;
5173
5177
  } else {
5174
- this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["u" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
5178
+ this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["v" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
5175
5179
  }
5176
5180
  this.$emit('change', this.userHead);
5177
5181
  }
@@ -7117,7 +7121,7 @@ var external_throttle_debounce_ = __webpack_require__(13);
7117
7121
  },
7118
7122
  handleClick: function handleClick(res) {
7119
7123
  util["a" /* default */].ajax({
7120
- url: api["tb" /* recordUserApp */],
7124
+ url: api["vb" /* recordUserApp */],
7121
7125
  params: {
7122
7126
  userId: this.user.userId,
7123
7127
  appId: res.id
@@ -7126,10 +7130,10 @@ var external_throttle_debounce_ = __webpack_require__(13);
7126
7130
  this.$emit('click', res);
7127
7131
  },
7128
7132
 
7129
- /**
7130
- * @desc:获取气泡提醒
7131
- * @author huangbo
7132
- * @date 2024年9月7日
7133
+ /**
7134
+ * @desc:获取气泡提醒
7135
+ * @author huangbo
7136
+ * @date 2024年9月7日
7133
7137
  **/
7134
7138
  getBadge: function getBadge(res) {
7135
7139
  var num = res.tips || 0;
@@ -7529,7 +7533,7 @@ userinfovue_type_template_id_1c52f6d2_render._withStripped = true
7529
7533
  var initLogin = util["a" /* default */].getStorage('initLogin');
7530
7534
  initLogin && (initLogin = JSON.parse(initLogin));
7531
7535
  util["a" /* default */].ajax({
7532
- url: api["oc" /* updateUserInfo */],
7536
+ url: api["qc" /* updateUserInfo */],
7533
7537
  params: {
7534
7538
  email: this.model.email,
7535
7539
  officeTel: this.model.officeTel,
@@ -7765,7 +7769,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7765
7769
  var _this2 = this;
7766
7770
 
7767
7771
  util["a" /* default */].ajax({
7768
- url: api["gb" /* initUserSet */]
7772
+ url: api["ib" /* initUserSet */]
7769
7773
  }).then(function (res) {
7770
7774
  if (res.rCode === 0) {
7771
7775
  var results = JSON.parse(JSON.stringify(res.results));
@@ -7806,7 +7810,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7806
7810
  var notify = this.checked.join(',');
7807
7811
  util["a" /* default */].ajax({
7808
7812
  method: 'post',
7809
- url: api["nc" /* updateUserCustomInfo */],
7813
+ url: api["pc" /* updateUserCustomInfo */],
7810
7814
  data: {
7811
7815
  notify: notify
7812
7816
  }
@@ -7836,7 +7840,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
7836
7840
  if (this.user.identityId !== res.id) {
7837
7841
  util["a" /* default */].ajax({
7838
7842
  method: 'post',
7839
- url: api["Fb" /* switchUserTo */],
7843
+ url: api["Hb" /* switchUserTo */],
7840
7844
  data: { userId: res.value }
7841
7845
  }).then(function (res) {
7842
7846
  if (res.rCode == 0) {
@@ -8228,7 +8232,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8228
8232
  if (this.pageNum <= this.pageCount) {
8229
8233
  this.loading = true;
8230
8234
  util["a" /* default */].ajax({
8231
- url: api["Gb" /* sysMsgPage */],
8235
+ url: api["Ib" /* sysMsgPage */],
8232
8236
  params: {
8233
8237
  pageNum: reload ? 1 : this.pageNum,
8234
8238
  pageSize: this.pageSize
@@ -8261,7 +8265,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8261
8265
  var _this2 = this;
8262
8266
 
8263
8267
  util["a" /* default */].ajax({
8264
- url: api["cb" /* ignoreSysMsg */],
8268
+ url: api["eb" /* ignoreSysMsg */],
8265
8269
  params: {
8266
8270
  id: res.id
8267
8271
  }
@@ -8281,7 +8285,7 @@ messagevue_type_template_id_324b2ecc_render._withStripped = true
8281
8285
  var _this3 = this;
8282
8286
 
8283
8287
  util["a" /* default */].ajax({
8284
- url: api["bb" /* ignoreAllSysMsg */]
8288
+ url: api["db" /* ignoreAllSysMsg */]
8285
8289
  }).then(function (res) {
8286
8290
  _this3.count = 0;
8287
8291
  _this3.msgs = [];
@@ -8641,7 +8645,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
8641
8645
  var _this = this;
8642
8646
 
8643
8647
  util["a" /* default */].ajax({
8644
- url: api["cb" /* ignoreSysMsg */],
8648
+ url: api["eb" /* ignoreSysMsg */],
8645
8649
  params: {
8646
8650
  id: res.id
8647
8651
  }
@@ -8660,7 +8664,7 @@ noticevue_type_template_id_4696772e_render._withStripped = true
8660
8664
  var _this2 = this;
8661
8665
 
8662
8666
  util["a" /* default */].ajax({
8663
- url: api["bb" /* ignoreAllSysMsg */]
8667
+ url: api["db" /* ignoreAllSysMsg */]
8664
8668
  }).then(function (res) {
8665
8669
  _this2.msgs = [];
8666
8670
  _this2.$emit('ignore', { type: 'ignore', value: 'all' });
@@ -9446,7 +9450,7 @@ onlinevue_type_template_id_63844b4e_scoped_true_render._withStripped = true
9446
9450
  props: {
9447
9451
  sysuseronline: {
9448
9452
  type: String,
9449
- default: api["tc" /* userOnline */]
9453
+ default: api["vc" /* userOnline */]
9450
9454
  }
9451
9455
  },
9452
9456
  data: function data() {
@@ -10119,7 +10123,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
10119
10123
  },
10120
10124
  searchType: {
10121
10125
  type: String,
10122
- default: api["zb" /* searchType */]
10126
+ default: api["Bb" /* searchType */]
10123
10127
  },
10124
10128
  pageSize: {
10125
10129
  type: Number,
@@ -10906,7 +10910,7 @@ var events = [function (tabs, index, that) {
10906
10910
  //应用列表接口
10907
10911
  appsUrl: {
10908
10912
  type: String,
10909
- default: api["Y" /* getUserAppWithTag */]
10913
+ default: api["ab" /* getUserAppWithTag */]
10910
10914
  },
10911
10915
  //是否启用子应用菜单接口
10912
10916
  application: {
@@ -11083,9 +11087,9 @@ var events = [function (tabs, index, that) {
11083
11087
  return this.menuUrl;
11084
11088
  }
11085
11089
  if (this.application) {
11086
- return api["H" /* getComplexApplicationsNew */];
11090
+ return api["I" /* getComplexApplicationsNew */];
11087
11091
  }
11088
- return api["G" /* getComplexApplications */];
11092
+ return api["H" /* getComplexApplications */];
11089
11093
  },
11090
11094
 
11091
11095
  //人工智能配置
@@ -11153,10 +11157,10 @@ var events = [function (tabs, index, that) {
11153
11157
  },
11154
11158
 
11155
11159
  methods: {
11156
- /**
11157
- * @desc:匹配路由
11158
- * @author huangbo
11159
- * @date 2024年9月7日
11160
+ /**
11161
+ * @desc:匹配路由
11162
+ * @author huangbo
11163
+ * @date 2024年9月7日
11160
11164
  **/
11161
11165
  hasRouter: function hasRouter(res, url, code) {
11162
11166
  if (!url) {
@@ -11200,10 +11204,10 @@ var events = [function (tabs, index, that) {
11200
11204
  return false;
11201
11205
  },
11202
11206
 
11203
- /**
11204
- * @desc:获取初始数据
11205
- * @author huangbo
11206
- * @date 2024年9月7日
11207
+ /**
11208
+ * @desc:获取初始数据
11209
+ * @author huangbo
11210
+ * @date 2024年9月7日
11207
11211
  **/
11208
11212
  init: function init(results, first) {
11209
11213
  this.setConfig(results);
@@ -11212,10 +11216,10 @@ var events = [function (tabs, index, that) {
11212
11216
  }
11213
11217
  },
11214
11218
 
11215
- /**
11216
- * @desc:设置用户配置及信息
11217
- * @author huangbo
11218
- * @date 2024年9月7日
11219
+ /**
11220
+ * @desc:设置用户配置及信息
11221
+ * @author huangbo
11222
+ * @date 2024年9月7日
11219
11223
  **/
11220
11224
  setConfig: function setConfig(results) {
11221
11225
  localStorage.setItem('mainConfig', JSON.stringify(results));
@@ -11345,10 +11349,10 @@ var events = [function (tabs, index, that) {
11345
11349
  }
11346
11350
  },
11347
11351
 
11348
- /**
11349
- * @desc:获取所有应用
11350
- * @author huangbo
11351
- * @date 2024年9月7日
11352
+ /**
11353
+ * @desc:获取所有应用
11354
+ * @author huangbo
11355
+ * @date 2024年9月7日
11352
11356
  **/
11353
11357
  getApplications: function getApplications() {
11354
11358
  var _this = this;
@@ -11396,10 +11400,10 @@ var events = [function (tabs, index, that) {
11396
11400
  });
11397
11401
  },
11398
11402
 
11399
- /**
11400
- * @desc:获取菜单列表
11401
- * @author huangbo
11402
- * @date 2024年9月7日
11403
+ /**
11404
+ * @desc:获取菜单列表
11405
+ * @author huangbo
11406
+ * @date 2024年9月7日
11403
11407
  **/
11404
11408
  getMenus: function getMenus(loading) {
11405
11409
  var _this2 = this;
@@ -11432,10 +11436,10 @@ var events = [function (tabs, index, that) {
11432
11436
  });
11433
11437
  },
11434
11438
 
11435
- /**
11436
- * @desc:处理菜单列表
11437
- * @author huangbo
11438
- * @date 2024年9月7日
11439
+ /**
11440
+ * @desc:处理菜单列表
11441
+ * @author huangbo
11442
+ * @date 2024年9月7日
11439
11443
  **/
11440
11444
  renderMenus: function renderMenus(res) {
11441
11445
  this.menus = res;
@@ -11525,10 +11529,10 @@ var events = [function (tabs, index, that) {
11525
11529
  }
11526
11530
  },
11527
11531
 
11528
- /**
11529
- * @desc:设置页面加载类型
11530
- * @author huangbo
11531
- * @date 2024年9月7日
11532
+ /**
11533
+ * @desc:设置页面加载类型
11534
+ * @author huangbo
11535
+ * @date 2024年9月7日
11532
11536
  **/
11533
11537
  setIframeType: function setIframeType(res) {
11534
11538
  var url = res.url;
@@ -11584,10 +11588,10 @@ var events = [function (tabs, index, that) {
11584
11588
  return res;
11585
11589
  },
11586
11590
 
11587
- /**
11588
- * @desc:获取菜单
11589
- * @author huangbo
11590
- * @date 2024年9月7日
11591
+ /**
11592
+ * @desc:获取菜单
11593
+ * @author huangbo
11594
+ * @date 2024年9月7日
11591
11595
  **/
11592
11596
  getMenu: function getMenu(menus, res, key) {
11593
11597
  if (Array.isArray(menus)) {
@@ -11616,10 +11620,10 @@ var events = [function (tabs, index, that) {
11616
11620
  return false;
11617
11621
  },
11618
11622
 
11619
- /**
11620
- * @desc:获取菜单第一条数据
11621
- * @author huangbo
11622
- * @date 2024年9月7日
11623
+ /**
11624
+ * @desc:获取菜单第一条数据
11625
+ * @author huangbo
11626
+ * @date 2024年9月7日
11623
11627
  **/
11624
11628
  getFirst: function getFirst(obj) {
11625
11629
  if (!obj) {
@@ -11638,10 +11642,10 @@ var events = [function (tabs, index, that) {
11638
11642
  }
11639
11643
  },
11640
11644
 
11641
- /**
11642
- * @desc:遍历设置菜单气泡提醒
11643
- * @author huangbo
11644
- * @date 2024年9月7日
11645
+ /**
11646
+ * @desc:遍历设置菜单气泡提醒
11647
+ * @author huangbo
11648
+ * @date 2024年9月7日
11645
11649
  **/
11646
11650
  setTips: function setTips(obj) {
11647
11651
  var _this3 = this;
@@ -11704,10 +11708,10 @@ var events = [function (tabs, index, that) {
11704
11708
  }
11705
11709
  },
11706
11710
 
11707
- /**
11708
- * @desc:获取气泡提醒
11709
- * @author huangbo
11710
- * @date 2024年9月7日
11711
+ /**
11712
+ * @desc:获取气泡提醒
11713
+ * @author huangbo
11714
+ * @date 2024年9月7日
11711
11715
  **/
11712
11716
  getBadge: function getBadge(res) {
11713
11717
  var num = res.tips || 0;
@@ -11721,17 +11725,17 @@ var events = [function (tabs, index, that) {
11721
11725
  };
11722
11726
  },
11723
11727
 
11724
- /**
11725
- * @desc:开启weosocket
11726
- * @author huangbo
11727
- * @date 2024年9月7日
11728
+ /**
11729
+ * @desc:开启weosocket
11730
+ * @author huangbo
11731
+ * @date 2024年9月7日
11728
11732
  **/
11729
11733
  initWebSocket: function initWebSocket() {
11730
11734
  var _this5 = this;
11731
11735
 
11732
11736
  this.webSocket = util["a" /* default */].socket({
11733
- url: api["uc" /* wss */],
11734
- take: api["kc" /* topic */],
11737
+ url: api["wc" /* wss */],
11738
+ take: api["mc" /* topic */],
11735
11739
  success: function success(res) {
11736
11740
  var data = res.data || {};
11737
11741
  for (var i in data) {
@@ -11772,10 +11776,10 @@ var events = [function (tabs, index, that) {
11772
11776
  });
11773
11777
  },
11774
11778
 
11775
- /**
11776
- * @desc:显示用户信息
11777
- * @author huangbo
11778
- * @date 2024年9月7日
11779
+ /**
11780
+ * @desc:显示用户信息
11781
+ * @author huangbo
11782
+ * @date 2024年9月7日
11779
11783
  **/
11780
11784
  showUserInfo: function showUserInfo() {
11781
11785
  if (this.showUser === false) {
@@ -11783,19 +11787,19 @@ var events = [function (tabs, index, that) {
11783
11787
  }
11784
11788
  },
11785
11789
 
11786
- /**
11787
- * @desc:删除更多应用菜单点击
11788
- * @author huangbo
11789
- * @date 2024年9月7日
11790
+ /**
11791
+ * @desc:删除更多应用菜单点击
11792
+ * @author huangbo
11793
+ * @date 2024年9月7日
11790
11794
  **/
11791
11795
  handleDelete: function handleDelete(index) {
11792
11796
  this.newApps.splice(index, 1);
11793
11797
  },
11794
11798
 
11795
- /**
11796
- * @desc:储存更多应用菜单点击
11797
- * @author huangbo
11798
- * @date 2024年9月7日
11799
+ /**
11800
+ * @desc:储存更多应用菜单点击
11801
+ * @author huangbo
11802
+ * @date 2024年9月7日
11799
11803
  **/
11800
11804
  handlerClickApps: function handlerClickApps(res) {
11801
11805
  if (res.permission === false) {
@@ -11808,10 +11812,10 @@ var events = [function (tabs, index, that) {
11808
11812
  this.handlerClickApp(res);
11809
11813
  },
11810
11814
 
11811
- /**
11812
- * @desc:侧边应用菜单点击
11813
- * @author huangbo
11814
- * @date 2024年9月7日
11815
+ /**
11816
+ * @desc:侧边应用菜单点击
11817
+ * @author huangbo
11818
+ * @date 2024年9月7日
11815
11819
  **/
11816
11820
  handlerClickApp: function handlerClickApp(res) {
11817
11821
  this.showMsg = false;
@@ -11898,10 +11902,10 @@ var events = [function (tabs, index, that) {
11898
11902
  }
11899
11903
  },
11900
11904
 
11901
- /**
11902
- * @desc:显示Drawer界面
11903
- * @author huangbo
11904
- * @date 2024年9月7日
11905
+ /**
11906
+ * @desc:显示Drawer界面
11907
+ * @author huangbo
11908
+ * @date 2024年9月7日
11905
11909
  **/
11906
11910
  handlerSetDrawer: function handlerSetDrawer(res, type) {
11907
11911
  var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
@@ -11921,23 +11925,23 @@ var events = [function (tabs, index, that) {
11921
11925
  }
11922
11926
  },
11923
11927
 
11924
- /**
11925
- * @desc:关闭Drawer界面
11926
- * @author huangbo
11927
- * @date 2024年9月7日
11928
+ /**
11929
+ * @desc:关闭Drawer界面
11930
+ * @author huangbo
11931
+ * @date 2024年9月7日
11928
11932
  **/
11929
11933
  handleCloseDrawer: function handleCloseDrawer() {
11930
11934
  this.drawer = { visible: false };
11931
11935
  },
11932
11936
 
11933
- /**
11934
- * @desc:菜单点击
11935
- * @author huangbo
11936
- * @date 2024年9月7日
11937
+ /**
11938
+ * @desc:菜单点击
11939
+ * @author huangbo
11940
+ * @date 2024年9月7日
11937
11941
  **/
11938
11942
  handlerClickMenu: function handlerClickMenu(res) {
11939
11943
  util["a" /* default */].ajax({
11940
- url: api["tb" /* recordUserApp */],
11944
+ url: api["vb" /* recordUserApp */],
11941
11945
  params: {
11942
11946
  userId: this.user.userId,
11943
11947
  appId: res.id
@@ -11982,19 +11986,19 @@ var events = [function (tabs, index, that) {
11982
11986
  },
11983
11987
 
11984
11988
 
11985
- /**
11986
- * @desc:用户详情请求成功
11987
- * @author huangbo
11988
- * @date 2024年9月7日
11989
+ /**
11990
+ * @desc:用户详情请求成功
11991
+ * @author huangbo
11992
+ * @date 2024年9月7日
11989
11993
  **/
11990
11994
  handleSuccess: function handleSuccess(res) {
11991
11995
  this.simpleUserInfo = res.simpleUserInfo;
11992
11996
  },
11993
11997
 
11994
- /**
11995
- * @desc:修改用户配置
11996
- * @author huangbo
11997
- * @date 2024年9月7日
11998
+ /**
11999
+ * @desc:修改用户配置
12000
+ * @author huangbo
12001
+ * @date 2024年9月7日
11998
12002
  **/
11999
12003
  handleChangeConfig: function handleChangeConfig(name, res) {
12000
12004
  if (name == 'userHeadUrl') {
@@ -12010,10 +12014,10 @@ var events = [function (tabs, index, that) {
12010
12014
  }
12011
12015
  },
12012
12016
 
12013
- /**
12014
- * @desc:关闭webSocket
12015
- * @author huangbo
12016
- * @date 2024年9月7日
12017
+ /**
12018
+ * @desc:关闭webSocket
12019
+ * @author huangbo
12020
+ * @date 2024年9月7日
12017
12021
  **/
12018
12022
  handlerClose: function handlerClose() {
12019
12023
  if (this.webSocket) {
@@ -12021,10 +12025,10 @@ var events = [function (tabs, index, that) {
12021
12025
  }
12022
12026
  },
12023
12027
 
12024
- /**
12025
- * @desc:刷新选中iframe页签
12026
- * @author huangbo
12027
- * @date 2024年9月7日
12028
+ /**
12029
+ * @desc:刷新选中iframe页签
12030
+ * @author huangbo
12031
+ * @date 2024年9月7日
12028
12032
  **/
12029
12033
  handleRefresh: function handleRefresh() {
12030
12034
  var i = util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
@@ -12045,10 +12049,10 @@ var events = [function (tabs, index, that) {
12045
12049
  }
12046
12050
  },
12047
12051
 
12048
- /**
12049
- * @desc:删除iframe
12050
- * @author huangbo
12051
- * @date 2024年9月7日
12052
+ /**
12053
+ * @desc:删除iframe
12054
+ * @author huangbo
12055
+ * @date 2024年9月7日
12052
12056
  **/
12053
12057
  handleRemove: function handleRemove(name) {
12054
12058
  var len = this.tabs.length - 1;
@@ -12065,10 +12069,10 @@ var events = [function (tabs, index, that) {
12065
12069
  }
12066
12070
  },
12067
12071
 
12068
- /**
12069
- * @desc:tabs鼠标右键事件
12070
- * @author huangbo
12071
- * @date 2024年9月7日
12072
+ /**
12073
+ * @desc:tabs鼠标右键事件
12074
+ * @author huangbo
12075
+ * @date 2024年9月7日
12072
12076
  **/
12073
12077
  handleContextmenu: function handleContextmenu(tabs, e) {
12074
12078
  var disabled = {};
@@ -12093,10 +12097,10 @@ var events = [function (tabs, index, that) {
12093
12097
  window.addEventListener('click', this.closeTabsEvents);
12094
12098
  },
12095
12099
 
12096
- /**
12097
- * @desc:tabs页签事件
12098
- * @author huangbo
12099
- * @date 2024年9月7日
12100
+ /**
12101
+ * @desc:tabs页签事件
12102
+ * @author huangbo
12103
+ * @date 2024年9月7日
12100
12104
  **/
12101
12105
  handleTabsEvents: function handleTabsEvents(num) {
12102
12106
  if (this.pane !== null) {
@@ -12114,10 +12118,10 @@ var events = [function (tabs, index, that) {
12114
12118
  window.removeEventListener('click', this.closeTabsEvents);
12115
12119
  },
12116
12120
 
12117
- /**
12118
- * @desc:handler工具栏点击事件
12119
- * @author huangbo
12120
- * @date 2024年9月7日
12121
+ /**
12122
+ * @desc:handler工具栏点击事件
12123
+ * @author huangbo
12124
+ * @date 2024年9月7日
12121
12125
  **/
12122
12126
  handleClick: function handleClick(res) {
12123
12127
  var type = res.type,
@@ -12195,10 +12199,10 @@ var events = [function (tabs, index, that) {
12195
12199
  this.$emit('handler-click', res);
12196
12200
  },
12197
12201
 
12198
- /**
12199
- * @desc:退出登录
12200
- * @author huangbo
12201
- * @date 2024年9月7日
12202
+ /**
12203
+ * @desc:退出登录
12204
+ * @author huangbo
12205
+ * @date 2024年9月7日
12202
12206
  **/
12203
12207
  handleQuit: function handleQuit() {
12204
12208
  var _this6 = this;
@@ -12225,7 +12229,7 @@ var events = [function (tabs, index, that) {
12225
12229
  document.body.appendChild(iframe);
12226
12230
  }
12227
12231
  }
12228
- util["a" /* default */].ajax({ method: 'post', url: api["kb" /* logout */] }).then(function (res) {
12232
+ util["a" /* default */].ajax({ method: 'post', url: api["mb" /* logout */] }).then(function (res) {
12229
12233
  if (res.rCode == 0) {
12230
12234
  util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
12231
12235
  if (_this6.onQuit && typeof _this6.onQuit === 'function') {
@@ -12273,10 +12277,10 @@ var events = [function (tabs, index, that) {
12273
12277
  }).catch(function (e) {});
12274
12278
  },
12275
12279
 
12276
- /**
12277
- * @desc:主题、消息回调
12278
- * @author huangbo
12279
- * @date 2024年9月7日
12280
+ /**
12281
+ * @desc:主题、消息回调
12282
+ * @author huangbo
12283
+ * @date 2024年9月7日
12280
12284
  **/
12281
12285
  handleChange: function handleChange(res) {
12282
12286
  var type = res.type,
@@ -12292,10 +12296,10 @@ var events = [function (tabs, index, that) {
12292
12296
  }
12293
12297
  },
12294
12298
 
12295
- /**
12296
- * @desc:菜单布局样式切换
12297
- * @author huangbo
12298
- * @date 2024年9月7日
12299
+ /**
12300
+ * @desc:菜单布局样式切换
12301
+ * @author huangbo
12302
+ * @date 2024年9月7日
12299
12303
  **/
12300
12304
  handleLayout: function handleLayout(res, active) {
12301
12305
  if (active) {
@@ -12304,10 +12308,10 @@ var events = [function (tabs, index, that) {
12304
12308
  this.$emit('chang-layout', res, active);
12305
12309
  },
12306
12310
 
12307
- /**
12308
- * @desc:消息修改总数
12309
- * @author huangbo
12310
- * @date 2024年9月7日
12311
+ /**
12312
+ * @desc:消息修改总数
12313
+ * @author huangbo
12314
+ * @date 2024年9月7日
12311
12315
  **/
12312
12316
  handleMenuTips: function handleMenuTips(id, num) {
12313
12317
  if (num) {
@@ -12318,10 +12322,10 @@ var events = [function (tabs, index, that) {
12318
12322
  }
12319
12323
  },
12320
12324
 
12321
- /**
12322
- * @desc:处理即时消息
12323
- * @author huangbo
12324
- * @date 2024年9月7日
12325
+ /**
12326
+ * @desc:处理即时消息
12327
+ * @author huangbo
12328
+ * @date 2024年9月7日
12325
12329
  **/
12326
12330
  handleOpened: function handleOpened(res) {
12327
12331
  var _this7 = this;
@@ -13283,7 +13287,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13283
13287
  var _this2 = this;
13284
13288
 
13285
13289
  util["a" /* default */].ajax({
13286
- url: api["gb" /* initUserSet */]
13290
+ url: api["ib" /* initUserSet */]
13287
13291
  }).then(function (res) {
13288
13292
  if (res.rCode === 0) {
13289
13293
  var results = JSON.parse(JSON.stringify(res.results));
@@ -13323,7 +13327,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13323
13327
  if (res.url) {
13324
13328
  url = res.url;
13325
13329
  } else {
13326
- url = api["u" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
13330
+ url = api["v" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
13327
13331
  }
13328
13332
  this.$emit('change', 'userHeadUrl', url);
13329
13333
  },
@@ -13332,7 +13336,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13332
13336
 
13333
13337
  switch (type) {
13334
13338
  case 'job':
13335
- util["a" /* default */].ajax({ url: api["Fb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
13339
+ util["a" /* default */].ajax({ url: api["Hb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
13336
13340
  if (res.rCode == 0) {
13337
13341
  util["a" /* default */].setStorage({
13338
13342
  type: _this3.storage,
@@ -13373,7 +13377,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13373
13377
  var initLogin = util["a" /* default */].getStorage('initLogin');
13374
13378
  initLogin && (initLogin = JSON.parse(initLogin));
13375
13379
  util["a" /* default */].ajax({
13376
- url: api["oc" /* updateUserInfo */],
13380
+ url: api["qc" /* updateUserInfo */],
13377
13381
  params: {
13378
13382
  email: this.values.email,
13379
13383
  officeTel: this.values.officeTel,
@@ -13431,7 +13435,7 @@ var userinfovue_type_script_lang_js_extends = Object.assign || function (target)
13431
13435
  var notify = _this4.values.notify.sort().join(',');
13432
13436
  if (notify != _this4.notify.split(',').sort().join(',')) {
13433
13437
  util["a" /* default */].ajax({
13434
- url: api["nc" /* updateUserCustomInfo */],
13438
+ url: api["pc" /* updateUserCustomInfo */],
13435
13439
  params: {
13436
13440
  notify: notify
13437
13441
  }
@@ -13786,7 +13790,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13786
13790
  if (this.pageNum <= this.pageCount) {
13787
13791
  this.loading = true;
13788
13792
  util["a" /* default */].ajax({
13789
- url: api["Gb" /* sysMsgPage */],
13793
+ url: api["Ib" /* sysMsgPage */],
13790
13794
  params: {
13791
13795
  pageNum: reload ? 1 : this.pageNum,
13792
13796
  pageSize: this.pageSize
@@ -13819,7 +13823,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13819
13823
  var _this2 = this;
13820
13824
 
13821
13825
  util["a" /* default */].ajax({
13822
- url: api["cb" /* ignoreSysMsg */],
13826
+ url: api["eb" /* ignoreSysMsg */],
13823
13827
  params: {
13824
13828
  id: res.id
13825
13829
  }
@@ -13839,7 +13843,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
13839
13843
  var _this3 = this;
13840
13844
 
13841
13845
  util["a" /* default */].ajax({
13842
- url: api["bb" /* ignoreAllSysMsg */]
13846
+ url: api["db" /* ignoreAllSysMsg */]
13843
13847
  }).then(function (res) {
13844
13848
  _this3.count = 0;
13845
13849
  _this3.msgs = [];
@@ -14174,7 +14178,7 @@ noticevue_type_template_id_6c63684e_render._withStripped = true
14174
14178
  var _this = this;
14175
14179
 
14176
14180
  util["a" /* default */].ajax({
14177
- url: api["bb" /* ignoreAllSysMsg */]
14181
+ url: api["db" /* ignoreAllSysMsg */]
14178
14182
  }).then(function (res) {
14179
14183
  _this.count = 0;
14180
14184
  _this.msgs = [];
@@ -14681,7 +14685,7 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
14681
14685
  //获取用户信息的接口
14682
14686
  mainConfig: {
14683
14687
  type: String,
14684
- default: api["lb" /* mainConfig */]
14688
+ default: api["nb" /* mainConfig */]
14685
14689
  },
14686
14690
  iframeId: {
14687
14691
  type: String,
@@ -14790,9 +14794,9 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
14790
14794
  return this.menuUrl;
14791
14795
  }
14792
14796
  if (this.application) {
14793
- return api["H" /* getComplexApplicationsNew */];
14797
+ return api["I" /* getComplexApplicationsNew */];
14794
14798
  }
14795
- return api["G" /* getComplexApplications */];
14799
+ return api["H" /* getComplexApplications */];
14796
14800
  },
14797
14801
 
14798
14802
  //是否双列右侧菜单
@@ -15109,7 +15113,7 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
15109
15113
  return;
15110
15114
  }
15111
15115
  util["a" /* default */].ajax({
15112
- url: api["nc" /* updateUserCustomInfo */],
15116
+ url: api["pc" /* updateUserCustomInfo */],
15113
15117
  params: { color: escape(color.toLowerCase()) },
15114
15118
  data: { color: escape(color.toLowerCase()) }
15115
15119
  }).then(function (res) {
@@ -16317,8 +16321,8 @@ var appCode = util["a" /* default */].getParams('appCode') || util["a" /* defaul
16317
16321
  var _this11 = this;
16318
16322
 
16319
16323
  this.webSocket = util["a" /* default */].socket({
16320
- url: api["uc" /* wss */],
16321
- take: api["kc" /* topic */],
16324
+ url: api["wc" /* wss */],
16325
+ take: api["mc" /* topic */],
16322
16326
  success: function success(res) {
16323
16327
  var data = res.data || {};
16324
16328
  for (var i in data) {