eoss-ui 0.6.46 → 0.6.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/lib/button-group.js +132 -117
  2. package/lib/button.js +132 -117
  3. package/lib/checkbox-group.js +134 -119
  4. package/lib/config/api.js +10 -0
  5. package/lib/data-table-form.js +134 -119
  6. package/lib/data-table.js +137 -122
  7. package/lib/date-picker.js +132 -117
  8. package/lib/dialog.js +132 -117
  9. package/lib/eoss-ui.common.js +1704 -1319
  10. package/lib/flow-group.js +132 -117
  11. package/lib/flow-list.js +463 -272
  12. package/lib/flow.js +1090 -881
  13. package/lib/form.js +138 -123
  14. package/lib/handle-user.js +133 -118
  15. package/lib/handler.js +133 -118
  16. package/lib/icon.js +133 -118
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +132 -117
  19. package/lib/input.js +132 -117
  20. package/lib/login.js +146 -131
  21. package/lib/main.js +299 -284
  22. package/lib/nav.js +132 -117
  23. package/lib/notify.js +135 -120
  24. package/lib/page.js +132 -117
  25. package/lib/pagination.js +132 -117
  26. package/lib/player.js +132 -117
  27. package/lib/qr-code.js +145 -130
  28. package/lib/radio-group.js +134 -119
  29. package/lib/retrial-auth.js +136 -121
  30. package/lib/select-ganged.js +134 -119
  31. package/lib/select.js +134 -119
  32. package/lib/selector-panel.js +150 -135
  33. package/lib/selector.js +133 -118
  34. package/lib/sizer.js +134 -119
  35. package/lib/steps.js +132 -117
  36. package/lib/switch.js +132 -117
  37. package/lib/table-form.js +138 -123
  38. package/lib/tabs.js +132 -117
  39. package/lib/theme-chalk/flow.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +133 -118
  42. package/lib/tree-group.js +132 -117
  43. package/lib/tree.js +133 -118
  44. package/lib/upload.js +145 -130
  45. package/lib/wujie.js +132 -117
  46. package/lib/wxlogin.js +132 -117
  47. package/package.json +159 -159
  48. package/packages/button/index.js +5 -5
  49. package/packages/button/src/main.vue +418 -418
  50. package/packages/button-group/index.js +5 -5
  51. package/packages/button-group/src/main.vue +298 -298
  52. package/packages/calendar/index.js +5 -5
  53. package/packages/card/index.js +5 -5
  54. package/packages/card/src/main.vue +156 -156
  55. package/packages/cascader/index.js +5 -5
  56. package/packages/cascader/src/main.vue +168 -168
  57. package/packages/checkbox-group/index.js +5 -5
  58. package/packages/checkbox-group/src/main.vue +333 -333
  59. package/packages/clients/index.js +5 -5
  60. package/packages/clients/src/main.vue +144 -144
  61. package/packages/data-table/index.js +5 -5
  62. package/packages/data-table/src/children.vue +39 -39
  63. package/packages/data-table/src/column.vue +989 -989
  64. package/packages/data-table/src/main.vue +1822 -1822
  65. package/packages/data-table/src/sizer.vue +195 -195
  66. package/packages/data-table-form/index.js +5 -5
  67. package/packages/data-table-form/src/checkbox.vue +101 -101
  68. package/packages/data-table-form/src/colgroup.vue +17 -17
  69. package/packages/data-table-form/src/main.vue +181 -181
  70. package/packages/data-table-form/src/radio.vue +65 -65
  71. package/packages/data-table-form/src/table.vue +233 -233
  72. package/packages/data-table-form/src/tbody.vue +336 -336
  73. package/packages/data-table-form/src/thead.vue +68 -68
  74. package/packages/date-picker/index.js +5 -5
  75. package/packages/date-picker/src/main.vue +236 -236
  76. package/packages/dialog/index.js +5 -5
  77. package/packages/enable-drag/index.js +5 -5
  78. package/packages/enterprise/index.js +5 -5
  79. package/packages/enterprise/src/main.vue +66 -66
  80. package/packages/error-page/index.js +5 -5
  81. package/packages/error-page/src/main.vue +44 -44
  82. package/packages/flow/index.js +5 -5
  83. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  84. package/packages/flow/src/component/CustomPreset.vue +322 -322
  85. package/packages/flow/src/component/FileList.vue +99 -99
  86. package/packages/flow/src/component/Preset.vue +255 -255
  87. package/packages/flow/src/component/SendMsg.vue +229 -229
  88. package/packages/flow/src/component/TimeLimit.vue +190 -190
  89. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  90. package/packages/flow/src/form.vue +121 -121
  91. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  92. package/packages/flow/src/main.vue +3107 -2964
  93. package/packages/flow/src/processForm.vue +1031 -1018
  94. package/packages/flow/src/processReject.vue +293 -293
  95. package/packages/flow/src/reset.vue +902 -899
  96. package/packages/flow/src/startTaskRead.vue +597 -596
  97. package/packages/flow/src/supervise.vue +138 -138
  98. package/packages/flow/src/table.vue +58 -58
  99. package/packages/flow-group/index.js +5 -5
  100. package/packages/flow-group/src/main.vue +688 -688
  101. package/packages/flow-list/index.js +5 -5
  102. package/packages/flow-list/src/main.vue +1411 -1183
  103. package/packages/form/index.js +5 -5
  104. package/packages/form/src/main.vue +3583 -3583
  105. package/packages/form/src/table.vue +1426 -1426
  106. package/packages/handle-user/index.js +5 -5
  107. package/packages/handle-user/src/main.vue +138 -138
  108. package/packages/handler/index.js +5 -5
  109. package/packages/handler/src/main.vue +491 -491
  110. package/packages/icon/index.js +5 -5
  111. package/packages/icon/src/main.vue +101 -101
  112. package/packages/icons/index.js +5 -5
  113. package/packages/icons/src/main.vue +81 -81
  114. package/packages/input/index.js +5 -5
  115. package/packages/input/src/main.vue +356 -356
  116. package/packages/input-number/index.js +5 -5
  117. package/packages/input-number/src/main.vue +106 -106
  118. package/packages/label/index.js +5 -5
  119. package/packages/label/src/main.vue +457 -457
  120. package/packages/layout/index.js +5 -5
  121. package/packages/layout/src/item.vue +152 -152
  122. package/packages/layout/src/main.vue +31 -31
  123. package/packages/login/index.js +5 -5
  124. package/packages/login/src/main.vue +1935 -1935
  125. package/packages/login/src/resetPassword.vue +562 -562
  126. package/packages/main/index.js +5 -5
  127. package/packages/main/src/default/message.vue +249 -249
  128. package/packages/main/src/default/notice.vue +157 -157
  129. package/packages/main/src/default/userinfo.vue +505 -505
  130. package/packages/main/src/public/online.vue +89 -89
  131. package/packages/main/src/public/search.vue +461 -461
  132. package/packages/main/src/public/settings.vue +221 -221
  133. package/packages/main/src/simplicity/apps.vue +388 -388
  134. package/packages/main/src/simplicity/avatar.vue +82 -82
  135. package/packages/main/src/simplicity/handler.vue +259 -259
  136. package/packages/main/src/simplicity/index.vue +2049 -2049
  137. package/packages/main/src/simplicity/lists.vue +84 -84
  138. package/packages/main/src/simplicity/menu-list.vue +128 -128
  139. package/packages/main/src/simplicity/message.vue +259 -259
  140. package/packages/main/src/simplicity/notice.vue +190 -190
  141. package/packages/main/src/simplicity/router-page.vue +45 -45
  142. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  143. package/packages/main/src/simplicity/user.vue +257 -257
  144. package/packages/main/src/simplicity/userinfo.vue +312 -312
  145. package/packages/menu/index.js +5 -5
  146. package/packages/menu/src/main.vue +536 -536
  147. package/packages/nav/index.js +5 -5
  148. package/packages/nav/src/main.vue +351 -351
  149. package/packages/notify/index.js +5 -5
  150. package/packages/notify/src/main.vue +538 -538
  151. package/packages/page/index.js +5 -5
  152. package/packages/page/src/main.vue +167 -167
  153. package/packages/pagination/index.js +5 -5
  154. package/packages/pagination/src/main.vue +96 -96
  155. package/packages/player/index.js +5 -5
  156. package/packages/player/src/main.vue +194 -194
  157. package/packages/qr-code/index.js +5 -5
  158. package/packages/qr-code/src/main.vue +170 -170
  159. package/packages/radio-group/index.js +6 -6
  160. package/packages/radio-group/src/main.vue +319 -319
  161. package/packages/retrial-auth/index.js +5 -5
  162. package/packages/retrial-auth/src/main.vue +280 -280
  163. package/packages/select/index.js +5 -5
  164. package/packages/select/src/main.vue +775 -775
  165. package/packages/select-ganged/index.js +5 -5
  166. package/packages/select-ganged/src/main.vue +724 -724
  167. package/packages/selector/index.js +5 -5
  168. package/packages/selector/src/main.vue +689 -689
  169. package/packages/selector-panel/index.js +5 -5
  170. package/packages/selector-panel/src/main.vue +1027 -1027
  171. package/packages/selector-panel/src/selection.vue +177 -177
  172. package/packages/selector-panel/src/tree.vue +129 -129
  173. package/packages/sizer/index.js +5 -5
  174. package/packages/sizer/src/main.vue +254 -254
  175. package/packages/steps/index.js +5 -5
  176. package/packages/steps/src/main.vue +181 -181
  177. package/packages/switch/index.js +5 -5
  178. package/packages/switch/src/main.vue +154 -154
  179. package/packages/table-form/index.js +5 -5
  180. package/packages/tabs/index.js +5 -5
  181. package/packages/tabs/src/main.vue +788 -788
  182. package/packages/tabs-panel/index.js +5 -5
  183. package/packages/tabs-panel/src/main.vue +29 -29
  184. package/packages/theme-chalk/lib/flow.css +1 -1
  185. package/packages/theme-chalk/lib/index.css +1 -1
  186. package/packages/theme-chalk/src/base.scss +260 -260
  187. package/packages/theme-chalk/src/button-group.scss +175 -175
  188. package/packages/theme-chalk/src/button.scss +24 -24
  189. package/packages/theme-chalk/src/calendar.scss +113 -113
  190. package/packages/theme-chalk/src/card.scss +99 -99
  191. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  192. package/packages/theme-chalk/src/clients.scss +87 -87
  193. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  194. package/packages/theme-chalk/src/data-table.scss +293 -293
  195. package/packages/theme-chalk/src/date-picker.scss +7 -7
  196. package/packages/theme-chalk/src/dialog.scss +77 -77
  197. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  198. package/packages/theme-chalk/src/enterprise.scss +5 -5
  199. package/packages/theme-chalk/src/error-page.scss +18 -18
  200. package/packages/theme-chalk/src/flow-group.scss +110 -110
  201. package/packages/theme-chalk/src/flow-list.scss +36 -36
  202. package/packages/theme-chalk/src/flow.scss +335 -318
  203. package/packages/theme-chalk/src/form.scss +496 -496
  204. package/packages/theme-chalk/src/handle-user.scss +40 -40
  205. package/packages/theme-chalk/src/handler.scss +143 -143
  206. package/packages/theme-chalk/src/icon.scss +1789 -1789
  207. package/packages/theme-chalk/src/icons.scss +99 -99
  208. package/packages/theme-chalk/src/input.scss +9 -9
  209. package/packages/theme-chalk/src/label.scss +24 -24
  210. package/packages/theme-chalk/src/layout.scss +46 -46
  211. package/packages/theme-chalk/src/login.scss +969 -969
  212. package/packages/theme-chalk/src/main.scss +656 -656
  213. package/packages/theme-chalk/src/menu.scss +222 -222
  214. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  215. package/packages/theme-chalk/src/nav.scss +111 -111
  216. package/packages/theme-chalk/src/page.scss +3 -3
  217. package/packages/theme-chalk/src/pagination.scss +29 -29
  218. package/packages/theme-chalk/src/player.scss +9 -9
  219. package/packages/theme-chalk/src/qr-code.scss +17 -17
  220. package/packages/theme-chalk/src/radio-group.scss +9 -9
  221. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  222. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  223. package/packages/theme-chalk/src/select.scss +8 -8
  224. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  225. package/packages/theme-chalk/src/selector.scss +91 -91
  226. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  227. package/packages/theme-chalk/src/sizer.scss +36 -36
  228. package/packages/theme-chalk/src/steps.scss +88 -88
  229. package/packages/theme-chalk/src/switch.scss +3 -3
  230. package/packages/theme-chalk/src/table-form.scss +1 -1
  231. package/packages/theme-chalk/src/tabs.scss +87 -87
  232. package/packages/theme-chalk/src/tips.scss +7 -7
  233. package/packages/theme-chalk/src/toolbar.scss +179 -179
  234. package/packages/theme-chalk/src/tree-group.scss +72 -72
  235. package/packages/theme-chalk/src/tree.scss +165 -165
  236. package/packages/theme-chalk/src/upload.scss +167 -167
  237. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  238. package/packages/tips/index.js +5 -5
  239. package/packages/tips/src/main.vue +141 -141
  240. package/packages/toolbar/index.js +5 -5
  241. package/packages/toolbar/src/main.vue +430 -430
  242. package/packages/tree/index.js +5 -5
  243. package/packages/tree-group/index.js +5 -5
  244. package/packages/upload/index.js +5 -5
  245. package/packages/upload/src/main.vue +1335 -1335
  246. package/packages/upload/src/picture.js +15 -15
  247. package/packages/wujie/index.js +5 -5
  248. package/packages/wujie/src/main.vue +145 -145
  249. package/packages/wxlogin/index.js +5 -5
  250. package/packages/wxlogin/src/main.vue +128 -128
  251. package/src/config/api.js +281 -251
  252. package/src/config/image.js +2 -2
  253. package/src/index.js +1 -1
  254. package/src/utils/bus.js +3 -3
  255. package/src/utils/date-util.js +312 -312
  256. package/src/utils/http.js +50 -50
  257. package/src/utils/rules.js +18 -18
  258. package/src/utils/store.js +21 -21
  259. package/src/utils/webSocket.js +107 -107
package/lib/flow.js CHANGED
@@ -1611,7 +1611,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1611
1611
  * @param {function} callback - 回调函数
1612
1612
  **/
1613
1613
  var getMainConfig = function getMainConfig(callback) {
1614
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "hb"] }).then(function (res) {
1614
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "kb"] }).then(function (res) {
1615
1615
  if (res && res.rCode === 0) {
1616
1616
  callback(res.results);
1617
1617
  }
@@ -2358,7 +2358,7 @@ var isLogined = function isLogined(_ref10) {
2358
2358
  }
2359
2359
  var quit = getParams('quit') || getParams('logout');
2360
2360
  if (quit) {
2361
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "gb"] }).then(function (res) {
2361
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "jb"] }).then(function (res) {
2362
2362
  if (res.rCode === 0) {
2363
2363
  removeStorage();
2364
2364
  }
@@ -3477,142 +3477,147 @@ var watermark = function watermark(option) {
3477
3477
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3478
3478
 
3479
3479
  "use strict";
3480
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3481
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3482
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3483
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return logout; });
3484
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initLogin; });
3485
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return switchUserTo; });
3480
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3481
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3482
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3483
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return logout; });
3484
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initLogin; });
3485
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return switchUserTo; });
3486
3486
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3487
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getLoginCode; });
3488
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3487
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getLoginCode; });
3488
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3489
3489
  /* unused harmony export updateCode */
3490
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getModifyPassCode; });
3491
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3492
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return loginModifyPassword; });
3490
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getModifyPassCode; });
3491
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3492
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return loginModifyPassword; });
3493
3493
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3494
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initModifyPassword; });
3495
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3496
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getTwoFactorLoginCode; });
3497
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3498
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return initRetrialAuth; });
3499
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getRetrialAuthCode; });
3500
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return scanCodeRetrialAuth; });
3501
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3502
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3503
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return userOnline; });
3504
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getUserAppWithTag; });
3505
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return recordUserApp; });
3506
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return mainConfig; });
3507
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initUserSet; });
3508
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return updateUserInfo; });
3494
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initModifyPassword; });
3495
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3496
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getTwoFactorLoginCode; });
3497
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3498
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initRetrialAuth; });
3499
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getRetrialAuthCode; });
3500
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return scanCodeRetrialAuth; });
3501
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3502
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3503
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return userOnline; });
3504
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getUserAppWithTag; });
3505
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return recordUserApp; });
3506
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return mainConfig; });
3507
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initUserSet; });
3508
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateUserInfo; });
3509
3509
  /* unused harmony export getUserImgUrl */
3510
3510
  /* unused harmony export getDoorIndex */
3511
3511
  /* unused harmony export refreshOnlineUsers */
3512
3512
  /* unused harmony export getQuickMenuIds */
3513
3513
  /* unused harmony export getApplicationIdArray */
3514
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplications; });
3515
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getComplexApplicationsNew; });
3514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getComplexApplications; });
3515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplicationsNew; });
3516
3516
  /* unused harmony export getUserCustomInfo */
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return updateUserCustomInfo; });
3518
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sysMsgPage; });
3519
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return ignoreSysMsg; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return ignoreAllSysMsg; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return searchType; });
3522
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getAdjunctProperties; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return uploads; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return uploadOnlyOne; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctFileInfos; });
3526
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return uploadSort; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return uploadDownloads; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunct2; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return previewAdjunctOffice; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return updateUserCustomInfo; });
3518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sysMsgPage; });
3519
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreSysMsg; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return ignoreAllSysMsg; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return searchType; });
3522
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctProperties; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploads; });
3524
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return uploadOnlyOne; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getAdjunctFileInfos; });
3526
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadSort; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return uploadDownloads; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return previewAdjunct; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct2; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunctOffice; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3533
3533
  /* unused harmony export upload_updateClassify */
3534
3534
  /* unused harmony export getDeleteAdjunctFileInfos */
3535
3535
  /* unused harmony export getPictureBase64 */
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getSelectorOrgTree; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getSelectorOrgDetail; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getOrgMainTree; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectOrgsubids; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getDictList; });
3536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgTree; });
3537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectorOrgDetail; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getOrgMainTree; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getSelectOrgsubids; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getDictList; });
3542
3542
  /* unused harmony export findUserBaseInfo */
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return gethelpdoc; });
3543
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return gethelpdoc; });
3544
3544
  /* unused harmony export getCurrentuser */
3545
3545
  /* unused harmony export mainDetail */
3546
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toStartFlow; });
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return tempSave; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3546
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toStartFlow; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return tempSave; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3549
3549
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3551
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return saveCommonOpinion; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return updateCommonOpinion; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getProcessDefList; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getNodeInfo; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getNotificationMsg; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getHandleInfoHtml; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskHandleHtml; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return saveCommonOpinion; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return updateCommonOpinion; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getProcessDefList; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getNodeInfo; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNotificationMsg; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getHandleInfoHtml; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskHandleHtml; });
3562
3562
  /* unused harmony export getView */
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return register; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pendedhistoryList; });
3565
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskRejectHtml; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskRejectHtml; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toStartTaskRead; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toStartTaskReadIndex; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskReadHtml; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return rejectAndEnd; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toSendMsg; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return sendMsg; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return handleInfo; });
3575
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return loginUserInfo; });
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return wss; });
3577
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return topic; });
3578
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getPresetCustomInfo; });
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getPresetNodeInfo; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskTransferIndex; });
3581
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskTransfer; });
3582
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toPresetInfoListIndex; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return register; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return pendedhistoryList; });
3565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskRejectHtml; });
3566
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskRejectHtml; });
3567
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toStartTaskRead; });
3568
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartTaskReadIndex; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskReadHtml; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return rejectAndEnd; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toSendMsg; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendMsg; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return handleInfo; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginUserInfo; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return wss; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return topic; });
3578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getPresetCustomInfo; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetNodeInfo; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskTransferIndex; });
3581
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskTransfer; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toPresetInfoListIndex; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3584
3584
  /* unused harmony export historyListJson */
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return pendedhistoryListJson; });
3586
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return pressListJson; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return isCanStartSubFlow; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskUnionExamine; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskUnionExamine; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskTakeAdvice; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskTakeAdvice; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toTaskStartDraft; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toTaskSupervise; });
3595
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskSuperviseSub; });
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskUnionSeal; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTwoOfficesDispatch; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return twoOfficesDispatch; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskContinuation; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getFreeStartFlowParams; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return freeStartFlowWithSubmitTask; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sendList; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sendInfo; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryListJson; });
3586
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pressListJson; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return isCanStartSubFlow; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskUnionExamine; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskUnionExamine; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskTakeAdvice; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskTakeAdvice; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskStartDraft; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskSupervise; });
3595
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskSuperviseSub; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskStartDraft; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskReview; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReview; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskUnionSeal; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskUnionSeal; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTwoOfficesDispatch; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return twoOfficesDispatch; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toResetProcessIndex; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return resetProcess; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskContinuationIndex; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskContinuation; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getFreeStartFlowParams; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListWithCircularReadJson; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendList; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendInfo; });
3611
3616
  /* unused harmony export sendSave */
