eoss-ui 0.7.63 → 0.7.65

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 (256) hide show
  1. package/lib/button-group.js +119 -97
  2. package/lib/button.js +113 -97
  3. package/lib/calendar.js +2 -2
  4. package/lib/calogin.js +352 -330
  5. package/lib/card.js +2 -2
  6. package/lib/cascader.js +2 -2
  7. package/lib/checkbox-group.js +119 -97
  8. package/lib/clients.js +43 -41
  9. package/lib/config/api.js +12 -1
  10. package/lib/data-table-form.js +119 -97
  11. package/lib/data-table.js +119 -97
  12. package/lib/date-picker.js +120 -104
  13. package/lib/dialog.js +119 -97
  14. package/lib/enable-drag.js +2 -2
  15. package/lib/enterprise.js +2 -2
  16. package/lib/eoss-ui.common.js +8684 -731
  17. package/lib/error-page.js +2 -2
  18. package/lib/flow-group.js +120 -104
  19. package/lib/flow-list.js +287 -289
  20. package/lib/flow.js +186 -164
  21. package/lib/form.js +119 -97
  22. package/lib/handle-user.js +121 -105
  23. package/lib/handler.js +114 -98
  24. package/lib/icon.js +114 -98
  25. package/lib/icons.js +5 -5
  26. package/lib/index.js +1 -1
  27. package/lib/input-number.js +120 -104
  28. package/lib/input.js +120 -104
  29. package/lib/label.js +2 -2
  30. package/lib/layout.js +2 -2
  31. package/lib/login.js +129 -107
  32. package/lib/main.js +8496 -540
  33. package/lib/menu.js +2 -2
  34. package/lib/nav.js +113 -97
  35. package/lib/notify.js +116 -100
  36. package/lib/page.js +120 -104
  37. package/lib/pagination.js +120 -104
  38. package/lib/player.js +130 -114
  39. package/lib/qr-code.js +141 -125
  40. package/lib/radio-group.js +120 -104
  41. package/lib/retrial-auth.js +116 -100
  42. package/lib/select-ganged.js +113 -97
  43. package/lib/select.js +120 -104
  44. package/lib/selector-panel.js +140 -118
  45. package/lib/selector.js +117 -101
  46. package/lib/sizer.js +115 -99
  47. package/lib/steps.js +113 -97
  48. package/lib/switch.js +113 -97
  49. package/lib/table-form.js +120 -104
  50. package/lib/tabs-panel.js +2 -2
  51. package/lib/tabs.js +120 -104
  52. package/lib/theme-chalk/base.css +1 -1
  53. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  54. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  55. package/lib/theme-chalk/icon.css +1 -1
  56. package/lib/theme-chalk/index.css +1 -1
  57. package/lib/theme-chalk/login.css +1 -1
  58. package/lib/theme-chalk/main.css +1 -1
  59. package/lib/theme-chalk/menu.css +1 -1
  60. package/lib/theme-chalk/simplicity-top.css +1 -0
  61. package/lib/theme-chalk/simplicity.css +1 -1
  62. package/lib/theme-chalk/sizer.css +1 -1
  63. package/lib/theme-chalk/upload.css +1 -1
  64. package/lib/tips.js +121 -105
  65. package/lib/toolbar.js +2 -2
  66. package/lib/tree-group.js +120 -104
  67. package/lib/tree.js +121 -105
  68. package/lib/upload.js +129 -107
  69. package/lib/wujie.js +113 -97
  70. package/lib/wxlogin.js +113 -97
  71. package/package.json +1 -1
  72. package/packages/button/index.js +5 -5
  73. package/packages/button/src/main.vue +418 -418
  74. package/packages/button-group/index.js +5 -5
  75. package/packages/calendar/index.js +5 -5
  76. package/packages/calogin/index.js +5 -5
  77. package/packages/calogin/src/plugin.js +915 -915
  78. package/packages/card/index.js +5 -5
  79. package/packages/card/src/main.vue +156 -156
  80. package/packages/cascader/index.js +5 -5
  81. package/packages/cascader/src/main.vue +168 -168
  82. package/packages/checkbox-group/index.js +5 -5
  83. package/packages/checkbox-group/src/main.vue +333 -333
  84. package/packages/clients/index.js +5 -5
  85. package/packages/clients/src/main.vue +1 -1
  86. package/packages/data-table/index.js +5 -5
  87. package/packages/data-table/src/children.vue +39 -39
  88. package/packages/data-table/src/sizer.vue +195 -195
  89. package/packages/data-table-form/index.js +5 -5
  90. package/packages/data-table-form/src/checkbox.vue +101 -101
  91. package/packages/data-table-form/src/colgroup.vue +17 -17
  92. package/packages/data-table-form/src/main.vue +181 -181
  93. package/packages/data-table-form/src/radio.vue +65 -65
  94. package/packages/data-table-form/src/table.vue +233 -233
  95. package/packages/data-table-form/src/tbody.vue +336 -336
  96. package/packages/data-table-form/src/thead.vue +68 -68
  97. package/packages/date-picker/index.js +5 -5
  98. package/packages/date-picker/src/main.vue +236 -236
  99. package/packages/dialog/index.js +5 -5
  100. package/packages/enable-drag/index.js +5 -5
  101. package/packages/enterprise/index.js +5 -5
  102. package/packages/enterprise/src/main.vue +66 -66
  103. package/packages/error-page/index.js +5 -5
  104. package/packages/error-page/src/main.vue +44 -44
  105. package/packages/flow/index.js +5 -5
  106. package/packages/flow/src/component/TimeLimit.vue +190 -190
  107. package/packages/flow/src/component/taskUnionExamine.vue +1 -1
  108. package/packages/flow/src/main.vue +1 -1
  109. package/packages/flow/src/table.vue +58 -58
  110. package/packages/flow-group/index.js +5 -5
  111. package/packages/flow-list/index.js +5 -5
  112. package/packages/form/index.js +5 -5
  113. package/packages/handle-user/index.js +5 -5
  114. package/packages/handler/index.js +5 -5
  115. package/packages/icon/index.js +5 -5
  116. package/packages/icons/index.js +5 -5
  117. package/packages/icons/src/icon.json +1 -1
  118. package/packages/icons/src/main.vue +81 -81
  119. package/packages/input/index.js +5 -5
  120. package/packages/input/src/main.vue +356 -356
  121. package/packages/input-number/index.js +5 -5
  122. package/packages/input-number/src/main.vue +106 -106
  123. package/packages/label/index.js +5 -5
  124. package/packages/label/src/main.vue +457 -457
  125. package/packages/layout/index.js +5 -5
  126. package/packages/layout/src/item.vue +152 -152
  127. package/packages/layout/src/main.vue +31 -31
  128. package/packages/login/index.js +5 -5
  129. package/packages/login/src/main.vue +2 -2
  130. package/packages/main/index.js +5 -5
  131. package/packages/main/src/default/message.vue +249 -249
  132. package/packages/main/src/default/notice.vue +157 -157
  133. package/packages/main/src/main.vue +14 -0
  134. package/packages/main/src/public/settings.vue +121 -75
  135. package/packages/main/src/simplicity/lists.vue +84 -84
  136. package/packages/main/src/simplicity/router-page.vue +45 -45
  137. package/packages/main/src/simplicityTop/apps.vue +388 -0
  138. package/packages/main/src/simplicityTop/avatar.vue +82 -0
  139. package/packages/main/src/simplicityTop/handler.vue +207 -0
  140. package/packages/main/src/simplicityTop/index.vue +2909 -0
  141. package/packages/main/src/simplicityTop/lists.vue +84 -0
  142. package/packages/main/src/simplicityTop/menu-list.vue +135 -0
  143. package/packages/main/src/simplicityTop/message.vue +293 -0
  144. package/packages/main/src/simplicityTop/notice.vue +222 -0
  145. package/packages/main/src/simplicityTop/router-page.vue +45 -0
  146. package/packages/main/src/simplicityTop/sub-menu.vue +274 -0
  147. package/packages/main/src/simplicityTop/user.vue +259 -0
  148. package/packages/main/src/simplicityTop/userinfo.vue +401 -0
  149. package/packages/menu/index.js +5 -5
  150. package/packages/nav/index.js +5 -5
  151. package/packages/notify/index.js +5 -5
  152. package/packages/notify/src/main.vue +538 -538
  153. package/packages/page/index.js +5 -5
  154. package/packages/page/src/main.vue +167 -167
  155. package/packages/pagination/index.js +5 -5
  156. package/packages/pagination/src/main.vue +96 -96
  157. package/packages/player/index.js +5 -5
  158. package/packages/player/src/main.vue +194 -194
  159. package/packages/qr-code/index.js +5 -5
  160. package/packages/qr-code/src/main.vue +170 -170
  161. package/packages/radio-group/index.js +6 -6
  162. package/packages/radio-group/src/main.vue +319 -319
  163. package/packages/retrial-auth/index.js +5 -5
  164. package/packages/retrial-auth/src/main.vue +280 -280
  165. package/packages/select/index.js +5 -5
  166. package/packages/select-ganged/index.js +5 -5
  167. package/packages/select-ganged/src/main.vue +724 -724
  168. package/packages/selector/index.js +5 -5
  169. package/packages/selector-panel/index.js +5 -5
  170. package/packages/selector-panel/src/tree.vue +129 -129
  171. package/packages/sizer/index.js +5 -5
  172. package/packages/sizer/src/main.vue +254 -254
  173. package/packages/steps/index.js +5 -5
  174. package/packages/steps/src/main.vue +181 -181
  175. package/packages/switch/index.js +5 -5
  176. package/packages/table-form/index.js +5 -5
  177. package/packages/tabs/index.js +5 -5
  178. package/packages/tabs/src/main.vue +788 -788
  179. package/packages/tabs-panel/index.js +5 -5
  180. package/packages/tabs-panel/src/main.vue +29 -29
  181. package/packages/theme-chalk/lib/base.css +1 -1
  182. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  183. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  184. package/packages/theme-chalk/lib/icon.css +1 -1
  185. package/packages/theme-chalk/lib/index.css +1 -1
  186. package/packages/theme-chalk/lib/login.css +1 -1
  187. package/packages/theme-chalk/lib/main.css +1 -1
  188. package/packages/theme-chalk/lib/menu.css +1 -1
  189. package/packages/theme-chalk/lib/simplicity-top.css +1 -0
  190. package/packages/theme-chalk/lib/simplicity.css +1 -1
  191. package/packages/theme-chalk/lib/sizer.css +1 -1
  192. package/packages/theme-chalk/lib/upload.css +1 -1
  193. package/packages/theme-chalk/src/base.scss +261 -261
  194. package/packages/theme-chalk/src/button-group.scss +176 -176
  195. package/packages/theme-chalk/src/button.scss +24 -24
  196. package/packages/theme-chalk/src/calendar.scss +113 -113
  197. package/packages/theme-chalk/src/card.scss +99 -99
  198. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  199. package/packages/theme-chalk/src/clients.scss +87 -87
  200. package/packages/theme-chalk/src/common/var.scss +3 -0
  201. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  202. package/packages/theme-chalk/src/date-picker.scss +7 -7
  203. package/packages/theme-chalk/src/dialog.scss +77 -77
  204. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  205. package/packages/theme-chalk/src/enterprise.scss +5 -5
  206. package/packages/theme-chalk/src/error-page.scss +18 -18
  207. package/packages/theme-chalk/src/flow-group.scss +110 -110
  208. package/packages/theme-chalk/src/flow-list.scss +39 -39
  209. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  210. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  211. package/packages/theme-chalk/src/handle-user.scss +40 -40
  212. package/packages/theme-chalk/src/icon.scss +4 -0
  213. package/packages/theme-chalk/src/icons.scss +99 -99
  214. package/packages/theme-chalk/src/input.scss +9 -9
  215. package/packages/theme-chalk/src/label.scss +24 -24
  216. package/packages/theme-chalk/src/layout.scss +46 -46
  217. package/packages/theme-chalk/src/main.scss +1 -0
  218. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  219. package/packages/theme-chalk/src/nav.scss +111 -111
  220. package/packages/theme-chalk/src/page.scss +3 -3
  221. package/packages/theme-chalk/src/pagination.scss +29 -29
  222. package/packages/theme-chalk/src/player.scss +9 -9
  223. package/packages/theme-chalk/src/qr-code.scss +17 -17
  224. package/packages/theme-chalk/src/radio-group.scss +9 -9
  225. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  226. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  227. package/packages/theme-chalk/src/select.scss +8 -8
  228. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  229. package/packages/theme-chalk/src/simplicity-top.scss +1974 -0
  230. package/packages/theme-chalk/src/sizer.scss +36 -36
  231. package/packages/theme-chalk/src/steps.scss +88 -88
  232. package/packages/theme-chalk/src/switch.scss +3 -3
  233. package/packages/theme-chalk/src/table-form.scss +1 -1
  234. package/packages/theme-chalk/src/tabs.scss +87 -87
  235. package/packages/theme-chalk/src/tips.scss +7 -7
  236. package/packages/theme-chalk/src/toolbar.scss +179 -179
  237. package/packages/theme-chalk/src/tree-group.scss +72 -72
  238. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  239. package/packages/tips/index.js +5 -5
  240. package/packages/toolbar/index.js +5 -5
  241. package/packages/tree/index.js +5 -5
  242. package/packages/tree-group/index.js +5 -5
  243. package/packages/upload/index.js +5 -5
  244. package/packages/upload/src/picture.js +15 -15
  245. package/packages/wujie/index.js +5 -5
  246. package/packages/wujie/src/main.vue +145 -145
  247. package/packages/wxlogin/index.js +5 -5
  248. package/packages/wxlogin/src/main.vue +128 -128
  249. package/src/config/api.js +15 -2
  250. package/src/config/image.js +2 -2
  251. package/src/index.js +1 -1
  252. package/src/utils/bus.js +3 -3
  253. package/src/utils/date-util.js +312 -312
  254. package/src/utils/http.js +50 -50
  255. package/src/utils/store.js +21 -21
  256. package/src/utils/webSocket.js +107 -107
