eoss-ui 0.6.46 → 0.6.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (259) hide show
  1. package/lib/button-group.js +132 -117
  2. package/lib/button.js +132 -117
  3. package/lib/checkbox-group.js +134 -119
  4. package/lib/config/api.js +10 -0
  5. package/lib/data-table-form.js +134 -119
  6. package/lib/data-table.js +137 -122
  7. package/lib/date-picker.js +132 -117
  8. package/lib/dialog.js +132 -117
  9. package/lib/eoss-ui.common.js +1663 -1291
  10. package/lib/flow-group.js +132 -117
  11. package/lib/flow-list.js +463 -272
  12. package/lib/flow.js +1066 -870
  13. package/lib/form.js +134 -119
  14. package/lib/handle-user.js +133 -118
  15. package/lib/handler.js +133 -118
  16. package/lib/icon.js +133 -118
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +132 -117
  19. package/lib/input.js +132 -117
  20. package/lib/login.js +146 -131
  21. package/lib/main.js +299 -284
  22. package/lib/nav.js +132 -117
  23. package/lib/notify.js +135 -120
  24. package/lib/page.js +132 -117
  25. package/lib/pagination.js +132 -117
  26. package/lib/player.js +132 -117
  27. package/lib/qr-code.js +145 -130
  28. package/lib/radio-group.js +134 -119
  29. package/lib/retrial-auth.js +136 -121
  30. package/lib/select-ganged.js +134 -119
  31. package/lib/select.js +134 -119
  32. package/lib/selector-panel.js +150 -135
  33. package/lib/selector.js +133 -118
  34. package/lib/sizer.js +134 -119
  35. package/lib/steps.js +132 -117
  36. package/lib/switch.js +132 -117
  37. package/lib/table-form.js +132 -117
  38. package/lib/tabs.js +132 -117
  39. package/lib/theme-chalk/flow.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +133 -118
  42. package/lib/tree-group.js +132 -117
  43. package/lib/tree.js +133 -118
  44. package/lib/upload.js +145 -130
  45. package/lib/wujie.js +132 -117
  46. package/lib/wxlogin.js +132 -117
  47. package/package.json +159 -159
  48. package/packages/button/index.js +5 -5
  49. package/packages/button/src/main.vue +418 -418
  50. package/packages/button-group/index.js +5 -5
  51. package/packages/button-group/src/main.vue +298 -298
  52. package/packages/calendar/index.js +5 -5
  53. package/packages/card/index.js +5 -5
  54. package/packages/card/src/main.vue +156 -156
  55. package/packages/cascader/index.js +5 -5
  56. package/packages/cascader/src/main.vue +168 -168
  57. package/packages/checkbox-group/index.js +5 -5
  58. package/packages/checkbox-group/src/main.vue +333 -333
  59. package/packages/clients/index.js +5 -5
  60. package/packages/clients/src/main.vue +144 -144
  61. package/packages/data-table/index.js +5 -5
  62. package/packages/data-table/src/children.vue +39 -39
  63. package/packages/data-table/src/column.vue +989 -989
  64. package/packages/data-table/src/main.vue +1822 -1822
  65. package/packages/data-table/src/sizer.vue +195 -195
  66. package/packages/data-table-form/index.js +5 -5
  67. package/packages/data-table-form/src/checkbox.vue +101 -101
  68. package/packages/data-table-form/src/colgroup.vue +17 -17
  69. package/packages/data-table-form/src/main.vue +181 -181
  70. package/packages/data-table-form/src/radio.vue +65 -65
  71. package/packages/data-table-form/src/table.vue +233 -233
  72. package/packages/data-table-form/src/tbody.vue +336 -336
  73. package/packages/data-table-form/src/thead.vue +68 -68
  74. package/packages/date-picker/index.js +5 -5
  75. package/packages/date-picker/src/main.vue +236 -236
  76. package/packages/dialog/index.js +5 -5
  77. package/packages/enable-drag/index.js +5 -5
  78. package/packages/enterprise/index.js +5 -5
  79. package/packages/enterprise/src/main.vue +66 -66
  80. package/packages/error-page/index.js +5 -5
  81. package/packages/error-page/src/main.vue +44 -44
  82. package/packages/flow/index.js +5 -5
  83. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  84. package/packages/flow/src/component/CustomPreset.vue +322 -322
  85. package/packages/flow/src/component/FileList.vue +99 -99
  86. package/packages/flow/src/component/Preset.vue +255 -255
  87. package/packages/flow/src/component/SendMsg.vue +229 -229
  88. package/packages/flow/src/component/TimeLimit.vue +190 -190
  89. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  90. package/packages/flow/src/form.vue +121 -121
  91. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  92. package/packages/flow/src/main.vue +3100 -2964
  93. package/packages/flow/src/processForm.vue +1031 -1018
  94. package/packages/flow/src/processReject.vue +293 -293
  95. package/packages/flow/src/reset.vue +899 -899
  96. package/packages/flow/src/startTaskRead.vue +597 -596
  97. package/packages/flow/src/supervise.vue +138 -138
  98. package/packages/flow/src/table.vue +58 -58
  99. package/packages/flow-group/index.js +5 -5
  100. package/packages/flow-group/src/main.vue +688 -688
  101. package/packages/flow-list/index.js +5 -5
  102. package/packages/flow-list/src/main.vue +1411 -1183
  103. package/packages/form/index.js +5 -5
  104. package/packages/form/src/main.vue +3583 -3583
  105. package/packages/form/src/table.vue +1426 -1426
  106. package/packages/handle-user/index.js +5 -5
  107. package/packages/handle-user/src/main.vue +138 -138
  108. package/packages/handler/index.js +5 -5
  109. package/packages/handler/src/main.vue +491 -491
  110. package/packages/icon/index.js +5 -5
  111. package/packages/icon/src/main.vue +101 -101
  112. package/packages/icons/index.js +5 -5
  113. package/packages/icons/src/main.vue +81 -81
  114. package/packages/input/index.js +5 -5
  115. package/packages/input/src/main.vue +356 -356
  116. package/packages/input-number/index.js +5 -5
  117. package/packages/input-number/src/main.vue +106 -106
  118. package/packages/label/index.js +5 -5
  119. package/packages/label/src/main.vue +457 -457
  120. package/packages/layout/index.js +5 -5
  121. package/packages/layout/src/item.vue +152 -152
  122. package/packages/layout/src/main.vue +31 -31
  123. package/packages/login/index.js +5 -5
  124. package/packages/login/src/main.vue +1935 -1935
  125. package/packages/login/src/resetPassword.vue +562 -562
  126. package/packages/main/index.js +5 -5
  127. package/packages/main/src/default/message.vue +249 -249
  128. package/packages/main/src/default/notice.vue +157 -157
  129. package/packages/main/src/default/userinfo.vue +505 -505
  130. package/packages/main/src/public/online.vue +89 -89
  131. package/packages/main/src/public/search.vue +461 -461
  132. package/packages/main/src/public/settings.vue +221 -221
  133. package/packages/main/src/simplicity/apps.vue +388 -388
  134. package/packages/main/src/simplicity/avatar.vue +82 -82
  135. package/packages/main/src/simplicity/handler.vue +259 -259
  136. package/packages/main/src/simplicity/index.vue +2049 -2049
  137. package/packages/main/src/simplicity/lists.vue +84 -84
  138. package/packages/main/src/simplicity/menu-list.vue +128 -128
  139. package/packages/main/src/simplicity/message.vue +259 -259
  140. package/packages/main/src/simplicity/notice.vue +190 -190
  141. package/packages/main/src/simplicity/router-page.vue +45 -45
  142. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  143. package/packages/main/src/simplicity/user.vue +257 -257
  144. package/packages/main/src/simplicity/userinfo.vue +312 -312
  145. package/packages/menu/index.js +5 -5
  146. package/packages/menu/src/main.vue +536 -536
  147. package/packages/nav/index.js +5 -5
  148. package/packages/nav/src/main.vue +351 -351
  149. package/packages/notify/index.js +5 -5
  150. package/packages/notify/src/main.vue +538 -538
  151. package/packages/page/index.js +5 -5
  152. package/packages/page/src/main.vue +167 -167
  153. package/packages/pagination/index.js +5 -5
  154. package/packages/pagination/src/main.vue +96 -96
  155. package/packages/player/index.js +5 -5
  156. package/packages/player/src/main.vue +194 -194
  157. package/packages/qr-code/index.js +5 -5
  158. package/packages/qr-code/src/main.vue +170 -170
  159. package/packages/radio-group/index.js +6 -6
  160. package/packages/radio-group/src/main.vue +319 -319
  161. package/packages/retrial-auth/index.js +5 -5
  162. package/packages/retrial-auth/src/main.vue +280 -280
  163. package/packages/select/index.js +5 -5
  164. package/packages/select/src/main.vue +775 -775
  165. package/packages/select-ganged/index.js +5 -5
  166. package/packages/select-ganged/src/main.vue +724 -724
  167. package/packages/selector/index.js +5 -5
  168. package/packages/selector/src/main.vue +689 -689
  169. package/packages/selector-panel/index.js +5 -5
  170. package/packages/selector-panel/src/main.vue +1027 -1027
  171. package/packages/selector-panel/src/selection.vue +177 -177
  172. package/packages/selector-panel/src/tree.vue +129 -129
  173. package/packages/sizer/index.js +5 -5
  174. package/packages/sizer/src/main.vue +254 -254
  175. package/packages/steps/index.js +5 -5
  176. package/packages/steps/src/main.vue +181 -181
  177. package/packages/switch/index.js +5 -5
  178. package/packages/switch/src/main.vue +154 -154
  179. package/packages/table-form/index.js +5 -5
  180. package/packages/tabs/index.js +5 -5
  181. package/packages/tabs/src/main.vue +788 -788
  182. package/packages/tabs-panel/index.js +5 -5
  183. package/packages/tabs-panel/src/main.vue +29 -29
  184. package/packages/theme-chalk/lib/flow.css +1 -1
  185. package/packages/theme-chalk/lib/index.css +1 -1
  186. package/packages/theme-chalk/src/base.scss +260 -260
  187. package/packages/theme-chalk/src/button-group.scss +175 -175
  188. package/packages/theme-chalk/src/button.scss +24 -24
  189. package/packages/theme-chalk/src/calendar.scss +113 -113
  190. package/packages/theme-chalk/src/card.scss +99 -99
  191. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  192. package/packages/theme-chalk/src/clients.scss +87 -87
  193. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  194. package/packages/theme-chalk/src/data-table.scss +293 -293
  195. package/packages/theme-chalk/src/date-picker.scss +7 -7
  196. package/packages/theme-chalk/src/dialog.scss +77 -77
  197. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  198. package/packages/theme-chalk/src/enterprise.scss +5 -5
  199. package/packages/theme-chalk/src/error-page.scss +18 -18
  200. package/packages/theme-chalk/src/flow-group.scss +110 -110
  201. package/packages/theme-chalk/src/flow-list.scss +36 -36
  202. package/packages/theme-chalk/src/flow.scss +325 -318
  203. package/packages/theme-chalk/src/form.scss +496 -496
  204. package/packages/theme-chalk/src/handle-user.scss +40 -40
  205. package/packages/theme-chalk/src/handler.scss +143 -143
  206. package/packages/theme-chalk/src/icon.scss +1789 -1789
  207. package/packages/theme-chalk/src/icons.scss +99 -99
  208. package/packages/theme-chalk/src/input.scss +9 -9
  209. package/packages/theme-chalk/src/label.scss +24 -24
  210. package/packages/theme-chalk/src/layout.scss +46 -46
  211. package/packages/theme-chalk/src/login.scss +969 -969
  212. package/packages/theme-chalk/src/main.scss +656 -656
  213. package/packages/theme-chalk/src/menu.scss +222 -222
  214. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  215. package/packages/theme-chalk/src/nav.scss +111 -111
  216. package/packages/theme-chalk/src/page.scss +3 -3
  217. package/packages/theme-chalk/src/pagination.scss +29 -29
  218. package/packages/theme-chalk/src/player.scss +9 -9
  219. package/packages/theme-chalk/src/qr-code.scss +17 -17
  220. package/packages/theme-chalk/src/radio-group.scss +9 -9
  221. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  222. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  223. package/packages/theme-chalk/src/select.scss +8 -8
  224. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  225. package/packages/theme-chalk/src/selector.scss +91 -91
  226. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  227. package/packages/theme-chalk/src/sizer.scss +36 -36
  228. package/packages/theme-chalk/src/steps.scss +88 -88
  229. package/packages/theme-chalk/src/switch.scss +3 -3
  230. package/packages/theme-chalk/src/table-form.scss +1 -1
  231. package/packages/theme-chalk/src/tabs.scss +87 -87
  232. package/packages/theme-chalk/src/tips.scss +7 -7
  233. package/packages/theme-chalk/src/toolbar.scss +179 -179
  234. package/packages/theme-chalk/src/tree-group.scss +72 -72
  235. package/packages/theme-chalk/src/tree.scss +165 -165
  236. package/packages/theme-chalk/src/upload.scss +167 -167
  237. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  238. package/packages/tips/index.js +5 -5
  239. package/packages/tips/src/main.vue +141 -141
  240. package/packages/toolbar/index.js +5 -5
  241. package/packages/toolbar/src/main.vue +430 -430
  242. package/packages/tree/index.js +5 -5
  243. package/packages/tree-group/index.js +5 -5
  244. package/packages/upload/index.js +5 -5
  245. package/packages/upload/src/main.vue +1335 -1335
  246. package/packages/upload/src/picture.js +15 -15
  247. package/packages/wujie/index.js +5 -5
  248. package/packages/wujie/src/main.vue +145 -145
  249. package/packages/wxlogin/index.js +5 -5
  250. package/packages/wxlogin/src/main.vue +128 -128
  251. package/src/config/api.js +281 -251
  252. package/src/config/image.js +2 -2
  253. package/src/index.js +1 -1
  254. package/src/utils/bus.js +3 -3
  255. package/src/utils/date-util.js +312 -312
  256. package/src/utils/http.js +50 -50
  257. package/src/utils/rules.js +18 -18
  258. package/src/utils/store.js +21 -21
  259. package/src/utils/webSocket.js +107 -107
