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/flow-list.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 */
@@ -4425,8 +4429,8 @@ var component = Object(componentNormalizer["a" /* default */])(
4425
4429
  // ESM COMPAT FLAG
4426
4430
  __webpack_require__.r(__webpack_exports__);
4427
4431
 
4428
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=32bf4042&
4429
- var mainvue_type_template_id_32bf4042_render = function () {
4432
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=e8968cb2&
4433
+ var mainvue_type_template_id_e8968cb2_render = function () {
4430
4434
  var _vm = this
4431
4435
  var _h = _vm.$createElement
4432
4436
  var _c = _vm._self._c || _h
@@ -4461,7 +4465,13 @@ var mainvue_type_template_id_32bf4042_render = function () {
4461
4465
  [
4462
4466
  _c(
4463
4467
  "div",
4464
- { staticClass: "es-flow-list-box" },
4468
+ {
4469
+ ref: item.type,
4470
+ refInFor: true,
4471
+ staticClass: "es-flow-list-box",
4472
+ style:
4473
+ "position:" + (_vm.height == "auto" ? "unset" : "absolute"),
4474
+ },
4465
4475
  [
4466
4476
  _vm.show
4467
4477
  ? _c(
@@ -4475,6 +4485,7 @@ var mainvue_type_template_id_32bf4042_render = function () {
4475
4485
  display: _vm.display,
4476
4486
  number: "",
4477
4487
  full: "",
4488
+ height: _vm.getHeight(item.type),
4478
4489
  data: _vm.returnData(item.type),
4479
4490
  },
4480
4491
  on: {
@@ -4624,10 +4635,10 @@ var mainvue_type_template_id_32bf4042_render = function () {
4624
4635
  )
4625
4636
  }
4626
4637
  var staticRenderFns = []
4627
- mainvue_type_template_id_32bf4042_render._withStripped = true
4638
+ mainvue_type_template_id_e8968cb2_render._withStripped = true
4628
4639
 
4629
4640
 
4630
- // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=32bf4042&
4641
+ // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=e8968cb2&
4631
4642
 
4632
4643
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
4633
4644
  var regenerator_ = __webpack_require__(4);
@@ -4741,6 +4752,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
4741
4752
  //
4742
4753
  //
4743
4754
  //
4755
+ //
4756
+ //
4757
+ //
4758
+ //
4759
+ //
4744
4760
 
4745
4761
 
4746
4762
 
@@ -4785,6 +4801,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
4785
4801
  return ['flow', 'splitReading', 'preset'];
4786
4802
  }
4787
4803
  },
4804
+ height: {
4805
+ type: String,
4806
+ default: ''
4807
+ },
4808
+
4788
4809
  theadWidth: {
4789
4810
  type: Object,
4790
4811
  default: function _default() {
@@ -4804,6 +4825,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
4804
4825
  pressTableList: [],
4805
4826
  circularData: [],
4806
4827
  selectList: [],
4828
+ flowHeight: '',
4829
+ presetHeight: '',
4830
+ signHeight: '',
4831
+ splitReadingHeight: '',
4832
+ circularHeight: '',
4833
+ untreatedReadHeight: '',
4834
+ processedReadHeight: '',
4807
4835
  untreatedReadData: [],
4808
4836
  processedReadData: [],
4809
4837
  hasCircularReadWithdrawAuthority: false,
@@ -5641,6 +5669,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5641
5669
 
5642
5670
 
5643
5671
  methods: {
5672
+ getHeight: function getHeight(type) {
5673
+ return this[type + 'Height'];
5674
+ },
5644
5675
  recallReadFun: function recallReadFun() {
5645
5676
  var _this6 = this;
5646
5677
 
@@ -5649,7 +5680,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5649
5680
  return x.id;
5650
5681
  }).join(',');
5651
5682
  var params = {
5652
- url: api["Kb" /* taskReadWithDraw */],
5683
+ url: api["Mb" /* taskReadWithDraw */],
5653
5684
  params: {
5654
5685
  pendingIds: pendingIds
5655
5686
  }
@@ -5737,7 +5768,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5737
5768
  getCircularReadList: function getCircularReadList() {
5738
5769
  var _that = this;
5739
5770
  var params = {
5740
- url: api["ob" /* pendedhistoryListWithCircularReadJson */],
5771
+ url: api["qb" /* pendedhistoryListWithCircularReadJson */],
5741
5772
  params: { apprecordid: _that.businessId }
5742
5773
  };
5743
5774
  util["a" /* default */].ajax(params).then(function (res) {
@@ -5796,12 +5827,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5796
5827
  }
5797
5828
  },
5798
5829
 
5799
- /**
5800
- * handleFormSubmit
5801
- * @desc:删除节点点击事件
5802
- * @param {Object} formData 点击删除的form数据
5803
- * @author liufan
5804
- * @date 2022年11月29日
5830
+ /**
5831
+ * handleFormSubmit
5832
+ * @desc:删除节点点击事件
5833
+ * @param {Object} formData 点击删除的form数据
5834
+ * @author liufan
5835
+ * @date 2022年11月29日
5805
5836
  **/
5806
5837
  handleFormSubmit: function handleFormSubmit(formData) {
5807
5838
  var _this9 = this;
@@ -5832,48 +5863,48 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5832
5863
  });
5833
5864
  },
5834
5865
 
5835
- /**
5836
- * del
5837
- * @desc:展示删除弹窗
5838
- * @param {String} id 当前点击数据id
5839
- * @author liufan
5840
- * @date 2022年11月29日
5866
+ /**
5867
+ * del
5868
+ * @desc:展示删除弹窗
5869
+ * @param {String} id 当前点击数据id
5870
+ * @author liufan
5871
+ * @date 2022年11月29日
5841
5872
  **/
5842
5873
  del: function del(id) {
5843
5874
  this.historyId = id;
5844
5875
  this.showDel = true;
5845
5876
  },
5846
5877
 
5847
- /**
5848
- * handleCurrentChange
5849
- * @desc:监听页码变化
5850
- * @param {String} val 当前页
5851
- * @author liufan
5852
- * @date 2022年11月29日
5878
+ /**
5879
+ * handleCurrentChange
5880
+ * @desc:监听页码变化
5881
+ * @param {String} val 当前页
5882
+ * @author liufan
5883
+ * @date 2022年11月29日
5853
5884
  **/
5854
5885
  handleCurrentChange: function handleCurrentChange(val) {
5855
5886
  this.currentPage = val;
5856
5887
  this.getPressList();
5857
5888
  },
5858
5889
 
5859
- /**
5860
- * handleSizeChange
5861
- * @desc:监听每页数据显示数量变化
5862
- * @param {String} val 每页展示数量
5863
- * @author liufan
5864
- * @date 2022年11月29日
5890
+ /**
5891
+ * handleSizeChange
5892
+ * @desc:监听每页数据显示数量变化
5893
+ * @param {String} val 每页展示数量
5894
+ * @author liufan
5895
+ * @date 2022年11月29日
5865
5896
  **/
5866
5897
  handleSizeChange: function handleSizeChange(val) {
5867
5898
  this.pageSize = val;
5868
5899
  this.getPressList();
5869
5900
  },
5870
5901
 
5871
- /**
5872
- * sortChange
5873
- * @desc:监听排序变化
5874
- * @param {Object} info 需要排序的字段及排序方式
5875
- * @author liufan
5876
- * @date 2022年11月29日
5902
+ /**
5903
+ * sortChange
5904
+ * @desc:监听排序变化
5905
+ * @param {Object} info 需要排序的字段及排序方式
5906
+ * @author liufan
5907
+ * @date 2022年11月29日
5877
5908
  **/
5878
5909
  sortChange: function sortChange(info) {
5879
5910
  var prop = info.prop,
@@ -5884,11 +5915,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5884
5915
  this.getPressList();
5885
5916
  },
5886
5917
 
5887
- /**
5888
- * getPressList
5889
- * @desc:催办列表数据
5890
- * @author liufan
5891
- * @date 2022年11月29日
5918
+ /**
5919
+ * getPressList
5920
+ * @desc:催办列表数据
5921
+ * @author liufan
5922
+ * @date 2022年11月29日
5892
5923
  **/
5893
5924
  getPressList: function getPressList() {
5894
5925
  var _this10 = this;
@@ -5901,7 +5932,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5901
5932
 
5902
5933
  this.pressLoading = true;
5903
5934
  var params = {
5904
- url: api["pb" /* pressListJson */],
5935
+ url: api["rb" /* pressListJson */],
5905
5936
  params: { historyId: historyId },
5906
5937
  method: 'POST',
5907
5938
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -5918,12 +5949,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5918
5949
  });
5919
5950
  },
5920
5951
 
5921
- /**
5922
- * goPress
5923
- * @desc:催办列表查看
5924
- * @param {String} id 催办列表id
5925
- * @author liufan
5926
- * @date 2022年11月29日
5952
+ /**
5953
+ * goPress
5954
+ * @desc:催办列表查看
5955
+ * @param {String} id 催办列表id
5956
+ * @author liufan
5957
+ * @date 2022年11月29日
5927
5958
  **/
5928
5959
  goPress: function goPress(id) {
5929
5960
  this.historyId = id;
@@ -5931,23 +5962,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5931
5962
  this.getPressList();
5932
5963
  },
5933
5964
 
5934
- /**
5935
- * showFile
5936
- * @desc:附件查看
5937
- * @param {String} ownId 附件id
5938
- * @author liufan
5939
- * @date 2022年11月29日
5965
+ /**
5966
+ * showFile
5967
+ * @desc:附件查看
5968
+ * @param {String} ownId 附件id
5969
+ * @author liufan
5970
+ * @date 2022年11月29日
5940
5971
  **/
5941
5972
  showFile: function showFile(ownId) {
5942
5973
  this.wfpendingid = ownId;
5943
5974
  this.showFileList = true;
5944
5975
  },
5945
5976
 
5946
- /**
5947
- * handleChange
5948
- * @desc:切换排序方式
5949
- * @author liufan
5950
- * @date 2022年11月22日
5977
+ /**
5978
+ * handleChange
5979
+ * @desc:切换排序方式
5980
+ * @author liufan
5981
+ * @date 2022年11月22日
5951
5982
  **/
5952
5983
  handleChange: function handleChange(key, value) {
5953
5984
  if (value) {
@@ -5967,7 +5998,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5967
5998
  switch (_context3.prev = _context3.next) {
5968
5999
  case 0:
5969
6000
  params = {
5970
- url: api["D" /* fyListJson */],
6001
+ url: api["E" /* fyListJson */],
5971
6002
  params: {
5972
6003
  appRecordId: _this11.businessId,
5973
6004
  status: type
@@ -5991,17 +6022,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5991
6022
  }))();
5992
6023
  },
5993
6024
 
5994
- /**
5995
- * getFlowList
5996
- * @desc:获取流程列表
5997
- * @author liufan
5998
- * @date 2022年11月22日
6025
+ /**
6026
+ * getFlowList
6027
+ * @desc:获取流程列表
6028
+ * @author liufan
6029
+ * @date 2022年11月22日
5999
6030
  **/
6000
6031
  getFlowList: function getFlowList() {
6001
6032
  var _this12 = this;
6002
6033
 
6003
6034
  var params = {
6004
- url: api["nb" /* pendedhistoryListJson */],
6035
+ url: api["pb" /* pendedhistoryListJson */],
6005
6036
  params: _extends({
6006
6037
  apprecordid: this.businessId,
6007
6038
  pendingAttr: 0,
@@ -6037,6 +6068,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6037
6068
  _this12.splitReadingData = fyHistoryList;
6038
6069
  _this12.modify = modify;
6039
6070
  _this12.show = true;
6071
+ if (_this12.height == 'auto') {
6072
+ _this12.$nextTick(function () {
6073
+ _this12.content.map(function (x) {
6074
+ _this12[x.type + 'Height'] = _this12.$refs[x.type][0].offsetHeight;
6075
+ });
6076
+ });
6077
+ }
6040
6078
  if (_this12.contents.indexOf('circular') != -1) {
6041
6079
  _this12.getCircularReadList();
6042
6080
  } else {
@@ -6056,12 +6094,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6056
6094
  });
6057
6095
  },
6058
6096
 
6059
- /**
6060
- * handleClick
6061
- * @desc:表单点击事件
6062
- * @param {Object} val 当前点击行数据及按钮
6063
- * @author liufan
6064
- * @date 2022年11月10日
6097
+ /**
6098
+ * handleClick
6099
+ * @desc:表单点击事件
6100
+ * @param {Object} val 当前点击行数据及按钮
6101
+ * @author liufan
6102
+ * @date 2022年11月10日
6065
6103
  **/
6066
6104
  handleClick: function handleClick(val) {
6067
6105
  var _this13 = this;
@@ -6107,13 +6145,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6107
6145
  }
6108
6146
  },
6109
6147
 
6110
- /**
6111
- * getCodeValue
6112
- * @desc:获取代码表过滤后的值
6113
- * @param {String} value 展示数据的代码值
6114
- * @param {String} type 代码表类型
6115
- * @author liufan
6116
- * @date 2022年11月10日
6148
+ /**
6149
+ * getCodeValue
6150
+ * @desc:获取代码表过滤后的值
6151
+ * @param {String} value 展示数据的代码值
6152
+ * @param {String} type 代码表类型
6153
+ * @author liufan
6154
+ * @date 2022年11月10日
6117
6155
  **/
6118
6156
  getCodeValue: function getCodeValue(value, type) {
6119
6157
  var val = this[type].filter(function (item) {
@@ -6122,18 +6160,18 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6122
6160
  return val[0].shortName;
6123
6161
  },
6124
6162
 
6125
- /**
6126
- * getSysInfo
6127
- * @desc:获取代码表
6128
- * @param {String} code 编码code值
6129
- * @author liufan
6130
- * @date 2022年11月10日
6163
+ /**
6164
+ * getSysInfo
6165
+ * @desc:获取代码表
6166
+ * @param {String} code 编码code值
6167
+ * @author liufan
6168
+ * @date 2022年11月10日
6131
6169
  **/
6132
6170
  getSysInfo: function getSysInfo(code) {
6133
6171
  var _this14 = this;
6134
6172
 
6135
6173
  var params = {
6136
- url: api["x" /* findCodeValues */],
6174
+ url: api["y" /* findCodeValues */],
6137
6175
  params: { ccCode: code }
6138
6176
  };
6139
6177
  util["a" /* default */].ajax(params).then(function (res) {
@@ -6149,17 +6187,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6149
6187
  }).catch(function (e) {});
6150
6188
  },
6151
6189
 
6152
- /**
6153
- * getListInfo
6154
- * @desc:获取预设列表数据
6155
- * @author liufan
6156
- * @date 2022年11月10日
6190
+ /**
6191
+ * getListInfo
6192
+ * @desc:获取预设列表数据
6193
+ * @author liufan
6194
+ * @date 2022年11月10日
6157
6195
  **/
6158
6196
  getListInfo: function getListInfo() {
6159
6197
  var _this15 = this;
6160
6198
 
6161
6199
  var param = {
6162
- url: api["Tb" /* toPresetInfoListIndex */],
6200
+ url: api["Vb" /* toPresetInfoListIndex */],
6163
6201
  params: { apprecordid: this.businessId }
6164
6202
  };
6165
6203
  util["a" /* default */].ajax(param).then(function (res) {
@@ -6204,7 +6242,7 @@ var componentNormalizer = __webpack_require__(3);
6204
6242
 
6205
6243
  var component = Object(componentNormalizer["a" /* default */])(
6206
6244
  src_mainvue_type_script_lang_js_,
6207
- mainvue_type_template_id_32bf4042_render,
6245
+ mainvue_type_template_id_e8968cb2_render,
6208
6246
  staticRenderFns,
6209
6247
  false,
6210
6248
  null,