package/lib/flow-list.js CHANGED
@@ -82,11 +82,12 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 48);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 54);
86
86
  /******/ })
87
87
  /************************************************************************/
88
- /******/ ([
89
- /* 0 */
88
+ /******/ ({
89
+
90
+ /***/ 0:
90
91
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
91
92
 
92
93
  "use strict";
@@ -1699,7 +1700,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1699
1700
  * @param {function} callback - 回调函数
1700
1701
  **/
1701
1702
  var util_getMainConfig = function getMainConfig(callback) {
1702
- util_ajax({ url: api["sb" /* mainConfig */] }).then(function (res) {
1703
+ util_ajax({ url: api["wb" /* mainConfig */] }).then(function (res) {
1703
1704
  if (res && res.rCode === 0) {
1704
1705
  callback(res.results);
1705
1706
  }
@@ -2425,7 +2426,7 @@ var isLogined = function () {
2425
2426
  break;
2426
2427
  }
2427
2428
 
2428
- util_ajax({ method: 'post', url: api["rb" /* logout */] }).then(function (res) {
2429
+ util_ajax({ method: 'post', url: api["vb" /* logout */] }).then(function (res) {
2429
2430
  if (res.rCode === 0) {
2430
2431
  removeStorage();
2431
2432
  }
@@ -3881,39 +3882,40 @@ var winTopOpen = function winTopOpen(config) {
3881
3882
  });
3882
3883
 
3883
3884
  /***/ }),
3884
- /* 1 */
3885
+
3886
+ /***/ 1:
3885
3887
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3886
3888
 
3887
3889
  "use strict";
3888
3890
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3889
3891
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3890
3892
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3891
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return logout; });
3892
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initLogin; });
3893
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return switchUserTo; });
3893
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return logout; });
3894
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return initLogin; });
3895
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return switchUserTo; });
3894
3896
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3895
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getLoginCode; });
3897
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getLoginCode; });
3896
3898
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3897
3899
  /* unused harmony export updateCode */