3612
3617
  /* unused harmony export sendUpdate */
3613
3618
  /* unused harmony export sendDelete */
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendBatch; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return sendBatch; });
3620
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3616
3621
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3617
3622
  // 登录
3618
3623
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3840,6 +3845,16 @@ var taskContinuation = '/bpm/task/taskHandle/taskContinuation.dhtml';
3840
3845
  var getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
3841
3846
  // 自由发起流程提交
3842
3847
  var freeStartFlowWithSubmitTask = '/bpm/bpmBackend/freeStartFlowWithSubmitTask';
3848
+ // 传阅新流程发起外单位数据校验
3849
+ var checkForeignOrgStartedCircularRead = '/bpm/bpmBackend/checkForeignOrgStartedCircularRead';
3850
+ // 获取传阅列表
3851
+ var pendedhistoryListWithCircularReadJson = '/bpm/pendedhistoryManager/pendedhistoryListWithCircularReadJson';
3852
+ // 传阅列表撤回
3853
+ var circularReadWithdraw = '/bpm/bpmBackend/circularReadWithdraw';
3854
+ // 阅转办提交流程
3855
+ var startReadTransferHandleFlowWithTaskReadEnd = '/bpm/bpmBackend/startReadTransferHandleFlowWithTaskReadEnd';
3856
+ // 阅转办校验接口
3857
+ var checkBusinessIdStartedReadTransferHandle = '/bpm/bpmBackend/checkBusinessIdStartedReadTransferHandle';
3843
3858
  // notifySend 消息发送
3844
3859
  var sendList = '/notify2/notifySendRecord/listJson';
3845
3860
  var sendInfo = '/notify2/notifySendRecord/info';
@@ -4285,7 +4300,7 @@ var util = __webpack_require__(0);
4285
4300
 
4286
4301
  var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
4287
4302
  var params = {
4288
- url: api["g" /* delAdjunct */],
4303
+ url: api["j" /* delAdjunct */],
4289
4304
  params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
4290
4305
  };