package/lib/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=52c26ca0&
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=52c26ca0&
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,
@@ -13815,7 +13896,7 @@ var resetvue_type_script_lang_js_components;
13815
13896
  if (mainConfig) {
13816
13897
  this.userModel = JSON.parse(mainConfig).userModel;
13817
13898
  } else {
13818
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
13899
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
13819
13900
  var status = res.status,
13820
13901
  data = res.data;
13821
13902
 
@@ -13908,7 +13989,7 @@ var resetvue_type_script_lang_js_components;
13908
13989
  var _this2 = this;
13909
13990
 
13910
13991
  util["a" /* default */].ajax({
13911
- url: api["u" /* findCodeValues */],
13992
+ url: api["x" /* findCodeValues */],
13912
13993
  params: {
13913
13994
  ccCode: 'notification_type',
13914
13995
  userId: util["a" /* default */].getStorage('userId')
@@ -13938,7 +14019,7 @@ var resetvue_type_script_lang_js_components;
13938
14019
  nodeId: this.nextNode.nextNode,
13939
14020
  businessId: this.taskExamine.businessId
13940
14021
  };
13941
- util["a" /* default */].ajax({ url: api["K" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
14022
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
13942
14023
  if (res.status === 'success') {
13943
14024
  _this3.nextNode.noticeInfo = res.message;
13944
14025
  }
@@ -14023,7 +14104,7 @@ var resetvue_type_script_lang_js_components;
14023
14104
  };
14024
14105
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
14025
14106
  util["a" /* default */].ajax({
14026
- url: _this4.type == 'reset' ? api["rb" /* resetProcess */] : api["Bb" /* taskContinuation */],
14107
+ url: _this4.type == 'reset' ? api["vb" /* resetProcess */] : api["Gb" /* taskContinuation */],
14027
14108
  method: 'post',
14028
14109
  data: params
14029
14110
  }).then(function (res) {
@@ -14057,7 +14138,7 @@ var resetvue_type_script_lang_js_components;
14057
14138
  businessId: this.taskExamine.businessId,
14058
14139
  pendingId: this.taskExamine.pendingId
14059
14140
  };
14060
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
14141
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
14061
14142
  var status = res.status,
14062
14143
  message = res.message,
14063
14144
  _res$data = res.data,
@@ -14158,7 +14239,7 @@ var resetvue_type_script_lang_js_components;
14158
14239
  var _this6 = this;
14159
14240
 
14160
14241
  util["a" /* default */].ajax({
14161
- url: api["w" /* findSysCodes */]
14242
+ url: api["z" /* findSysCodes */]
14162
14243
  }).then(function (res) {
14163
14244
  var status = res.status,
14164
14245
  message = res.message;
@@ -14186,11 +14267,11 @@ var resetvue_type_script_lang_js_components;
14186
14267
  });
14187
14268
  },
14188
14269
 
14189
- /**
14190
- * isMultiple
14191
- * @desc:是否多选
14192
- * @author liufan
14193
- * @date 2022年9月13日
14270
+ /**
14271
+ * isMultiple
14272
+ * @desc:是否多选
14273
+ * @author liufan
14274
+ * @date 2022年9月13日
14194
14275
  **/
14195
14276
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14196
14277
  var multiple = false;
@@ -14227,7 +14308,7 @@ var resetvue_type_script_lang_js_components;
14227
14308
  var _this7 = this;
14228
14309
 
14229
14310
  var params = {
14230
- url: this.type == 'continuation' ? api["Sb" /* toTaskContinuationIndex */] : api["Nb" /* toResetProcessIndex */],
14311
+ url: this.type == 'continuation' ? api["Xb" /* toTaskContinuationIndex */] : api["Sb" /* toResetProcessIndex */],
14231
14312
  params: resetvue_type_script_lang_js_extends({
14232
14313
  appId: this.appId
14233
14314
  }, this.flowParams)
@@ -14803,7 +14884,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14803
14884
  pendingId = this.pendingId;
14804
14885
 
14805
14886
  var params = {
14806
- url: api["Fb" /* taskReview */],
14887
+ url: api["Kb" /* taskReview */],
14807
14888
  data: {
14808
14889
  nextUserId: nextOtherOrgObj.join(','),
14809
14890
  notificationType: noticeType.join(','),
@@ -14839,7 +14920,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14839
14920
  var _this2 = this;
14840
14921
 
14841
14922
  var params = {
14842
- url: api["Ub" /* toTaskReview */],
14923
+ url: api["Zb" /* toTaskReview */],
14843
14924
  params: { pendingId: this.pendingId }
14844
14925
  };
14845
14926
  util["a" /* default */].ajax(params).then(function (res) {
@@ -14873,7 +14954,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14873
14954
  var _this3 = this;
14874
14955
 
14875
14956
  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 */],
14957
+ 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
14958
  params: { pendingId: this.pendingId },
14878
14959
  headers: { Accept: 'application/json,text/plain' }
14879
14960
  };
@@ -14994,7 +15075,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14994
15075
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
14995
15076
  // return this.$message.warning('暂未开放,敬请期待!');
14996
15077
  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 */],
15078
+ 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
15079
  data: {
14999
15080
  opinion: opinion,
15000
15081
  pendingId: pendingId,
@@ -15060,7 +15141,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15060
15141
  var _this5 = this;
15061
15142
 
15062
15143
  util["a" /* default */].ajax({
15063
- url: api["u" /* findCodeValues */],
15144
+ url: api["x" /* findCodeValues */],
15064
15145
  params: {
15065
15146
  ccCode: 'notification_type',
15066
15147
  userId: util["a" /* default */].getStorage('userId')
@@ -15088,7 +15169,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15088
15169
  var params = {
15089
15170
  pendingId: this.pendingId
15090
15171
  };
15091
- util["a" /* default */].ajax({ url: api["K" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15172
+ util["a" /* default */].ajax({ url: api["N" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15092
15173
  if (res.status === 'success') {
15093
15174
  _this6.infoList.noticeInfo = res.message;
15094
15175
  }
@@ -15104,7 +15185,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15104
15185
  var _this7 = this;
15105
15186
 
15106
15187
  util["a" /* default */].ajax({
15107
- url: api["w" /* findSysCodes */]
15188
+ url: api["z" /* findSysCodes */]
15108
15189
  }).then(function (res) {
15109
15190
  var status = res.status,
15110
15191
  message = res.message;
@@ -18342,7 +18423,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18342
18423
  var _this = this;
18343
18424
 
18344
18425
  var params = {
18345
- url: api["A" /* getAdjunctFileInfos */],
18426
+ url: api["D" /* getAdjunctFileInfos */],
18346
18427
  params: { ownId: ownId, code: code }
18347
18428
  };
18348
18429
  util["a" /* default */].ajax(params).then(function (res) {
@@ -18430,7 +18511,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18430
18511
  taskAction: 'complete'
18431
18512
  };
18432
18513
  util["a" /* default */].ajax({
18433
- url: api["Db" /* taskReadHtml */],
18514
+ url: api["Ib" /* taskReadHtml */],
18434
18515
  params: { taskAction: 'complete' },
18435
18516
  headers: {
18436
18517
  Accept: 'application/json,text/plain'
@@ -18462,7 +18543,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18462
18543
 
18463
18544
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
18464
18545
  util["a" /* default */].ajax({
18465
- url: api["Rb" /* toStartTaskReadIndex */],
18546
+ url: api["Wb" /* toStartTaskReadIndex */],
18466
18547
  params: { pendingId: this.pendingId }
18467
18548
  }).then(function (res) {
18468
18549
  var status = res.status,
@@ -18498,7 +18579,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18498
18579
  if (mainConfig) {
18499
18580
  this.userModel = JSON.parse(mainConfig).userModel;
18500
18581
  } else {
18501
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
18582
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
18502
18583
  var status = res.status,
18503
18584
  data = res.data;
18504
18585
 
@@ -18533,7 +18614,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18533
18614
  var _this5 = this;
18534
18615
 
18535
18616
  util["a" /* default */].ajax({
18536
- url: api["u" /* findCodeValues */],
18617
+ url: api["x" /* findCodeValues */],
18537
18618
  params: {
18538
18619
  ccCode: 'notification_type',
18539
18620
  userId: util["a" /* default */].getStorage('userId')
@@ -18552,11 +18633,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18552
18633
  });
18553
18634
  },
18554
18635
 
18555
- /**
18556
- * saveInfo
18557
- * @desc:暂存
18558
- * @author liufan
18559
- * @date 2022年9月9日
18636
+ /**
18637
+ * saveInfo
18638
+ * @desc:暂存
18639
+ * @author liufan
18640
+ * @date 2022年9月9日
18560
18641
  **/
18561
18642
  saveInfo: function saveInfo(type, btn) {
18562
18643
  var _this6 = this;
@@ -18599,7 +18680,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18599
18680
  pendingId: this.pendingId
18600
18681
  };
18601
18682
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
18602
- util["a" /* default */].ajax({ url: api["Lb" /* tempSave */], params: params }).then(function (res) {
18683
+ util["a" /* default */].ajax({ url: api["Qb" /* tempSave */], params: params }).then(function (res) {
18603
18684
  var status = res.status,
18604
18685
  message = res.message;
18605
18686
 
@@ -18618,11 +18699,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18618
18699
  });
18619
18700
  },
18620
18701
 
18621
- /**
18622
- * rejectBtn
18623
- * @desc:点击驳回
18624
- * @author liufan
18625
- * @date 2022年5月25日
18702
+ /**
18703
+ * rejectBtn
18704
+ * @desc:点击驳回
18705
+ * @author liufan
18706
+ * @date 2022年5月25日
18626
18707
  **/
18627
18708
  rejectBtn: function rejectBtn() {
18628
18709
  var _this8 = this;
@@ -18640,11 +18721,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18640
18721
  }
18641
18722
  },
18642
18723
 
18643
- /**
18644
- * taskReadBtn
18645
- * @desc:点击分阅
18646
- * @author liufan
18647
- * @date 2022年5月25日
18724
+ /**
18725
+ * taskReadBtn
18726
+ * @desc:点击分阅
18727
+ * @author liufan
18728
+ * @date 2022年5月25日
18648
18729
  **/
18649
18730
  taskReadBtn: function taskReadBtn() {
18650
18731
  var _this9 = this;
@@ -18663,17 +18744,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18663
18744
  }
18664
18745
  },
18665
18746
 
18666
- /**
18667
- * getFind
18668
- * @desc:获取通知方式
18669
- * @author liufan
18670
- * @date 2022年5月25日
18747
+ /**
18748
+ * getFind
18749
+ * @desc:获取通知方式
18750
+ * @author liufan
18751
+ * @date 2022年5月25日
18671
18752
  **/
18672
18753
  getFind: function getFind() {
18673
18754
  var _this10 = this;
18674
18755
 
18675
18756
  util["a" /* default */].ajax({
18676
- url: api["w" /* findSysCodes */]
18757
+ url: api["z" /* findSysCodes */]
18677
18758
  }).then(function (res) {
18678
18759
  var status = res.status,
18679
18760
  message = res.message;
@@ -18705,7 +18786,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18705
18786
  nodeId = _endFlowInfo.nodeId;
18706
18787
 
18707
18788
  var param = {
18708
- url: api["F" /* getFreeStartFlowParams */],
18789
+ url: api["I" /* getFreeStartFlowParams */],
18709
18790
  params: {
18710
18791
  businessId: businessId,
18711
18792
  processDefinitionId: processDefinitionId,
@@ -18722,12 +18803,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18722
18803
  });
18723
18804
  },
18724
18805
 
18725
- /**
18726
- * endFlows
18727
- * @desc:直接办结
18728
- * @author liufan
18729
- * @param {Object} res 直接办结数据
18730
- * @date 2022年5月25日
18806
+ /**
18807
+ * endFlows
18808
+ * @desc:直接办结
18809
+ * @author liufan
18810
+ * @param {Object} res 直接办结数据
18811
+ * @date 2022年5月25日
18731
18812
  **/
18732
18813
  endFlows: function endFlows(res) {
18733
18814
  var _this12 = this;
@@ -18745,7 +18826,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18745
18826
 
18746
18827
  this.$confirm('确认' + res.value + '?').then(function () {
18747
18828
  var params = {
18748
- url: api["t" /* endFlowHtml */],
18829
+ url: api["w" /* endFlowHtml */],
18749
18830
  headers: { Accept: 'application/json,text/plain' },
18750
18831
  method: 'post',
18751
18832
  data: freeStartFlowvue_type_script_lang_js_extends({}, _this13.endFlowInfo, _this13.nextNode, {
@@ -18781,12 +18862,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18781
18862
  }).catch(function (e) {});
18782
18863
  },
18783
18864
 
18784
- /**
18785
- * goView
18786
- * @desc:更多流程按钮操作
18787
- * @author liufan
18788
- * @param {Object} res 当前点击操作按钮数据
18789
- * @date 2022年5月25日
18865
+ /**
18866
+ * goView
18867
+ * @desc:更多流程按钮操作
18868
+ * @author liufan
18869
+ * @param {Object} res 当前点击操作按钮数据
18870
+ * @date 2022年5月25日
18790
18871
  **/
18791
18872
  goView: function goView(res) {
18792
18873
  // 驳回并办结:rejectAndEndHtml
@@ -18871,11 +18952,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18871
18952
  // isCanStartSubFlow
18872
18953
  },
18873
18954
 
18874
- /**
18875
- * toTakeAdvice
18876
- * @desc:征求意见
18877
- * @author liufan
18878
- * @date 2022年9月29日
18955
+ /**
18956
+ * toTakeAdvice
18957
+ * @desc:征求意见
18958
+ * @author liufan
18959
+ * @date 2022年9月29日
18879
18960
  **/
18880
18961
  toTakeAdvice: function toTakeAdvice(res) {
18881
18962
  var _this14 = this;
@@ -18893,7 +18974,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18893
18974
  var _this15 = this;
18894
18975
 
18895
18976
  var params = {
18896
- url: api["db" /* isCanStartSubFlow */],
18977
+ url: api["gb" /* isCanStartSubFlow */],
18897
18978
  data: {
18898
18979
  appId: this.taskExamineInfo.appId,
18899
18980
  inevitableNode: res.inevitableNode
@@ -18919,11 +19000,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18919
19000
  });
18920
19001
  },
18921
19002
 
18922
- /**
18923
- * toStartDraf
18924
- * @desc: 稿件递送、联合审核、复核
18925
- * @author liufan
18926
- * @date 2022年9月29日
19003
+ /**
19004
+ * toStartDraf
19005
+ * @desc: 稿件递送、联合审核、复核
19006
+ * @author liufan
19007
+ * @date 2022年9月29日
18927
19008
  **/
18928
19009
  toStartDraf: function toStartDraf(res) {
18929
19010
  var _this16 = this;
@@ -18937,11 +19018,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18937
19018
  }
18938
19019
  },
18939
19020
 
18940
- /**
18941
- * toSendMsg
18942
- * @desc:核稿通知
18943
- * @author liufan
18944
- * @date 2022年9月29日
19021
+ /**
19022
+ * toSendMsg
19023
+ * @desc:核稿通知
19024
+ * @author liufan
19025
+ * @date 2022年9月29日
18945
19026
  **/
18946
19027
  toSendMsg: function toSendMsg(res) {
18947
19028
  var _this17 = this;
@@ -18955,11 +19036,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18955
19036
  }
18956
19037
  },
18957
19038
 
18958
- /**
18959
- * toTaskReadAndEnd
18960
- * @desc:分阅并办结
18961
- * @author liufan
18962
- * @date 2022年9月29日
19039
+ /**
19040
+ * toTaskReadAndEnd
19041
+ * @desc:分阅并办结
19042
+ * @author liufan
19043
+ * @date 2022年9月29日
18963
19044
  **/
18964
19045
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
18965
19046
  var _this18 = this;
@@ -18977,11 +19058,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18977
19058
  }
18978
19059
  },
18979
19060
 
18980
- /**
18981
- * rejectAndEnd
18982
- * @desc:驳回并办结
18983
- * @author liufan
18984
- * @date 2022年9月29日
19061
+ /**
19062
+ * rejectAndEnd
19063
+ * @desc:驳回并办结
19064
+ * @author liufan
19065
+ * @date 2022年9月29日
18985
19066
  **/
18986
19067
  rejectAndEnd: function rejectAndEnd(res) {
18987
19068
  var _this19 = this;
@@ -19003,7 +19084,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19003
19084
  this.$confirm('确认' + res.value + '?').then(function () {
19004
19085
  // return this.$message.warning('请填写意见');
19005
19086
  var params = {
19006
- url: api["qb" /* rejectAndEnd */],
19087
+ url: api["ub" /* rejectAndEnd */],
19007
19088
  headers: { Accept: 'application/json,text/plain' },
19008
19089
  method: 'post',
19009
19090
  data: {
@@ -19036,11 +19117,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19036
19117
  });
19037
19118
  },
19038
19119
 
19039
- /**
19040
- * toTransfer
19041
- * @desc:转办
19042
- * @author liufan
19043
- * @date 2022年9月29日
19120
+ /**
19121
+ * toTransfer
19122
+ * @desc:转办
19123
+ * @author liufan
19124
+ * @date 2022年9月29日
19044
19125
  **/
19045
19126
  toTransfer: function toTransfer(res) {
19046
19127
  var _this21 = this;
@@ -19056,11 +19137,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19056
19137
  }
19057
19138
  },
19058
19139
 
19059
- /**
19060
- * getNodeInfo
19061
- * @desc:获取节点信息
19062
- * @author liufan
19063
- * @date 2022年5月25日
19140
+ /**
19141
+ * getNodeInfo
19142
+ * @desc:获取节点信息
19143
+ * @author liufan
19144
+ * @date 2022年5月25日
19064
19145
  **/
19065
19146
  getNodeInfo: function getNodeInfo() {
19066
19147
  var _this22 = this;
@@ -19073,7 +19154,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19073
19154
  pendingId: this.pendingId,
19074
19155
  businessId: this.businessIds
19075
19156
  };
19076
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
19157
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
19077
19158
  var status = res.status,
19078
19159
  message = res.message,
19079
19160
  data = res.data;
@@ -19159,12 +19240,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19159
19240
  });
19160
19241
  },
19161
19242
 
19162
- /**
19163
- * selecNext
19164
- * @desc:下步节点变化时更新数据
19165
- * @author liufan
19166
- * @param {String} val 当前选中值
19167
- * @date 2022年5月25日
19243
+ /**
19244
+ * selecNext
19245
+ * @desc:下步节点变化时更新数据
19246
+ * @author liufan
19247
+ * @param {String} val 当前选中值
19248
+ * @date 2022年5月25日
19168
19249
  **/
19169
19250
  selecNext: function selecNext(val, type, isDef) {
19170
19251
  var _this23 = this;
@@ -19273,11 +19354,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19273
19354
  if (isDef !== true) this.getNodeInfo();
19274
19355
  },
19275
19356
 
19276
- /**
19277
- * isMultiple
19278
- * @desc:是否多选
19279
- * @author liufan
19280
- * @date 2022年9月13日
19357
+ /**
19358
+ * isMultiple
19359
+ * @desc:是否多选
19360
+ * @author liufan
19361
+ * @date 2022年9月13日
19281
19362
  **/
19282
19363
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19283
19364
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19309,11 +19390,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19309
19390
  }
19310
19391
  },
19311
19392
 
19312
- /**
19313
- * getHedInfo
19314
- * @desc:获取审核页面数据
19315
- * @author liufan
19316
- * @date 2022年5月25日
19393
+ /**
19394
+ * getHedInfo
19395
+ * @desc:获取审核页面数据
19396
+ * @author liufan
19397
+ * @date 2022年5月25日
19317
19398
  **/
19318
19399
  getHedInfo: function getHedInfo() {
19319
19400
  var _this24 = this;
@@ -19323,7 +19404,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19323
19404
  pendingId: this.pendingId,
19324
19405
  userId: util["a" /* default */].getStorage('userId')
19325
19406
  };
19326
- util["a" /* default */].ajax({ url: api["G" /* getHandleInfoHtml */], params: params }).then(function (res) {
19407
+ util["a" /* default */].ajax({ url: api["J" /* getHandleInfoHtml */], params: params }).then(function (res) {
19327
19408
  //pc返回数据
19328
19409
 
19329
19410
  _this24.loading.close();
@@ -19549,13 +19630,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19549
19630
  });
19550
19631
  },
19551
19632
 
19552
- /**
19553
- * closeProcess
19554
- * @desc:关闭弹窗
19555
- * @author liufan
19556
- * @param {boolean} val 当前是否办理流程
19557
- * @param {String} type 当前点击的弹窗类型
19558
- * @date 2022年5月25日
19633
+ /**
19634
+ * closeProcess
19635
+ * @desc:关闭弹窗
19636
+ * @author liufan
19637
+ * @param {boolean} val 当前是否办理流程
19638
+ * @param {String} type 当前点击的弹窗类型
19639
+ * @date 2022年5月25日
19559
19640
  **/
19560
19641
  closeProcess: function closeProcess(val, type, closeParent) {
19561
19642
  if (closeParent) {
@@ -19572,23 +19653,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19572
19653
  }
19573
19654
  },
19574
19655
 
19575
- /**
19576
- * selectChange
19577
- * @desc:常用语选择
19578
- * @author liufan
19579
- * @param {String} val 选中值
19580
- * @date 2022年5月25日
19656
+ /**
19657
+ * selectChange
19658
+ * @desc:常用语选择
19659
+ * @author liufan
19660
+ * @param {String} val 选中值
19661
+ * @date 2022年5月25日
19581
19662
  **/
19582
19663
  selectChange: function selectChange(val) {
19583
19664
  this.value = val;
19584
19665
  },
19585
19666
 
19586
- /**
19587
- * upDate
19588
- * @desc:修改常用语
19589
- * @author liufan
19590
- * @param {Object} val 修改值
19591
- * @date 2022年5月25日
19667
+ /**
19668
+ * upDate
19669
+ * @desc:修改常用语
19670
+ * @author liufan
19671
+ * @param {Object} val 修改值
19672
+ * @date 2022年5月25日
19592
19673
  **/
19593
19674
  upDate: function upDate(val) {
19594
19675
  this.FormData.id = val.id;
@@ -19596,11 +19677,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19596
19677
  },
19597
19678
 
19598
19679
 
19599
- /**
19600
- * getProcess
19601
- * @desc:获取选择流程
19602
- * @author liufan
19603
- * @date 2022年5月25日
19680
+ /**
19681
+ * getProcess
19682
+ * @desc:获取选择流程
19683
+ * @author liufan
19684
+ * @date 2022年5月25日
19604
19685
  **/
19605
19686
  getProcess: function getProcess() {
19606
19687
  var _this25 = this;
@@ -19615,7 +19696,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19615
19696
  // onlyFlag: true
19616
19697
  };
19617
19698
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
19618
- util["a" /* default */].ajax({ url: api["O" /* getProcessDefList */], params: params }).then(function (res) {
19699
+ util["a" /* default */].ajax({ url: api["R" /* getProcessDefList */], params: params }).then(function (res) {
19619
19700
  var status = res.status,
19620
19701
  message = res.message,
19621
19702
  data = res.data;
@@ -19654,11 +19735,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19654
19735
  });
19655
19736
  },
19656
19737
 
19657
- /**
19658
- * getPendedhistoryList
19659
- * @desc:获取流程列表
19660
- * @author liufan
19661
- * @date 2022年5月25日
19738
+ /**
19739
+ * getPendedhistoryList
19740
+ * @desc:获取流程列表
19741
+ * @author liufan
19742
+ * @date 2022年5月25日
19662
19743
  **/
19663
19744
  getPendedhistoryList: function getPendedhistoryList() {
19664
19745
  var _this26 = this;
@@ -19668,7 +19749,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19668
19749
  userId: util["a" /* default */].getStorage('userId'),
19669
19750
  type: 2
19670
19751
  };
19671
- util["a" /* default */].ajax({ url: api["ib" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
19752
+ util["a" /* default */].ajax({ url: api["lb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
19672
19753
  var rCode = res.rCode,
19673
19754
  msg = res.msg,
19674
19755
  results = res.results;
@@ -19690,12 +19771,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19690
19771
  },
19691
19772
 
19692
19773
  // 提交流程
19693
- /**
19694
- * subProcess
19695
- * @desc:提交流程
19696
- * @author liufan
19697
- * @param {String} formName 当前form表单ref值
19698
- * @date 2022年5月25日
19774
+ /**
19775
+ * subProcess
19776
+ * @desc:提交流程
19777
+ * @author liufan
19778
+ * @param {String} formName 当前form表单ref值
19779
+ * @date 2022年5月25日
19699
19780
  **/
19700
19781
  subProcess: function subProcess(val) {
19701
19782
  var _this27 = this;
@@ -19864,7 +19945,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19864
19945
  params.isSubFlow = taskExamineInfo.isSubFlow;
19865
19946
  params.nodeId = taskExamineInfo.nodeId;
19866
19947
  params.needRetrialAuth = needRetrialAuth;
19867
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
19948
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Hb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
19868
19949
  var status = res.status,
19869
19950
  message = res.message;
19870
19951
 
@@ -20221,7 +20302,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20221
20302
  pendingUserIds = _nextNode.pendingUserIds;
20222
20303
 
20223
20304
  var params = {
20224
- url: api["Xb" /* toTaskSuperviseSub */],
20305
+ url: api["cc" /* toTaskSuperviseSub */],
20225
20306
  params: {
20226
20307
  userId: util["a" /* default */].getStorage('userId'),
20227
20308
  urgeUserIds: pendingUserIds,
@@ -20245,7 +20326,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20245
20326
 
20246
20327
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20247
20328
  util["a" /* default */].ajax({
20248
- url: api["Wb" /* toTaskSupervise */],
20329
+ url: api["bc" /* toTaskSupervise */],
20249
20330
  params: {
20250
20331
  businessId: this.businessId,
20251
20332
  userId: util["a" /* default */].getStorage('userId')
@@ -21090,6 +21171,31 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21090
21171
  //
21091
21172
  //
21092
21173
  //
21174
+ //
21175
+ //
21176
+ //
21177
+ //
21178
+ //
21179
+ //
21180
+ //
21181
+ //
21182
+ //
21183
+ //
21184
+ //
21185
+ //
21186
+ //
21187
+ //
21188
+ //
21189
+ //
21190
+ //
21191
+ //
21192
+ //
21193
+ //
21194
+ //
21195
+ //
21196
+ //
21197
+ //
21198
+ //
21093
21199
 
21094
21200
 
21095
21201
 
@@ -21162,11 +21268,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21162
21268
  freeStartFlowParams: {}, //自由发起流程参数
21163
21269
  freeStartFlowNextNode: undefined,
21164
21270
  otherOrgDisabledObjId: [],
21271
+ isCanReadTransferHandle: false,
21272
+ readTransferHandleDisabled: true,
21165
21273
  currentOrgDisabledObjId: [],
21166
21274
  nextNodeCheckType: 'select',
21167
21275
  readOnlyNotificationType: '',
21168
21276
  circularReadParamsMap: { circularReadOrgRoleCode: '' },
21169
21277
  taskParams: {},
21278
+ processFormType: undefined,
21170
21279
  notificationMessageReadOnly: false,
21171
21280
  isCanPreAddSign: false,
21172
21281
  isStartFlowChartView: undefined,
@@ -21219,6 +21328,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21219
21328
  isLimitedTimeHandling: 0, //是否支持发起子流程限时办理
21220
21329
  nodeType: 0, //节点类型, (普通节点0,承办节点1,会签节点2,阅办节点3)
21221
21330
  userOptions: [], //分阅用户
21331
+ StartTaskReadKey: 0,
21222
21332
  mixReadList: [], //分阅混选
21223
21333
  mixCurrentOrg: [], //本单位混选
21224
21334
  isTaskread: 0, //是否展示分阅用户
@@ -21368,6 +21478,30 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21368
21478
  }
21369
21479
  },
21370
21480
  methods: {
21481
+ taskReadTransferHandle: function taskReadTransferHandle() {
21482
+ if (this.taskReadOpinionRequired == 'true' && !this.value) {
21483
+ if (!this.$refs.commonOpinions.validate()) return;
21484
+ }
21485
+ this.freeStartFlowParams.startFlowBusinessId = this.taskExamineInfo.businessId;
21486
+ this.freeStartFlowNextNode = this.taskExamineInfo.processDefinitionId;
21487
+ var _taskExamineInfo = this.taskExamineInfo,
21488
+ businessId = _taskExamineInfo.businessId,
21489
+ appId = _taskExamineInfo.appId,
21490
+ processDefinitionId = _taskExamineInfo.processDefinitionId,
21491
+ pendingId = _taskExamineInfo.pendingId;
21492
+
21493
+ var params = {
21494
+ businessId: businessId,
21495
+ appId: appId,
21496
+ processDefinitionId: processDefinitionId,
21497
+ pendingId: pendingId,
21498
+ opinion: this.value,
21499
+ taskAction: 'complete'
21500
+ };
21501
+ this.taskParams = params;
21502
+ this.processFormType = 'readTransfer';
21503
+ this.handleVisible = true;
21504
+ },
21371
21505
  showMessage: function showMessage() {
21372
21506
  var _this = this;
21373
21507
 
@@ -21449,7 +21583,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21449
21583
  var _this2 = this;
21450
21584
 
21451
21585
  var params = {
21452
- url: api["A" /* getAdjunctFileInfos */],
21586
+ url: api["D" /* getAdjunctFileInfos */],
21453
21587
  params: { ownId: ownId, code: code }
21454
21588
  };
21455
21589
  util["a" /* default */].ajax(params).then(function (res) {
@@ -21522,11 +21656,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21522
21656
  type: 'warning'
21523
21657
  }).then(function () {
21524
21658
  _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;
21659
+ var _taskExamineInfo2 = _this3.taskExamineInfo,
21660
+ businessId = _taskExamineInfo2.businessId,
21661
+ appId = _taskExamineInfo2.appId,
21662
+ processDefinitionId = _taskExamineInfo2.processDefinitionId,
21663
+ pendingId = _taskExamineInfo2.pendingId;
21530
21664
 
21531
21665
  var params = {
21532
21666
  businessId: businessId,
@@ -21537,7 +21671,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21537
21671
  taskAction: 'complete'
21538
21672
  };
21539
21673
  util["a" /* default */].ajax({
21540
- url: api["Db" /* taskReadHtml */],
21674
+ url: api["Ib" /* taskReadHtml */],
21541
21675
  params: { taskAction: 'complete' },
21542
21676
  headers: {
21543
21677
  Accept: 'application/json,text/plain'
@@ -21564,12 +21698,26 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21564
21698
  });
21565
21699
  }).catch(function () {});
21566
21700
  },
21567
- getTaskReadFlow: function getTaskReadFlow() {
21701
+ validReadTransferHandle: function validReadTransferHandle(readTransferHandleBusinessId, readTransferHandleProcessKey) {
21568
21702
  var _this4 = this;
21569
21703
 
21704
+ var params = {
21705
+ url: api["d" /* checkBusinessIdStartedReadTransferHandle */],
21706
+ params: { readTransferHandleBusinessId: readTransferHandleBusinessId, readTransferHandleProcessKey: readTransferHandleProcessKey }
21707
+ };
21708
+ util["a" /* default */].ajax(params).then(function (res) {
21709
+ _this4.loading.close();
21710
+ if (res.rCode == 0) {
21711
+ _this4.readTransferHandleDisabled = !res.results.canReadTransferHandle;
21712
+ }
21713
+ });
21714
+ },
21715
+ getTaskReadFlow: function getTaskReadFlow() {
21716
+ var _this5 = this;
21717
+
21570
21718
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21571
21719
  util["a" /* default */].ajax({
21572
- url: api["Rb" /* toStartTaskReadIndex */],
21720
+ url: api["Wb" /* toStartTaskReadIndex */],
21573
21721
  params: { pendingId: this.pendingId }
21574
21722
  }).then(function (res) {
21575
21723
  var status = res.status,
@@ -21577,47 +21725,52 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21577
21725
  _res$data = res.data,
21578
21726
  isCanFenyue = _res$data.isCanFenyue,
21579
21727
  taskExamine = _res$data.taskExamine,
21580
- taskReadOpinionRequired = _res$data.taskReadOpinionRequired;
21728
+ taskReadOpinionRequired = _res$data.taskReadOpinionRequired,
21729
+ isCanReadTransferHandle = _res$data.isCanReadTransferHandle;
21581
21730
 
21582
21731
  if (status === 'success') {
21583
- _this4.taskExamineInfo = taskExamine;
21584
- _this4.taskReadOpinionRequired = taskReadOpinionRequired;
21585
- _this4.isCanFenyue = isCanFenyue;
21586
- if (_this4.nodeName) {
21587
- _this4.NodeName = _this4.nodeName;
21732
+ _this5.taskExamineInfo = taskExamine;
21733
+ _this5.taskReadOpinionRequired = taskReadOpinionRequired;
21734
+ _this5.isCanReadTransferHandle = isCanReadTransferHandle;
21735
+ _this5.isCanFenyue = isCanFenyue;
21736
+ if (_this5.nodeName) {
21737
+ _this5.NodeName = _this5.nodeName;
21738
+ }
21739
+ if (_this5.isCanReadTransferHandle) {
21740
+ _this5.validReadTransferHandle(taskExamine.businessId, taskExamine.processDefinitionId);
21588
21741
  }
21589
- _this4.getNodeType();
21742
+ _this5.getNodeType();
21590
21743
  } else {
21591
- _this4.$message.error(message || '系统错误,请联系管理员!');
21744
+ _this5.$message.error(message || '系统错误,请联系管理员!');
21592
21745
  }
21593
- _this4.loading.close();
21746
+ _this5.loading.close();
21594
21747
  }).catch(function (err) {
21595
- _this4.loading.close();
21748
+ _this5.loading.close();
21596
21749
  if (err.message && err.message !== 'canceled') {
21597
- _this4.$message.error(err.message);
21750
+ _this5.$message.error(err.message);
21598
21751
  }
21599
21752
  });
21600
21753
  },
21601
21754
  getUserInfo: function getUserInfo() {
21602
- var _this5 = this;
21755
+ var _this6 = this;
21603
21756
 
21604
21757
  var mainConfig = util["a" /* default */].getStorage('mainConfig');
21605
21758
  if (mainConfig) {
21606
21759
  this.userModel = JSON.parse(mainConfig).userModel;
21607
21760
  } else {
21608
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
21761
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
21609
21762
  var status = res.status,
21610
21763
  data = res.data;
21611
21764
 
21612
21765
  if (status == 'success') {
21613
- _this5.userModel = data;
21766
+ _this6.userModel = data;
21614
21767
  } else {
21615
21768
  var msg = res.msg || '系统错误,请联系管理员!';
21616
- _this5.$message.error(msg);
21769
+ _this6.$message.error(msg);
21617
21770
  }
21618
21771
  }).catch(function (err) {
21619
21772
  if (err.message && err.message !== 'canceled') {
21620
- _this5.$message.error(err.message);
21773
+ _this6.$message.error(err.message);
21621
21774
  }
21622
21775
  });
21623
21776
  }
@@ -21637,10 +21790,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21637
21790
  }
21638
21791
  },
21639
21792
  getNodeType: function getNodeType() {
21640
- var _this6 = this;
21793
+ var _this7 = this;
21641
21794
 
21642
21795
  util["a" /* default */].ajax({
21643
- url: api["u" /* findCodeValues */],
21796
+ url: api["x" /* findCodeValues */],
21644
21797
  params: {
21645
21798
  ccCode: 'notification_type',
21646
21799
  userId: util["a" /* default */].getStorage('userId')
@@ -21650,33 +21803,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21650
21803
  data = res.data;
21651
21804
 
21652
21805
  if (status === 'success') {
21653
- _this6.newsList = data;
21806
+ _this7.newsList = data;
21654
21807
  }
21655
21808
  }).catch(function (err) {
21656
21809
  if (err.message && err.message !== 'canceled') {
21657
- _this6.$message.error(err.message);
21810
+ _this7.$message.error(err.message);
21658
21811
  }
21659
21812
  });
21660
21813
  },
21661
21814
 
21662
- /**
21663
- * saveInfo
21664
- * @desc:暂存
21665
- * @author liufan
21666
- * @date 2022年9月9日
21815
+ /**
21816
+ * saveInfo
21817
+ * @desc:暂存
21818
+ * @author liufan
21819
+ * @date 2022年9月9日
21667
21820
  **/
21668
21821
  saveInfo: function saveInfo(type, btn) {
21669
- var _this7 = this;
21822
+ var _this8 = this;
21670
21823
 
21671
21824
  if (this.isFlow) {
21672
21825
  if (!type) {
21673
21826
  if (btn && btn.before) {
21674
21827
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21675
- _this7.$emit('save', _this7.businessIds);
21828
+ _this8.$emit('save', _this8.businessIds);
21676
21829
  }).catch(function (e) {});
21677
21830
  } else if (this.beforeSubmit != undefined) {
21678
21831
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21679
- _this7.$emit('save', _this7.businessIds);
21832
+ _this8.$emit('save', _this8.businessIds);
21680
21833
  }).catch(function (e) {});
21681
21834
  } else {
21682
21835
  this.$emit('save', this.businessIds);
@@ -21685,13 +21838,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21685
21838
  } else {
21686
21839
  if (btn && btn.before && !type) {
21687
21840
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21688
- _this7.saveFlowInfo();
21841
+ _this8.saveFlowInfo();
21689
21842
  }).catch(function (e) {});
21690
21843
  } else if (this.beforeSubmit == undefined && !type) {
21691
21844
  this.subFun(this.saveFlowInfo);
21692
21845
  } else if (!type && this.beforeSubmit != undefined) {
21693
21846
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21694
- _this7.saveFlowInfo();
21847
+ _this8.saveFlowInfo();
21695
21848
  }).catch(function (e) {});
21696
21849
  } else {
21697
21850
  this.saveFlowInfo(type);
@@ -21699,40 +21852,40 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21699
21852
  }
21700
21853
  },
21701
21854
  saveFlowInfo: function saveFlowInfo(isSave) {
21702
- var _this8 = this;
21855
+ var _this9 = this;
21703
21856
 
21704
21857
  var params = {
21705
21858
  opinion: this.value,
21706
21859
  pendingId: this.pendingId
21707
21860
  };
21708
21861
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
21709
- util["a" /* default */].ajax({ url: api["Lb" /* tempSave */], params: params }).then(function (res) {
21862
+ util["a" /* default */].ajax({ url: api["Qb" /* tempSave */], params: params }).then(function (res) {
21710
21863
  var status = res.status,
21711
21864
  message = res.message;
21712
21865
 
21713
- if (!isSave) _this8.loading.close();
21866
+ if (!isSave) _this9.loading.close();
21714
21867
  if (status == 'success') {
21715
21868
  // this.$message.success('暂存成功');
21716
- !isSave && _this8.$emit('save', _this8.businessIds);
21869
+ !isSave && _this9.$emit('save', _this9.businessIds);
21717
21870
  } else {
21718
- _this8.$message.error(message || '系统错误,请联系管理员!');
21871
+ _this9.$message.error(message || '系统错误,请联系管理员!');
21719
21872
  }
21720
21873
  }).catch(function (err) {
21721
- if (!isSave) _this8.loading.close();
21874
+ if (!isSave) _this9.loading.close();
21722
21875
  if (err.message && err.message !== 'canceled') {
21723
- _this8.$message.error(err.message);
21876
+ _this9.$message.error(err.message);
21724
21877
  }
21725
21878
  });
21726
21879
  },
21727
21880
 
21728
- /**
21729
- * rejectBtn
21730
- * @desc:点击驳回
21731
- * @author liufan
21732
- * @date 2022年5月25日
21881
+ /**
21882
+ * rejectBtn
21883
+ * @desc:点击驳回
21884
+ * @author liufan
21885
+ * @date 2022年5月25日
21733
21886
  **/
21734
21887
  rejectBtn: function rejectBtn() {
21735
- var _this9 = this;
21888
+ var _this10 = this;
21736
21889
 
21737
21890
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
21738
21891
  if (!this.value) {
@@ -21740,28 +21893,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21740
21893
  }
21741
21894
  if (this.beforeSubmit != undefined) {
21742
21895
  this.beforeSubmit(0).then(function (next) {
21743
- _this9.showReject = true;
21896
+ _this10.showReject = true;
21744
21897
  }).catch(function (e) {});
21745
21898
  } else {
21746
21899
  this.showReject = true;
21747
21900
  }
21748
21901
  },
21749
21902
 
21750
- /**
21751
- * taskReadBtn
21752
- * @desc:点击分阅
21753
- * @author liufan
21754
- * @date 2022年5月25日
21903
+ /**
21904
+ * taskReadBtn
21905
+ * @desc:点击分阅
21906
+ * @author liufan
21907
+ * @date 2022年5月25日
21755
21908
  **/
21756
21909
  taskReadBtn: function taskReadBtn() {
21757
- var _this10 = this;
21910
+ var _this11 = this;
21758
21911
 
21759
21912
  // return this.$message.warning('暂未开放!敬请期待');
21760
21913
  if (this.beforeSubmit != undefined) {
21761
21914
  this.beforeSubmit().then(function (next) {
21762
- if (_this10.value === '') _this10.value = _this10.nodeDefaultRejectOpinion;
21763
- _this10.taskReadType = 'create';
21764
- _this10.showTaskRead = true;
21915
+ if (_this11.value === '') _this11.value = _this11.nodeDefaultRejectOpinion;
21916
+ _this11.taskReadType = 'create';
21917
+ _this11.showTaskRead = true;
21765
21918
  }).catch(function (e) {});
21766
21919
  } else {
21767
21920
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -21770,41 +21923,41 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21770
21923
  }
21771
21924
  },
21772
21925
 
21773
- /**
21774
- * getFind
21775
- * @desc:获取通知方式
21776
- * @author liufan
21777
- * @date 2022年5月25日
21926
+ /**
21927
+ * getFind
21928
+ * @desc:获取通知方式
21929
+ * @author liufan
21930
+ * @date 2022年5月25日
21778
21931
  **/
21779
21932
  getFind: function getFind() {
21780
- var _this11 = this;
21933
+ var _this12 = this;
21781
21934
 
21782
21935
  util["a" /* default */].ajax({
21783
- url: api["w" /* findSysCodes */]
21936
+ url: api["z" /* findSysCodes */]
21784
21937
  }).then(function (res) {
21785
21938
  var status = res.status,
21786
21939
  message = res.message;
21787
21940
 
21788
21941
  if (status === 'success') {
21789
- _this11.nextNode.notificationType = message.split(',');
21942
+ _this12.nextNode.notificationType = message.split(',');
21790
21943
  var arr = [];
21791
- _this11.newsList.map(function (item) {
21792
- _this11.nextNode.notificationType.map(function (x) {
21944
+ _this12.newsList.map(function (item) {
21945
+ _this12.nextNode.notificationType.map(function (x) {
21793
21946
  if (x == item.cciValue) {
21794
21947
  arr.push(x);
21795
21948
  }
21796
21949
  });
21797
21950
  });
21798
- _this11.nextNode.notificationType = arr;
21951
+ _this12.nextNode.notificationType = arr;
21799
21952
  }
21800
21953
  }).catch(function (err) {
21801
21954
  if (err.message && err.message !== 'canceled') {
21802
- _this11.$message.error(err.message);
21955
+ _this12.$message.error(err.message);
21803
21956
  }
21804
21957
  });
21805
21958
  },
21806
21959
  getFreeStartParams: function getFreeStartParams() {
21807
- var _this12 = this;
21960
+ var _this13 = this;
21808
21961
 
21809
21962
  var _endFlowInfo = this.endFlowInfo,
21810
21963
  businessId = _endFlowInfo.businessId,
@@ -21812,7 +21965,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21812
21965
  nodeId = _endFlowInfo.nodeId;
21813
21966
 
21814
21967
  var param = {
21815
- url: api["F" /* getFreeStartFlowParams */],
21968
+ url: api["I" /* getFreeStartFlowParams */],
21816
21969
  params: {
21817
21970
  businessId: businessId,
21818
21971
  processDefinitionId: processDefinitionId,
@@ -21821,89 +21974,89 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21821
21974
  };
21822
21975
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21823
21976
  util["a" /* default */].ajax(param).then(function (res) {
21824
- _this12.loading.close();
21977
+ _this13.loading.close();
21825
21978
  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('未找到流程定义!');
21979
+ _this13.freeStartFlowParams = res.results;
21980
+ if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this13.subProcess('同意。', res.results.useScene);
21981
+ if (!_this13.freeValid) return;
21982
+ if (res.results.startFlowIndexProcessKeys && res.results.startFlowIndexProcessKeys.length == 0 || !res.results.startFlowIndexProcessKeys) return _this13.$message.warning('未找到流程定义!');
21830
21983
  if (res.results.startFlowIndexProcessKeys.length == 1) {
21831
- _this12.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21832
- _this12.handleVisible = true;
21984
+ _this13.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21985
+ _this13.handleVisible = true;
21833
21986
  } else {
21834
- _this12.showFreeStartFlow = true;
21987
+ _this13.showFreeStartFlow = true;
21835
21988
  }
21836
21989
  } else {
21837
- _this12.$message.error(res.message || '系统错误,请联系管理员!');
21990
+ _this13.$message.error(res.message || '系统错误,请联系管理员!');
21838
21991
  }
21839
21992
  });
21840
21993
  },
21841
21994
 
21842
- /**
21843
- * endFlows
21844
- * @desc:直接办结
21845
- * @author liufan
21846
- * @param {Object} res 直接办结数据
21847
- * @date 2022年5月25日
21995
+ /**
21996
+ * endFlows
21997
+ * @desc:直接办结
21998
+ * @author liufan
21999
+ * @param {Object} res 直接办结数据
22000
+ * @date 2022年5月25日
21848
22001
  **/
21849
22002
  endFlows: function endFlows(res) {
21850
- var _this13 = this;
22003
+ var _this14 = this;
21851
22004
 
21852
22005
  if (this.beforeSubmit != undefined) {
21853
22006
  this.beforeSubmit().then(function (next) {
21854
- _this13.saveEndFlows(res);
22007
+ _this14.saveEndFlows(res);
21855
22008
  }).catch(function (e) {});
21856
22009
  } else {
21857
22010
  this.saveEndFlows(res);
21858
22011
  }
21859
22012
  },
21860
22013
  saveEndFlows: function saveEndFlows(res) {
21861
- var _this14 = this;
22014
+ var _this15 = this;
21862
22015
 
21863
22016
  this.$confirm('确认' + res.value + '?').then(function () {
21864
22017
  var params = {
21865
- url: api["t" /* endFlowHtml */],
22018
+ url: api["w" /* endFlowHtml */],
21866
22019
  headers: { Accept: 'application/json,text/plain' },
21867
22020
  method: 'post',
21868
- data: mainvue_type_script_lang_js_extends({}, _this14.endFlowInfo, _this14.nextNode, {
21869
- opinion: _this14.value,
22021
+ data: mainvue_type_script_lang_js_extends({}, _this15.endFlowInfo, _this15.nextNode, {
22022
+ opinion: _this15.value,
21870
22023
  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(',')
22024
+ nextUserId: _this15.multiple ? _this15.nextNode.nextUserId.join(',') : _this15.nextNode.nextUserId,
22025
+ addSignUserId: _this15.nextNode.addSignUserId.join(','),
22026
+ customPresetUserJson: JSON.stringify(_this15.presetList),
22027
+ presetUserJson: JSON.stringify(_this15.presetUserJson),
22028
+ removeSignUserId: _this15.nextNode.removeSignUserId.join(','),
22029
+ notificationType: _this15.nextNode.notificationType.join(',')
21877
22030
  })
21878
22031
  };
21879
- _this14.loading = util["a" /* default */].loading(_this14.$loading, '加载中...');
22032
+ _this15.loading = util["a" /* default */].loading(_this15.$loading, '加载中...');
21880
22033
  util["a" /* default */].ajax(params).then(function (res) {
21881
22034
  var status = res.status,
21882
22035
  message = res.message;
21883
22036
 
21884
- _this14.loading.close();
22037
+ _this15.loading.close();
21885
22038
  if (status === 'success') {
21886
- _this14.$message.success('提交成功');
21887
- _this14.$emit('success');
22039
+ _this15.$message.success('提交成功');
22040
+ _this15.$emit('success');
21888
22041
  } else {
21889
- _this14.$message.error(message || '系统错误,请联系管理员!');
21890
- _this14.$emit('error');
22042
+ _this15.$message.error(message || '系统错误,请联系管理员!');
22043
+ _this15.$emit('error');
21891
22044
  }
21892
22045
  }).catch(function (err) {
21893
- _this14.loading.close();
22046
+ _this15.loading.close();
21894
22047
  if (err.message && err.message !== 'canceled') {
21895
- _this14.$message.error(err.message);
22048
+ _this15.$message.error(err.message);
21896
22049
  }
21897
22050
  });
21898
22051
  }).catch(function (e) {});
21899
22052
  },
21900
22053
 
21901
- /**
21902
- * goView
21903
- * @desc:更多流程按钮操作
21904
- * @author liufan
21905
- * @param {Object} res 当前点击操作按钮数据
21906
- * @date 2022年5月25日
22054
+ /**
22055
+ * goView
22056
+ * @desc:更多流程按钮操作
22057
+ * @author liufan
22058
+ * @param {Object} res 当前点击操作按钮数据
22059
+ * @date 2022年5月25日
21907
22060
  **/
21908
22061
  goView: function goView(res) {
21909
22062
  // 驳回并办结:rejectAndEndHtml
@@ -21988,18 +22141,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21988
22141
  // isCanStartSubFlow
21989
22142
  },
21990
22143
 
21991
- /**
21992
- * toTakeAdvice
21993
- * @desc:征求意见
21994
- * @author liufan
21995
- * @date 2022年9月29日
22144
+ /**
22145
+ * toTakeAdvice
22146
+ * @desc:征求意见
22147
+ * @author liufan
22148
+ * @date 2022年9月29日
21996
22149
  **/
21997
22150
  toTakeAdvice: function toTakeAdvice(res) {
21998
- var _this15 = this;
22151
+ var _this16 = this;
21999
22152
 
22000
22153
  if (this.beforeSubmit != undefined) {
22001
22154
  this.beforeSubmit().then(function (next) {
22002
- _this15.saveToTakeAdvice(res);
22155
+ _this16.saveToTakeAdvice(res);
22003
22156
  }).catch(function (e) {});
22004
22157
  } else {
22005
22158
  this.saveToTakeAdvice(res);
@@ -22007,10 +22160,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22007
22160
  // return this.$message.warning('暂未开放!敬请期待');
22008
22161
  },
22009
22162
  saveToTakeAdvice: function saveToTakeAdvice(res) {
22010
- var _this16 = this;
22163
+ var _this17 = this;
22011
22164
 
22012
22165
  var params = {
22013
- url: api["db" /* isCanStartSubFlow */],
22166
+ url: api["gb" /* isCanStartSubFlow */],
22014
22167
  data: {
22015
22168
  appId: this.taskExamineInfo.appId,
22016
22169
  inevitableNode: res.inevitableNode
@@ -22022,70 +22175,70 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22022
22175
  util["a" /* default */].ajax(params).then(function (res) {
22023
22176
  var message = res.message;
22024
22177
 
22025
- _this16.loading.close();
22178
+ _this17.loading.close();
22026
22179
  if (message == 'success') {
22027
- _this16.showTaskUnionExamine = true;
22180
+ _this17.showTaskUnionExamine = true;
22028
22181
  } else {
22029
- _this16.$message.error(message || '系统错误,请联系管理员!');
22182
+ _this17.$message.error(message || '系统错误,请联系管理员!');
22030
22183
  }
22031
22184
  }).catch(function (err) {
22032
- _this16.loading.close();
22185
+ _this17.loading.close();
22033
22186
  if (err.message && err.message !== 'canceled') {
22034
- _this16.$message.error(err.message);
22187
+ _this17.$message.error(err.message);
22035
22188
  }
22036
22189
  });
22037
22190
  },
22038
22191
 
22039
- /**
22040
- * toStartDraf
22041
- * @desc: 稿件递送、联合审核、复核
22042
- * @author liufan
22043
- * @date 2022年9月29日
22192
+ /**
22193
+ * toStartDraf
22194
+ * @desc: 稿件递送、联合审核、复核
22195
+ * @author liufan
22196
+ * @date 2022年9月29日
22044
22197
  **/
22045
22198
  toStartDraf: function toStartDraf(res) {
22046
- var _this17 = this;
22199
+ var _this18 = this;
22047
22200
 
22048
22201
  if (this.beforeSubmit != undefined) {
22049
22202
  this.beforeSubmit().then(function (next) {
22050
- _this17.showTaskUnionExamine = true;
22203
+ _this18.showTaskUnionExamine = true;
22051
22204
  }).catch(function (e) {});
22052
22205
  } else {
22053
22206
  this.showTaskUnionExamine = true;
22054
22207
  }
22055
22208
  },
22056
22209
 
22057
- /**
22058
- * toSendMsg
22059
- * @desc:核稿通知
22060
- * @author liufan
22061
- * @date 2022年9月29日
22210
+ /**
22211
+ * toSendMsg
22212
+ * @desc:核稿通知
22213
+ * @author liufan
22214
+ * @date 2022年9月29日
22062
22215
  **/
22063
22216
  toSendMsg: function toSendMsg(res) {
22064
- var _this18 = this;
22217
+ var _this19 = this;
22065
22218
 
22066
22219
  if (this.beforeSubmit != undefined) {
22067
22220
  this.beforeSubmit().then(function (next) {
22068
- _this18.showSendMsg = true;
22221
+ _this19.showSendMsg = true;
22069
22222
  }).catch(function (e) {});
22070
22223
  } else {
22071
22224
  this.showSendMsg = true;
22072
22225
  }
22073
22226
  },
22074
22227
 
22075
- /**
22076
- * toTaskReadAndEnd
22077
- * @desc:分阅并办结
22078
- * @author liufan
22079
- * @date 2022年9月29日
22228
+ /**
22229
+ * toTaskReadAndEnd
22230
+ * @desc:分阅并办结
22231
+ * @author liufan
22232
+ * @date 2022年9月29日
22080
22233
  **/
22081
22234
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
22082
- var _this19 = this;
22235
+ var _this20 = this;
22083
22236
 
22084
22237
  if (this.beforeSubmit != undefined) {
22085
22238
  this.beforeSubmit().then(function (next) {
22086
- if (_this19.value === '') _this19.value = _this19.nodeDefaultRejectOpinion;
22087
- _this19.taskReadType = 'taskReadAndEnd';
22088
- _this19.showTaskRead = true;
22239
+ if (_this20.value === '') _this20.value = _this20.nodeDefaultRejectOpinion;
22240
+ _this20.taskReadType = 'taskReadAndEnd';
22241
+ _this20.showTaskRead = true;
22089
22242
  }).catch(function (e) {});
22090
22243
  } else {
22091
22244
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -22094,58 +22247,58 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22094
22247
  }
22095
22248
  },
22096
22249
 
22097
- /**
22098
- * rejectAndEnd
22099
- * @desc:驳回并办结
22100
- * @author liufan
22101
- * @date 2022年9月29日
22250
+ /**
22251
+ * rejectAndEnd
22252
+ * @desc:驳回并办结
22253
+ * @author liufan
22254
+ * @date 2022年9月29日
22102
22255
  **/
22103
22256
  rejectAndEnd: function rejectAndEnd(res) {
22104
- var _this20 = this;
22257
+ var _this21 = this;
22105
22258
 
22106
22259
  if (this.isOpinionRequired == 1 && (this.value == '' || !this.value)) {
22107
22260
  if (!this.$refs.commonOpinions.validate()) return;
22108
22261
  }
22109
22262
  if (this.beforeSubmit != undefined) {
22110
22263
  this.beforeSubmit().then(function (next) {
22111
- _this20.saveRejectAndEnd(res);
22264
+ _this21.saveRejectAndEnd(res);
22112
22265
  }).catch(function (e) {});
22113
22266
  } else {
22114
22267
  this.saveRejectAndEnd(res);
22115
22268
  }
22116
22269
  },
22117
22270
  saveRejectAndEnd: function saveRejectAndEnd(res) {
22118
- var _this21 = this;
22271
+ var _this22 = this;
22119
22272
 
22120
22273
  this.$confirm('确认' + res.value + '?').then(function () {
22121
22274
  // return this.$message.warning('请填写意见');
22122
22275
  var params = {
22123
- url: api["qb" /* rejectAndEnd */],
22276
+ url: api["ub" /* rejectAndEnd */],
22124
22277
  headers: { Accept: 'application/json,text/plain' },
22125
22278
  method: 'post',
22126
22279
  data: {
22127
- opinion: _this21.value,
22128
- pendingId: _this21.pendingId,
22280
+ opinion: _this22.value,
22281
+ pendingId: _this22.pendingId,
22129
22282
  isSinglePage: false
22130
22283
  }
22131
22284
  };
22132
- _this21.loading = util["a" /* default */].loading(_this21.$loading, '加载中...');
22285
+ _this22.loading = util["a" /* default */].loading(_this22.$loading, '加载中...');
22133
22286
  util["a" /* default */].ajax(params).then(function (res) {
22134
22287
  var status = res.status,
22135
22288
  message = res.message;
22136
22289
 
22137
- _this21.loading.close();
22290
+ _this22.loading.close();
22138
22291
  if (status === 'success') {
22139
- _this21.$message.success('提交成功');
22140
- _this21.$emit('success');
22292
+ _this22.$message.success('提交成功');
22293
+ _this22.$emit('success');
22141
22294
  } else {
22142
- _this21.$message.error(message || '系统错误,请联系管理员!');
22143
- _this21.$emit('error');
22295
+ _this22.$message.error(message || '系统错误,请联系管理员!');
22296
+ _this22.$emit('error');
22144
22297
  }
22145
22298
  }).catch(function (err) {
22146
- _this21.loading.close();
22299
+ _this22.loading.close();
22147
22300
  if (err.message && err.message !== 'canceled') {
22148
- _this21.$message.error(err.message);
22301
+ _this22.$message.error(err.message);
22149
22302
  }
22150
22303
  });
22151
22304
  }).catch(function () {
@@ -22153,19 +22306,19 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22153
22306
  });
22154
22307
  },
22155
22308
 
22156
- /**
22157
- * toTransfer
22158
- * @desc:转办
22159
- * @author liufan
22160
- * @date 2022年9月29日
22309
+ /**
22310
+ * toTransfer
22311
+ * @desc:转办
22312
+ * @author liufan
22313
+ * @date 2022年9月29日
22161
22314
  **/
22162
22315
  toTransfer: function toTransfer(res) {
22163
- var _this22 = this;
22316
+ var _this23 = this;
22164
22317
 
22165
22318
  if (this.beforeSubmit != undefined) {
22166
22319
  this.beforeSubmit(0).then(function (next) {
22167
- _this22.taskReadType = 'transfer';
22168
- _this22.showTaskRead = true;
22320
+ _this23.taskReadType = 'transfer';
22321
+ _this23.showTaskRead = true;
22169
22322
  }).catch(function (e) {});
22170
22323
  } else {
22171
22324
  this.taskReadType = 'transfer';
@@ -22173,14 +22326,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22173
22326
  }
22174
22327
  },
22175
22328
 
22176
- /**
22177
- * getNodeInfo
22178
- * @desc:获取节点信息
22179
- * @author liufan
22180
- * @date 2022年5月25日
22329
+ /**
22330
+ * getNodeInfo
22331
+ * @desc:获取节点信息
22332
+ * @author liufan
22333
+ * @date 2022年5月25日
22181
22334
  **/
22182
22335
  getNodeInfo: function getNodeInfo() {
22183
- var _this23 = this;
22336
+ var _this24 = this;
22184
22337
 
22185
22338
  var params = {
22186
22339
  processDefinitionId: this.nodeInfo.nextNode,
@@ -22190,49 +22343,49 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22190
22343
  pendingId: this.pendingId,
22191
22344
  businessId: this.businessIds
22192
22345
  };
22193
- util["a" /* default */].ajax({ url: api["J" /* getNodeInfo */], params: params }).then(function (res) {
22346
+ util["a" /* default */].ajax({ url: api["M" /* getNodeInfo */], params: params }).then(function (res) {
22194
22347
  var status = res.status,
22195
22348
  message = res.message,
22196
22349
  data = res.data;
22197
22350
 
22198
- _this23.loading.close();
22351
+ _this24.loading.close();
22199
22352
  if (status === 'success') {
22200
- data.otherOrgDisabledObjId && (_this23.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22201
- data.currentOrgDisabledObjId && (_this23.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22353
+ data.otherOrgDisabledObjId && (_this24.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22354
+ data.currentOrgDisabledObjId && (_this24.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22202
22355
  if (data != null) {
22203
22356
  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);
22357
+ _this24.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22205
22358
  } else {
22206
- _this23.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this23.choiceOrgId, _this23.choiceDeptId, _this23.pOrgId);
22359
+ _this24.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this24.choiceOrgId, _this24.choiceDeptId, _this24.pOrgId);
22207
22360
  }
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;
22361
+ _this24.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22362
+ _this24.isTaskread = data.nodeExtAttr.isTaskread;
22363
+ _this24.isHandleExplain = data.nodeExtAttr.isHandleExplain;
22364
+ _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22365
+ _this24.nodeType = data.nodeExtAttr.nodeType;
22213
22366
  //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
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; //判断是否隐藏外单位
22367
+ if (_this24.nodeType === 1 || _this24.nodeType === 2) {
22368
+ _this24.isMainSubProcess === true ? _this24.isNodeShowProcess = true : _this24.isNodeShowProcess = false;
22369
+ _this24.isMainSubProcess === true ? _this24.isMainSubProcess = true : _this24.isMainSubProcess = false;
22370
+ _this24.isNextUser = false;
22371
+ _this24.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
22372
+ _this24.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
22220
22373
  } else {
22221
- _this23.isHideCurrentOrg = false;
22222
- _this23.isHideOtherOrg = false;
22223
- _this23.isNodeShowProcess = false;
22224
- _this23.isMainSubProcess = false;
22225
- _this23.isNextUser = _this23.nextNode.nextOperate != 9;
22374
+ _this24.isHideCurrentOrg = false;
22375
+ _this24.isHideOtherOrg = false;
22376
+ _this24.isNodeShowProcess = false;
22377
+ _this24.isMainSubProcess = false;
22378
+ _this24.isNextUser = _this24.nextNode.nextOperate != 9;
22226
22379
  // this.isMainSubProcess === true
22227
22380
  // ? (this.isMainSubProcess = true)
22228
22381
  // : (this.isMainSubProcess = false);
22229
22382
  }
22230
- _this23.multiple ? _this23.nextNode.nextUserId = [] : _this23.nextNode.nextUserId = '';
22231
- if (_this23.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
22383
+ _this24.multiple ? _this24.nextNode.nextUserId = [] : _this24.nextNode.nextUserId = '';
22384
+ if (_this24.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
22232
22385
  data.nextUserList.map(function (item) {
22233
22386
  if (item.userId && item.username) {
22234
- _this23.nextNode.nextUserId.push(item.userId);
22235
- _this23.selectUserList.push({
22387
+ _this24.nextNode.nextUserId.push(item.userId);
22388
+ _this24.selectUserList.push({
22236
22389
  showname: item.username,
22237
22390
  showid: item.userId
22238
22391
  });
@@ -22241,50 +22394,50 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22241
22394
  }
22242
22395
  data.nextUserList.map(function (item) {
22243
22396
  if (item.userId && item.username) {
22244
- _this23.options.push({
22397
+ _this24.options.push({
22245
22398
  showname: item.username,
22246
22399
  showid: item.userId
22247
22400
  });
22248
22401
  }
22249
22402
  });
22250
22403
  if (data.nodeExtAttr.presetEdit != 0) {
22251
- _this23.radioList = _this23.options;
22404
+ _this24.radioList = _this24.options;
22252
22405
  }
22253
- if (!_this23.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
22254
- _this23.nextNode.nextUserId = data.nextUserList[0].userId;
22255
- _this23.selectUserList.push({
22406
+ if (!_this24.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
22407
+ _this24.nextNode.nextUserId = data.nextUserList[0].userId;
22408
+ _this24.selectUserList.push({
22256
22409
  showname: data.nextUserList[0].username,
22257
22410
  showid: data.nextUserList[0].userId
22258
22411
  });
22259
22412
  }
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 : '';
22413
+ _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22414
+ _this24.isCustomUser = data.nodeExtAttr.isCustomUser;
22415
+ _this24.presetEdit = data.nodeExtAttr.presetEdit;
22416
+ _this24.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
22417
+ _this24.handleMode = data.countersignaturetypeText;
22418
+ data.globalNodeType === 'endEvent' ? _this24.endFlow = true : '';
22266
22419
  }
22267
- _this23.isCustomPreset && _this23.$refs.customPreset.getPresetFlowInfo(_this23.nextNode.nextNodeId, _this23.nodeInfo.nextNode, true);
22420
+ _this24.isCustomPreset && _this24.$refs.customPreset.getPresetFlowInfo(_this24.nextNode.nextNodeId, _this24.nodeInfo.nextNode, true);
22268
22421
  } else {
22269
- _this23.$message.error(message || '系统错误,请联系管理员!');
22422
+ _this24.$message.error(message || '系统错误,请联系管理员!');
22270
22423
  }
22271
22424
  }).catch(function (err) {
22272
- _this23.loading.close();
22425
+ _this24.loading.close();
22273
22426
  if (err.message && err.message !== 'canceled') {
22274
- _this23.$message.error(err.message);
22427
+ _this24.$message.error(err.message);
22275
22428
  }
22276
22429
  });
22277
22430
  },
22278
22431
 
22279
- /**
22280
- * selecNext
22281
- * @desc:下步节点变化时更新数据
22282
- * @author liufan
22283
- * @param {String} val 当前选中值
22284
- * @date 2022年5月25日
22432
+ /**
22433
+ * selecNext
22434
+ * @desc:下步节点变化时更新数据
22435
+ * @author liufan
22436
+ * @param {String} val 当前选中值
22437
+ * @date 2022年5月25日
22285
22438
  **/
22286
22439
  selecNext: function selecNext(val, type, isDef) {
22287
- var _this24 = this;
22440
+ var _this25 = this;
22288
22441
 
22289
22442
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22290
22443
  if (this.multiple) {
@@ -22315,16 +22468,16 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22315
22468
  this.operationList.forEach(function (item) {
22316
22469
  if (item.key === val) {
22317
22470
  if (!item.taskNodeList) {
22318
- _this24.nodeInfos = [];
22471
+ _this25.nodeInfos = [];
22319
22472
  } else {
22320
- _this24.nodeInfos = item.taskNodeList;
22473
+ _this25.nodeInfos = item.taskNodeList;
22321
22474
  }
22322
22475
  return;
22323
22476
  }
22324
22477
  });
22325
22478
  if (this.defaultNextNode) {
22326
22479
  var defaultNode = this.nodeInfos.filter(function (item) {
22327
- return item.nodeId == _this24.defaultNextNode;
22480
+ return item.nodeId == _this25.defaultNextNode;
22328
22481
  });
22329
22482
  if (this.nodeInfos.length > 0 && defaultNode.length == 0) {
22330
22483
  this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
@@ -22390,11 +22543,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22390
22543
  if (isDef !== true) this.getNodeInfo();
22391
22544
  },
22392
22545
 
22393
- /**
22394
- * isMultiple
22395
- * @desc:是否多选
22396
- * @author liufan
22397
- * @date 2022年9月13日
22546
+ /**
22547
+ * isMultiple
22548
+ * @desc:是否多选
22549
+ * @author liufan
22550
+ * @date 2022年9月13日
22398
22551
  **/
22399
22552
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
22400
22553
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -22426,24 +22579,24 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22426
22579
  }
22427
22580
  },
22428
22581
 
22429
- /**
22430
- * getHedInfo
22431
- * @desc:获取审核页面数据
22432
- * @author liufan
22433
- * @date 2022年5月25日
22582
+ /**
22583
+ * getHedInfo
22584
+ * @desc:获取审核页面数据
22585
+ * @author liufan
22586
+ * @date 2022年5月25日
22434
22587
  **/
22435
22588
  getHedInfo: function getHedInfo() {
22436
- var _this25 = this;
22589
+ var _this26 = this;
22437
22590
 
22438
22591
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22439
22592
  var params = {
22440
22593
  pendingId: this.pendingId,
22441
22594
  userId: util["a" /* default */].getStorage('userId')
22442
22595
  };
22443
- util["a" /* default */].ajax({ url: api["G" /* getHandleInfoHtml */], params: params }).then(function (res) {
22596
+ util["a" /* default */].ajax({ url: api["J" /* getHandleInfoHtml */], params: params }).then(function (res) {
22444
22597
  //pc返回数据
22445
22598
 
22446
- _this25.loading.close();
22599
+ _this26.loading.close();
22447
22600
  if (res.status === 'success') {
22448
22601
  var _res$data2 = res.data,
22449
22602
  nextNodeList = _res$data2.nextNodeList,
@@ -22475,207 +22628,208 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22475
22628
  taskButtonList = _res$data2.taskButtonList,
22476
22629
  isCanPreAddSign = _res$data2.isCanPreAddSign;
22477
22630
 
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;
22631
+ _this26.$emit('startTaskRead', res);
22632
+ _this26.$emit('start-task-read', res);
22633
+ _this26.circularReadParamsMap = circularReadParamsMap || {};
22634
+ _this26.currentOrgName = currentOrgName;
22635
+ _this26.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
22636
+ _this26.readOnlyNotificationType = readOnlyNotificationType;
22637
+ _this26.isSpecial = isSpecial;
22638
+ _this26.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
22639
+ _this26.otherOrgName = otherOrgName;
22640
+ _this26.isCanPreAddSign = isCanPreAddSign;
22641
+ _this26.endFlowInfo.choiceOrgId = choiceOrgId;
22642
+ _this26.endFlowInfo.choiceDeptId = choiceDeptId;
22643
+ _this26.endFlowInfo.pendingId = _this26.pendingId;
22644
+ _this26.attachedCode = attachedCode;
22645
+ _this26.endFlowInfo.pOrgId = pOrgId;
22646
+ _this26.canPresetRead = canPresetRead;
22647
+ _this26.isCdjxjTaskHandle = isCdjxjTaskHandle;
22648
+ nextNodeCheckType && (_this26.nextNodeCheckType = nextNodeCheckType);
22649
+ _this26.operationList = taskOperations || [];
22650
+ _this26.customPresetHintMessage = customPresetHintMessage;
22498
22651
  if (canPresetRead) {
22499
22652
  var ids = nodeInfoMap.nodeExtAttr.presetReadCandinateIds.split(',');
22500
22653
  var names = nodeInfoMap.nodeExtAttr.presetReadCandinateNames.split(',');
22501
22654
  ids.map(function (item, index) {
22502
- _this25.presetReadUserId.push({
22655
+ _this26.presetReadUserId.push({
22503
22656
  showid: item,
22504
22657
  showname: names[index]
22505
22658
  });
22506
- _this25.selectPresetUserList.push({
22659
+ _this26.selectPresetUserList.push({
22507
22660
  showid: item,
22508
22661
  showname: names[index]
22509
22662
  });
22510
- _this25.nextNode.presetReadUserId.push(item);
22663
+ _this26.nextNode.presetReadUserId.push(item);
22511
22664
  });
22512
22665
  }
22513
- if (!_this25.isFlow) _this25.getFile(_this25.pendingId, attachedCode);
22666
+ if (!_this26.isFlow) _this26.getFile(_this26.pendingId, attachedCode);
22514
22667
  if (nextNodeList && nextNodeList.length != 0) {
22515
- _this25.nextNodeList = nextNodeList;
22668
+ _this26.nextNodeList = nextNodeList;
22516
22669
  }
22517
- if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this25.removeUsers = canRemoveSignUserList;
22670
+ if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this26.removeUsers = canRemoveSignUserList;
22518
22671
  if (taskOperations && taskOperations.length != 0) {
22519
22672
  taskOperations.map(function (item) {
22520
- if (item.key === 9) _this25.isReject = true;
22673
+ if (item.key === 9) _this26.isReject = true;
22521
22674
  if (item.isSelected) {
22522
- _this25.nodeInfos = [];
22523
- _this25.nextNode.nextOperate = item.key;
22675
+ _this26.nodeInfos = [];
22676
+ _this26.nextNode.nextOperate = item.key;
22524
22677
  if (item.taskNodeList != null) {
22525
- _this25.nodeInfos = item.taskNodeList;
22678
+ _this26.nodeInfos = item.taskNodeList;
22526
22679
  }
22527
22680
  }
22528
22681
  if (taskOperations.length == 1) {
22529
- _this25.nodeInfos = [];
22530
- _this25.nextNode.nextOperate = taskOperations[0].key;
22682
+ _this26.nodeInfos = [];
22683
+ _this26.nextNode.nextOperate = taskOperations[0].key;
22531
22684
  if (taskOperations[0].taskNodeList != null) {
22532
- _this25.nodeInfos = taskOperations[0].taskNodeList;
22685
+ _this26.nodeInfos = taskOperations[0].taskNodeList;
22533
22686
  }
22534
22687
  }
22535
22688
  });
22536
- _this25.selecNext(_this25.nextNode.nextOperate, true, true);
22689
+ _this26.selecNext(_this26.nextNode.nextOperate, true, true);
22537
22690
  }
22538
22691
  if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
22539
- _this25.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22692
+ _this26.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22540
22693
  if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
22541
22694
  var notice = JSON.parse(nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList);
22542
22695
  notice.map(function (x) {
22543
- _this25.nodeFixedOpinionSelectList.push({ content: x });
22696
+ _this26.nodeFixedOpinionSelectList.push({ content: x });
22544
22697
  });
22545
22698
  }
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;
22699
+ _this26.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
22700
+ _this26.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
22701
+ _this26.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
22702
+ _this26.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
22703
+ _this26.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
22704
+ _this26.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
22552
22705
  // this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
22553
- _this25.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22706
+ _this26.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22554
22707
  if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
22555
- var defaultNode = _this25.nodeInfos.filter(function (item) {
22708
+ var defaultNode = _this26.nodeInfos.filter(function (item) {
22556
22709
  return item.nodeId == nodeInfoMap.nodeExtAttr.defaultNextNode;
22557
22710
  });
22558
- if (_this25.nodeInfos.length > 0 && defaultNode.length == 0) {
22559
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22711
+ if (_this26.nodeInfos.length > 0 && defaultNode.length == 0) {
22712
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22560
22713
  } else {
22561
- _this25.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22714
+ _this26.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22562
22715
  }
22563
- } else if (_this25.nodeInfos.length > 0) {
22564
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22716
+ } else if (_this26.nodeInfos.length > 0) {
22717
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22565
22718
  }
22566
- _this25.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22719
+ _this26.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22567
22720
  if (nodeInfoMap.nodeExtAttr.submitText) {
22568
- _this25.btnList.map(function (x) {
22721
+ _this26.btnList.map(function (x) {
22569
22722
  if (x.event === 'sub') {
22570
22723
  x.text = nodeInfoMap.nodeExtAttr.submitText;
22571
22724
  }
22572
22725
  });
22573
22726
  }
22574
22727
  }
22575
- _this25.choiceOrgId = choiceOrgId;
22576
- _this25.choiceDeptId = choiceDeptId;
22577
- _this25.pOrgId = pOrgId;
22728
+ _this26.choiceOrgId = choiceOrgId;
22729
+ _this26.choiceDeptId = choiceDeptId;
22730
+ _this26.pOrgId = pOrgId;
22578
22731
  if (res.data && res.data.isEndUserTask != undefined) {
22579
- _this25.isEndUserTask = res.data.isEndUserTask;
22732
+ _this26.isEndUserTask = res.data.isEndUserTask;
22580
22733
  }
22581
22734
  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;
22735
+ _this26.nodeInfo.nextNode = taskExamine.processDefinitionId;
22736
+ _this26.NodeName = taskExamine.nodeName;
22737
+ _this26.taskId = taskExamine.taskId;
22738
+ _this26.businessIds = taskExamine.businessId;
22739
+ _this26.appId = taskExamine.appId;
22740
+ _this26.taskExamineInfo = taskExamine;
22741
+ _this26.taskExamineInfo.choiceOrgId = choiceOrgId;
22742
+ _this26.taskExamineInfo.choiceDeptId = choiceDeptId;
22743
+ _this26.endFlowInfo.processType = taskExamine.processType;
22744
+ _this26.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
22745
+ _this26.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
22746
+ _this26.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
22747
+ _this26.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22748
+ _this26.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
22749
+ _this26.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22750
+ _this26.nextNode.isReadDealReply = taskExamine.isReadDealReply;
22751
+ _this26.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
22752
+ _this26.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
22753
+ _this26.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
22754
+ _this26.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
22755
+ _this26.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
22756
+ _this26.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
22757
+ _this26.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22758
+ _this26.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22759
+ _this26.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
22760
+ _this26.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
22761
+ _this26.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
22762
+ _this26.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
22610
22763
  // this.endFlowInfo.isReadDealReply =
22611
22764
  // 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;
22765
+ _this26.endFlowInfo.appId = taskExamine.appId;
22766
+ _this26.endFlowInfo.businessId = taskExamine.businessId;
22767
+ _this26.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
22768
+ _this26.endFlowInfo.nodeId = taskExamine.nodeId;
22616
22769
  }
22617
- if (_this25.nodeName) {
22618
- _this25.NodeName = _this25.nodeName;
22770
+ if (_this26.nodeName) {
22771
+ _this26.NodeName = _this26.nodeName;
22619
22772
  }
22620
- _this25.isCanAddSign = isCanAddSign;
22621
- _this25.processObj = res.data;
22622
- if (_this25.isCanAddSign) {
22623
- _this25.nextNode.isAddSign = '2';
22773
+ _this26.isCanAddSign = isCanAddSign;
22774
+ _this26.processObj = res.data;
22775
+ if (_this26.isCanAddSign) {
22776
+ _this26.nextNode.isAddSign = '2';
22624
22777
  }
22625
- _this25.isCanRemoveSign = isCanRemoveSign;
22626
- if (_this25.isCanRemoveSign) {
22627
- _this25.nextNode.isRemoveSign = '2';
22778
+ _this26.isCanRemoveSign = isCanRemoveSign;
22779
+ if (_this26.isCanRemoveSign) {
22780
+ _this26.nextNode.isRemoveSign = '2';
22628
22781
  }
22629
22782
 
22630
- if (!_this25.isOpinionRequired) {
22631
- _this25.isOpinionRequired = 0;
22783
+ if (!_this26.isOpinionRequired) {
22784
+ _this26.isOpinionRequired = 0;
22632
22785
  }
22633
22786
  // opinion && (this.value = opinion);
22634
- _this25.nextNode.notificationMsg = defaultNotificationMessage;
22635
- _this25.moreList = [];
22787
+ _this26.nextNode.notificationMsg = defaultNotificationMessage;
22788
+ _this26.moreList = [];
22636
22789
  if (taskButtonList && taskButtonList.length != 0) {
22637
22790
  taskButtonList.map(function (item) {
22638
22791
  if (item.fun === 'reject()') {
22639
- _this25.rejectObj = item;
22792
+ _this26.rejectObj = item;
22640
22793
  } else if (item.fun === 'toStartTaskRead()') {
22641
- _this25.pointsReadingObj = item;
22794
+ _this26.pointsReadingObj = item;
22642
22795
  } else {
22643
- _this25.moreList.push(item);
22796
+ _this26.moreList.push(item);
22644
22797
  }
22645
22798
  });
22646
22799
  }
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();
22800
+ _this26.isMainSubProcess = res.data.isMainSubProcess == 'true';
22801
+ _this26.isCustomPreset = isCustomPreset;
22802
+ _this26.isPreset = isPreset;
22803
+ _this26.presetTaskNodeMap = presetTaskNodeMap;
22804
+ _this26.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
22805
+ _this26.getFind();
22806
+
22807
+ _this26.getNodeInfo();
22808
+ _this26.StartTaskReadKey++;
22655
22809
  } else {
22656
22810
  if (res.status === 'taskCompleted') {
22657
- _this25.$emit('shrink', true);
22658
- _this25.shrinkAbled = true;
22659
- _this25.$message.warning(res.message || '系统错误,请联系管理员!');
22811
+ _this26.$emit('shrink', true);
22812
+ _this26.shrinkAbled = true;
22813
+ _this26.$message.warning(res.message || '系统错误,请联系管理员!');
22660
22814
  } else {
22661
- _this25.$message.error(res.message || '系统错误,请联系管理员!');
22815
+ _this26.$message.error(res.message || '系统错误,请联系管理员!');
22662
22816
  }
22663
22817
  }
22664
22818
  }).catch(function (err) {
22665
- _this25.loading.close();
22819
+ _this26.loading.close();
22666
22820
  if (err.message && err.message !== 'canceled') {
22667
- _this25.$message.error(err.message);
22821
+ _this26.$message.error(err.message);
22668
22822
  }
22669
22823
  });
22670
22824
  },
22671
22825
 
22672
- /**
22673
- * closeProcess
22674
- * @desc:关闭弹窗
22675
- * @author liufan
22676
- * @param {boolean} val 当前是否办理流程
22677
- * @param {String} type 当前点击的弹窗类型
22678
- * @date 2022年5月25日
22826
+ /**
22827
+ * closeProcess
22828
+ * @desc:关闭弹窗
22829
+ * @author liufan
22830
+ * @param {boolean} val 当前是否办理流程
22831
+ * @param {String} type 当前点击的弹窗类型
22832
+ * @date 2022年5月25日
22679
22833
  **/
22680
22834
  closeProcess: function closeProcess(val, type, closeParent) {
22681
22835
  if (closeParent) {
@@ -22692,23 +22846,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22692
22846
  }
22693
22847
  },
22694
22848
 
22695
- /**
22696
- * selectChange
22697
- * @desc:常用语选择
22698
- * @author liufan
22699
- * @param {String} val 选中值
22700
- * @date 2022年5月25日
22849
+ /**
22850
+ * selectChange
22851
+ * @desc:常用语选择
22852
+ * @author liufan
22853
+ * @param {String} val 选中值
22854
+ * @date 2022年5月25日
22701
22855
  **/
22702
22856
  selectChange: function selectChange(val) {
22703
22857
  this.value = val;
22704
22858
  },
22705
22859
 
22706
- /**
22707
- * upDate
22708
- * @desc:修改常用语
22709
- * @author liufan
22710
- * @param {Object} val 修改值
22711
- * @date 2022年5月25日
22860
+ /**
22861
+ * upDate
22862
+ * @desc:修改常用语
22863
+ * @author liufan
22864
+ * @param {Object} val 修改值
22865
+ * @date 2022年5月25日
22712
22866
  **/
22713
22867
  upDate: function upDate(val) {
22714
22868
  this.FormData.id = val.id;
@@ -22716,14 +22870,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22716
22870
  },
22717
22871
 
22718
22872
 
22719
- /**
22720
- * getProcess
22721
- * @desc:获取选择流程
22722
- * @author liufan
22723
- * @date 2022年5月25日
22873
+ /**
22874
+ * getProcess
22875
+ * @desc:获取选择流程
22876
+ * @author liufan
22877
+ * @date 2022年5月25日
22724
22878
  **/
22725
22879
  getProcess: function getProcess() {
22726
- var _this26 = this;
22880
+ var _this27 = this;
22727
22881
 
22728
22882
  var params = mainvue_type_script_lang_js_extends({
22729
22883
  businessId: this.businessId,
@@ -22733,113 +22887,152 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22733
22887
  hideTempSave: true
22734
22888
  }, this.param);
22735
22889
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22736
- util["a" /* default */].ajax({ url: api["O" /* getProcessDefList */], params: params }).then(function (res) {
22890
+ util["a" /* default */].ajax({ url: api["R" /* getProcessDefList */], params: params }).then(function (res) {
22737
22891
  var status = res.status,
22738
22892
  message = res.message,
22739
22893
  data = res.data;
22740
22894
 
22741
- _this26.loading.close();
22895
+ _this27.loading.close();
22742
22896
  if (status === 'success') {
22743
- _this26.isStartFlowChartView = data.isStartFlowChartView;
22897
+ _this27.isStartFlowChartView = data.isStartFlowChartView;
22744
22898
  if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
22745
- _this26.$message.error('流程不存在或未关联对应流程!');
22899
+ _this27.$message.error('流程不存在或未关联对应流程!');
22746
22900
  } else {
22747
- _this26.nodeInfo.option = data.definitionList;
22748
- _this26.nodeInfo.nextNode = data.definitionList.filter(function (item) {
22749
- return item.processDefKey == _this26.defaultProcessKey;
22901
+ _this27.nodeInfo.option = data.definitionList;
22902
+ _this27.nodeInfo.nextNode = data.definitionList.filter(function (item) {
22903
+ return item.processDefKey == _this27.defaultProcessKey;
22750
22904
  });
22751
- if (_this26.nodeInfo.nextNode.length) {
22752
- _this26.nodeInfo.nextNode = _this26.nodeInfo.nextNode[0].processDefId;
22905
+ if (_this27.nodeInfo.nextNode.length) {
22906
+ _this27.nodeInfo.nextNode = _this27.nodeInfo.nextNode[0].processDefId;
22753
22907
  } else {
22754
22908
  if (data.definitionList.length != 0) {
22755
- _this26.nodeInfo.nextNode = data.definitionList[0].processDefId;
22909
+ _this27.nodeInfo.nextNode = data.definitionList[0].processDefId;
22756
22910
  } else {
22757
- _this26.nodeInfo.nextNode = '';
22911
+ _this27.nodeInfo.nextNode = '';
22758
22912
  }
22759
22913
  }
22760
- if (_this26.nodeInfo.nextNode) {
22761
- _this26.handleChange(_this26.nodeInfo.nextNode);
22914
+ if (_this27.nodeInfo.nextNode) {
22915
+ _this27.handleChange(_this27.nodeInfo.nextNode);
22762
22916
  }
22763
22917
  }
22764
22918
  } else {
22765
- _this26.$message.error(message || '系统错误,请联系管理员!');
22919
+ _this27.$message.error(message || '系统错误,请联系管理员!');
22766
22920
  }
22767
22921
  }).catch(function (err) {
22768
- _this26.loading.close();
22922
+ _this27.loading.close();
22769
22923
  if (err.message && err.message !== 'canceled') {
22770
- _this26.$message.error(err.message);
22924
+ _this27.$message.error(err.message);
22771
22925
  }
22772
22926
  });
22773
22927
  },
22774
22928
 
22775
- /**
22776
- * getPendedhistoryList
22777
- * @desc:获取流程列表
22778
- * @author liufan
22779
- * @date 2022年5月25日
22929
+ /**
22930
+ * getPendedhistoryList
22931
+ * @desc:获取流程列表
22932
+ * @author liufan
22933
+ * @date 2022年5月25日
22780
22934
  **/
22781
22935
  getPendedhistoryList: function getPendedhistoryList() {
22782
- var _this27 = this;
22936
+ var _this28 = this;
22783
22937
 
22784
22938
  var params = {
22785
22939
  apprecordId: this.businessIds,
22786
22940
  userId: util["a" /* default */].getStorage('userId'),
22787
22941
  type: 2
22788
22942
  };
22789
- util["a" /* default */].ajax({ url: api["ib" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
22943
+ util["a" /* default */].ajax({ url: api["lb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
22790
22944
  var rCode = res.rCode,
22791
22945
  msg = res.msg,
22792
22946
  results = res.results;
22793
22947
 
22794
22948
  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();
22949
+ _this28.nextNode.nextUserId = [];
22950
+ _this28.showNews = false;
22951
+ _this28.nextNode.notificationType = [];
22952
+ _this28.pendingId = results[results.length - 1].attachId;
22953
+ _this28.getHedInfo();
22800
22954
  } else {
22801
- _this27.$message.error(msg || '系统错误,请联系管理员!');
22955
+ _this28.$message.error(msg || '系统错误,请联系管理员!');
22802
22956
  }
22803
22957
  }).catch(function (err) {
22804
22958
  if (err.message && err.message !== 'canceled') {
22805
- _this27.$message.error(err.message);
22959
+ _this28.$message.error(err.message);
22806
22960
  }
22807
22961
  });
22808
22962
  },
22963
+ reqCircularRead: function reqCircularRead(type) {
22964
+ var _this29 = this;
22965
+
22966
+ var _that = this;
22967
+ var params = {
22968
+ url: api["e" /* checkForeignOrgStartedCircularRead */],
22969
+ params: {
22970
+ foreignOrgObj: _that.nextNode.nextOtherOrgObj,
22971
+ circularReadProcessKey: _that.taskExamineInfo.processDefinitionId,
22972
+ currentBusinessId: _that.taskExamineInfo.businessId
22973
+ }
22974
+ };
22975
+ this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
22976
+ util["a" /* default */].ajax(params).then(function (res) {
22977
+ _this29.loading.close();
22978
+ if (res.rCode == 0) {
22979
+ if (res.results.alert) {
22980
+ _that.$confirm(res.results.message, {
22981
+ confirmButtonText: '确定',
22982
+ cancelButtonText: '取消',
22983
+ type: 'warning'
22984
+ }).then(function () {
22985
+ _that.subMit(res.results, type);
22986
+ }).catch(function () {});
22987
+ } else {
22988
+ _that.sendData(type);
22989
+ }
22990
+ }
22991
+ });
22992
+ },
22993
+ subMit: function subMit(res, type) {
22994
+ if (res.status == 'forbiddenForeignOrg' && this.nextNode.nextCurrentOrgObj.length != 0 || res.status == 'availableForeignOrg') {
22995
+ this.sendData(type);
22996
+ }
22997
+ },
22809
22998
 
22810
22999
  // 提交流程
22811
- /**
22812
- * subProcess
22813
- * @desc:提交流程
22814
- * @author liufan
22815
- * @param {String} formName 当前form表单ref值
22816
- * @date 2022年5月25日
23000
+ /**
23001
+ * subProcess
23002
+ * @desc:提交流程
23003
+ * @author liufan
23004
+ * @param {String} formName 当前form表单ref值
23005
+ * @date 2022年5月25日
22817
23006
  **/
22818
23007
  subProcess: function subProcess(val, type) {
22819
- var _this28 = this;
23008
+ var _this30 = this;
22820
23009
 
22821
23010
  return this.$refs['nextNode'].validate(function (valid) {
22822
23011
  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;
23012
+ if (_this30.isSubmitButtonShowAgreeAndDisagree == 1) {
23013
+ _this30.value = _this30.value.replace(RegExp('不同意。', 'g'), '');
23014
+ _this30.value = _this30.value.replace(RegExp('同意。', 'g'), '');
23015
+ _this30.value = val + _this30.value;
22827
23016
  }
22828
- if (!_this28.validInfo()) {
22829
- _this28.freeValid = false;
23017
+ if (!_this30.validInfo()) {
23018
+ _this30.freeValid = false;
22830
23019
  return;
22831
23020
  } else {
22832
- _this28.freeValid = true;
23021
+ _this30.freeValid = true;
23022
+ }
23023
+ if (_this30.currentNodeIsCircularReadNode && _this30.nextNode.nextOtherOrgObj.length != 0) {
23024
+ _this30.reqCircularRead(type);
23025
+ return;
22833
23026
  }
22834
23027
  if (type == 'multiInsMidwayWithSubmitScene') {
22835
- _this28.sendData(type);
23028
+ _this30.sendData(type);
22836
23029
  return;
22837
23030
  }
22838
- if (_this28.beforeSubmit == undefined) {
22839
- _this28.subFun(_this28.sendData);
23031
+ if (_this30.beforeSubmit == undefined) {
23032
+ _this30.subFun(_this30.sendData);
22840
23033
  } else {
22841
- _this28.beforeSubmit(1).then(function (next) {
22842
- _this28.sendData();
23034
+ _this30.beforeSubmit(1).then(function (next) {
23035
+ _this30.sendData();
22843
23036
  }).catch(function (e) {});
22844
23037
  }
22845
23038
  }
@@ -22884,7 +23077,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22884
23077
  return true;
22885
23078
  },
22886
23079
  sendData: function sendData(freetype) {
22887
- var _this29 = this;
23080
+ var _this31 = this;
22888
23081
 
22889
23082
  this.$refs['nextNode'].validate(function () {
22890
23083
  var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
@@ -22894,57 +23087,57 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22894
23087
  switch (_context.prev = _context.next) {
22895
23088
  case 0:
22896
23089
  if (!valid) {
22897
- _context.next = 49;
23090
+ _context.next = 50;
22898
23091
  break;
22899
23092
  }
22900
23093
 
22901
- if (!_this29.isFlow) {
23094
+ if (!_this31.isFlow) {
22902
23095
  _context.next = 3;
22903
23096
  break;
22904
23097
  }
22905
23098
 
22906
- return _context.abrupt('return', _this29.handleVisible = true);
23099
+ return _context.abrupt('return', _this31.handleVisible = true);
22907
23100
 
22908
23101
  case 3:
22909
23102
  nextUserId = [];
22910
23103
 
22911
- if (_this29.multiple) {
22912
- _this29.nextNode.nextUserId && _this29.nextNode.nextUserId.map(function (item) {
23104
+ if (_this31.multiple) {
23105
+ _this31.nextNode.nextUserId && _this31.nextNode.nextUserId.map(function (item) {
22913
23106
  return nextUserId.push(item);
22914
23107
  });
22915
23108
  }
22916
23109
  addSignUserId = [];
22917
23110
 
22918
- if (_this29.isCanAddSign && _this29.nextNode.isAddSign == '1') {
22919
- _this29.nextNode.addSignUserId.map(function (item) {
23111
+ if (_this31.isCanAddSign && _this31.nextNode.isAddSign == '1') {
23112
+ _this31.nextNode.addSignUserId.map(function (item) {
22920
23113
  addSignUserId.push(item);
22921
23114
  });
22922
23115
  }
22923
23116
  removeSignUserId = [];
22924
23117
 
22925
- if (_this29.isCanRemoveSign && _this29.nextNode.isRemoveSign == '1') {
22926
- _this29.nextNode.removeSignUserId.map(function (item) {
23118
+ if (_this31.isCanRemoveSign && _this31.nextNode.isRemoveSign == '1') {
23119
+ _this31.nextNode.removeSignUserId.map(function (item) {
22927
23120
  removeSignUserId.push(item);
22928
23121
  });
22929
23122
  }
22930
23123
  str = '';
22931
23124
 
22932
- if (_this29.value) {
22933
- str = _this29.value.replace(/\s+/g, '');
23125
+ if (_this31.value) {
23126
+ str = _this31.value.replace(/\s+/g, '');
22934
23127
  }
22935
- if ((!_this29.value || str === '') && _this29.nodeDefaultSubmitOpinion) {
22936
- _this29.value = _this29.nodeDefaultSubmitOpinion;
23128
+ if ((!_this31.value || str === '') && _this31.nodeDefaultSubmitOpinion) {
23129
+ _this31.value = _this31.nodeDefaultSubmitOpinion;
22937
23130
  }
22938
- if (!_this29.isSpecial) {
22939
- delete _this29.nextNode.nextOperate;
22940
- delete _this29.nextNode.nextNodeId;
23131
+ if (!_this31.isSpecial) {
23132
+ delete _this31.nextNode.nextOperate;
23133
+ delete _this31.nextNode.nextNodeId;
22941
23134
  }
22942
- if (_this29.nextNode.nextOperate === 9) {
22943
- _this29.nextNode.isReturnRejectNode = 1;
22944
- _this29.nextNode.processDefinitionId = _this29.processObj.taskExamine.processDefinitionId;
23135
+ if (_this31.nextNode.nextOperate === 9) {
23136
+ _this31.nextNode.isReturnRejectNode = 1;
23137
+ _this31.nextNode.processDefinitionId = _this31.processObj.taskExamine.processDefinitionId;
22945
23138
  }
22946
- if (_this29.nextNode.nextOperate != 0 && _this29.nextNode.nextOperate != 1) {
22947
- delete _this29.nextNode.nextNodeId;
23139
+ if (_this31.nextNode.nextOperate != 0 && _this31.nextNode.nextOperate != 1) {
23140
+ delete _this31.nextNode.nextNodeId;
22948
23141
  }
22949
23142
 
22950
23143
  if (!(freetype != 'multiInsMidwayWithSubmitScene')) {
@@ -22953,54 +23146,57 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22953
23146
  }
22954
23147
 
22955
23148
  _context.next = 18;
22956
- return _this29.saveInfo('subMit');
23149
+ return _this31.saveInfo('subMit');
22957
23150
 
22958
23151
  case 18:
22959
- _this29.loading = util["a" /* default */].loading(_this29.$loading, '加载中...');
23152
+ _this31.loading = util["a" /* default */].loading(_this31.$loading, '加载中...');
22960
23153
 
22961
23154
  case 19:
22962
23155
  notificationType = '';
22963
23156
 
22964
- notificationType = _this29.nextNode.notificationType.join(',');
23157
+ notificationType = _this31.nextNode.notificationType.join(',');
22965
23158
  addSignUserId = addSignUserId.join(',');
22966
23159
  removeSignUserId = removeSignUserId.join(',');
22967
- if (!_this29.isCanPreAddSign || _this29.nextNode.isAddSign != '1') {
22968
- delete _this29.nextNode.addSignMode;
23160
+ if (!_this31.isCanPreAddSign || _this31.nextNode.isAddSign != '1') {
23161
+ delete _this31.nextNode.addSignMode;
22969
23162
  }
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,
23163
+ params = mainvue_type_script_lang_js_extends({}, _this31.nextNode, {
23164
+ pendingId: _this31.pendingId,
23165
+ opinion: _this31.isForceDisplayDefaultOptionForPrefix && !_this31.value.startsWith(_this31.nodeDefaultSubmitOpinion) ? _this31.nodeDefaultSubmitOpinion + _this31.value : _this31.value,
22973
23166
  userId: util["a" /* default */].getStorage('userId'),
22974
- nextUserId: _this29.multiple ? nextUserId.join(',') : _this29.nextNode.nextUserId,
23167
+ nextUserId: _this31.multiple ? nextUserId.join(',') : _this31.nextNode.nextUserId,
22975
23168
  addSignUserId: addSignUserId,
22976
- customPresetUserJson: JSON.stringify(_this29.presetList),
22977
- presetUserJson: JSON.stringify(_this29.presetUserJson),
23169
+ customPresetUserJson: JSON.stringify(_this31.presetList),
23170
+ presetUserJson: JSON.stringify(_this31.presetUserJson),
22978
23171
  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(','),
23172
+ nextReadUserId: _this31.readMultiple ? _this31.mixReadList && _this31.mixReadList.join('|') : _this31.nextNode.nextReadUserId,
23173
+ nextOrgId: !_this31.isShowNextUser ? _this31.multiple ? _this31.mixOrgIdList && _this31.mixOrgIdList.join('|') : _this31.nextNode.nextOrgId : '',
23174
+ presetReadUserId: _this31.mixPresetList && _this31.mixPresetList.length > 0 ? _this31.mixPresetList.join('|') : _this31.nextNode.presetReadUserId.join(','),
22982
23175
  notificationType: notificationType
22983
23176
  });
22984
23177
 
22985
- if (_this29.activeNames != '1') delete params.customPresetUserJson;
22986
- if (_this29.nextNode.isRemoveSign != '1') {
23178
+ if (_this31.activeNames != '1') delete params.customPresetUserJson;
23179
+ if (_this31.nextNode.isRemoveSign != '1') {
22987
23180
  delete params.removeSignUserId;
22988
23181
  }
22989
- if (_this29.nextNode.isAddSign != '1') {
23182
+ if (_this31.nextNode.isAddSign != '1') {
22990
23183
  delete params.addSignUserId;
22991
23184
  }
23185
+ if (!_this31.isSpecial) {
23186
+ delete params.nextUserId;
23187
+ }
22992
23188
 
22993
23189
  if (!(freetype === 'multiInsMidwayWithSubmitScene')) {
22994
- _context.next = 31;
23190
+ _context.next = 32;
22995
23191
  break;
22996
23192
  }
22997
23193
 
22998
- _this29.taskParams = params;
23194
+ _this31.taskParams = params;
22999
23195
  return _context.abrupt('return');
23000
23196
 
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;
23197
+ case 32:
23198
+ _this31.loading = util["a" /* default */].loading(_this31.$loading, '提交中...');
23199
+ 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
23200
 
23005
23201
  params.isEndUserTask = isEndUserTask;
23006
23202
  params.choiceOrgId = choiceOrgId;
@@ -23018,34 +23214,34 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23018
23214
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
23019
23215
  }
23020
23216
 
23021
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23217
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Hb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23022
23218
  var status = res.status,
23023
23219
  message = res.message;
23024
23220
 
23025
- _this29.loading.close();
23221
+ _this31.loading.close();
23026
23222
  if (status === 'success') {
23027
- _this29.$message.success('提交成功');
23028
- _this29.$emit('success');
23223
+ _this31.$message.success('提交成功');
23224
+ _this31.$emit('success');
23029
23225
  } else {
23030
- _this29.$message.error(message || '系统错误,请联系管理员!');
23031
- _this29.$emit('error');
23226
+ _this31.$message.error(message || '系统错误,请联系管理员!');
23227
+ _this31.$emit('error');
23032
23228
  }
23033
23229
  }).catch(function (err) {
23034
- _this29.loading.close();
23230
+ _this31.loading.close();
23035
23231
  if (err.message && err.message !== 'canceled') {
23036
- _this29.$message.error(err.message);
23232
+ _this31.$message.error(err.message);
23037
23233
  }
23038
23234
  }));
23039
23235
 
23040
- case 49:
23236
+ case 50:
23041
23237
  return _context.abrupt('return', false);
23042
23238
 
23043
- case 50:
23239
+ case 51:
23044
23240
  case 'end':
23045
23241
  return _context.stop();
23046
23242
  }
23047
23243
  }
23048
- }, _callee, _this29);
23244
+ }, _callee, _this31);
23049
23245
  }));
23050
23246
 
23051
23247
  return function (_x) {