3898
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getModifyPassCode; });
3900
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getModifyPassCode; });
3899
3901
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3900
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return loginModifyPassword; });
3902
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return loginModifyPassword; });
3901
3903
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3902
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return initModifyPassword; });
3904
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return initModifyPassword; });
3903
3905
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3904
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getTwoFactorLoginCode; });
3906
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getTwoFactorLoginCode; });
3905
3907
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3906
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return initRetrialAuth; });
3907
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getRetrialAuthCode; });
3908
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return scanCodeRetrialAuth; });
3908
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return initRetrialAuth; });
3909
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getRetrialAuthCode; });
3910
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return scanCodeRetrialAuth; });
3909
3911
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3910
3912
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3911
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return userOnline; });
3912
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getUserAppWithTag; });
3913
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return recordUserApp; });
3914
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return mainConfig; });
3915
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return initUserSet; });
3916
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return updateUserInfo; });
3913
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hc", function() { return userOnline; });
3914
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return getUserAppWithTag; });
3915
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return recordUserApp; });
3916
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return mainConfig; });
3917
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return initUserSet; });
3918
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return updateUserInfo; });
3917
3919
  /* unused harmony export getUserImgUrl */
3918
3920
  /* unused harmony export getDoorIndex */
3919
3921
  /* unused harmony export refreshOnlineUsers */