4291
4306
  util["a" /* default */].ajax(params).then(function (res) {
@@ -4352,7 +4367,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4352
4367
  // ESM COMPAT FLAG
4353
4368
  __webpack_require__.r(__webpack_exports__);
4354
4369
 
4355
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=eb32af70&
4370
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=74ef8ad5&
4356
4371
  var render = function () {
4357
4372
  var _vm = this
4358
4373
  var _h = _vm.$createElement
@@ -4366,7 +4381,24 @@ var render = function () {
4366
4381
  style: _vm.styles,
4367
4382
  },
4368
4383
  [
4369
- _vm.typeCode == "supervise"
4384
+ _vm.typeCode == "read"
4385
+ ? _c("StartTaskRead", {
4386
+ key: _vm.StartTaskReadKey,
4387
+ attrs: {
4388
+ "pending-id": _vm.pendingId,
4389
+ opinion: _vm.value,
4390
+ type: "create",
4391
+ typeCode: "read",
4392
+ taskExamine: _vm.taskExamineInfo,
4393
+ "news-info": _vm.nextNode.notificationMsg,
4394
+ },
4395
+ on: {
4396
+ cancel: function ($event) {
4397
+ _vm.closeProcess($event, "showTaskRead")
4398
+ },
4399
+ },
4400
+ })
4401
+ : _vm.typeCode == "supervise"
4370
4402
  ? _c("Supervise", { attrs: { businessId: _vm.businessId } })
4371
4403
  : _vm.newTypeCode == "reset" || _vm.newTypeCode == "continuation"
4372
4404
  ? _c("reset", {
@@ -6210,10 +6242,8 @@ var render = function () {
6210
6242
  _c(
6211
6243
  "el-button",
6212
6244
  {
6213
- staticStyle: {
6214
- width: "100%",
6215
- margin: "10px 0px",
6216
- },
6245
+ staticClass: "es-fenyue-buttons-yj",
6246
+ style: "margin: 10px 0px",
6217
6247
  attrs: { type: "primary", size: "medium" },
6218
6248
  on: {
6219
6249
  click: function ($event) {
@@ -6223,12 +6253,42 @@ var render = function () {
6223
6253
  },
6224
6254
  [_vm._v("\n 阅结\n ")]
6225
6255
  ),
6256
+ _c(
6257
+ "el-button",
6258
+ {
6259
+ directives: [
6260
+ {
6261
+ name: "show",
6262
+ rawName: "v-show",
6263
+ value: _vm.isCanReadTransferHandle,
6264
+ expression: "isCanReadTransferHandle",
6265
+ },
6266
+ ],
6267
+ staticStyle: {
6268
+ margin: "10px 0px",
6269
+ "margin-left": "10px",
6270
+ },
6271
+ attrs: {
6272
+ size: "medium",
6273
+ disabled: _vm.readTransferHandleDisabled,
6274
+ },
6275
+ on: {
6276
+ click: function ($event) {
6277
+ _vm.taskReadTransferHandle()
6278
+ },
6279
+ },
6280
+ },
6281
+ [_vm._v("\n 阅转办\n ")]
6282
+ ),
6226
6283
  _vm.isCanFenyue == "1"
6227
6284
  ? _c(
6228
6285
  "el-button",
6229
6286
  {
6230
6287
  staticClass: "es-flow-btn",
6231
- staticStyle: { "margin-left": "0px" },
6288
+ staticStyle: {
6289
+ margin: "10px 0px",
6290
+ "margin-left": "10px",
6291
+ },
6232
6292
  attrs: { size: "medium" },
6233
6293
  on: { click: _vm.taskReadBtn },
6234
6294
  },
@@ -6275,6 +6335,7 @@ var render = function () {
6275
6335
  _vm.nodeInfo.nextNode,
6276
6336
  opinion: _vm.value,
6277
6337
  taskParams: _vm.taskParams,
6338
+ formType: _vm.processFormType,
6278
6339
  },
6279
6340
  on: {
6280
6341
  cancel: function ($event) {
@@ -6566,7 +6627,7 @@ var staticRenderFns = []
6566
6627
  render._withStripped = true
6567
6628
 
6568
6629
 
6569
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=eb32af70&
6630
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=74ef8ad5&
6570
6631
 
6571
6632
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6572
6633
  var regenerator_ = __webpack_require__(14);
@@ -7149,7 +7210,7 @@ var util = __webpack_require__(0);
7149
7210
 
7150
7211
  this.loading = true;
7151
7212
  util["a" /* default */].ajax({
7152
- url: id ? api["s" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7213
+ url: id ? api["v" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7153
7214
  params: { id: id }
7154
7215
  }).then(function (res) {
7155
7216
  var status = res.status,
@@ -7379,27 +7440,27 @@ var _components;
7379
7440
  return validSate;
7380
7441
  },
7381
7442
 
7382
- /**
7383
- * changeOpinion
7384
- * @desc:监听意见变化
7385
- * @author liufan
7386
- * @date 2022年10月28日
7443
+ /**
7444
+ * changeOpinion
7445
+ * @desc:监听意见变化
7446
+ * @author liufan
7447
+ * @date 2022年10月28日
7387
7448
  **/
7388
7449
  changeOpinion: function changeOpinion() {
7389
7450
  this.$emit('change', this.form.value);
7390
7451
  },
7391
7452
 
7392
- /**
7393
- * getCommonOpion
7394
- * @desc:获取意见
7395
- * @author liufan
7396
- * @date 2022年5月25日
7453
+ /**
7454
+ * getCommonOpion
7455
+ * @desc:获取意见
7456
+ * @author liufan
7457
+ * @date 2022年5月25日
7397
7458
  **/
7398
7459
  getCommonOpion: function getCommonOpion() {
7399
7460
  var _this = this;
7400
7461
 
7401
7462
  util["a" /* default */].ajax({
7402
- url: api["f" /* commonOpion */],
7463
+ url: api["i" /* commonOpion */],
7403
7464
  params: {
7404
7465
  userId: util["a" /* default */].getStorage('userId')
7405
7466
  },
@@ -7422,31 +7483,31 @@ var _components;
7422
7483
  });
7423
7484
  },
7424
7485
 
7425
- /**
7426
- * upDate
7427
- * @desc:修改常用语
7428
- * @author liufan
7429
- * @param {Object} val 修改值
7430
- * @date 2022年5月25日
7486
+ /**
7487
+ * upDate
7488
+ * @desc:修改常用语
7489
+ * @author liufan
7490
+ * @param {Object} val 修改值
7491
+ * @date 2022年5月25日
7431
7492
  **/
7432
7493
  upDate: function upDate(val) {
7433
7494
  this.FormData.id = val.id;
7434
7495
  this.addVisible = true;
7435
7496
  },
7436
7497
 
7437
- /**
7438
- * selectChange
7439
- * @desc:常用语选择
7440
- * @author liufan
7441
- * @param {String} val 选中值
7442
- * @date 2022年5月25日
7498
+ /**
7499
+ * selectChange
7500
+ * @desc:常用语选择
7501
+ * @author liufan
7502
+ * @param {String} val 选中值
7503
+ * @date 2022年5月25日
7443
7504
  **/
7444
7505
  selectChange: function selectChange(val) {
7445
7506
  var _this2 = this;
7446
7507
 
7447
7508
  var that = this;
7448
7509
  util["a" /* default */].ajax({
7449
- url: api["x" /* findSysParam */],
7510
+ url: api["A" /* findSysParam */],
7450
7511
  params: { cpName: 'commonOpinionsSelectType' }
7451
7512
  }).then(function (res) {
7452
7513
  if (res.status == 'success') {
@@ -7458,12 +7519,12 @@ var _components;
7458
7519
  });
7459
7520
  },
7460
7521
 
7461
- /**
7462
- * del
7463
- * @desc:删除常用语
7464
- * @author liufan
7465
- * @param {Object} val 删除的数据
7466
- * @date 2022年5月25日
7522
+ /**
7523
+ * del
7524
+ * @desc:删除常用语
7525
+ * @author liufan
7526
+ * @param {Object} val 删除的数据
7527
+ * @date 2022年5月25日
7467
7528
  **/
7468
7529
  del: function del(val) {
7469
7530
  var _this3 = this;
@@ -7475,7 +7536,7 @@ var _components;
7475
7536
  }).then(function () {
7476
7537
  _this3.loading = util["a" /* default */].loading(_this3.$loading, '删除中...');
7477
7538
  util["a" /* default */].ajax({
7478
- url: api["h" /* deleteCommonOpion */],
7539
+ url: api["k" /* deleteCommonOpion */],
7479
7540
  params: {
7480
7541
  id: val.id
7481
7542
  }
@@ -7505,12 +7566,12 @@ var _components;
7505
7566
  }).catch(function (e) {});
7506
7567
  },
7507
7568
 
7508
- /**
7509
- * submit
7510
- * @desc:新增/编辑意见保存
7511
- * @author liufan
7512
- * @param {Object} val 保存数据
7513
- * @date 2022年5月25日
7569
+ /**
7570
+ * submit
7571
+ * @desc:新增/编辑意见保存
7572
+ * @author liufan
7573
+ * @param {Object} val 保存数据
7574
+ * @date 2022年5月25日
7514
7575
  **/
7515
7576
  submit: function submit(val) {
7516
7577
  var _this4 = this;
@@ -7524,7 +7585,7 @@ var _components;
7524
7585
  }
7525
7586
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
7526
7587
  util["a" /* default */].ajax({
7527
- url: data.id ? api["fc" /* updateCommonOpinion */] : api["sb" /* saveCommonOpinion */],
7588
+ url: data.id ? api["kc" /* updateCommonOpinion */] : api["wb" /* saveCommonOpinion */],
7528
7589
  data: info,
7529
7590
  header: { 'Content-Type': 'multipart/form-data' },
7530
7591
  method: 'post'
@@ -7575,8 +7636,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
7575
7636
  )
7576
7637
 
7577
7638
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
7578
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=0829b0a1&
7579
- var processFormvue_type_template_id_0829b0a1_render = function () {
7639
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=1e31d327&
7640
+ var processFormvue_type_template_id_1e31d327_render = function () {
7580
7641
  var _vm = this
7581
7642
  var _h = _vm.$createElement
7582
7643
  var _c = _vm._self._c || _h
@@ -7650,13 +7711,18 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
7650
7711
  ],
7651
7712
  1
7652
7713
  ),
7653
- _vm.isSinglePage || _vm.copyHistory
7714
+ _vm.isSinglePage ||
7715
+ _vm.copyHistory ||
7716
+ _vm.formType == "readTransfer"
7654
7717
  ? _c(
7655
7718
  "el-form-item",
7656
7719
  {
7657
7720
  attrs: {
7658
7721
  prop: "newOpinion",
7659
- label: _vm.copyHistory ? "填写意见" : "意见",
7722
+ label:
7723
+ _vm.copyHistory || _vm.formType == "readTransfer"
7724
+ ? "填写意见"
7725
+ : "意见",
7660
7726
  },
7661
7727
  },
7662
7728
  [
@@ -7664,7 +7730,10 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
7664
7730
  staticClass: "opinions",
7665
7731
  attrs: {
7666
7732
  opinion: _vm.nextNode.newOpinion,
7667
- rows: _vm.copyHistory ? 2 : 5,
7733
+ rows:
7734
+ _vm.copyHistory || _vm.formType == "readTransfer"
7735
+ ? 2
7736
+ : 5,
7668
7737
  },
7669
7738
  on: {
7670
7739
  change: function (val) {
@@ -8106,11 +8175,11 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
8106
8175
  1
8107
8176
  )
8108
8177
  }
8109
- var processFormvue_type_template_id_0829b0a1_staticRenderFns = []
8110
- processFormvue_type_template_id_0829b0a1_render._withStripped = true
8178
+ var processFormvue_type_template_id_1e31d327_staticRenderFns = []
8179
+ processFormvue_type_template_id_1e31d327_render._withStripped = true
8111
8180
 
8112
8181
 
8113
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=0829b0a1&
8182
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=1e31d327&
8114
8183
 
8115
8184
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=615d0e78&
8116
8185
  var selectUservue_type_template_id_615d0e78_render = function () {
@@ -8448,7 +8517,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8448
8517
  newNextUser: [],
8449
8518
  newOptions: [],
8450
8519
  newSelectUserList: [],
8451
- url: api["W" /* handleInfo */],
8520
+ url: api["Z" /* handleInfo */],
8452
8521
  newCheckboxList: [],
8453
8522
  newPresetEdit: 0,
8454
8523
  newMultiple: false,
@@ -8565,7 +8634,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8565
8634
  if (query !== '') {
8566
8635
  this.searchLoading = true;
8567
8636
  util["a" /* default */].ajax({
8568
- url: api["W" /* handleInfo */],
8637
+ url: api["Z" /* handleInfo */],
8569
8638
  params: { searchKey: query, query: query, type: 'user' }
8570
8639
  }).then(function (res) {
8571
8640
  var status = res.status,
@@ -8980,7 +9049,7 @@ var CustomPresetvue_type_script_lang_js_components;
8980
9049
  nextNodeId: nodeId,
8981
9050
  businessId: this.id
8982
9051
  };
8983
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
9052
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
8984
9053
  var status = res.status,
8985
9054
  message = res.message,
8986
9055
  _res$data = res.data,
@@ -9078,7 +9147,7 @@ var CustomPresetvue_type_script_lang_js_components;
9078
9147
 
9079
9148
  isNoStart && (this.newPresetList = []);
9080
9149
  var params = {
9081
- url: api["M" /* getPresetCustomInfo */],
9150
+ url: api["P" /* getPresetCustomInfo */],
9082
9151
  data: {
9083
9152
  nodeId: nodeId,
9084
9153
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -9432,7 +9501,7 @@ var Presetvue_type_script_lang_js_components;
9432
9501
  nodeId = this.nodeId;
9433
9502
 
9434
9503
  var params = {
9435
- url: api["N" /* getPresetNodeInfo */],
9504
+ url: api["Q" /* getPresetNodeInfo */],
9436
9505
  data: {
9437
9506
  nextNodeId: nextNodeId,
9438
9507
  processDefinitionId: processDefinitionId,
@@ -9870,6 +9939,10 @@ var processFormvue_type_script_lang_js_components;
9870
9939
  type: String,
9871
9940
  default: ''
9872
9941
  },
9942
+ formType: {
9943
+ type: String,
9944
+ default: 'freeStart'
9945
+ },
9873
9946
  id: {
9874
9947
  type: String,
9875
9948
  default: ''
@@ -9995,7 +10068,7 @@ var processFormvue_type_script_lang_js_components;
9995
10068
  this.getStartFlow(this.processDefinitionId);
9996
10069
  if (this.copyHistory) {
9997
10070
  this.nextNode.newOpinion = this.opinion;
9998
- } else {
10071
+ } else if (this.formType != 'readTransfer') {
9999
10072
  this.newOpinion = this.opinion;
10000
10073
  }
10001
10074
  },
@@ -10008,7 +10081,7 @@ var processFormvue_type_script_lang_js_components;
10008
10081
  if (mainConfig) {
10009
10082
  this.userModel = JSON.parse(mainConfig).userModel;
10010
10083
  } else {
10011
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
10084
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
10012
10085
  var status = res.status,
10013
10086
  data = res.data;
10014
10087
 
@@ -10113,7 +10186,7 @@ var processFormvue_type_script_lang_js_components;
10113
10186
  var _this2 = this;
10114
10187
 
10115
10188
  util["a" /* default */].ajax({
10116
- url: api["u" /* findCodeValues */],
10189
+ url: api["x" /* findCodeValues */],
10117
10190
  params: {
10118
10191
  ccCode: 'notification_type',
10119
10192
  userId: util["a" /* default */].getStorage('userId')
@@ -10142,7 +10215,7 @@ var processFormvue_type_script_lang_js_components;
10142
10215
  nodeId: this.nextNode.nextNode,
10143
10216
  businessId: this.id
10144
10217
  };
10145
- util["a" /* default */].ajax({ url: api["K" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
10218
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
10146
10219
  if (res.status === 'success') {
10147
10220
  _this3.nextNode.noticeInfo = res.message;
10148
10221
  }
@@ -10214,7 +10287,7 @@ var processFormvue_type_script_lang_js_components;
10214
10287
  opinion: _this4.newOpinion || newOpinion
10215
10288
  };
10216
10289
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
10217
- if (_this4.isFreeStartFlow) {
10290
+ if (_this4.isFreeStartFlow || _this4.formType === 'readTransfer') {
10218
10291
  var newParm = {};
10219
10292
  newParm.copyHistory = _this4.copyHistory === 'needCopyPendedHistory';
10220
10293
  newParm.startFlowParamJson = params;
@@ -10225,11 +10298,19 @@ var processFormvue_type_script_lang_js_components;
10225
10298
  _this4.taskParams[key] = _this4.taskParams[key].length > 0 ? _this4.taskParams[key].join(',') : '';
10226
10299
  }
10227
10300
  }
10301
+
10228
10302
  newParm.submitTaskParamJson = JSON.stringify(_this4.taskParams);
10303
+ if (_this4.formType == 'readTransfer') {
10304
+ newParm.readTransferHandleStartFlowParamJson = JSON.stringify(params);
10305
+ newParm.taskReadEndParamJson = JSON.stringify(_this4.taskParams);
10306
+ delete newParm.copyHistory;
10307
+ delete newParm.startFlowParamJson;
10308
+ delete newParm.submitTaskParamJson;
10309
+ }
10229
10310
  params = newParm;
10230
10311
  }
10231
10312
  util["a" /* default */].ajax({
10232
- url: _this4.isFreeStartFlow ? api["z" /* freeStartFlowWithSubmitTask */] : api["pb" /* register */],
10313
+ url: _this4.isFreeStartFlow ? api["C" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Db" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["tb" /* register */],
10233
10314
  method: 'post',
10234
10315
  data: params
10235
10316
  }).then(function (res) {
@@ -10263,7 +10344,7 @@ var processFormvue_type_script_lang_js_components;
10263
10344
  businessId: this.id,
10264
10345
  userId: util["a" /* default */].getStorage('userId')
10265
10346
  };
10266
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
10347
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
10267
10348
  var status = res.status,
10268
10349
  message = res.message,
10269
10350
  _res$data = res.data,
@@ -10350,7 +10431,7 @@ var processFormvue_type_script_lang_js_components;
10350
10431
  var _this6 = this;
10351
10432
 
10352
10433
  util["a" /* default */].ajax({
10353
- url: api["w" /* findSysCodes */]
10434
+ url: api["z" /* findSysCodes */]
10354
10435
  }).then(function (res) {
10355
10436
  var status = res.status,
10356
10437
  message = res.message;
@@ -10377,11 +10458,11 @@ var processFormvue_type_script_lang_js_components;
10377
10458
  });
10378
10459
  },
10379
10460
 
10380
- /**
10381
- * isMultiple
10382
- * @desc:是否多选
10383
- * @author liufan
10384
- * @date 2022年9月13日
10461
+ /**
10462
+ * isMultiple
10463
+ * @desc:是否多选
10464
+ * @author liufan
10465
+ * @date 2022年9月13日
10385
10466
  **/
10386
10467
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
10387
10468
  var multiple = false;
@@ -10428,7 +10509,7 @@ var processFormvue_type_script_lang_js_components;
10428
10509
  businessId: this.businessId
10429
10510
  };
10430
10511
  // 获取节点
10431
- util["a" /* default */].ajax({ url: api["Pb" /* toStartFlow */], params: params }).then(function (res) {
10512
+ util["a" /* default */].ajax({ url: api["Ub" /* toStartFlow */], params: params }).then(function (res) {
10432
10513
  //pc接口返回数据处理
10433
10514
  var status = res.status,
10434
10515
  message = res.message,
@@ -10534,8 +10615,8 @@ var processFormvue_type_script_lang_js_components;
10534
10615
 
10535
10616
  var processForm_component = Object(componentNormalizer["a" /* default */])(
10536
10617
  src_processFormvue_type_script_lang_js_,
10537
- processFormvue_type_template_id_0829b0a1_render,
10538
- processFormvue_type_template_id_0829b0a1_staticRenderFns,
10618
+ processFormvue_type_template_id_1e31d327_render,
10619
+ processFormvue_type_template_id_1e31d327_staticRenderFns,
10539
10620
  false,
10540
10621
  null,
10541
10622
  null,
@@ -10903,7 +10984,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
10903
10984
  notificationType = _sendInfo.notificationType;
10904
10985
 
10905
10986
  var params = {
10906
- url: api["yb" /* sendMsg */],
10987
+ url: api["Cb" /* sendMsg */],
10907
10988
  headers: { Accept: 'application/json,text/plain' },
10908
10989
  method: 'post',
10909
10990
  data: {
@@ -10965,7 +11046,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
10965
11046
 
10966
11047
  this.loading = true;
10967
11048
  util["a" /* default */].ajax({
10968
- url: api["Ob" /* toSendMsg */],
11049
+ url: api["Tb" /* toSendMsg */],
10969
11050
  params: { pendingId: this.$attrs.pendingId }
10970
11051
  }).then(function (res) {
10971
11052
  var status = res.status,
@@ -11786,7 +11867,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11786
11867
  var _this = this;
11787
11868
 
11788
11869
  util["a" /* default */].ajax({
11789
- url: api["u" /* findCodeValues */],
11870
+ url: api["x" /* findCodeValues */],
11790
11871
  params: {
11791
11872
  ccCode: 'notification_type',
11792
11873
  userId: util["a" /* default */].getStorage('userId')
@@ -11829,7 +11910,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11829
11910
  userId: util["a" /* default */].getStorage('userId'),
11830
11911
  nextNodeId: _this2.nextNode.nextNodeId
11831
11912
  };
11832
- util["a" /* default */].ajax({ url: api["Eb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
11913
+ util["a" /* default */].ajax({ url: api["Jb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
11833
11914
  var status = res.status,
11834
11915
  message = res.message;
11835
11916
 
@@ -11860,7 +11941,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11860
11941
  var _this3 = this;
11861
11942
 
11862
11943
  util["a" /* default */].ajax({
11863
- url: api["w" /* findSysCodes */]
11944
+ url: api["z" /* findSysCodes */]
11864
11945
  }).then(function (res) {
11865
11946
  var status = res.status,
11866
11947
  message = res.message;
@@ -11893,7 +11974,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11893
11974
  isSinglePage: false,
11894
11975
  opinion: this.option
11895
11976
  };
11896
- util["a" /* default */].ajax({ url: api["Tb" /* toTaskRejectHtml */], params: params }).then(function (res) {
11977
+ util["a" /* default */].ajax({ url: api["Yb" /* toTaskRejectHtml */], params: params }).then(function (res) {
11897
11978
  var status = res.status,
11898
11979
  message = res.message,
11899
11980
  _res$data = res.data,
@@ -11959,8 +12040,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
11959
12040
  )
11960
12041
 
11961
12042
  /* harmony default export */ var processReject = (processReject_component.exports);
11962
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=1372220b&
11963
- var startTaskReadvue_type_template_id_1372220b_render = function () {
12043
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=1d99a67a&
12044
+ var startTaskReadvue_type_template_id_1d99a67a_render = function () {
11964
12045
  var _vm = this
11965
12046
  var _h = _vm.$createElement
11966
12047
  var _c = _vm._self._c || _h
@@ -11994,11 +12075,10 @@ var startTaskReadvue_type_template_id_1372220b_render = function () {
11994
12075
  _c(
11995
12076
  "div",
11996
12077
  {
11997
- staticStyle: {
11998
- "max-height": "290px",
11999
- "overflow-y": "auto",
12000
- "margin-bottom": "10px",
12001
- },
12078
+ style:
12079
+ "max-height: " +
12080
+ (_vm.typeCode ? "unset" : "290px") +
12081
+ "; overflow-y: auto; margin-bottom: 10px",
12002
12082
  },
12003
12083
  [
12004
12084
  _vm.type === "transfer"
@@ -12385,11 +12465,11 @@ var startTaskReadvue_type_template_id_1372220b_render = function () {
12385
12465
  1
12386
12466
  )
12387
12467
  }
12388
- var startTaskReadvue_type_template_id_1372220b_staticRenderFns = []
12389
- startTaskReadvue_type_template_id_1372220b_render._withStripped = true
12468
+ var startTaskReadvue_type_template_id_1d99a67a_staticRenderFns = []
12469
+ startTaskReadvue_type_template_id_1d99a67a_render._withStripped = true
12390
12470
 
12391
12471
 
12392
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=1372220b&
12472
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=1d99a67a&
12393
12473
 
12394
12474
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=script&lang=js&
12395
12475
  var startTaskReadvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -12566,6 +12646,7 @@ var startTaskReadvue_type_script_lang_js_components;
12566
12646
  newsInfo: { type: String, default: '' },
12567
12647
  type: { type: String, default: '' },
12568
12648
  option: { type: String, default: '' },
12649
+ typeCode: { type: String, default: '' },
12569
12650
  taskExamine: { type: Object, default: function _default() {} }
12570
12651
  },
12571
12652
  data: function data() {
@@ -12640,7 +12721,7 @@ var startTaskReadvue_type_script_lang_js_components;
12640
12721
  taskExamine = this.taskExamine;
12641
12722
 
12642
12723
  var params = {
12643
- url: api["Zb" /* toTaskTransferIndex */],
12724
+ url: api["ec" /* toTaskTransferIndex */],
12644
12725
  params: {
12645
12726
  opinion: opinion,
12646
12727
  pendingId: pendingId,
@@ -12765,7 +12846,7 @@ var startTaskReadvue_type_script_lang_js_components;
12765
12846
  var _this3 = this;
12766
12847
 
12767
12848
  var params = {
12768
- url: api["Qb" /* toStartTaskRead */],
12849
+ url: api["Vb" /* toStartTaskRead */],
12769
12850
  params: { pendingId: this.pendingId, taskAction: this.type }
12770
12851
  };
12771
12852
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -12804,7 +12885,7 @@ var startTaskReadvue_type_script_lang_js_components;
12804
12885
  var _this5 = this;
12805
12886
 
12806
12887
  util["a" /* default */].ajax({
12807
- url: api["u" /* findCodeValues */],
12888
+ url: api["x" /* findCodeValues */],
12808
12889
  params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
12809
12890
  }).then(function (res) {
12810
12891
  var status = res.status,
@@ -12847,7 +12928,7 @@ var startTaskReadvue_type_script_lang_js_components;
12847
12928
  type = this.type;
12848
12929
 
12849
12930
  var params = {
12850
- url: api["Ib" /* taskTransfer */],
12931
+ url: api["Nb" /* taskTransfer */],
12851
12932
  data: {
12852
12933
  choiceDeptId: choiceDeptId,
12853
12934
  choiceOrgId: choiceOrgId,
@@ -12941,7 +13022,7 @@ var startTaskReadvue_type_script_lang_js_components;
12941
13022
  !download && delete params.isDownload;
12942
13023
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
12943
13024
  util["a" /* default */].ajax({
12944
- url: api["Db" /* taskReadHtml */],
13025
+ url: api["Ib" /* taskReadHtml */],
12945
13026
  params: { taskAction: _this7.type },
12946
13027
  headers: {
12947
13028
  Accept: 'application/json,text/plain'
@@ -12980,7 +13061,7 @@ var startTaskReadvue_type_script_lang_js_components;
12980
13061
 
12981
13062
  this.loading = true;
12982
13063
  util["a" /* default */].ajax({
12983
- url: api["w" /* findSysCodes */]
13064
+ url: api["z" /* findSysCodes */]
12984
13065
  }).then(function (res) {
12985
13066
  var status = res.status,
12986
13067
  message = res.message,
@@ -13023,8 +13104,8 @@ var startTaskReadvue_type_script_lang_js_components;
13023
13104
 
13024
13105
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13025
13106
  src_startTaskReadvue_type_script_lang_js_,
13026
- startTaskReadvue_type_template_id_1372220b_render,
13027
- startTaskReadvue_type_template_id_1372220b_staticRenderFns,
13107
+ startTaskReadvue_type_template_id_1d99a67a_render,
13108
+ startTaskReadvue_type_template_id_1d99a67a_staticRenderFns,
13028
13109
  false,
13029
13110
  null,
13030
13111
  null,
@@ -13033,8 +13114,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13033
13114
  )
13034
13115
 
13035
13116
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
13036
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=5f0800ef&
13037
- var resetvue_type_template_id_5f0800ef_render = function () {
13117
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=506a888c&
13118
+ var resetvue_type_template_id_506a888c_render = function () {
13038
13119
  var _vm = this
13039
13120
  var _h = _vm.$createElement
13040
13121
  var _c = _vm._self._c || _h
@@ -13050,6 +13131,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
13050
13131
  },
13051
13132
  ],
13052
13133
  staticClass: "es-flow-form",
13134
+ staticStyle: { height: "100%" },
13053
13135
  attrs: {
13054
13136
  "element-loading-text": "加载中...",
13055
13137
  "element-loading-spinner": "el-icon-loading",
@@ -13061,7 +13143,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
13061
13143
  "el-form",
13062
13144
  {
13063
13145
  ref: "nextNode",
13064
- staticClass: "demo-dynamic",
13146
+ staticClass: "es-reset-flow demo-dynamic",
13065
13147
  attrs: {
13066
13148
  model: _vm.nextNode,
13067
13149
  "label-width": "100px",
@@ -13071,7 +13153,7 @@ var resetvue_type_template_id_5f0800ef_render = function () {
13071
13153
  [
13072
13154
  _c(
13073
13155
  "div",
13074
- { staticStyle: { "margin-bottom": "10px" } },
13156
+ { staticClass: "es-reset-flow-form-box" },
13075
13157
  [
13076
13158
  _c(
13077
13159
  "el-form-item",
@@ -13459,11 +13541,11 @@ var resetvue_type_template_id_5f0800ef_render = function () {
13459
13541
  1
13460
13542
  )
13461
13543
  }
13462
- var resetvue_type_template_id_5f0800ef_staticRenderFns = []
13463
- resetvue_type_template_id_5f0800ef_render._withStripped = true
13544
+ var resetvue_type_template_id_506a888c_staticRenderFns = []
13545
+ resetvue_type_template_id_506a888c_render._withStripped = true
13464
13546
 
13465
13547
 
13466
- // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=5f0800ef&
13548
+ // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=506a888c&
13467
13549
 
13468
13550
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
13469
13551
  var resetvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -13681,6 +13763,7 @@ var resetvue_type_script_lang_js_components;
13681
13763
  //
13682
13764
  //
13683
13765
  //
13766
+ //
13684
13767
 
13685
13768
 
13686
13769
 
@@ -13815,7 +13898,7 @@ var resetvue_type_script_lang_js_components;
13815
13898
  if (mainConfig) {
13816
13899
  this.userModel = JSON.parse(mainConfig).userModel;
13817
13900
  } else {
13818
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
13901
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
13819
13902
  var status = res.status,
13820
13903
  data = res.data;
13821
13904
 
@@ -13908,7 +13991,7 @@ var resetvue_type_script_lang_js_components;
13908
13991
  var _this2 = this;
13909
13992
 
13910
13993
  util["a" /* default */].ajax({
13911
- url: api["u" /* findCodeValues */],
13994
+ url: api["x" /* findCodeValues */],
13912
13995
  params: {
13913
13996
  ccCode: 'notification_type',
13914
13997
  userId: util["a" /* default */].getStorage('userId')
@@ -13938,7 +14021,7 @@ var resetvue_type_script_lang_js_components;
13938
14021
  nodeId: this.nextNode.nextNode,
13939
14022
  businessId: this.taskExamine.businessId
13940
14023
  };
13941
- util["a" /* default */].ajax({ url: api["K" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
14024
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
13942
14025
  if (res.status === 'success') {
13943
14026
  _this3.nextNode.noticeInfo = res.message;
13944
14027
  }
@@ -14023,7 +14106,7 @@ var resetvue_type_script_lang_js_components;
14023
14106
  };
14024
14107
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
14025
14108
  util["a" /* default */].ajax({
14026
- url: _this4.type == 'reset' ? api["rb" /* resetProcess */] : api["Bb" /* taskContinuation */],
14109
+ url: _this4.type == 'reset' ? api["vb" /* resetProcess */] : api["Gb" /* taskContinuation */],
14027
14110
  method: 'post',
14028
14111
  data: params
14029
14112
  }).then(function (res) {
@@ -14057,7 +14140,7 @@ var resetvue_type_script_lang_js_components;
14057
14140
  businessId: this.taskExamine.businessId,
14058
14141
  pendingId: this.taskExamine.pendingId
14059
14142
  };
14060
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
14143
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
14061
14144
  var status = res.status,
14062
14145
  message = res.message,
14063
14146
  _res$data = res.data,
@@ -14158,7 +14241,7 @@ var resetvue_type_script_lang_js_components;
14158
14241
  var _this6 = this;
14159
14242
 
14160
14243
  util["a" /* default */].ajax({
14161
- url: api["w" /* findSysCodes */]
14244
+ url: api["z" /* findSysCodes */]
14162
14245
  }).then(function (res) {
14163
14246
  var status = res.status,
14164
14247
  message = res.message;
@@ -14186,11 +14269,11 @@ var resetvue_type_script_lang_js_components;
14186
14269
  });
14187
14270
  },
14188
14271
 
14189
- /**
14190
- * isMultiple
14191
- * @desc:是否多选
14192
- * @author liufan
14193
- * @date 2022年9月13日
14272
+ /**
14273
+ * isMultiple
14274
+ * @desc:是否多选
14275
+ * @author liufan
14276
+ * @date 2022年9月13日
14194
14277
  **/
14195
14278
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14196
14279
  var multiple = false;
@@ -14227,14 +14310,16 @@ var resetvue_type_script_lang_js_components;
14227
14310
  var _this7 = this;
14228
14311
 
14229
14312
  var params = {
14230
- url: this.type == 'continuation' ? api["Sb" /* toTaskContinuationIndex */] : api["Nb" /* toResetProcessIndex */],
14313
+ url: this.type == 'continuation' ? api["Xb" /* toTaskContinuationIndex */] : api["Sb" /* toResetProcessIndex */],
14231
14314
  params: resetvue_type_script_lang_js_extends({
14232
14315
  appId: this.appId
14233
14316
  }, this.flowParams)
14234
14317
  };
14318
+ this.loading = true;
14235
14319
  // 获取节点
14236
14320
  util["a" /* default */].ajax(params).then(function (res) {
14237
14321
  //pc接口返回数据处理
14322
+ _this7.loading = false;
14238
14323
  var status = res.status,
14239
14324
  message = res.message,
14240
14325
  data = res.data;
@@ -14321,8 +14406,8 @@ var resetvue_type_script_lang_js_components;
14321
14406
 
14322
14407
  var reset_component = Object(componentNormalizer["a" /* default */])(
14323
14408
  src_resetvue_type_script_lang_js_,
14324
- resetvue_type_template_id_5f0800ef_render,
14325
- resetvue_type_template_id_5f0800ef_staticRenderFns,
14409
+ resetvue_type_template_id_506a888c_render,
14410
+ resetvue_type_template_id_506a888c_staticRenderFns,
14326
14411
  false,
14327
14412
  null,
14328
14413
  null,
@@ -14803,7 +14888,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14803
14888
  pendingId = this.pendingId;
14804
14889
 
14805
14890
  var params = {
14806
- url: api["Fb" /* taskReview */],
14891
+ url: api["Kb" /* taskReview */],
14807
14892
  data: {
14808
14893
  nextUserId: nextOtherOrgObj.join(','),
14809
14894
  notificationType: noticeType.join(','),
@@ -14839,7 +14924,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14839
14924
  var _this2 = this;
14840
14925
 
14841
14926
  var params = {
14842
- url: api["Ub" /* toTaskReview */],
14927
+ url: api["Zb" /* toTaskReview */],
14843
14928
  params: { pendingId: this.pendingId }
14844
14929
  };
14845
14930
  util["a" /* default */].ajax(params).then(function (res) {
@@ -14873,7 +14958,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14873
14958
  var _this3 = this;
14874
14959
 
14875
14960
  var params = {
14876
- url: this.type == 'takeAdvice' ? api["Yb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Vb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["bc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["cc" /* toTwoOfficesDispatch */] : api["ac" /* toTaskUnionExamine */],
14961
+ url: this.type == 'takeAdvice' ? api["dc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["ac" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["gc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["hc" /* toTwoOfficesDispatch */] : api["fc" /* toTaskUnionExamine */],
14877
14962
  params: { pendingId: this.pendingId },
14878
14963
  headers: { Accept: 'application/json,text/plain' }
14879
14964
  };
@@ -14994,7 +15079,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14994
15079
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
14995
15080
  // return this.$message.warning('暂未开放,敬请期待!');
14996
15081
  var param = {
14997
- url: this.type === 'startDraf' ? api["Gb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Kb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["ec" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Hb" /* taskTakeAdvice */] : api["Jb" /* taskUnionExamine */],
15082
+ url: this.type === 'startDraf' ? api["Lb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Pb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["jc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Mb" /* taskTakeAdvice */] : api["Ob" /* taskUnionExamine */],
14998
15083
  data: {
14999
15084
  opinion: opinion,
15000
15085
  pendingId: pendingId,
@@ -15060,7 +15145,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15060
15145
  var _this5 = this;
15061
15146
 
15062
15147
  util["a" /* default */].ajax({
15063
- url: api["u" /* findCodeValues */],
15148
+ url: api["x" /* findCodeValues */],
15064
15149
  params: {
15065
15150
  ccCode: 'notification_type',
15066
15151
  userId: util["a" /* default */].getStorage('userId')
@@ -15088,7 +15173,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15088
15173
  var params = {
15089
15174
  pendingId: this.pendingId
15090
15175
  };
15091
- util["a" /* default */].ajax({ url: api["K" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15176
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15092
15177
  if (res.status === 'success') {
15093
15178
  _this6.infoList.noticeInfo = res.message;
15094
15179
  }
@@ -15104,7 +15189,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15104
15189
  var _this7 = this;
15105
15190
 
15106
15191
  util["a" /* default */].ajax({
15107
- url: api["w" /* findSysCodes */]
15192
+ url: api["z" /* findSysCodes */]
15108
15193
  }).then(function (res) {
15109
15194
  var status = res.status,
15110
15195
  message = res.message;
@@ -18342,7 +18427,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18342
18427
  var _this = this;
18343
18428
 
18344
18429
  var params = {
18345
- url: api["A" /* getAdjunctFileInfos */],
18430
+ url: api["D" /* getAdjunctFileInfos */],
18346
18431
  params: { ownId: ownId, code: code }
18347
18432
  };
18348
18433
  util["a" /* default */].ajax(params).then(function (res) {
@@ -18430,7 +18515,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18430
18515
  taskAction: 'complete'
18431
18516
  };
18432
18517
  util["a" /* default */].ajax({
18433
- url: api["Db" /* taskReadHtml */],
18518
+ url: api["Ib" /* taskReadHtml */],
18434
18519
  params: { taskAction: 'complete' },
18435
18520
  headers: {
18436
18521
  Accept: 'application/json,text/plain'
@@ -18462,7 +18547,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18462
18547
 
18463
18548
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
18464
18549
  util["a" /* default */].ajax({
18465
- url: api["Rb" /* toStartTaskReadIndex */],
18550
+ url: api["Wb" /* toStartTaskReadIndex */],
18466
18551
  params: { pendingId: this.pendingId }
18467
18552
  }).then(function (res) {
18468
18553
  var status = res.status,
@@ -18498,7 +18583,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18498
18583
  if (mainConfig) {
18499
18584
  this.userModel = JSON.parse(mainConfig).userModel;
18500
18585
  } else {
18501
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
18586
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
18502
18587
  var status = res.status,
18503
18588
  data = res.data;
18504
18589
 
@@ -18533,7 +18618,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18533
18618
  var _this5 = this;
18534
18619
 
18535
18620
  util["a" /* default */].ajax({
18536
- url: api["u" /* findCodeValues */],
18621
+ url: api["x" /* findCodeValues */],
18537
18622
  params: {
18538
18623
  ccCode: 'notification_type',
18539
18624
  userId: util["a" /* default */].getStorage('userId')
@@ -18552,11 +18637,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18552
18637
  });
18553
18638
  },
18554
18639
 
18555
- /**
18556
- * saveInfo
18557
- * @desc:暂存
18558
- * @author liufan
18559
- * @date 2022年9月9日
18640
+ /**
18641
+ * saveInfo
18642
+ * @desc:暂存
18643
+ * @author liufan
18644
+ * @date 2022年9月9日
18560
18645
  **/
18561
18646
  saveInfo: function saveInfo(type, btn) {
18562
18647
  var _this6 = this;
@@ -18599,7 +18684,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18599
18684
  pendingId: this.pendingId
18600
18685
  };
18601
18686
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
18602
- util["a" /* default */].ajax({ url: api["Lb" /* tempSave */], params: params }).then(function (res) {
18687
+ util["a" /* default */].ajax({ url: api["Qb" /* tempSave */], params: params }).then(function (res) {
18603
18688
  var status = res.status,
18604
18689
  message = res.message;
18605
18690
 
@@ -18618,11 +18703,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18618
18703
  });
18619
18704
  },
18620
18705
 
18621
- /**
18622
- * rejectBtn
18623
- * @desc:点击驳回
18624
- * @author liufan
18625
- * @date 2022年5月25日
18706
+ /**
18707
+ * rejectBtn
18708
+ * @desc:点击驳回
18709
+ * @author liufan
18710
+ * @date 2022年5月25日
18626
18711
  **/
18627
18712
  rejectBtn: function rejectBtn() {
18628
18713
  var _this8 = this;
@@ -18640,11 +18725,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18640
18725
  }
18641
18726
  },
18642
18727
 
18643
- /**
18644
- * taskReadBtn
18645
- * @desc:点击分阅
18646
- * @author liufan
18647
- * @date 2022年5月25日
18728
+ /**
18729
+ * taskReadBtn
18730
+ * @desc:点击分阅
18731
+ * @author liufan
18732
+ * @date 2022年5月25日
18648
18733
  **/
18649
18734
  taskReadBtn: function taskReadBtn() {
18650
18735
  var _this9 = this;
@@ -18663,17 +18748,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18663
18748
  }
18664
18749
  },
18665
18750
 
18666
- /**
18667
- * getFind
18668
- * @desc:获取通知方式
18669
- * @author liufan
18670
- * @date 2022年5月25日
18751
+ /**
18752
+ * getFind
18753
+ * @desc:获取通知方式
18754
+ * @author liufan
18755
+ * @date 2022年5月25日
18671
18756
  **/
18672
18757
  getFind: function getFind() {
18673
18758
  var _this10 = this;
18674
18759
 
18675
18760
  util["a" /* default */].ajax({
18676
- url: api["w" /* findSysCodes */]
18761
+ url: api["z" /* findSysCodes */]
18677
18762
  }).then(function (res) {
18678
18763
  var status = res.status,
18679
18764
  message = res.message;
@@ -18705,7 +18790,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18705
18790
  nodeId = _endFlowInfo.nodeId;
18706
18791
 
18707
18792
  var param = {
18708
- url: api["F" /* getFreeStartFlowParams */],
18793
+ url: api["I" /* getFreeStartFlowParams */],
18709
18794
  params: {
18710
18795
  businessId: businessId,
18711
18796
  processDefinitionId: processDefinitionId,
@@ -18722,12 +18807,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18722
18807
  });
18723
18808
  },
18724
18809
 
18725
- /**
18726
- * endFlows
18727
- * @desc:直接办结
18728
- * @author liufan
18729
- * @param {Object} res 直接办结数据
18730
- * @date 2022年5月25日
18810
+ /**
18811
+ * endFlows
18812
+ * @desc:直接办结
18813
+ * @author liufan
18814
+ * @param {Object} res 直接办结数据
18815
+ * @date 2022年5月25日
18731
18816
  **/
18732
18817
  endFlows: function endFlows(res) {
18733
18818
  var _this12 = this;
@@ -18745,7 +18830,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18745
18830
 
18746
18831
  this.$confirm('确认' + res.value + '?').then(function () {
18747
18832
  var params = {
18748
- url: api["t" /* endFlowHtml */],
18833
+ url: api["w" /* endFlowHtml */],
18749
18834
  headers: { Accept: 'application/json,text/plain' },
18750
18835
  method: 'post',
18751
18836
  data: freeStartFlowvue_type_script_lang_js_extends({}, _this13.endFlowInfo, _this13.nextNode, {
@@ -18781,12 +18866,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18781
18866
  }).catch(function (e) {});
18782
18867
  },
18783
18868
 
18784
- /**
18785
- * goView
18786
- * @desc:更多流程按钮操作
18787
- * @author liufan
18788
- * @param {Object} res 当前点击操作按钮数据
18789
- * @date 2022年5月25日
18869
+ /**
18870
+ * goView
18871
+ * @desc:更多流程按钮操作
18872
+ * @author liufan
18873
+ * @param {Object} res 当前点击操作按钮数据
18874
+ * @date 2022年5月25日
18790
18875
  **/
18791
18876
  goView: function goView(res) {
18792
18877
  // 驳回并办结:rejectAndEndHtml
@@ -18871,11 +18956,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18871
18956
  // isCanStartSubFlow
18872
18957
  },
18873
18958
 
18874
- /**
18875
- * toTakeAdvice
18876
- * @desc:征求意见
18877
- * @author liufan
18878
- * @date 2022年9月29日
18959
+ /**
18960
+ * toTakeAdvice
18961
+ * @desc:征求意见
18962
+ * @author liufan
18963
+ * @date 2022年9月29日
18879
18964
  **/
18880
18965
  toTakeAdvice: function toTakeAdvice(res) {
18881
18966
  var _this14 = this;
@@ -18893,7 +18978,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18893
18978
  var _this15 = this;
18894
18979
 
18895
18980
  var params = {
18896
- url: api["db" /* isCanStartSubFlow */],
18981
+ url: api["gb" /* isCanStartSubFlow */],
18897
18982
  data: {
18898
18983
  appId: this.taskExamineInfo.appId,
18899
18984
  inevitableNode: res.inevitableNode
@@ -18919,11 +19004,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18919
19004
  });
18920
19005
  },
18921
19006
 
18922
- /**
18923
- * toStartDraf
18924
- * @desc: 稿件递送、联合审核、复核
18925
- * @author liufan
18926
- * @date 2022年9月29日
19007
+ /**
19008
+ * toStartDraf
19009
+ * @desc: 稿件递送、联合审核、复核
19010
+ * @author liufan
19011
+ * @date 2022年9月29日
18927
19012
  **/
18928
19013
  toStartDraf: function toStartDraf(res) {
18929
19014
  var _this16 = this;
@@ -18937,11 +19022,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18937
19022
  }
18938
19023
  },
18939
19024
 
18940
- /**
18941
- * toSendMsg
18942
- * @desc:核稿通知
18943
- * @author liufan
18944
- * @date 2022年9月29日
19025
+ /**
19026
+ * toSendMsg
19027
+ * @desc:核稿通知
19028
+ * @author liufan
19029
+ * @date 2022年9月29日
18945
19030
  **/
18946
19031
  toSendMsg: function toSendMsg(res) {
18947
19032
  var _this17 = this;
@@ -18955,11 +19040,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18955
19040
  }
18956
19041
  },
18957
19042
 
18958
- /**
18959
- * toTaskReadAndEnd
18960
- * @desc:分阅并办结
18961
- * @author liufan
18962
- * @date 2022年9月29日
19043
+ /**
19044
+ * toTaskReadAndEnd
19045
+ * @desc:分阅并办结
19046
+ * @author liufan
19047
+ * @date 2022年9月29日
18963
19048
  **/
18964
19049
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
18965
19050
  var _this18 = this;
@@ -18977,11 +19062,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18977
19062
  }
18978
19063
  },
18979
19064
 
18980
- /**
18981
- * rejectAndEnd
18982
- * @desc:驳回并办结
18983
- * @author liufan
18984
- * @date 2022年9月29日
19065
+ /**
19066
+ * rejectAndEnd
19067
+ * @desc:驳回并办结
19068
+ * @author liufan
19069
+ * @date 2022年9月29日
18985
19070
  **/
18986
19071
  rejectAndEnd: function rejectAndEnd(res) {
18987
19072
  var _this19 = this;
@@ -19003,7 +19088,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19003
19088
  this.$confirm('确认' + res.value + '?').then(function () {
19004
19089
  // return this.$message.warning('请填写意见');
19005
19090
  var params = {
19006
- url: api["qb" /* rejectAndEnd */],
19091
+ url: api["ub" /* rejectAndEnd */],
19007
19092
  headers: { Accept: 'application/json,text/plain' },
19008
19093
  method: 'post',
19009
19094
  data: {
@@ -19036,11 +19121,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19036
19121
  });
19037
19122
  },
19038
19123
 
19039
- /**
19040
- * toTransfer
19041
- * @desc:转办
19042
- * @author liufan
19043
- * @date 2022年9月29日
19124
+ /**
19125
+ * toTransfer
19126
+ * @desc:转办
19127
+ * @author liufan
19128
+ * @date 2022年9月29日
19044
19129
  **/
19045
19130
  toTransfer: function toTransfer(res) {
19046
19131
  var _this21 = this;
@@ -19056,11 +19141,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19056
19141
  }
19057
19142
  },
19058
19143
 
19059
- /**
19060
- * getNodeInfo
19061
- * @desc:获取节点信息
19062
- * @author liufan
19063
- * @date 2022年5月25日
19144
+ /**
19145
+ * getNodeInfo
19146
+ * @desc:获取节点信息
19147
+ * @author liufan
19148
+ * @date 2022年5月25日
19064
19149
  **/
19065
19150
  getNodeInfo: function getNodeInfo() {
19066
19151
  var _this22 = this;
@@ -19073,7 +19158,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19073
19158
  pendingId: this.pendingId,
19074
19159
  businessId: this.businessIds
19075
19160
  };
19076
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
19161
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
19077
19162
  var status = res.status,
19078
19163
  message = res.message,
19079
19164
  data = res.data;
@@ -19159,12 +19244,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19159
19244
  });
19160
19245
  },
19161
19246
 
19162
- /**
19163
- * selecNext
19164
- * @desc:下步节点变化时更新数据
19165
- * @author liufan
19166
- * @param {String} val 当前选中值
19167
- * @date 2022年5月25日
19247
+ /**
19248
+ * selecNext
19249
+ * @desc:下步节点变化时更新数据
19250
+ * @author liufan
19251
+ * @param {String} val 当前选中值
19252
+ * @date 2022年5月25日
19168
19253
  **/
19169
19254
  selecNext: function selecNext(val, type, isDef) {
19170
19255
  var _this23 = this;
@@ -19273,11 +19358,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19273
19358
  if (isDef !== true) this.getNodeInfo();
19274
19359
  },
19275
19360
 
19276
- /**
19277
- * isMultiple
19278
- * @desc:是否多选
19279
- * @author liufan
19280
- * @date 2022年9月13日
19361
+ /**
19362
+ * isMultiple
19363
+ * @desc:是否多选
19364
+ * @author liufan
19365
+ * @date 2022年9月13日
19281
19366
  **/
19282
19367
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19283
19368
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19309,11 +19394,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19309
19394
  }
19310
19395
  },
19311
19396
 
19312
- /**
19313
- * getHedInfo
19314
- * @desc:获取审核页面数据
19315
- * @author liufan
19316
- * @date 2022年5月25日
19397
+ /**
19398
+ * getHedInfo
19399
+ * @desc:获取审核页面数据
19400
+ * @author liufan
19401
+ * @date 2022年5月25日
19317
19402
  **/
19318
19403
  getHedInfo: function getHedInfo() {
19319
19404
  var _this24 = this;
@@ -19323,7 +19408,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19323
19408
  pendingId: this.pendingId,
19324
19409
  userId: util["a" /* default */].getStorage('userId')
19325
19410
  };
19326
- util["a" /* default */].ajax({ url: api["G" /* getHandleInfoHtml */], params: params }).then(function (res) {
19411
+ util["a" /* default */].ajax({ url: api["J" /* getHandleInfoHtml */], params: params }).then(function (res) {
19327
19412
  //pc返回数据
19328
19413
 
19329
19414
  _this24.loading.close();
@@ -19549,13 +19634,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19549
19634
  });
19550
19635
  },
19551
19636
 
19552
- /**
19553
- * closeProcess
19554
- * @desc:关闭弹窗
19555
- * @author liufan
19556
- * @param {boolean} val 当前是否办理流程
19557
- * @param {String} type 当前点击的弹窗类型
19558
- * @date 2022年5月25日
19637
+ /**
19638
+ * closeProcess
19639
+ * @desc:关闭弹窗
19640
+ * @author liufan
19641
+ * @param {boolean} val 当前是否办理流程
19642
+ * @param {String} type 当前点击的弹窗类型
19643
+ * @date 2022年5月25日
19559
19644
  **/
19560
19645
  closeProcess: function closeProcess(val, type, closeParent) {
19561
19646
  if (closeParent) {
@@ -19572,23 +19657,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19572
19657
  }
19573
19658
  },
19574
19659
 
19575
- /**
19576
- * selectChange
19577
- * @desc:常用语选择
19578
- * @author liufan
19579
- * @param {String} val 选中值
19580
- * @date 2022年5月25日
19660
+ /**
19661
+ * selectChange
19662
+ * @desc:常用语选择
19663
+ * @author liufan
19664
+ * @param {String} val 选中值
19665
+ * @date 2022年5月25日
19581
19666
  **/
19582
19667
  selectChange: function selectChange(val) {
19583
19668
  this.value = val;
19584
19669
  },
19585
19670
 
19586
- /**
19587
- * upDate
19588
- * @desc:修改常用语
19589
- * @author liufan
19590
- * @param {Object} val 修改值
19591
- * @date 2022年5月25日
19671
+ /**
19672
+ * upDate
19673
+ * @desc:修改常用语
19674
+ * @author liufan
19675
+ * @param {Object} val 修改值
19676
+ * @date 2022年5月25日
19592
19677
  **/
19593
19678
  upDate: function upDate(val) {
19594
19679
  this.FormData.id = val.id;
@@ -19596,11 +19681,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19596
19681
  },
19597
19682
 
19598
19683
 
19599
- /**
19600
- * getProcess
19601
- * @desc:获取选择流程
19602
- * @author liufan
19603
- * @date 2022年5月25日
19684
+ /**
19685
+ * getProcess
19686
+ * @desc:获取选择流程
19687
+ * @author liufan
19688
+ * @date 2022年5月25日
19604
19689
  **/
19605
19690
  getProcess: function getProcess() {
19606
19691
  var _this25 = this;
@@ -19615,7 +19700,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19615
19700
  // onlyFlag: true
19616
19701
  };
19617
19702
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
19618
- util["a" /* default */].ajax({ url: api["O" /* getProcessDefList */], params: params }).then(function (res) {
19703
+ util["a" /* default */].ajax({ url: api["R" /* getProcessDefList */], params: params }).then(function (res) {
19619
19704
  var status = res.status,
19620
19705
  message = res.message,
19621
19706
  data = res.data;
@@ -19654,11 +19739,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19654
19739
  });
19655
19740
  },
19656
19741
 
19657
- /**
19658
- * getPendedhistoryList
19659
- * @desc:获取流程列表
19660
- * @author liufan
19661
- * @date 2022年5月25日
19742
+ /**
19743
+ * getPendedhistoryList
19744
+ * @desc:获取流程列表
19745
+ * @author liufan
19746
+ * @date 2022年5月25日
19662
19747
  **/
19663
19748
  getPendedhistoryList: function getPendedhistoryList() {
19664
19749
  var _this26 = this;
@@ -19668,7 +19753,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19668
19753
  userId: util["a" /* default */].getStorage('userId'),
19669
19754
  type: 2
19670
19755
  };
19671
- util["a" /* default */].ajax({ url: api["ib" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
19756
+ util["a" /* default */].ajax({ url: api["lb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
19672
19757
  var rCode = res.rCode,
19673
19758
  msg = res.msg,
19674
19759
  results = res.results;
@@ -19690,12 +19775,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19690
19775
  },
19691
19776
 
19692
19777
  // 提交流程
19693
- /**
19694
- * subProcess
19695
- * @desc:提交流程
19696
- * @author liufan
19697
- * @param {String} formName 当前form表单ref值
19698
- * @date 2022年5月25日
19778
+ /**
19779
+ * subProcess
19780
+ * @desc:提交流程
19781
+ * @author liufan
19782
+ * @param {String} formName 当前form表单ref值
19783
+ * @date 2022年5月25日
19699
19784
  **/
19700
19785
  subProcess: function subProcess(val) {
19701
19786
  var _this27 = this;
@@ -19864,7 +19949,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19864
19949
  params.isSubFlow = taskExamineInfo.isSubFlow;
19865
19950
  params.nodeId = taskExamineInfo.nodeId;
19866
19951
  params.needRetrialAuth = needRetrialAuth;
19867
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
19952
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Hb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
19868
19953
  var status = res.status,
19869
19954
  message = res.message;
19870
19955
 
@@ -20221,7 +20306,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20221
20306
  pendingUserIds = _nextNode.pendingUserIds;
20222
20307
 
20223
20308
  var params = {
20224
- url: api["Xb" /* toTaskSuperviseSub */],
20309
+ url: api["cc" /* toTaskSuperviseSub */],
20225
20310
  params: {
20226
20311
  userId: util["a" /* default */].getStorage('userId'),
20227
20312
  urgeUserIds: pendingUserIds,
@@ -20245,7 +20330,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20245
20330
 
20246
20331
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20247
20332
  util["a" /* default */].ajax({
20248
- url: api["Wb" /* toTaskSupervise */],
20333
+ url: api["bc" /* toTaskSupervise */],
20249
20334
  params: {
20250
20335
  businessId: this.businessId,
20251
20336
  userId: util["a" /* default */].getStorage('userId')
@@ -21090,6 +21175,31 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21090
21175
  //
21091
21176
  //
21092
21177
  //
21178
+ //
21179
+ //
21180
+ //
21181
+ //
21182
+ //
21183
+ //
21184
+ //
21185
+ //
21186
+ //
21187
+ //
21188
+ //
21189
+ //
21190
+ //
21191
+ //
21192
+ //
21193
+ //
21194
+ //
21195
+ //
21196
+ //
21197
+ //
21198
+ //
21199
+ //
21200
+ //
21201
+ //
21202
+ //
21093
21203
 
21094
21204
 
21095
21205
 
@@ -21162,11 +21272,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21162
21272
  freeStartFlowParams: {}, //自由发起流程参数
21163
21273
  freeStartFlowNextNode: undefined,
21164
21274
  otherOrgDisabledObjId: [],
21275
+ isCanReadTransferHandle: false,
21276
+ readTransferHandleDisabled: true,
21165
21277
  currentOrgDisabledObjId: [],
21166
21278
  nextNodeCheckType: 'select',
21167
21279
  readOnlyNotificationType: '',
21168
21280
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
21169
21281
  taskParams: {},
21282
+ processFormType: undefined,
21170
21283
  notificationMessageReadOnly: false,
21171
21284
  isCanPreAddSign: false,
21172
21285
  isStartFlowChartView: undefined,
@@ -21219,6 +21332,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21219
21332
  isLimitedTimeHandling: 0, //是否支持发起子流程限时办理
21220
21333
  nodeType: 0, //节点类型, (普通节点0,承办节点1,会签节点2,阅办节点3)
21221
21334
  userOptions: [], //分阅用户
21335
+ StartTaskReadKey: 0,
21222
21336
  mixReadList: [], //分阅混选
21223
21337
  mixCurrentOrg: [], //本单位混选
21224
21338
  isTaskread: 0, //是否展示分阅用户
@@ -21323,6 +21437,15 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21323
21437
  this.getProcess();
21324
21438
  }
21325
21439
  }
21440
+ },
21441
+
21442
+ flowTypeCode: {
21443
+ handler: function handler(val) {
21444
+ this.isFlow && this.businessId && this.getProcess(val);
21445
+ },
21446
+
21447
+ deep: true,
21448
+ immediate: true
21326
21449
  }
21327
21450
  },
21328
21451
  computed: {
@@ -21368,6 +21491,30 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21368
21491
  }
21369
21492
  },
21370
21493
  methods: {
21494
+ taskReadTransferHandle: function taskReadTransferHandle() {
21495
+ if (this.taskReadOpinionRequired == 'true' && !this.value) {
21496
+ if (!this.$refs.commonOpinions.validate()) return;
21497
+ }
21498
+ this.freeStartFlowParams.startFlowBusinessId = this.taskExamineInfo.businessId;
21499
+ this.freeStartFlowNextNode = this.taskExamineInfo.processDefinitionId;
21500
+ var _taskExamineInfo = this.taskExamineInfo,
21501
+ businessId = _taskExamineInfo.businessId,
21502
+ appId = _taskExamineInfo.appId,
21503
+ processDefinitionId = _taskExamineInfo.processDefinitionId,
21504
+ pendingId = _taskExamineInfo.pendingId;
21505
+
21506
+ var params = {
21507
+ businessId: businessId,
21508
+ appId: appId,
21509
+ processDefinitionId: processDefinitionId,
21510
+ pendingId: pendingId,
21511
+ opinion: this.value,
21512
+ taskAction: 'complete'
21513
+ };
21514
+ this.taskParams = params;
21515
+ this.processFormType = 'readTransfer';
21516
+ this.handleVisible = true;
21517
+ },
21371
21518
  showMessage: function showMessage() {
21372
21519
  var _this = this;
21373
21520
 
@@ -21449,7 +21596,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21449
21596
  var _this2 = this;
21450
21597
 
21451
21598
  var params = {
21452
- url: api["A" /* getAdjunctFileInfos */],
21599
+ url: api["D" /* getAdjunctFileInfos */],
21453
21600
  params: { ownId: ownId, code: code }
21454
21601
  };
21455
21602
  util["a" /* default */].ajax(params).then(function (res) {
@@ -21522,11 +21669,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21522
21669
  type: 'warning'
21523
21670
  }).then(function () {
21524
21671
  _this3.loading = util["a" /* default */].loading(_this3.$loading, '加载中...');
21525
- var _taskExamineInfo = _this3.taskExamineInfo,
21526
- businessId = _taskExamineInfo.businessId,
21527
- appId = _taskExamineInfo.appId,
21528
- processDefinitionId = _taskExamineInfo.processDefinitionId,
21529
- pendingId = _taskExamineInfo.pendingId;
21672
+ var _taskExamineInfo2 = _this3.taskExamineInfo,
21673
+ businessId = _taskExamineInfo2.businessId,
21674
+ appId = _taskExamineInfo2.appId,
21675
+ processDefinitionId = _taskExamineInfo2.processDefinitionId,
21676
+ pendingId = _taskExamineInfo2.pendingId;
21530
21677
 
21531
21678
  var params = {
21532
21679
  businessId: businessId,
@@ -21537,7 +21684,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21537
21684
  taskAction: 'complete'
21538
21685
  };
21539
21686
  util["a" /* default */].ajax({
21540
- url: api["Db" /* taskReadHtml */],
21687
+ url: api["Ib" /* taskReadHtml */],
21541
21688
  params: { taskAction: 'complete' },
21542
21689
  headers: {
21543
21690
  Accept: 'application/json,text/plain'
@@ -21564,12 +21711,26 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21564
21711
  });
21565
21712
  }).catch(function () {});
21566
21713
  },
21567
- getTaskReadFlow: function getTaskReadFlow() {
21714
+ validReadTransferHandle: function validReadTransferHandle(readTransferHandleBusinessId, readTransferHandleProcessKey) {
21568
21715
  var _this4 = this;
21569
21716
 
21717
+ var params = {
21718
+ url: api["d" /* checkBusinessIdStartedReadTransferHandle */],
21719
+ params: { readTransferHandleBusinessId: readTransferHandleBusinessId, readTransferHandleProcessKey: readTransferHandleProcessKey }
21720
+ };
21721
+ util["a" /* default */].ajax(params).then(function (res) {
21722
+ _this4.loading.close();
21723
+ if (res.rCode == 0) {
21724
+ _this4.readTransferHandleDisabled = !res.results.canReadTransferHandle;
21725
+ }
21726
+ });
21727
+ },
21728
+ getTaskReadFlow: function getTaskReadFlow() {
21729
+ var _this5 = this;
21730
+
21570
21731
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21571
21732
  util["a" /* default */].ajax({
21572
- url: api["Rb" /* toStartTaskReadIndex */],
21733
+ url: api["Wb" /* toStartTaskReadIndex */],
21573
21734
  params: { pendingId: this.pendingId }
21574
21735
  }).then(function (res) {
21575
21736
  var status = res.status,
@@ -21577,47 +21738,52 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21577
21738
  _res$data = res.data,
21578
21739
  isCanFenyue = _res$data.isCanFenyue,
21579
21740
  taskExamine = _res$data.taskExamine,
21580
- taskReadOpinionRequired = _res$data.taskReadOpinionRequired;
21741
+ taskReadOpinionRequired = _res$data.taskReadOpinionRequired,
21742
+ isCanReadTransferHandle = _res$data.isCanReadTransferHandle;
21581
21743
 
21582
21744
  if (status === 'success') {
21583
- _this4.taskExamineInfo = taskExamine;
21584
- _this4.taskReadOpinionRequired = taskReadOpinionRequired;
21585
- _this4.isCanFenyue = isCanFenyue;
21586
- if (_this4.nodeName) {
21587
- _this4.NodeName = _this4.nodeName;
21745
+ _this5.taskExamineInfo = taskExamine;
21746
+ _this5.taskReadOpinionRequired = taskReadOpinionRequired;
21747
+ _this5.isCanReadTransferHandle = isCanReadTransferHandle;
21748
+ _this5.isCanFenyue = isCanFenyue;
21749
+ if (_this5.nodeName) {
21750
+ _this5.NodeName = _this5.nodeName;
21751
+ }
21752
+ if (_this5.isCanReadTransferHandle) {
21753
+ _this5.validReadTransferHandle(taskExamine.businessId, taskExamine.processDefinitionId);
21588
21754
  }
21589
- _this4.getNodeType();
21755
+ _this5.getNodeType();
21590
21756
  } else {
21591
- _this4.$message.error(message || '系统错误,请联系管理员!');
21757
+ _this5.$message.error(message || '系统错误,请联系管理员!');
21592
21758
  }
21593
- _this4.loading.close();
21759
+ _this5.loading.close();
21594
21760
  }).catch(function (err) {
21595
- _this4.loading.close();
21761
+ _this5.loading.close();
21596
21762
  if (err.message && err.message !== 'canceled') {
21597
- _this4.$message.error(err.message);
21763
+ _this5.$message.error(err.message);
21598
21764
  }
21599
21765
  });
21600
21766
  },
21601
21767
  getUserInfo: function getUserInfo() {
21602
- var _this5 = this;
21768
+ var _this6 = this;
21603
21769
 
21604
21770
  var mainConfig = util["a" /* default */].getStorage('mainConfig');
21605
21771
  if (mainConfig) {
21606
21772
  this.userModel = JSON.parse(mainConfig).userModel;
21607
21773
  } else {
21608
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
21774
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
21609
21775
  var status = res.status,
21610
21776
  data = res.data;
21611
21777
 
21612
21778
  if (status == 'success') {
21613
- _this5.userModel = data;
21779
+ _this6.userModel = data;
21614
21780
  } else {
21615
21781
  var msg = res.msg || '系统错误,请联系管理员!';
21616
- _this5.$message.error(msg);
21782
+ _this6.$message.error(msg);
21617
21783
  }
21618
21784
  }).catch(function (err) {
21619
21785
  if (err.message && err.message !== 'canceled') {
21620
- _this5.$message.error(err.message);
21786
+ _this6.$message.error(err.message);
21621
21787
  }
21622
21788
  });
21623
21789
  }
@@ -21637,10 +21803,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21637
21803
  }
21638
21804
  },
21639
21805
  getNodeType: function getNodeType() {
21640
- var _this6 = this;
21806
+ var _this7 = this;
21641
21807
 
21642
21808
  util["a" /* default */].ajax({
21643
- url: api["u" /* findCodeValues */],
21809
+ url: api["x" /* findCodeValues */],
21644
21810
  params: {
21645
21811
  ccCode: 'notification_type',
21646
21812
  userId: util["a" /* default */].getStorage('userId')
@@ -21650,33 +21816,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21650
21816
  data = res.data;
21651
21817
 
21652
21818
  if (status === 'success') {
21653
- _this6.newsList = data;
21819
+ _this7.newsList = data;
21654
21820
  }
21655
21821
  }).catch(function (err) {
21656
21822
  if (err.message && err.message !== 'canceled') {
21657
- _this6.$message.error(err.message);
21823
+ _this7.$message.error(err.message);
21658
21824
  }
21659
21825
  });
21660
21826
  },
21661
21827
 
21662
- /**
21663
- * saveInfo
21664
- * @desc:暂存
21665
- * @author liufan
21666
- * @date 2022年9月9日
21828
+ /**
21829
+ * saveInfo
21830
+ * @desc:暂存
21831
+ * @author liufan
21832
+ * @date 2022年9月9日
21667
21833
  **/
21668
21834
  saveInfo: function saveInfo(type, btn) {
21669
- var _this7 = this;
21835
+ var _this8 = this;
21670
21836
 
21671
21837
  if (this.isFlow) {
21672
21838
  if (!type) {
21673
21839
  if (btn && btn.before) {
21674
21840
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21675
- _this7.$emit('save', _this7.businessIds);
21841
+ _this8.$emit('save', _this8.businessIds);
21676
21842
  }).catch(function (e) {});
21677
21843
  } else if (this.beforeSubmit != undefined) {
21678
21844
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21679
- _this7.$emit('save', _this7.businessIds);
21845
+ _this8.$emit('save', _this8.businessIds);
21680
21846
  }).catch(function (e) {});
21681
21847
  } else {
21682
21848
  this.$emit('save', this.businessIds);
@@ -21685,13 +21851,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21685
21851
  } else {
21686
21852
  if (btn && btn.before && !type) {
21687
21853
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21688
- _this7.saveFlowInfo();
21854
+ _this8.saveFlowInfo();
21689
21855
  }).catch(function (e) {});
21690
21856
  } else if (this.beforeSubmit == undefined && !type) {
21691
21857
  this.subFun(this.saveFlowInfo);
21692
21858
  } else if (!type && this.beforeSubmit != undefined) {
21693
21859
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21694
- _this7.saveFlowInfo();
21860
+ _this8.saveFlowInfo();
21695
21861
  }).catch(function (e) {});
21696
21862
  } else {
21697
21863
  this.saveFlowInfo(type);
@@ -21699,40 +21865,40 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21699
21865
  }
21700
21866
  },
21701
21867
  saveFlowInfo: function saveFlowInfo(isSave) {
21702
- var _this8 = this;
21868
+ var _this9 = this;
21703
21869
 
21704
21870
  var params = {
21705
21871
  opinion: this.value,
21706
21872
  pendingId: this.pendingId
21707
21873
  };
21708
21874
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
21709
- util["a" /* default */].ajax({ url: api["Lb" /* tempSave */], params: params }).then(function (res) {
21875
+ util["a" /* default */].ajax({ url: api["Qb" /* tempSave */], params: params }).then(function (res) {
21710
21876
  var status = res.status,
21711
21877
  message = res.message;
21712
21878
 
21713
- if (!isSave) _this8.loading.close();
21879
+ if (!isSave) _this9.loading.close();
21714
21880
  if (status == 'success') {
21715
21881
  // this.$message.success('暂存成功');
21716
- !isSave && _this8.$emit('save', _this8.businessIds);
21882
+ !isSave && _this9.$emit('save', _this9.businessIds);
21717
21883
  } else {
21718
- _this8.$message.error(message || '系统错误,请联系管理员!');
21884
+ _this9.$message.error(message || '系统错误,请联系管理员!');
21719
21885
  }
21720
21886
  }).catch(function (err) {
21721
- if (!isSave) _this8.loading.close();
21887
+ if (!isSave) _this9.loading.close();
21722
21888
  if (err.message && err.message !== 'canceled') {
21723
- _this8.$message.error(err.message);
21889
+ _this9.$message.error(err.message);
21724
21890
  }
21725
21891
  });
21726
21892
  },
21727
21893
 
21728
- /**
21729
- * rejectBtn
21730
- * @desc:点击驳回
21731
- * @author liufan
21732
- * @date 2022年5月25日
21894
+ /**
21895
+ * rejectBtn
21896
+ * @desc:点击驳回
21897
+ * @author liufan
21898
+ * @date 2022年5月25日
21733
21899
  **/
21734
21900
  rejectBtn: function rejectBtn() {
21735
- var _this9 = this;
21901
+ var _this10 = this;
21736
21902
 
21737
21903
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
21738
21904
  if (!this.value) {
@@ -21740,28 +21906,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21740
21906
  }
21741
21907
  if (this.beforeSubmit != undefined) {
21742
21908
  this.beforeSubmit(0).then(function (next) {
21743
- _this9.showReject = true;
21909
+ _this10.showReject = true;
21744
21910
  }).catch(function (e) {});
21745
21911
  } else {
21746
21912
  this.showReject = true;
21747
21913
  }
21748
21914
  },
21749
21915
 
21750
- /**
21751
- * taskReadBtn
21752
- * @desc:点击分阅
21753
- * @author liufan
21754
- * @date 2022年5月25日
21916
+ /**
21917
+ * taskReadBtn
21918
+ * @desc:点击分阅
21919
+ * @author liufan
21920
+ * @date 2022年5月25日
21755
21921
  **/
21756
21922
  taskReadBtn: function taskReadBtn() {
21757
- var _this10 = this;
21923
+ var _this11 = this;
21758
21924
 
21759
21925
  // return this.$message.warning('暂未开放!敬请期待');
21760
21926
  if (this.beforeSubmit != undefined) {
21761
21927
  this.beforeSubmit().then(function (next) {
21762
- if (_this10.value === '') _this10.value = _this10.nodeDefaultRejectOpinion;
21763
- _this10.taskReadType = 'create';
21764
- _this10.showTaskRead = true;
21928
+ if (_this11.value === '') _this11.value = _this11.nodeDefaultRejectOpinion;
21929
+ _this11.taskReadType = 'create';
21930
+ _this11.showTaskRead = true;
21765
21931
  }).catch(function (e) {});
21766
21932
  } else {
21767
21933
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -21770,41 +21936,41 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21770
21936
  }
21771
21937
  },
21772
21938
 
21773
- /**
21774
- * getFind
21775
- * @desc:获取通知方式
21776
- * @author liufan
21777
- * @date 2022年5月25日
21939
+ /**
21940
+ * getFind
21941
+ * @desc:获取通知方式
21942
+ * @author liufan
21943
+ * @date 2022年5月25日
21778
21944
  **/
21779
21945
  getFind: function getFind() {
21780
- var _this11 = this;
21946
+ var _this12 = this;
21781
21947
 
21782
21948
  util["a" /* default */].ajax({
21783
- url: api["w" /* findSysCodes */]
21949
+ url: api["z" /* findSysCodes */]
21784
21950
  }).then(function (res) {
21785
21951
  var status = res.status,
21786
21952
  message = res.message;
21787
21953
 
21788
21954
  if (status === 'success') {
21789
- _this11.nextNode.notificationType = message.split(',');
21955
+ _this12.nextNode.notificationType = message.split(',');
21790
21956
  var arr = [];
21791
- _this11.newsList.map(function (item) {
21792
- _this11.nextNode.notificationType.map(function (x) {
21957
+ _this12.newsList.map(function (item) {
21958
+ _this12.nextNode.notificationType.map(function (x) {
21793
21959
  if (x == item.cciValue) {
21794
21960
  arr.push(x);
21795
21961
  }
21796
21962
  });
21797
21963
  });
21798
- _this11.nextNode.notificationType = arr;
21964
+ _this12.nextNode.notificationType = arr;
21799
21965
  }
21800
21966
  }).catch(function (err) {
21801
21967
  if (err.message && err.message !== 'canceled') {
21802
- _this11.$message.error(err.message);
21968
+ _this12.$message.error(err.message);
21803
21969
  }
21804
21970
  });
21805
21971
  },
21806
21972
  getFreeStartParams: function getFreeStartParams() {
21807
- var _this12 = this;
21973
+ var _this13 = this;
21808
21974
 
21809
21975
  var _endFlowInfo = this.endFlowInfo,
21810
21976
  businessId = _endFlowInfo.businessId,
@@ -21812,7 +21978,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21812
21978
  nodeId = _endFlowInfo.nodeId;
21813
21979
 
21814
21980
  var param = {
21815
- url: api["F" /* getFreeStartFlowParams */],
21981
+ url: api["I" /* getFreeStartFlowParams */],
21816
21982
  params: {
21817
21983
  businessId: businessId,
21818
21984
  processDefinitionId: processDefinitionId,
@@ -21821,89 +21987,89 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21821
21987
  };
21822
21988
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21823
21989
  util["a" /* default */].ajax(param).then(function (res) {
21824
- _this12.loading.close();
21990
+ _this13.loading.close();
21825
21991
  if (res.rCode == 0 || res.status == 'success') {
21826
- _this12.freeStartFlowParams = res.results;
21827
- if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this12.subProcess('同意。', res.results.useScene);
21828
- if (!_this12.freeValid) return;
21829
- if (res.results.startFlowIndexProcessKeys && res.results.startFlowIndexProcessKeys.length == 0 || !res.results.startFlowIndexProcessKeys) return _this12.$message.warning('未找到流程定义!');
21992
+ _this13.freeStartFlowParams = res.results;
21993
+ if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this13.subProcess('同意。', res.results.useScene);
21994
+ if (!_this13.freeValid) return;
21995
+ if (res.results.startFlowIndexProcessKeys && res.results.startFlowIndexProcessKeys.length == 0 || !res.results.startFlowIndexProcessKeys) return _this13.$message.warning('未找到流程定义!');
21830
21996
  if (res.results.startFlowIndexProcessKeys.length == 1) {
21831
- _this12.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21832
- _this12.handleVisible = true;
21997
+ _this13.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21998
+ _this13.handleVisible = true;
21833
21999
  } else {
21834
- _this12.showFreeStartFlow = true;
22000
+ _this13.showFreeStartFlow = true;
21835
22001
  }
21836
22002
  } else {
21837
- _this12.$message.error(res.message || '系统错误,请联系管理员!');
22003
+ _this13.$message.error(res.message || '系统错误,请联系管理员!');
21838
22004
  }
21839
22005
  });
21840
22006
  },
21841
22007
 
21842
- /**
21843
- * endFlows
21844
- * @desc:直接办结
21845
- * @author liufan
21846
- * @param {Object} res 直接办结数据
21847
- * @date 2022年5月25日
22008
+ /**
22009
+ * endFlows
22010
+ * @desc:直接办结
22011
+ * @author liufan
22012
+ * @param {Object} res 直接办结数据
22013
+ * @date 2022年5月25日
21848
22014
  **/
21849
22015
  endFlows: function endFlows(res) {
21850
- var _this13 = this;
22016
+ var _this14 = this;
21851
22017
 
21852
22018
  if (this.beforeSubmit != undefined) {
21853
22019
  this.beforeSubmit().then(function (next) {
21854
- _this13.saveEndFlows(res);
22020
+ _this14.saveEndFlows(res);
21855
22021
  }).catch(function (e) {});
21856
22022
  } else {
21857
22023
  this.saveEndFlows(res);
21858
22024
  }
21859
22025
  },
21860
22026
  saveEndFlows: function saveEndFlows(res) {
21861
- var _this14 = this;
22027
+ var _this15 = this;
21862
22028
 
21863
22029
  this.$confirm('确认' + res.value + '?').then(function () {
21864
22030
  var params = {
21865
- url: api["t" /* endFlowHtml */],
22031
+ url: api["w" /* endFlowHtml */],
21866
22032
  headers: { Accept: 'application/json,text/plain' },
21867
22033
  method: 'post',
21868
- data: mainvue_type_script_lang_js_extends({}, _this14.endFlowInfo, _this14.nextNode, {
21869
- opinion: _this14.value,
22034
+ data: mainvue_type_script_lang_js_extends({}, _this15.endFlowInfo, _this15.nextNode, {
22035
+ opinion: _this15.value,
21870
22036
  userId: util["a" /* default */].getStorage('userId'),
21871
- nextUserId: _this14.multiple ? _this14.nextNode.nextUserId.join(',') : _this14.nextNode.nextUserId,
21872
- addSignUserId: _this14.nextNode.addSignUserId.join(','),
21873
- customPresetUserJson: JSON.stringify(_this14.presetList),
21874
- presetUserJson: JSON.stringify(_this14.presetUserJson),
21875
- removeSignUserId: _this14.nextNode.removeSignUserId.join(','),
21876
- notificationType: _this14.nextNode.notificationType.join(',')
22037
+ nextUserId: _this15.multiple ? _this15.nextNode.nextUserId.join(',') : _this15.nextNode.nextUserId,
22038
+ addSignUserId: _this15.nextNode.addSignUserId.join(','),
22039
+ customPresetUserJson: JSON.stringify(_this15.presetList),
22040
+ presetUserJson: JSON.stringify(_this15.presetUserJson),
22041
+ removeSignUserId: _this15.nextNode.removeSignUserId.join(','),
22042
+ notificationType: _this15.nextNode.notificationType.join(',')
21877
22043
  })
21878
22044
  };
21879
- _this14.loading = util["a" /* default */].loading(_this14.$loading, '加载中...');
22045
+ _this15.loading = util["a" /* default */].loading(_this15.$loading, '加载中...');
21880
22046
  util["a" /* default */].ajax(params).then(function (res) {
21881
22047
  var status = res.status,
21882
22048
  message = res.message;
21883
22049
 
21884
- _this14.loading.close();
22050
+ _this15.loading.close();
21885
22051
  if (status === 'success') {
21886
- _this14.$message.success('提交成功');
21887
- _this14.$emit('success');
22052
+ _this15.$message.success('提交成功');
22053
+ _this15.$emit('success');
21888
22054
  } else {
21889
- _this14.$message.error(message || '系统错误,请联系管理员!');
21890
- _this14.$emit('error');
22055
+ _this15.$message.error(message || '系统错误,请联系管理员!');
22056
+ _this15.$emit('error');
21891
22057
  }
21892
22058
  }).catch(function (err) {
21893
- _this14.loading.close();
22059
+ _this15.loading.close();
21894
22060
  if (err.message && err.message !== 'canceled') {
21895
- _this14.$message.error(err.message);
22061
+ _this15.$message.error(err.message);
21896
22062
  }
21897
22063
  });
21898
22064
  }).catch(function (e) {});
21899
22065
  },
21900
22066
 
21901
- /**
21902
- * goView
21903
- * @desc:更多流程按钮操作
21904
- * @author liufan
21905
- * @param {Object} res 当前点击操作按钮数据
21906
- * @date 2022年5月25日
22067
+ /**
22068
+ * goView
22069
+ * @desc:更多流程按钮操作
22070
+ * @author liufan
22071
+ * @param {Object} res 当前点击操作按钮数据
22072
+ * @date 2022年5月25日
21907
22073
  **/
21908
22074
  goView: function goView(res) {
21909
22075
  // 驳回并办结:rejectAndEndHtml
@@ -21988,18 +22154,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21988
22154
  // isCanStartSubFlow
21989
22155
  },
21990
22156
 
21991
- /**
21992
- * toTakeAdvice
21993
- * @desc:征求意见
21994
- * @author liufan
21995
- * @date 2022年9月29日
22157
+ /**
22158
+ * toTakeAdvice
22159
+ * @desc:征求意见
22160
+ * @author liufan
22161
+ * @date 2022年9月29日
21996
22162
  **/
21997
22163
  toTakeAdvice: function toTakeAdvice(res) {
21998
- var _this15 = this;
22164
+ var _this16 = this;
21999
22165
 
22000
22166
  if (this.beforeSubmit != undefined) {
22001
22167
  this.beforeSubmit().then(function (next) {
22002
- _this15.saveToTakeAdvice(res);
22168
+ _this16.saveToTakeAdvice(res);
22003
22169
  }).catch(function (e) {});
22004
22170
  } else {
22005
22171
  this.saveToTakeAdvice(res);
@@ -22007,10 +22173,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22007
22173
  // return this.$message.warning('暂未开放!敬请期待');
22008
22174
  },
22009
22175
  saveToTakeAdvice: function saveToTakeAdvice(res) {
22010
- var _this16 = this;
22176
+ var _this17 = this;
22011
22177
 
22012
22178
  var params = {
22013
- url: api["db" /* isCanStartSubFlow */],
22179
+ url: api["gb" /* isCanStartSubFlow */],
22014
22180
  data: {
22015
22181
  appId: this.taskExamineInfo.appId,
22016
22182
  inevitableNode: res.inevitableNode
@@ -22022,70 +22188,70 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22022
22188
  util["a" /* default */].ajax(params).then(function (res) {
22023
22189
  var message = res.message;
22024
22190
 
22025
- _this16.loading.close();
22191
+ _this17.loading.close();
22026
22192
  if (message == 'success') {
22027
- _this16.showTaskUnionExamine = true;
22193
+ _this17.showTaskUnionExamine = true;
22028
22194
  } else {
22029
- _this16.$message.error(message || '系统错误,请联系管理员!');
22195
+ _this17.$message.error(message || '系统错误,请联系管理员!');
22030
22196
  }
22031
22197
  }).catch(function (err) {
22032
- _this16.loading.close();
22198
+ _this17.loading.close();
22033
22199
  if (err.message && err.message !== 'canceled') {
22034
- _this16.$message.error(err.message);
22200
+ _this17.$message.error(err.message);
22035
22201
  }
22036
22202
  });
22037
22203
  },
22038
22204
 
22039
- /**
22040
- * toStartDraf
22041
- * @desc: 稿件递送、联合审核、复核
22042
- * @author liufan
22043
- * @date 2022年9月29日
22205
+ /**
22206
+ * toStartDraf
22207
+ * @desc: 稿件递送、联合审核、复核
22208
+ * @author liufan
22209
+ * @date 2022年9月29日
22044
22210
  **/
22045
22211
  toStartDraf: function toStartDraf(res) {
22046
- var _this17 = this;
22212
+ var _this18 = this;
22047
22213
 
22048
22214
  if (this.beforeSubmit != undefined) {
22049
22215
  this.beforeSubmit().then(function (next) {
22050
- _this17.showTaskUnionExamine = true;
22216
+ _this18.showTaskUnionExamine = true;
22051
22217
  }).catch(function (e) {});
22052
22218
  } else {
22053
22219
  this.showTaskUnionExamine = true;
22054
22220
  }
22055
22221
  },
22056
22222
 
22057
- /**
22058
- * toSendMsg
22059
- * @desc:核稿通知
22060
- * @author liufan
22061
- * @date 2022年9月29日
22223
+ /**
22224
+ * toSendMsg
22225
+ * @desc:核稿通知
22226
+ * @author liufan
22227
+ * @date 2022年9月29日
22062
22228
  **/
22063
22229
  toSendMsg: function toSendMsg(res) {
22064
- var _this18 = this;
22230
+ var _this19 = this;
22065
22231
 
22066
22232
  if (this.beforeSubmit != undefined) {
22067
22233
  this.beforeSubmit().then(function (next) {
22068
- _this18.showSendMsg = true;
22234
+ _this19.showSendMsg = true;
22069
22235
  }).catch(function (e) {});
22070
22236
  } else {
22071
22237
  this.showSendMsg = true;
22072
22238
  }
22073
22239
  },
22074
22240
 
22075
- /**
22076
- * toTaskReadAndEnd
22077
- * @desc:分阅并办结
22078
- * @author liufan
22079
- * @date 2022年9月29日
22241
+ /**
22242
+ * toTaskReadAndEnd
22243
+ * @desc:分阅并办结
22244
+ * @author liufan
22245
+ * @date 2022年9月29日
22080
22246
  **/
22081
22247
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
22082
- var _this19 = this;
22248
+ var _this20 = this;
22083
22249
 
22084
22250
  if (this.beforeSubmit != undefined) {
22085
22251
  this.beforeSubmit().then(function (next) {
22086
- if (_this19.value === '') _this19.value = _this19.nodeDefaultRejectOpinion;
22087
- _this19.taskReadType = 'taskReadAndEnd';
22088
- _this19.showTaskRead = true;
22252
+ if (_this20.value === '') _this20.value = _this20.nodeDefaultRejectOpinion;
22253
+ _this20.taskReadType = 'taskReadAndEnd';
22254
+ _this20.showTaskRead = true;
22089
22255
  }).catch(function (e) {});
22090
22256
  } else {
22091
22257
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -22094,58 +22260,58 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22094
22260
  }
22095
22261
  },
22096
22262
 
22097
- /**
22098
- * rejectAndEnd
22099
- * @desc:驳回并办结
22100
- * @author liufan
22101
- * @date 2022年9月29日
22263
+ /**
22264
+ * rejectAndEnd
22265
+ * @desc:驳回并办结
22266
+ * @author liufan
22267
+ * @date 2022年9月29日
22102
22268
  **/
22103
22269
  rejectAndEnd: function rejectAndEnd(res) {
22104
- var _this20 = this;
22270
+ var _this21 = this;
22105
22271
 
22106
22272
  if (this.isOpinionRequired == 1 && (this.value == '' || !this.value)) {
22107
22273
  if (!this.$refs.commonOpinions.validate()) return;
22108
22274
  }
22109
22275
  if (this.beforeSubmit != undefined) {
22110
22276
  this.beforeSubmit().then(function (next) {
22111
- _this20.saveRejectAndEnd(res);
22277
+ _this21.saveRejectAndEnd(res);
22112
22278
  }).catch(function (e) {});
22113
22279
  } else {
22114
22280
  this.saveRejectAndEnd(res);
22115
22281
  }
22116
22282
  },
22117
22283
  saveRejectAndEnd: function saveRejectAndEnd(res) {
22118
- var _this21 = this;
22284
+ var _this22 = this;
22119
22285
 
22120
22286
  this.$confirm('确认' + res.value + '?').then(function () {
22121
22287
  // return this.$message.warning('请填写意见');
22122
22288
  var params = {
22123
- url: api["qb" /* rejectAndEnd */],
22289
+ url: api["ub" /* rejectAndEnd */],
22124
22290
  headers: { Accept: 'application/json,text/plain' },
22125
22291
  method: 'post',
22126
22292
  data: {
22127
- opinion: _this21.value,
22128
- pendingId: _this21.pendingId,
22293
+ opinion: _this22.value,
22294
+ pendingId: _this22.pendingId,
22129
22295
  isSinglePage: false
22130
22296
  }
22131
22297
  };
22132
- _this21.loading = util["a" /* default */].loading(_this21.$loading, '加载中...');
22298
+ _this22.loading = util["a" /* default */].loading(_this22.$loading, '加载中...');
22133
22299
  util["a" /* default */].ajax(params).then(function (res) {
22134
22300
  var status = res.status,
22135
22301
  message = res.message;
22136
22302
 
22137
- _this21.loading.close();
22303
+ _this22.loading.close();
22138
22304
  if (status === 'success') {
22139
- _this21.$message.success('提交成功');
22140
- _this21.$emit('success');
22305
+ _this22.$message.success('提交成功');
22306
+ _this22.$emit('success');
22141
22307
  } else {
22142
- _this21.$message.error(message || '系统错误,请联系管理员!');
22143
- _this21.$emit('error');
22308
+ _this22.$message.error(message || '系统错误,请联系管理员!');
22309
+ _this22.$emit('error');
22144
22310
  }
22145
22311
  }).catch(function (err) {
22146
- _this21.loading.close();
22312
+ _this22.loading.close();
22147
22313
  if (err.message && err.message !== 'canceled') {
22148
- _this21.$message.error(err.message);
22314
+ _this22.$message.error(err.message);
22149
22315
  }
22150
22316
  });
22151
22317
  }).catch(function () {
@@ -22153,19 +22319,19 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22153
22319
  });
22154
22320
  },
22155
22321
 
22156
- /**
22157
- * toTransfer
22158
- * @desc:转办
22159
- * @author liufan
22160
- * @date 2022年9月29日
22322
+ /**
22323
+ * toTransfer
22324
+ * @desc:转办
22325
+ * @author liufan
22326
+ * @date 2022年9月29日
22161
22327
  **/
22162
22328
  toTransfer: function toTransfer(res) {
22163
- var _this22 = this;
22329
+ var _this23 = this;
22164
22330
 
22165
22331
  if (this.beforeSubmit != undefined) {
22166
22332
  this.beforeSubmit(0).then(function (next) {
22167
- _this22.taskReadType = 'transfer';
22168
- _this22.showTaskRead = true;
22333
+ _this23.taskReadType = 'transfer';
22334
+ _this23.showTaskRead = true;
22169
22335
  }).catch(function (e) {});
22170
22336
  } else {
22171
22337
  this.taskReadType = 'transfer';
@@ -22173,14 +22339,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22173
22339
  }
22174
22340
  },
22175
22341
 
22176
- /**
22177
- * getNodeInfo
22178
- * @desc:获取节点信息
22179
- * @author liufan
22180
- * @date 2022年5月25日
22342
+ /**
22343
+ * getNodeInfo
22344
+ * @desc:获取节点信息
22345
+ * @author liufan
22346
+ * @date 2022年5月25日
22181
22347
  **/
22182
22348
  getNodeInfo: function getNodeInfo() {
22183
- var _this23 = this;
22349
+ var _this24 = this;
22184
22350
 
22185
22351
  var params = {
22186
22352
  processDefinitionId: this.nodeInfo.nextNode,
@@ -22190,49 +22356,49 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22190
22356
  pendingId: this.pendingId,
22191
22357
  businessId: this.businessIds
22192
22358
  };
22193
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
22359
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
22194
22360
  var status = res.status,
22195
22361
  message = res.message,
22196
22362
  data = res.data;
22197
22363
 
22198
- _this23.loading.close();
22364
+ _this24.loading.close();
22199
22365
  if (status === 'success') {
22200
- data.otherOrgDisabledObjId && (_this23.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22201
- data.currentOrgDisabledObjId && (_this23.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22366
+ data.otherOrgDisabledObjId && (_this24.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22367
+ data.currentOrgDisabledObjId && (_this24.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22202
22368
  if (data != null) {
22203
22369
  if (data.nodeExtAttr.userSelectionType == 7 || data.nodeExtAttr.userSelectionType == 8 || data.nodeExtAttr.userSelectionType == 9 || data.nodeExtAttr.userSelectionType == 10 || data.nodeExtAttr.userSelectionType == 11 || data.nodeExtAttr.userSelectionType == 12) {
22204
- _this23.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22370
+ _this24.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22205
22371
  } else {
22206
- _this23.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this23.choiceOrgId, _this23.choiceDeptId, _this23.pOrgId);
22372
+ _this24.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this24.choiceOrgId, _this24.choiceDeptId, _this24.pOrgId);
22207
22373
  }
22208
- _this23.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22209
- _this23.isTaskread = data.nodeExtAttr.isTaskread;
22210
- _this23.isHandleExplain = data.nodeExtAttr.isHandleExplain;
22211
- _this23.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22212
- _this23.nodeType = data.nodeExtAttr.nodeType;
22374
+ _this24.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22375
+ _this24.isTaskread = data.nodeExtAttr.isTaskread;
22376
+ _this24.isHandleExplain = data.nodeExtAttr.isHandleExplain;
22377
+ _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22378
+ _this24.nodeType = data.nodeExtAttr.nodeType;
22213
22379
  //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
22214
- if (_this23.nodeType === 1 || _this23.nodeType === 2) {
22215
- _this23.isMainSubProcess === true ? _this23.isNodeShowProcess = true : _this23.isNodeShowProcess = false;
22216
- _this23.isMainSubProcess === true ? _this23.isMainSubProcess = true : _this23.isMainSubProcess = false;
22217
- _this23.isNextUser = false;
22218
- _this23.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
22219
- _this23.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
22380
+ if (_this24.nodeType === 1 || _this24.nodeType === 2) {
22381
+ _this24.isMainSubProcess === true ? _this24.isNodeShowProcess = true : _this24.isNodeShowProcess = false;
22382
+ _this24.isMainSubProcess === true ? _this24.isMainSubProcess = true : _this24.isMainSubProcess = false;
22383
+ _this24.isNextUser = false;
22384
+ _this24.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
22385
+ _this24.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
22220
22386
  } else {
22221
- _this23.isHideCurrentOrg = false;
22222
- _this23.isHideOtherOrg = false;
22223
- _this23.isNodeShowProcess = false;
22224
- _this23.isMainSubProcess = false;
22225
- _this23.isNextUser = _this23.nextNode.nextOperate != 9;
22387
+ _this24.isHideCurrentOrg = false;
22388
+ _this24.isHideOtherOrg = false;
22389
+ _this24.isNodeShowProcess = false;
22390
+ _this24.isMainSubProcess = false;
22391
+ _this24.isNextUser = _this24.nextNode.nextOperate != 9;
22226
22392
  // this.isMainSubProcess === true
22227
22393
  // ? (this.isMainSubProcess = true)
22228
22394
  // : (this.isMainSubProcess = false);
22229
22395
  }
22230
- _this23.multiple ? _this23.nextNode.nextUserId = [] : _this23.nextNode.nextUserId = '';
22231
- if (_this23.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
22396
+ _this24.multiple ? _this24.nextNode.nextUserId = [] : _this24.nextNode.nextUserId = '';
22397
+ if (_this24.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
22232
22398
  data.nextUserList.map(function (item) {
22233
22399
  if (item.userId && item.username) {
22234
- _this23.nextNode.nextUserId.push(item.userId);
22235
- _this23.selectUserList.push({
22400
+ _this24.nextNode.nextUserId.push(item.userId);
22401
+ _this24.selectUserList.push({
22236
22402
  showname: item.username,
22237
22403
  showid: item.userId
22238
22404
  });
@@ -22241,50 +22407,50 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22241
22407
  }
22242
22408
  data.nextUserList.map(function (item) {
22243
22409
  if (item.userId && item.username) {
22244
- _this23.options.push({
22410
+ _this24.options.push({
22245
22411
  showname: item.username,
22246
22412
  showid: item.userId
22247
22413
  });
22248
22414
  }
22249
22415
  });
22250
22416
  if (data.nodeExtAttr.presetEdit != 0) {
22251
- _this23.radioList = _this23.options;
22417
+ _this24.radioList = _this24.options;
22252
22418
  }
22253
- if (!_this23.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
22254
- _this23.nextNode.nextUserId = data.nextUserList[0].userId;
22255
- _this23.selectUserList.push({
22419
+ if (!_this24.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
22420
+ _this24.nextNode.nextUserId = data.nextUserList[0].userId;
22421
+ _this24.selectUserList.push({
22256
22422
  showname: data.nextUserList[0].username,
22257
22423
  showid: data.nextUserList[0].userId
22258
22424
  });
22259
22425
  }
22260
- _this23.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22261
- _this23.isCustomUser = data.nodeExtAttr.isCustomUser;
22262
- _this23.presetEdit = data.nodeExtAttr.presetEdit;
22263
- _this23.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
22264
- _this23.handleMode = data.countersignaturetypeText;
22265
- data.globalNodeType === 'endEvent' ? _this23.endFlow = true : '';
22426
+ _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22427
+ _this24.isCustomUser = data.nodeExtAttr.isCustomUser;
22428
+ _this24.presetEdit = data.nodeExtAttr.presetEdit;
22429
+ _this24.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
22430
+ _this24.handleMode = data.countersignaturetypeText;
22431
+ data.globalNodeType === 'endEvent' ? _this24.endFlow = true : '';
22266
22432
  }
22267
- _this23.isCustomPreset && _this23.$refs.customPreset.getPresetFlowInfo(_this23.nextNode.nextNodeId, _this23.nodeInfo.nextNode, true);
22433
+ _this24.isCustomPreset && _this24.$refs.customPreset.getPresetFlowInfo(_this24.nextNode.nextNodeId, _this24.nodeInfo.nextNode, true);
22268
22434
  } else {
22269
- _this23.$message.error(message || '系统错误,请联系管理员!');
22435
+ _this24.$message.error(message || '系统错误,请联系管理员!');
22270
22436
  }
22271
22437
  }).catch(function (err) {
22272
- _this23.loading.close();
22438
+ _this24.loading.close();
22273
22439
  if (err.message && err.message !== 'canceled') {
22274
- _this23.$message.error(err.message);
22440
+ _this24.$message.error(err.message);
22275
22441
  }
22276
22442
  });
22277
22443
  },
22278
22444
 
22279
- /**
22280
- * selecNext
22281
- * @desc:下步节点变化时更新数据
22282
- * @author liufan
22283
- * @param {String} val 当前选中值
22284
- * @date 2022年5月25日
22445
+ /**
22446
+ * selecNext
22447
+ * @desc:下步节点变化时更新数据
22448
+ * @author liufan
22449
+ * @param {String} val 当前选中值
22450
+ * @date 2022年5月25日
22285
22451
  **/
22286
22452
  selecNext: function selecNext(val, type, isDef) {
22287
- var _this24 = this;
22453
+ var _this25 = this;
22288
22454
 
22289
22455
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22290
22456
  if (this.multiple) {
@@ -22315,16 +22481,16 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22315
22481
  this.operationList.forEach(function (item) {
22316
22482
  if (item.key === val) {
22317
22483
  if (!item.taskNodeList) {
22318
- _this24.nodeInfos = [];
22484
+ _this25.nodeInfos = [];
22319
22485
  } else {
22320
- _this24.nodeInfos = item.taskNodeList;
22486
+ _this25.nodeInfos = item.taskNodeList;
22321
22487
  }
22322
22488
  return;
22323
22489
  }
22324
22490
  });
22325
22491
  if (this.defaultNextNode) {
22326
22492
  var defaultNode = this.nodeInfos.filter(function (item) {
22327
- return item.nodeId == _this24.defaultNextNode;
22493
+ return item.nodeId == _this25.defaultNextNode;
22328
22494
  });
22329
22495
  if (this.nodeInfos.length > 0 && defaultNode.length == 0) {
22330
22496
  this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
@@ -22390,11 +22556,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22390
22556
  if (isDef !== true) this.getNodeInfo();
22391
22557
  },
22392
22558
 
22393
- /**
22394
- * isMultiple
22395
- * @desc:是否多选
22396
- * @author liufan
22397
- * @date 2022年9月13日
22559
+ /**
22560
+ * isMultiple
22561
+ * @desc:是否多选
22562
+ * @author liufan
22563
+ * @date 2022年9月13日
22398
22564
  **/
22399
22565
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
22400
22566
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -22426,24 +22592,24 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22426
22592
  }
22427
22593
  },
22428
22594
 
22429
- /**
22430
- * getHedInfo
22431
- * @desc:获取审核页面数据
22432
- * @author liufan
22433
- * @date 2022年5月25日
22595
+ /**
22596
+ * getHedInfo
22597
+ * @desc:获取审核页面数据
22598
+ * @author liufan
22599
+ * @date 2022年5月25日
22434
22600
  **/
22435
22601
  getHedInfo: function getHedInfo() {
22436
- var _this25 = this;
22602
+ var _this26 = this;
22437
22603
 
22438
22604
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22439
22605
  var params = {
22440
22606
  pendingId: this.pendingId,
22441
22607
  userId: util["a" /* default */].getStorage('userId')
22442
22608
  };
22443
- util["a" /* default */].ajax({ url: api["G" /* getHandleInfoHtml */], params: params }).then(function (res) {
22609
+ util["a" /* default */].ajax({ url: api["J" /* getHandleInfoHtml */], params: params }).then(function (res) {
22444
22610
  //pc返回数据
22445
22611
 
22446
- _this25.loading.close();
22612
+ _this26.loading.close();
22447
22613
  if (res.status === 'success') {
22448
22614
  var _res$data2 = res.data,
22449
22615
  nextNodeList = _res$data2.nextNodeList,
@@ -22475,207 +22641,208 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22475
22641
  taskButtonList = _res$data2.taskButtonList,
22476
22642
  isCanPreAddSign = _res$data2.isCanPreAddSign;
22477
22643
 
22478
- _this25.$emit('startTaskRead', res);
22479
- _this25.$emit('start-task-read', res);
22480
- _this25.circularReadParamsMap = circularReadParamsMap || {};
22481
- _this25.currentOrgName = currentOrgName;
22482
- _this25.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
22483
- _this25.readOnlyNotificationType = readOnlyNotificationType;
22484
- _this25.isSpecial = isSpecial;
22485
- _this25.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
22486
- _this25.otherOrgName = otherOrgName;
22487
- _this25.isCanPreAddSign = isCanPreAddSign;
22488
- _this25.endFlowInfo.choiceOrgId = choiceOrgId;
22489
- _this25.endFlowInfo.choiceDeptId = choiceDeptId;
22490
- _this25.endFlowInfo.pendingId = _this25.pendingId;
22491
- _this25.attachedCode = attachedCode;
22492
- _this25.endFlowInfo.pOrgId = pOrgId;
22493
- _this25.canPresetRead = canPresetRead;
22494
- _this25.isCdjxjTaskHandle = isCdjxjTaskHandle;
22495
- nextNodeCheckType && (_this25.nextNodeCheckType = nextNodeCheckType);
22496
- _this25.operationList = taskOperations || [];
22497
- _this25.customPresetHintMessage = customPresetHintMessage;
22644
+ _this26.$emit('startTaskRead', res);
22645
+ _this26.$emit('start-task-read', res);
22646
+ _this26.circularReadParamsMap = circularReadParamsMap || {};
22647
+ _this26.currentOrgName = currentOrgName;
22648
+ _this26.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
22649
+ _this26.readOnlyNotificationType = readOnlyNotificationType;
22650
+ _this26.isSpecial = isSpecial;
22651
+ _this26.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
22652
+ _this26.otherOrgName = otherOrgName;
22653
+ _this26.isCanPreAddSign = isCanPreAddSign;
22654
+ _this26.endFlowInfo.choiceOrgId = choiceOrgId;
22655
+ _this26.endFlowInfo.choiceDeptId = choiceDeptId;
22656
+ _this26.endFlowInfo.pendingId = _this26.pendingId;
22657
+ _this26.attachedCode = attachedCode;
22658
+ _this26.endFlowInfo.pOrgId = pOrgId;
22659
+ _this26.canPresetRead = canPresetRead;
22660
+ _this26.isCdjxjTaskHandle = isCdjxjTaskHandle;
22661
+ nextNodeCheckType && (_this26.nextNodeCheckType = nextNodeCheckType);
22662
+ _this26.operationList = taskOperations || [];
22663
+ _this26.customPresetHintMessage = customPresetHintMessage;
22498
22664
  if (canPresetRead) {
22499
22665
  var ids = nodeInfoMap.nodeExtAttr.presetReadCandinateIds.split(',');
22500
22666
  var names = nodeInfoMap.nodeExtAttr.presetReadCandinateNames.split(',');
22501
22667
  ids.map(function (item, index) {
22502
- _this25.presetReadUserId.push({
22668
+ _this26.presetReadUserId.push({
22503
22669
  showid: item,
22504
22670
  showname: names[index]
22505
22671
  });
22506
- _this25.selectPresetUserList.push({
22672
+ _this26.selectPresetUserList.push({
22507
22673
  showid: item,
22508
22674
  showname: names[index]
22509
22675
  });
22510
- _this25.nextNode.presetReadUserId.push(item);
22676
+ _this26.nextNode.presetReadUserId.push(item);
22511
22677
  });
22512
22678
  }
22513
- if (!_this25.isFlow) _this25.getFile(_this25.pendingId, attachedCode);
22679
+ if (!_this26.isFlow) _this26.getFile(_this26.pendingId, attachedCode);
22514
22680
  if (nextNodeList && nextNodeList.length != 0) {
22515
- _this25.nextNodeList = nextNodeList;
22681
+ _this26.nextNodeList = nextNodeList;
22516
22682
  }
22517
- if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this25.removeUsers = canRemoveSignUserList;
22683
+ if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this26.removeUsers = canRemoveSignUserList;
22518
22684
  if (taskOperations && taskOperations.length != 0) {
22519
22685
  taskOperations.map(function (item) {
22520
- if (item.key === 9) _this25.isReject = true;
22686
+ if (item.key === 9) _this26.isReject = true;
22521
22687
  if (item.isSelected) {
22522
- _this25.nodeInfos = [];
22523
- _this25.nextNode.nextOperate = item.key;
22688
+ _this26.nodeInfos = [];
22689
+ _this26.nextNode.nextOperate = item.key;
22524
22690
  if (item.taskNodeList != null) {
22525
- _this25.nodeInfos = item.taskNodeList;
22691
+ _this26.nodeInfos = item.taskNodeList;
22526
22692
  }
22527
22693
  }
22528
22694
  if (taskOperations.length == 1) {
22529
- _this25.nodeInfos = [];
22530
- _this25.nextNode.nextOperate = taskOperations[0].key;
22695
+ _this26.nodeInfos = [];
22696
+ _this26.nextNode.nextOperate = taskOperations[0].key;
22531
22697
  if (taskOperations[0].taskNodeList != null) {
22532
- _this25.nodeInfos = taskOperations[0].taskNodeList;
22698
+ _this26.nodeInfos = taskOperations[0].taskNodeList;
22533
22699
  }
22534
22700
  }
22535
22701
  });
22536
- _this25.selecNext(_this25.nextNode.nextOperate, true, true);
22702
+ _this26.selecNext(_this26.nextNode.nextOperate, true, true);
22537
22703
  }
22538
22704
  if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
22539
- _this25.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22705
+ _this26.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22540
22706
  if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
22541
22707
  var notice = JSON.parse(nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList);
22542
22708
  notice.map(function (x) {
22543
- _this25.nodeFixedOpinionSelectList.push({ content: x });
22709
+ _this26.nodeFixedOpinionSelectList.push({ content: x });
22544
22710
  });
22545
22711
  }
22546
- _this25.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
22547
- _this25.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
22548
- _this25.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
22549
- _this25.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
22550
- _this25.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
22551
- _this25.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
22712
+ _this26.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
22713
+ _this26.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
22714
+ _this26.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
22715
+ _this26.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
22716
+ _this26.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
22717
+ _this26.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
22552
22718
  // this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
22553
- _this25.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22719
+ _this26.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22554
22720
  if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
22555
- var defaultNode = _this25.nodeInfos.filter(function (item) {
22721
+ var defaultNode = _this26.nodeInfos.filter(function (item) {
22556
22722
  return item.nodeId == nodeInfoMap.nodeExtAttr.defaultNextNode;
22557
22723
  });
22558
- if (_this25.nodeInfos.length > 0 && defaultNode.length == 0) {
22559
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22724
+ if (_this26.nodeInfos.length > 0 && defaultNode.length == 0) {
22725
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22560
22726
  } else {
22561
- _this25.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22727
+ _this26.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22562
22728
  }
22563
- } else if (_this25.nodeInfos.length > 0) {
22564
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22729
+ } else if (_this26.nodeInfos.length > 0) {
22730
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22565
22731
  }
22566
- _this25.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22732
+ _this26.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22567
22733
  if (nodeInfoMap.nodeExtAttr.submitText) {
22568
- _this25.btnList.map(function (x) {
22734
+ _this26.btnList.map(function (x) {
22569
22735
  if (x.event === 'sub') {
22570
22736
  x.text = nodeInfoMap.nodeExtAttr.submitText;
22571
22737
  }
22572
22738
  });
22573
22739
  }
22574
22740
  }
22575
- _this25.choiceOrgId = choiceOrgId;
22576
- _this25.choiceDeptId = choiceDeptId;
22577
- _this25.pOrgId = pOrgId;
22741
+ _this26.choiceOrgId = choiceOrgId;
22742
+ _this26.choiceDeptId = choiceDeptId;
22743
+ _this26.pOrgId = pOrgId;
22578
22744
  if (res.data && res.data.isEndUserTask != undefined) {
22579
- _this25.isEndUserTask = res.data.isEndUserTask;
22745
+ _this26.isEndUserTask = res.data.isEndUserTask;
22580
22746
  }
22581
22747
  if (JSON.stringify(taskExamine) != '{}' && taskExamine) {
22582
- _this25.nodeInfo.nextNode = taskExamine.processDefinitionId;
22583
- _this25.NodeName = taskExamine.nodeName;
22584
- _this25.taskId = taskExamine.taskId;
22585
- _this25.businessIds = taskExamine.businessId;
22586
- _this25.appId = taskExamine.appId;
22587
- _this25.taskExamineInfo = taskExamine;
22588
- _this25.taskExamineInfo.choiceOrgId = choiceOrgId;
22589
- _this25.taskExamineInfo.choiceDeptId = choiceDeptId;
22590
- _this25.endFlowInfo.processType = taskExamine.processType;
22591
- _this25.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
22592
- _this25.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
22593
- _this25.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
22594
- _this25.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22595
- _this25.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
22596
- _this25.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22597
- _this25.nextNode.isReadDealReply = taskExamine.isReadDealReply;
22598
- _this25.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
22599
- _this25.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
22600
- _this25.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
22601
- _this25.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
22602
- _this25.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
22603
- _this25.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
22604
- _this25.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22605
- _this25.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22606
- _this25.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
22607
- _this25.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
22608
- _this25.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
22609
- _this25.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
22748
+ _this26.nodeInfo.nextNode = taskExamine.processDefinitionId;
22749
+ _this26.NodeName = taskExamine.nodeName;
22750
+ _this26.taskId = taskExamine.taskId;
22751
+ _this26.businessIds = taskExamine.businessId;
22752
+ _this26.appId = taskExamine.appId;
22753
+ _this26.taskExamineInfo = taskExamine;
22754
+ _this26.taskExamineInfo.choiceOrgId = choiceOrgId;
22755
+ _this26.taskExamineInfo.choiceDeptId = choiceDeptId;
22756
+ _this26.endFlowInfo.processType = taskExamine.processType;
22757
+ _this26.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
22758
+ _this26.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
22759
+ _this26.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
22760
+ _this26.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22761
+ _this26.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
22762
+ _this26.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22763
+ _this26.nextNode.isReadDealReply = taskExamine.isReadDealReply;
22764
+ _this26.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
22765
+ _this26.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
22766
+ _this26.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
22767
+ _this26.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
22768
+ _this26.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
22769
+ _this26.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
22770
+ _this26.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22771
+ _this26.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22772
+ _this26.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
22773
+ _this26.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
22774
+ _this26.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
22775
+ _this26.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
22610
22776
  // this.endFlowInfo.isReadDealReply =
22611
22777
  // taskExamine.isReadDealReplybusinessId;
22612
- _this25.endFlowInfo.appId = taskExamine.appId;
22613
- _this25.endFlowInfo.businessId = taskExamine.businessId;
22614
- _this25.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
22615
- _this25.endFlowInfo.nodeId = taskExamine.nodeId;
22778
+ _this26.endFlowInfo.appId = taskExamine.appId;
22779
+ _this26.endFlowInfo.businessId = taskExamine.businessId;
22780
+ _this26.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
22781
+ _this26.endFlowInfo.nodeId = taskExamine.nodeId;
22616
22782
  }
22617
- if (_this25.nodeName) {
22618
- _this25.NodeName = _this25.nodeName;
22783
+ if (_this26.nodeName) {
22784
+ _this26.NodeName = _this26.nodeName;
22619
22785
  }
22620
- _this25.isCanAddSign = isCanAddSign;
22621
- _this25.processObj = res.data;
22622
- if (_this25.isCanAddSign) {
22623
- _this25.nextNode.isAddSign = '2';
22786
+ _this26.isCanAddSign = isCanAddSign;
22787
+ _this26.processObj = res.data;
22788
+ if (_this26.isCanAddSign) {
22789
+ _this26.nextNode.isAddSign = '2';
22624
22790
  }
22625
- _this25.isCanRemoveSign = isCanRemoveSign;
22626
- if (_this25.isCanRemoveSign) {
22627
- _this25.nextNode.isRemoveSign = '2';
22791
+ _this26.isCanRemoveSign = isCanRemoveSign;
22792
+ if (_this26.isCanRemoveSign) {
22793
+ _this26.nextNode.isRemoveSign = '2';
22628
22794
  }
22629
22795
 
22630
- if (!_this25.isOpinionRequired) {
22631
- _this25.isOpinionRequired = 0;
22796
+ if (!_this26.isOpinionRequired) {
22797
+ _this26.isOpinionRequired = 0;
22632
22798
  }
22633
22799
  // opinion && (this.value = opinion);
22634
- _this25.nextNode.notificationMsg = defaultNotificationMessage;
22635
- _this25.moreList = [];
22800
+ _this26.nextNode.notificationMsg = defaultNotificationMessage;
22801
+ _this26.moreList = [];
22636
22802
  if (taskButtonList && taskButtonList.length != 0) {
22637
22803
  taskButtonList.map(function (item) {
22638
22804
  if (item.fun === 'reject()') {
22639
- _this25.rejectObj = item;
22805
+ _this26.rejectObj = item;
22640
22806
  } else if (item.fun === 'toStartTaskRead()') {
22641
- _this25.pointsReadingObj = item;
22807
+ _this26.pointsReadingObj = item;
22642
22808
  } else {
22643
- _this25.moreList.push(item);
22809
+ _this26.moreList.push(item);
22644
22810
  }
22645
22811
  });
22646
22812
  }
22647
- _this25.isMainSubProcess = res.data.isMainSubProcess == 'true';
22648
- _this25.isCustomPreset = isCustomPreset;
22649
- _this25.isPreset = isPreset;
22650
- _this25.presetTaskNodeMap = presetTaskNodeMap;
22651
- _this25.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
22652
- _this25.getFind();
22653
-
22654
- _this25.getNodeInfo();
22813
+ _this26.isMainSubProcess = res.data.isMainSubProcess == 'true';
22814
+ _this26.isCustomPreset = isCustomPreset;
22815
+ _this26.isPreset = isPreset;
22816
+ _this26.presetTaskNodeMap = presetTaskNodeMap;
22817
+ _this26.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
22818
+ _this26.getFind();
22819
+
22820
+ _this26.getNodeInfo();
22821
+ _this26.StartTaskReadKey++;
22655
22822
  } else {
22656
22823
  if (res.status === 'taskCompleted') {
22657
- _this25.$emit('shrink', true);
22658
- _this25.shrinkAbled = true;
22659
- _this25.$message.warning(res.message || '系统错误,请联系管理员!');
22824
+ _this26.$emit('shrink', true);
22825
+ _this26.shrinkAbled = true;
22826
+ _this26.$message.warning(res.message || '系统错误,请联系管理员!');
22660
22827
  } else {
22661
- _this25.$message.error(res.message || '系统错误,请联系管理员!');
22828
+ _this26.$message.error(res.message || '系统错误,请联系管理员!');
22662
22829
  }
22663
22830
  }
22664
22831
  }).catch(function (err) {
22665
- _this25.loading.close();
22832
+ _this26.loading.close();
22666
22833
  if (err.message && err.message !== 'canceled') {
22667
- _this25.$message.error(err.message);
22834
+ _this26.$message.error(err.message);
22668
22835
  }
22669
22836
  });
22670
22837
  },
22671
22838
 
22672
- /**
22673
- * closeProcess
22674
- * @desc:关闭弹窗
22675
- * @author liufan
22676
- * @param {boolean} val 当前是否办理流程
22677
- * @param {String} type 当前点击的弹窗类型
22678
- * @date 2022年5月25日
22839
+ /**
22840
+ * closeProcess
22841
+ * @desc:关闭弹窗
22842
+ * @author liufan
22843
+ * @param {boolean} val 当前是否办理流程
22844
+ * @param {String} type 当前点击的弹窗类型
22845
+ * @date 2022年5月25日
22679
22846
  **/
22680
22847
  closeProcess: function closeProcess(val, type, closeParent) {
22681
22848
  if (closeParent) {
@@ -22692,23 +22859,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22692
22859
  }
22693
22860
  },
22694
22861
 
22695
- /**
22696
- * selectChange
22697
- * @desc:常用语选择
22698
- * @author liufan
22699
- * @param {String} val 选中值
22700
- * @date 2022年5月25日
22862
+ /**
22863
+ * selectChange
22864
+ * @desc:常用语选择
22865
+ * @author liufan
22866
+ * @param {String} val 选中值
22867
+ * @date 2022年5月25日
22701
22868
  **/
22702
22869
  selectChange: function selectChange(val) {
22703
22870
  this.value = val;
22704
22871
  },
22705
22872
 
22706
- /**
22707
- * upDate
22708
- * @desc:修改常用语
22709
- * @author liufan
22710
- * @param {Object} val 修改值
22711
- * @date 2022年5月25日
22873
+ /**
22874
+ * upDate
22875
+ * @desc:修改常用语
22876
+ * @author liufan
22877
+ * @param {Object} val 修改值
22878
+ * @date 2022年5月25日
22712
22879
  **/
22713
22880
  upDate: function upDate(val) {
22714
22881
  this.FormData.id = val.id;
@@ -22716,130 +22883,169 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22716
22883
  },
22717
22884
 
22718
22885
 
22719
- /**
22720
- * getProcess
22721
- * @desc:获取选择流程
22722
- * @author liufan
22723
- * @date 2022年5月25日
22886
+ /**
22887
+ * getProcess
22888
+ * @desc:获取选择流程
22889
+ * @author liufan
22890
+ * @date 2022年5月25日
22724
22891
  **/
22725
- getProcess: function getProcess() {
22726
- var _this26 = this;
22892
+ getProcess: function getProcess(val) {
22893
+ var _this27 = this;
22727
22894
 
22728
22895
  var params = mainvue_type_script_lang_js_extends({
22729
22896
  businessId: this.businessId,
22730
- flowTypeCode: this.flowTypeCode,
22897
+ flowTypeCode: val || this.flowTypeCode,
22731
22898
  // defaultProcessKey: this.defaultProcessKey,
22732
22899
  isOnly: true,
22733
22900
  hideTempSave: true
22734
22901
  }, this.param);
22735
22902
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22736
- util["a" /* default */].ajax({ url: api["O" /* getProcessDefList */], params: params }).then(function (res) {
22903
+ util["a" /* default */].ajax({ url: api["R" /* getProcessDefList */], params: params }).then(function (res) {
22737
22904
  var status = res.status,
22738
22905
  message = res.message,
22739
22906
  data = res.data;
22740
22907
 
22741
- _this26.loading.close();
22908
+ _this27.loading.close();
22742
22909
  if (status === 'success') {
22743
- _this26.isStartFlowChartView = data.isStartFlowChartView;
22910
+ _this27.isStartFlowChartView = data.isStartFlowChartView;
22744
22911
  if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
22745
- _this26.$message.error('流程不存在或未关联对应流程!');
22912
+ _this27.$message.error('流程不存在或未关联对应流程!');
22746
22913
  } else {
22747
- _this26.nodeInfo.option = data.definitionList;
22748
- _this26.nodeInfo.nextNode = data.definitionList.filter(function (item) {
22749
- return item.processDefKey == _this26.defaultProcessKey;
22914
+ _this27.nodeInfo.option = data.definitionList;
22915
+ _this27.nodeInfo.nextNode = data.definitionList.filter(function (item) {
22916
+ return item.processDefKey == _this27.defaultProcessKey;
22750
22917
  });
22751
- if (_this26.nodeInfo.nextNode.length) {
22752
- _this26.nodeInfo.nextNode = _this26.nodeInfo.nextNode[0].processDefId;
22918
+ if (_this27.nodeInfo.nextNode.length) {
22919
+ _this27.nodeInfo.nextNode = _this27.nodeInfo.nextNode[0].processDefId;
22753
22920
  } else {
22754
22921
  if (data.definitionList.length != 0) {
22755
- _this26.nodeInfo.nextNode = data.definitionList[0].processDefId;
22922
+ _this27.nodeInfo.nextNode = data.definitionList[0].processDefId;
22756
22923
  } else {
22757
- _this26.nodeInfo.nextNode = '';
22924
+ _this27.nodeInfo.nextNode = '';
22758
22925
  }
22759
22926
  }
22760
- if (_this26.nodeInfo.nextNode) {
22761
- _this26.handleChange(_this26.nodeInfo.nextNode);
22927
+ if (_this27.nodeInfo.nextNode) {
22928
+ _this27.handleChange(_this27.nodeInfo.nextNode);
22762
22929
  }
22763
22930
  }
22764
22931
  } else {
22765
- _this26.$message.error(message || '系统错误,请联系管理员!');
22932
+ _this27.$message.error(message || '系统错误,请联系管理员!');
22766
22933
  }
22767
22934
  }).catch(function (err) {
22768
- _this26.loading.close();
22935
+ _this27.loading.close();
22769
22936
  if (err.message && err.message !== 'canceled') {
22770
- _this26.$message.error(err.message);
22937
+ _this27.$message.error(err.message);
22771
22938
  }
22772
22939
  });
22773
22940
  },
22774
22941
 
22775
- /**
22776
- * getPendedhistoryList
22777
- * @desc:获取流程列表
22778
- * @author liufan
22779
- * @date 2022年5月25日
22942
+ /**
22943
+ * getPendedhistoryList
22944
+ * @desc:获取流程列表
22945
+ * @author liufan
22946
+ * @date 2022年5月25日
22780
22947
  **/
22781
22948
  getPendedhistoryList: function getPendedhistoryList() {
22782
- var _this27 = this;
22949
+ var _this28 = this;
22783
22950
 
22784
22951
  var params = {
22785
22952
  apprecordId: this.businessIds,
22786
22953
  userId: util["a" /* default */].getStorage('userId'),
22787
22954
  type: 2
22788
22955
  };
22789
- util["a" /* default */].ajax({ url: api["ib" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
22956
+ util["a" /* default */].ajax({ url: api["lb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
22790
22957
  var rCode = res.rCode,
22791
22958
  msg = res.msg,
22792
22959
  results = res.results;
22793
22960
 
22794
22961
  if (!rCode) {
22795
- _this27.nextNode.nextUserId = [];
22796
- _this27.showNews = false;
22797
- _this27.nextNode.notificationType = [];
22798
- _this27.pendingId = results[results.length - 1].attachId;
22799
- _this27.getHedInfo();
22962
+ _this28.nextNode.nextUserId = [];
22963
+ _this28.showNews = false;
22964
+ _this28.nextNode.notificationType = [];
22965
+ _this28.pendingId = results[results.length - 1].attachId;
22966
+ _this28.getHedInfo();
22800
22967
  } else {
22801
- _this27.$message.error(msg || '系统错误,请联系管理员!');
22968
+ _this28.$message.error(msg || '系统错误,请联系管理员!');
22802
22969
  }
22803
22970
  }).catch(function (err) {
22804
22971
  if (err.message && err.message !== 'canceled') {
22805
- _this27.$message.error(err.message);
22972
+ _this28.$message.error(err.message);
22806
22973
  }
22807
22974
  });
22808
22975
  },
22976
+ reqCircularRead: function reqCircularRead(type) {
22977
+ var _this29 = this;
22978
+
22979
+ var _that = this;
22980
+ var params = {
22981
+ url: api["e" /* checkForeignOrgStartedCircularRead */],
22982
+ params: {
22983
+ foreignOrgObj: _that.nextNode.nextOtherOrgObj,
22984
+ circularReadProcessKey: _that.taskExamineInfo.processDefinitionId,
22985
+ currentBusinessId: _that.taskExamineInfo.businessId
22986
+ }
22987
+ };
22988
+ this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
22989
+ util["a" /* default */].ajax(params).then(function (res) {
22990
+ _this29.loading.close();
22991
+ if (res.rCode == 0) {
22992
+ if (res.results.alert) {
22993
+ _that.$confirm(res.results.message, {
22994
+ confirmButtonText: '确定',
22995
+ cancelButtonText: '取消',
22996
+ type: 'warning'
22997
+ }).then(function () {
22998
+ _that.subMit(res.results, type);
22999
+ }).catch(function () {});
23000
+ } else {
23001
+ _that.sendData(type);
23002
+ }
23003
+ }
23004
+ });
23005
+ },
23006
+ subMit: function subMit(res, type) {
23007
+ if (res.status == 'forbiddenForeignOrg' && this.nextNode.nextCurrentOrgObj.length != 0 || res.status == 'availableForeignOrg') {
23008
+ this.sendData(type);
23009
+ }
23010
+ },
22809
23011
 
22810
23012
  // 提交流程
22811
- /**
22812
- * subProcess
22813
- * @desc:提交流程
22814
- * @author liufan
22815
- * @param {String} formName 当前form表单ref值
22816
- * @date 2022年5月25日
23013
+ /**
23014
+ * subProcess
23015
+ * @desc:提交流程
23016
+ * @author liufan
23017
+ * @param {String} formName 当前form表单ref值
23018
+ * @date 2022年5月25日
22817
23019
  **/
22818
23020
  subProcess: function subProcess(val, type) {
22819
- var _this28 = this;
23021
+ var _this30 = this;
22820
23022
 
22821
23023
  return this.$refs['nextNode'].validate(function (valid) {
22822
23024
  if (valid) {
22823
- if (_this28.isSubmitButtonShowAgreeAndDisagree == 1) {
22824
- _this28.value = _this28.value.replace(RegExp('不同意。', 'g'), '');
22825
- _this28.value = _this28.value.replace(RegExp('同意。', 'g'), '');
22826
- _this28.value = val + _this28.value;
23025
+ if (_this30.isSubmitButtonShowAgreeAndDisagree == 1) {
23026
+ _this30.value = _this30.value.replace(RegExp('不同意。', 'g'), '');
23027
+ _this30.value = _this30.value.replace(RegExp('同意。', 'g'), '');
23028
+ _this30.value = val + _this30.value;
22827
23029
  }
22828
- if (!_this28.validInfo()) {
22829
- _this28.freeValid = false;
23030
+ if (!_this30.validInfo()) {
23031
+ _this30.freeValid = false;
22830
23032
  return;
22831
23033
  } else {
22832
- _this28.freeValid = true;
23034
+ _this30.freeValid = true;
23035
+ }
23036
+ if (_this30.currentNodeIsCircularReadNode && _this30.nextNode.nextOtherOrgObj.length != 0) {
23037
+ _this30.reqCircularRead(type);
23038
+ return;
22833
23039
  }
22834
23040
  if (type == 'multiInsMidwayWithSubmitScene') {
22835
- _this28.sendData(type);
23041
+ _this30.sendData(type);
22836
23042
  return;
22837
23043
  }
22838
- if (_this28.beforeSubmit == undefined) {
22839
- _this28.subFun(_this28.sendData);
23044
+ if (_this30.beforeSubmit == undefined) {
23045
+ _this30.subFun(_this30.sendData);
22840
23046
  } else {
22841
- _this28.beforeSubmit(1).then(function (next) {
22842
- _this28.sendData();
23047
+ _this30.beforeSubmit(1).then(function (next) {
23048
+ _this30.sendData();
22843
23049
  }).catch(function (e) {});
22844
23050
  }
22845
23051
  }
@@ -22884,7 +23090,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22884
23090
  return true;
22885
23091
  },
22886
23092
  sendData: function sendData(freetype) {
22887
- var _this29 = this;
23093
+ var _this31 = this;
22888
23094
 
22889
23095
  this.$refs['nextNode'].validate(function () {
22890
23096
  var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
@@ -22894,57 +23100,57 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22894
23100
  switch (_context.prev = _context.next) {
22895
23101
  case 0:
22896
23102
  if (!valid) {
22897
- _context.next = 49;
23103
+ _context.next = 50;
22898
23104
  break;
22899
23105
  }
22900
23106
 
22901
- if (!_this29.isFlow) {
23107
+ if (!_this31.isFlow) {
22902
23108
  _context.next = 3;
22903
23109
  break;
22904
23110
  }
22905
23111
 
22906
- return _context.abrupt('return', _this29.handleVisible = true);
23112
+ return _context.abrupt('return', _this31.handleVisible = true);
22907
23113
 
22908
23114
  case 3:
22909
23115
  nextUserId = [];
22910
23116
 
22911
- if (_this29.multiple) {
22912
- _this29.nextNode.nextUserId && _this29.nextNode.nextUserId.map(function (item) {
23117
+ if (_this31.multiple) {
23118
+ _this31.nextNode.nextUserId && _this31.nextNode.nextUserId.map(function (item) {
22913
23119
  return nextUserId.push(item);
22914
23120
  });
22915
23121
  }
22916
23122
  addSignUserId = [];
22917
23123
 
22918
- if (_this29.isCanAddSign && _this29.nextNode.isAddSign == '1') {
22919
- _this29.nextNode.addSignUserId.map(function (item) {
23124
+ if (_this31.isCanAddSign && _this31.nextNode.isAddSign == '1') {
23125
+ _this31.nextNode.addSignUserId.map(function (item) {
22920
23126
  addSignUserId.push(item);
22921
23127
  });
22922
23128
  }
22923
23129
  removeSignUserId = [];
22924
23130
 
22925
- if (_this29.isCanRemoveSign && _this29.nextNode.isRemoveSign == '1') {
22926
- _this29.nextNode.removeSignUserId.map(function (item) {
23131
+ if (_this31.isCanRemoveSign && _this31.nextNode.isRemoveSign == '1') {
23132
+ _this31.nextNode.removeSignUserId.map(function (item) {
22927
23133
  removeSignUserId.push(item);
22928
23134
  });
22929
23135
  }
22930
23136
  str = '';
22931
23137
 
22932
- if (_this29.value) {
22933
- str = _this29.value.replace(/\s+/g, '');
23138
+ if (_this31.value) {
23139
+ str = _this31.value.replace(/\s+/g, '');
22934
23140
  }
22935
- if ((!_this29.value || str === '') && _this29.nodeDefaultSubmitOpinion) {
22936
- _this29.value = _this29.nodeDefaultSubmitOpinion;
23141
+ if ((!_this31.value || str === '') && _this31.nodeDefaultSubmitOpinion) {
23142
+ _this31.value = _this31.nodeDefaultSubmitOpinion;
22937
23143
  }
22938
- if (!_this29.isSpecial) {
22939
- delete _this29.nextNode.nextOperate;
22940
- delete _this29.nextNode.nextNodeId;
23144
+ if (!_this31.isSpecial) {
23145
+ delete _this31.nextNode.nextOperate;
23146
+ delete _this31.nextNode.nextNodeId;
22941
23147
  }
22942
- if (_this29.nextNode.nextOperate === 9) {
22943
- _this29.nextNode.isReturnRejectNode = 1;
22944
- _this29.nextNode.processDefinitionId = _this29.processObj.taskExamine.processDefinitionId;
23148
+ if (_this31.nextNode.nextOperate === 9) {
23149
+ _this31.nextNode.isReturnRejectNode = 1;
23150
+ _this31.nextNode.processDefinitionId = _this31.processObj.taskExamine.processDefinitionId;
22945
23151
  }
22946
- if (_this29.nextNode.nextOperate != 0 && _this29.nextNode.nextOperate != 1) {
22947
- delete _this29.nextNode.nextNodeId;
23152
+ if (_this31.nextNode.nextOperate != 0 && _this31.nextNode.nextOperate != 1) {
23153
+ delete _this31.nextNode.nextNodeId;
22948
23154
  }
22949
23155
 
22950
23156
  if (!(freetype != 'multiInsMidwayWithSubmitScene')) {
@@ -22953,54 +23159,57 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22953
23159
  }
22954
23160
 
22955
23161
  _context.next = 18;
22956
- return _this29.saveInfo('subMit');
23162
+ return _this31.saveInfo('subMit');
22957
23163
 
22958
23164
  case 18:
22959
- _this29.loading = util["a" /* default */].loading(_this29.$loading, '加载中...');
23165
+ _this31.loading = util["a" /* default */].loading(_this31.$loading, '加载中...');
22960
23166
 
22961
23167
  case 19:
22962
23168
  notificationType = '';
22963
23169
 
22964
- notificationType = _this29.nextNode.notificationType.join(',');
23170
+ notificationType = _this31.nextNode.notificationType.join(',');
22965
23171
  addSignUserId = addSignUserId.join(',');
22966
23172
  removeSignUserId = removeSignUserId.join(',');
22967
- if (!_this29.isCanPreAddSign || _this29.nextNode.isAddSign != '1') {
22968
- delete _this29.nextNode.addSignMode;
23173
+ if (!_this31.isCanPreAddSign || _this31.nextNode.isAddSign != '1') {
23174
+ delete _this31.nextNode.addSignMode;
22969
23175
  }
22970
- params = mainvue_type_script_lang_js_extends({}, _this29.nextNode, {
22971
- pendingId: _this29.pendingId,
22972
- opinion: _this29.isForceDisplayDefaultOptionForPrefix && !_this29.value.startsWith(_this29.nodeDefaultSubmitOpinion) ? _this29.nodeDefaultSubmitOpinion + _this29.value : _this29.value,
23176
+ params = mainvue_type_script_lang_js_extends({}, _this31.nextNode, {
23177
+ pendingId: _this31.pendingId,
23178
+ opinion: _this31.isForceDisplayDefaultOptionForPrefix && !_this31.value.startsWith(_this31.nodeDefaultSubmitOpinion) ? _this31.nodeDefaultSubmitOpinion + _this31.value : _this31.value,
22973
23179
  userId: util["a" /* default */].getStorage('userId'),
22974
- nextUserId: _this29.multiple ? nextUserId.join(',') : _this29.nextNode.nextUserId,
23180
+ nextUserId: _this31.multiple ? nextUserId.join(',') : _this31.nextNode.nextUserId,
22975
23181
  addSignUserId: addSignUserId,
22976
- customPresetUserJson: JSON.stringify(_this29.presetList),
22977
- presetUserJson: JSON.stringify(_this29.presetUserJson),
23182
+ customPresetUserJson: JSON.stringify(_this31.presetList),
23183
+ presetUserJson: JSON.stringify(_this31.presetUserJson),
22978
23184
  removeSignUserId: removeSignUserId,
22979
- nextReadUserId: _this29.readMultiple ? _this29.mixReadList && _this29.mixReadList.join('|') : _this29.nextNode.nextReadUserId,
22980
- nextOrgId: !_this29.isShowNextUser ? _this29.multiple ? _this29.mixOrgIdList && _this29.mixOrgIdList.join('|') : _this29.nextNode.nextOrgId : '',
22981
- presetReadUserId: _this29.mixPresetList && _this29.mixPresetList.length > 0 ? _this29.mixPresetList.join('|') : _this29.nextNode.presetReadUserId.join(','),
23185
+ nextReadUserId: _this31.readMultiple ? _this31.mixReadList && _this31.mixReadList.join('|') : _this31.nextNode.nextReadUserId,
23186
+ nextOrgId: !_this31.isShowNextUser ? _this31.multiple ? _this31.mixOrgIdList && _this31.mixOrgIdList.join('|') : _this31.nextNode.nextOrgId : '',
23187
+ presetReadUserId: _this31.mixPresetList && _this31.mixPresetList.length > 0 ? _this31.mixPresetList.join('|') : _this31.nextNode.presetReadUserId.join(','),
22982
23188
  notificationType: notificationType
22983
23189
  });
22984
23190
 
22985
- if (_this29.activeNames != '1') delete params.customPresetUserJson;
22986
- if (_this29.nextNode.isRemoveSign != '1') {
23191
+ if (_this31.activeNames != '1') delete params.customPresetUserJson;
23192
+ if (_this31.nextNode.isRemoveSign != '1') {
22987
23193
  delete params.removeSignUserId;
22988
23194
  }
22989
- if (_this29.nextNode.isAddSign != '1') {
23195
+ if (_this31.nextNode.isAddSign != '1') {
22990
23196
  delete params.addSignUserId;
22991
23197
  }
23198
+ if (!_this31.isSpecial) {
23199
+ delete params.nextUserId;
23200
+ }
22992
23201
 
22993
23202
  if (!(freetype === 'multiInsMidwayWithSubmitScene')) {
22994
- _context.next = 31;
23203
+ _context.next = 32;
22995
23204
  break;
22996
23205
  }
22997
23206
 
22998
- _this29.taskParams = params;
23207
+ _this31.taskParams = params;
22999
23208
  return _context.abrupt('return');
23000
23209
 
23001
- case 31:
23002
- _this29.loading = util["a" /* default */].loading(_this29.$loading, '提交中...');
23003
- isEndUserTask = _this29.isEndUserTask, choiceOrgId = _this29.choiceOrgId, choiceDeptId = _this29.choiceDeptId, pOrgId = _this29.pOrgId, taskExamineInfo = _this29.taskExamineInfo, currentNodeIsCircularReadNode = _this29.currentNodeIsCircularReadNode, needRetrialAuth = _this29.needRetrialAuth, circularReadParamsMap = _this29.circularReadParamsMap;
23210
+ case 32:
23211
+ _this31.loading = util["a" /* default */].loading(_this31.$loading, '提交中...');
23212
+ isEndUserTask = _this31.isEndUserTask, choiceOrgId = _this31.choiceOrgId, choiceDeptId = _this31.choiceDeptId, pOrgId = _this31.pOrgId, taskExamineInfo = _this31.taskExamineInfo, currentNodeIsCircularReadNode = _this31.currentNodeIsCircularReadNode, needRetrialAuth = _this31.needRetrialAuth, circularReadParamsMap = _this31.circularReadParamsMap;
23004
23213
 
23005
23214
  params.isEndUserTask = isEndUserTask;
23006
23215
  params.choiceOrgId = choiceOrgId;
@@ -23018,34 +23227,34 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23018
23227
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
23019
23228
  }
23020
23229
 
23021
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23230
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Hb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23022
23231
  var status = res.status,
23023
23232
  message = res.message;
23024
23233
 
23025
- _this29.loading.close();
23234
+ _this31.loading.close();
23026
23235
  if (status === 'success') {
23027
- _this29.$message.success('提交成功');
23028
- _this29.$emit('success');
23236
+ _this31.$message.success('提交成功');
23237
+ _this31.$emit('success');
23029
23238
  } else {
23030
- _this29.$message.error(message || '系统错误,请联系管理员!');
23031
- _this29.$emit('error');
23239
+ _this31.$message.error(message || '系统错误,请联系管理员!');
23240
+ _this31.$emit('error');
23032
23241
  }
23033
23242
  }).catch(function (err) {
23034
- _this29.loading.close();
23243
+ _this31.loading.close();
23035
23244
  if (err.message && err.message !== 'canceled') {
23036
- _this29.$message.error(err.message);
23245
+ _this31.$message.error(err.message);
23037
23246
  }
23038
23247
  }));
23039
23248
 
23040
- case 49:
23249
+ case 50:
23041
23250
  return _context.abrupt('return', false);
23042
23251
 
23043
- case 50:
23252
+ case 51:
23044
23253
  case 'end':
23045
23254
  return _context.stop();
23046
23255
  }
23047
23256
  }
23048
- }, _callee, _this29);
23257
+ }, _callee, _this31);
23049
23258
  }));
23050
23259
 
23051
23260
  return function (_x) {