@@ -3922,121 +3924,126 @@ var winTopOpen = function winTopOpen(config) {
3922
3924
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getComplexApplications; });
3923
3925
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getComplexApplicationsNew; });
3924
3926
  /* unused harmony export getUserCustomInfo */
3925
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return updateUserCustomInfo; });
3926
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return sysMsgPage; });
3927
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return ignoreSysMsg; });
3928
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return ignoreAllSysMsg; });
3929
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return searchType; });
3930
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getSysParam; });
3927
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return updateUserCustomInfo; });
3928
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return sysMsgPage; });
3929
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return ignoreSysMsg; });
3930
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return ignoreAllSysMsg; });
3931
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return searchType; });
3932
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getSysParam; });
3931
3933
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getAdjunctProperties; });
3932
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return uploads; });
3933
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return uploadOnlyOne; });
3934
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gc", function() { return uploads; });
3935
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ec", function() { return uploadOnlyOne; });
3934
3936
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getAdjunctFileInfos; });
3935
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return uploadSort; });
3937
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fc", function() { return uploadSort; });
3936
3938
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3937
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return uploadDownloads; });
3938
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return previewAdjunct; });
3939
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return previewAdjunct2; });
3940
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return previewAdjunctOffice; });
3939
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return uploadDownloads; });
3940
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return previewAdjunct; });
3941
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return previewAdjunct2; });
3942
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return previewAdjunctOffice; });
3941
3943
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3942
3944
  /* unused harmony export upload_updateClassify */
3943
3945
  /* unused harmony export getDeleteAdjunctFileInfos */
3944
3946
  /* unused harmony export getPictureBase64 */
3945
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getSelectorOrgTree; });
3946
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSelectorOrgDetail; });
3947
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getOrgMainTree; });
3948
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getSelectOrgsubids; });
3947
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getSelectorOrgTree; });
3948
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getSelectorOrgDetail; });
3949
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getOrgMainTree; });
3950
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSelectOrgsubids; });
3949
3951
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
3950
3952
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getDictList; });
3951
3953
  /* unused harmony export findUserBaseInfo */
3952
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return gethelpdoc; });
3954
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return gethelpdoc; });
3953
3955
  /* unused harmony export getCurrentuser */
3954
3956
  /* unused harmony export mainDetail */
3955
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toStartFlow; });
3956
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return tempSave; });
3957
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toStartFlow; });
3958
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return tempSave; });
3957
3959
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3958
3960
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3959
3961
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3960
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return saveCommonOpinion; });
3961
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return updateCommonOpinion; });
3962
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return saveCommonOpinion; });
3963
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return updateCommonOpinion; });
3962
3964
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3963
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getProcessDefList; });
3964
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNodeInfo; });
3965
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getProcessDefList; });
3966
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getNodeInfo; });
3965
3967
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findCodeValues; });
3966
3968
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return findSysParam; });
3967
3969
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3968
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getNotificationMsg; });
3970
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getNotificationMsg; });
3969
3971
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getHandleInfoHtml; });
3970
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskHandleHtml; });
3972
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskHandleHtml; });
3971
3973
  /* unused harmony export getView */
3972
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return register; });
3973
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return pendedhistoryList; });
3974
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskRejectHtml; });
3975
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskRejectHtml; });
3976
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toStartTaskRead; });
3977
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toStartTaskReadIndex; });
3978
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskReadHtml; });
3979
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return rejectAndEnd; });
3980
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toSendMsg; });
3981
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return sendMsg; });
3974
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return register; });
3975
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return pendedhistoryList; });
3976
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return toTaskRejectHtml; });
3977
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return taskRejectHtml; });
3978
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toStartTaskRead; });
3979
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toStartTaskReadIndex; });
3980
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return taskReadHtml; });
3981
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return rejectAndEnd; });
3982
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toSendMsg; });
3983
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return sendMsg; });
3982
3984
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3983
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return handleInfo; });
3984
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return loginUserInfo; });
3985
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return wss; });
3986
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return topic; });
3987
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getPresetCustomInfo; });
3988
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getPresetNodeInfo; });
3989
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return toTaskTransferIndex; });
3990
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return taskTransfer; });
3991
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toPresetInfoListIndex; });
3985
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return handleInfo; });
3986
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return loginUserInfo; });
3987
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ic", function() { return wss; });
3988
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return topic; });
3989
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getPresetCustomInfo; });
3990
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getPresetNodeInfo; });
3991
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return toTaskTransferIndex; });
3992
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return taskTransfer; });
3993
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toPresetInfoListIndex; });
3992
3994
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3993
3995
  /* unused harmony export historyListJson */
3994
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return pendedhistoryListJson; });
3995
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return pressListJson; });
3996
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return pendedhistoryListJson; });
3997
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return pressListJson; });
3996
3998
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3997
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return modifyFlow; });
3998
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return isCanStartSubFlow; });
3999
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return toTaskUnionExamine; });
4000
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return taskUnionExamine; });
4001
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return toTaskTakeAdvice; });
4002
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return taskTakeAdvice; });
4003
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskStartDraft; });
4004
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskSupervise; });
4005
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTaskSuperviseSub; });
4006
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskStartDraft; });
4007
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskReview; });
4008
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskReview; });
4009
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toTaskUnionSeal; });
4010
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return taskUnionSeal; });
4011
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toTwoOfficesDispatch; });
4012
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return twoOfficesDispatch; });
4013
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toResetProcessIndex; });
4014
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return resetProcess; });
4015
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskContinuationIndex; });
4016
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskContinuation; });
3999
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return modifyFlow; });
4000
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return isCanStartSubFlow; });
4001
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return toTaskUnionExamine; });
4002
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return taskUnionExamine; });
4003
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return toTaskTakeAdvice; });
4004
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return taskTakeAdvice; });
4005
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return toTaskStartDraft; });
4006
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toTaskSupervise; });
4007
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toTaskSuperviseSub; });
4008
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return taskStartDraft; });
4009
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return toTaskReview; });
4010
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return taskReview; });
4011
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return toTaskUnionSeal; });
4012
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return taskUnionSeal; });
4013
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return toTwoOfficesDispatch; });
4014
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return twoOfficesDispatch; });
4015
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toResetProcessIndex; });
4016
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return resetProcess; });
4017
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTaskContinuationIndex; });
4018
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskContinuation; });
4017
4019
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getFreeStartFlowParams; });
4018
4020
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return freeStartFlowWithSubmitTask; });
4019
4021
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
4020
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return pendedhistoryListWithCircularReadJson; });
4022
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return pendedhistoryListWithCircularReadJson; });
4021
4023
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return fyListJson; });
4022
4024
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
4023
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskReadWithDraw; });
4024
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
4025
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return taskReadWithDraw; });
4026
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
4025
4027
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
4026
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sendList; });
4027
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sendInfo; });
4028
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return sendList; });
4029
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return sendInfo; });
4028
4030
  /* unused harmony export sendSave */
4029
4031
  /* unused harmony export sendUpdate */
4030
4032
  /* unused harmony export sendDelete */
4031
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sendBatch; });
4033
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return sendBatch; });
4032
4034
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
4033
4035
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
4034
4036
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
4035
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getNodeInfoForStart; });
4037
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getNodeInfoForStart; });
4036
4038
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlow; });
4037
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getUrgencyLevelChangedNotificationType; });
4038
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toFreeTaskCircularRead; });
4039
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return getUrgencyLevelChangedNotificationType; });
4040
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toFreeTaskCircularRead; });
4039
4041
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return freeTaskCircularRead; });
4042
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return queryUseCommonMenu; });
4043
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getIndexCount; });
4044
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return getVoteMeetingNum; });
4045
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return getUserTipsInstanceNum; });
4046
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getShareFilesReceiveCountNew; });
4040
4047
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
4041
4048
  // 登录
4042
4049
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -4306,176 +4313,41 @@ var toFreeTaskCircularRead = '/bpm/bpmBackend/toFreeTaskCircularRead';
4306
4313
  // 自由发起传阅提交
4307
4314
  var freeTaskCircularRead = '/bpm/bpmBackend/freeTaskCircularRead';
4308
4315
 
4309
- /***/ }),
4310
- /* 2 */
4311
- /***/ (function(module, exports) {
4312
-
4313
- module.exports = require("eoss-element");
4316
+ // 查询常用菜单列表信息
4317
+ var queryUseCommonMenu = '/sys/v1/userCustom/queryUseCommonMenu.dhtml';
4318
+ // 查询待办任务数量
4319
+ var getIndexCount = '/bpm/pendingIndex/getIndexCount.dhtml';
4320
+ // 查询我的会议数量
4321
+ var getVoteMeetingNum = '/conference/v1/voteMeeting/getVoteMeetingNum.json';
4322
+ // 查询待签收/据签收任务数量
4323
+ var getUserTipsInstanceNum = '/archives/llm/subject/getUserTipsInstanceNum';
4324
+ // 查询待接收文件数量
4325
+ var getShareFilesReceiveCountNew = '/oa/sharefiles/receive/getShareFilesReceiveCountNew.dhtml';
4314
4326
 
4315
4327
  /***/ }),
4316
- /* 3 */
4317
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
4318
4328
 
4319
- "use strict";
4320
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
4321
- /* globals __VUE_SSR_CONTEXT__ */
4322
-
4323
- // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
4324
- // This module is a runtime utility for cleaner component module output and will
4325
- // be included in the final webpack user bundle.
4326
-
4327
- function normalizeComponent(
4328
- scriptExports,
4329
- render,
4330
- staticRenderFns,
4331
- functionalTemplate,
4332
- injectStyles,
4333
- scopeId,
4334
- moduleIdentifier /* server only */,
4335
- shadowMode /* vue-cli only */
4336
- ) {
4337
- // Vue.extend constructor export interop
4338
- var options =
4339
- typeof scriptExports === 'function' ? scriptExports.options : scriptExports
4340
-
4341
- // render functions
4342
- if (render) {
4343
- options.render = render
4344
- options.staticRenderFns = staticRenderFns
4345
- options._compiled = true
4346
- }
4347
-
4348
- // functional template
4349
- if (functionalTemplate) {
4350
- options.functional = true
4351
- }
4352
-
4353
- // scopedId
4354
- if (scopeId) {
4355
- options._scopeId = 'data-v-' + scopeId
4356
- }
4357
-
4358
- var hook
4359
- if (moduleIdentifier) {
4360
- // server build
4361
- hook = function (context) {
4362
- // 2.3 injection
4363
- context =
4364
- context || // cached call
4365
- (this.$vnode && this.$vnode.ssrContext) || // stateful
4366
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
4367
- // 2.2 with runInNewContext: true
4368
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
4369
- context = __VUE_SSR_CONTEXT__
4370
- }
4371
- // inject component styles
4372
- if (injectStyles) {
4373
- injectStyles.call(this, context)
4374
- }
4375
- // register component module identifier for async chunk inferrence
4376
- if (context && context._registeredComponents) {
4377
- context._registeredComponents.add(moduleIdentifier)
4378
- }
4379
- }
4380
- // used by ssr in case component is cached and beforeCreate
4381
- // never gets called
4382
- options._ssrRegister = hook
4383
- } else if (injectStyles) {
4384
- hook = shadowMode
4385
- ? function () {
4386
- injectStyles.call(
4387
- this,
4388
- (options.functional ? this.parent : this).$root.$options.shadowRoot
4389
- )
4390
- }
4391
- : injectStyles
4392
- }
4393
-
4394
- if (hook) {
4395
- if (options.functional) {
4396
- // for template-only hot-reload because in that case the render fn doesn't
4397
- // go through the normalizer
4398
- options._injectStyles = hook
4399
- // register for functional component in vue file
4400
- var originalRender = options.render
4401
- options.render = function renderWithStyleInjection(h, context) {
4402
- hook.call(context)
4403
- return originalRender(h, context)
4404
- }
4405
- } else {
4406
- // inject component registration as beforeCreate hook
4407
- var existing = options.beforeCreate
4408
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
4409
- }
4410
- }
4411
-
4412
- return {
4413
- exports: scriptExports,
4414
- options: options
4415
- }
4416
- }
4417
-
4418
-
4419
- /***/ }),
4420
- /* 4 */
4421
- /***/ (function(module, exports) {
4422
-
4423
- module.exports = require("babel-runtime/regenerator");
4424
-
4425
- /***/ }),
4426
- /* 5 */
4427
- /***/ (function(module, exports) {
4428
-
4429
- module.exports = require("qs");
4430
-
4431
- /***/ }),
4432
- /* 6 */
4433
- /***/ (function(module, exports) {
4434
-
4435
- module.exports = require("axios");
4436
-
4437
- /***/ }),
4438
- /* 7 */
4439
- /***/ (function(module, exports) {
4440
-
4441
- module.exports = require("json-bigint");
4442
-
4443
- /***/ }),
4444
- /* 8 */
4445
- /***/ (function(module, exports) {
4446
-
4447
- module.exports = require("sockjs-client");
4448
-
4449
- /***/ }),
4450
- /* 9 */
4451
- /***/ (function(module, exports) {
4452
-
4453
- module.exports = require("stompjs");
4454
-
4455
- /***/ }),
4456
- /* 10 */
4329
+ /***/ 10:
4457
4330
  /***/ (function(module, exports) {
4458
4331
 
4459
4332
  module.exports = require("ua-parser-js");
4460
4333
 
4461
4334
  /***/ }),
4462
- /* 11 */
4335
+
4336
+ /***/ 11:
4463
4337
  /***/ (function(module, exports) {
4464
4338
 
4465
4339
  module.exports = require("sm-crypto");
4466
4340
 
4467
4341
  /***/ }),
4468
- /* 12 */
4342
+
4343
+ /***/ 12:
4469
4344
  /***/ (function(module, exports) {
4470
4345
 
4471
4346
  module.exports = require("lodash");
4472
4347
 
4473
4348
  /***/ }),
4474
- /* 13 */,
4475
- /* 14 */,
4476
- /* 15 */,
4477
- /* 16 */,
4478
- /* 17 */
4349
+
4350
+ /***/ 17:
4479
4351
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
4480
4352
 
4481
4353
  "use strict";
@@ -4649,37 +4521,134 @@ var component = Object(componentNormalizer["a" /* default */])(
4649
4521
  /* harmony default export */ var FileList = __webpack_exports__["a"] = (component.exports);
4650
4522
 
4651
4523
  /***/ }),
4652
- /* 18 */,
4653
- /* 19 */,
4654
- /* 20 */,
4655
- /* 21 */,
4656
- /* 22 */,
4657
- /* 23 */,
4658
- /* 24 */,
4659
- /* 25 */,
4660
- /* 26 */,
4661
- /* 27 */,
4662
- /* 28 */,
4663
- /* 29 */,
4664
- /* 30 */,
4665
- /* 31 */,
4666
- /* 32 */,
4667
- /* 33 */,
4668
- /* 34 */,
4669
- /* 35 */,
4670
- /* 36 */,
4671
- /* 37 */,
4672
- /* 38 */,
4673
- /* 39 */,
4674
- /* 40 */,
4675
- /* 41 */,
4676
- /* 42 */,
4677
- /* 43 */,
4678
- /* 44 */,
4679
- /* 45 */,
4680
- /* 46 */,
4681
- /* 47 */,
4682
- /* 48 */
4524
+
4525
+ /***/ 2:
4526
+ /***/ (function(module, exports) {
4527
+
4528
+ module.exports = require("eoss-element");
4529
+
4530
+ /***/ }),
4531
+
4532
+ /***/ 3:
4533
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
4534
+
4535
+ "use strict";
4536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
4537
+ /* globals __VUE_SSR_CONTEXT__ */
4538
+
4539
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
4540
+ // This module is a runtime utility for cleaner component module output and will
4541
+ // be included in the final webpack user bundle.
4542
+
4543
+ function normalizeComponent(
4544
+ scriptExports,
4545
+ render,
4546
+ staticRenderFns,
4547
+ functionalTemplate,
4548
+ injectStyles,
4549
+ scopeId,
4550
+ moduleIdentifier /* server only */,
4551
+ shadowMode /* vue-cli only */
4552
+ ) {
4553
+ // Vue.extend constructor export interop
4554
+ var options =
4555
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
4556
+
4557
+ // render functions
4558
+ if (render) {
4559
+ options.render = render
4560
+ options.staticRenderFns = staticRenderFns
4561
+ options._compiled = true
4562
+ }
4563
+
4564
+ // functional template
4565
+ if (functionalTemplate) {
4566
+ options.functional = true
4567
+ }
4568
+
4569
+ // scopedId
4570
+ if (scopeId) {
4571
+ options._scopeId = 'data-v-' + scopeId
4572
+ }
4573
+
4574
+ var hook
4575
+ if (moduleIdentifier) {
4576
+ // server build
4577
+ hook = function (context) {
4578
+ // 2.3 injection
4579
+ context =
4580
+ context || // cached call
4581
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
4582
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
4583
+ // 2.2 with runInNewContext: true
4584
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
4585
+ context = __VUE_SSR_CONTEXT__
4586
+ }
4587
+ // inject component styles
4588
+ if (injectStyles) {
4589
+ injectStyles.call(this, context)
4590
+ }
4591
+ // register component module identifier for async chunk inferrence
4592
+ if (context && context._registeredComponents) {
4593
+ context._registeredComponents.add(moduleIdentifier)
4594
+ }
4595
+ }
4596
+ // used by ssr in case component is cached and beforeCreate
4597
+ // never gets called
4598
+ options._ssrRegister = hook
4599
+ } else if (injectStyles) {
4600
+ hook = shadowMode
4601
+ ? function () {
4602
+ injectStyles.call(
4603
+ this,
4604
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
4605
+ )
4606
+ }
4607
+ : injectStyles
4608
+ }
4609
+
4610
+ if (hook) {
4611
+ if (options.functional) {
4612
+ // for template-only hot-reload because in that case the render fn doesn't
4613
+ // go through the normalizer
4614
+ options._injectStyles = hook
4615
+ // register for functional component in vue file
4616
+ var originalRender = options.render
4617
+ options.render = function renderWithStyleInjection(h, context) {
4618
+ hook.call(context)
4619
+ return originalRender(h, context)
4620
+ }
4621
+ } else {
4622
+ // inject component registration as beforeCreate hook
4623
+ var existing = options.beforeCreate
4624
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
4625
+ }
4626
+ }
4627
+
4628
+ return {
4629
+ exports: scriptExports,
4630
+ options: options
4631
+ }
4632
+ }
4633
+
4634
+
4635
+ /***/ }),
4636
+
4637
+ /***/ 4:
4638
+ /***/ (function(module, exports) {
4639
+
4640
+ module.exports = require("babel-runtime/regenerator");
4641
+
4642
+ /***/ }),
4643
+
4644
+ /***/ 5:
4645
+ /***/ (function(module, exports) {
4646
+
4647
+ module.exports = require("qs");
4648
+
4649
+ /***/ }),
4650
+
4651
+ /***/ 54:
4683
4652
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
4684
4653
 
4685
4654
  "use strict";
@@ -5991,7 +5960,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5991
5960
  return x.id;
5992
5961
  }).join(',');
5993
5962
  var params = {
5994
- url: api["Sb" /* taskReadWithDraw */],
5963
+ url: api["Xb" /* taskReadWithDraw */],
5995
5964
  params: {
5996
5965
  pendingIds: pendingIds
5997
5966
  }
@@ -6079,7 +6048,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6079
6048
  getCircularReadList: function getCircularReadList() {
6080
6049
  var _that = this;
6081
6050
  var params = {
6082
- url: api["wb" /* pendedhistoryListWithCircularReadJson */],
6051
+ url: api["Ab" /* pendedhistoryListWithCircularReadJson */],
6083
6052
  params: { apprecordid: _that.businessId }
6084
6053
  };
6085
6054
  util["a" /* default */].ajax(params).then(function (res) {
@@ -6161,7 +6130,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6161
6130
 
6162
6131
  this.delLoading = true;
6163
6132
  var params = {
6164
- url: this.modalType == 'del' ? api["l" /* deleteFlow */] : api["tb" /* modifyFlow */],
6133
+ url: this.modalType == 'del' ? api["l" /* deleteFlow */] : api["xb" /* modifyFlow */],
6165
6134
  method: 'POST',
6166
6135
  data: { id: this.historyId, reason: formData.reason }
6167
6136
  };
@@ -6260,7 +6229,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6260
6229
 
6261
6230
  this.pressLoading = true;
6262
6231
  var params = {
6263
- url: api["xb" /* pressListJson */],
6232
+ url: api["Bb" /* pressListJson */],
6264
6233
  params: { historyId: historyId },
6265
6234
  method: 'POST',
6266
6235
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -6366,7 +6335,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6366
6335
  var _this12 = this;
6367
6336
 
6368
6337
  var params = {
6369
- url: api["vb" /* pendedhistoryListJson */],
6338
+ url: api["zb" /* pendedhistoryListJson */],
6370
6339
  params: _extends({
6371
6340
  apprecordid: this.businessId,
6372
6341
  pendingAttr: 0,
@@ -6537,7 +6506,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6537
6506
  var _this15 = this;
6538
6507
 
6539
6508
  var param = {
6540
- url: api["cc" /* toPresetInfoListIndex */],
6509
+ url: api["hc" /* toPresetInfoListIndex */],
6541
6510
  params: { apprecordid: this.businessId }
6542
6511
  };
6543
6512
  util["a" /* default */].ajax(param).then(function (res) {
@@ -6606,5 +6575,34 @@ main.install = function (Vue) {
6606
6575
 
6607
6576
  /* harmony default export */ var flow_list = __webpack_exports__["default"] = (main);
6608
6577
 
6578
+ /***/ }),
6579
+
6580
+ /***/ 6:
6581
+ /***/ (function(module, exports) {
6582
+
6583
+ module.exports = require("axios");
6584
+
6585
+ /***/ }),
6586
+
6587
+ /***/ 7:
6588
+ /***/ (function(module, exports) {
6589
+
6590
+ module.exports = require("json-bigint");
6591
+
6592
+ /***/ }),
6593
+
6594
+ /***/ 8:
6595
+ /***/ (function(module, exports) {
6596
+
6597
+ module.exports = require("sockjs-client");
6598
+
6599
+ /***/ }),
6600
+
6601
+ /***/ 9:
6602
+ /***/ (function(module, exports) {
6603
+
6604
+ module.exports = require("stompjs");
6605
+
6609
6606
  /***/ })
6610
- /******/ ]);
6607
+
6608
+ /******/ });