eoss-ui 0.6.45 → 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 (278) hide show
  1. package/lib/button-group.js +136 -116
  2. package/lib/button.js +136 -116
  3. package/lib/checkbox-group.js +138 -118
  4. package/lib/config/api.js +14 -1
  5. package/lib/data-table-form.js +138 -118
  6. package/lib/data-table.js +141 -121
  7. package/lib/date-picker.js +136 -116
  8. package/lib/dialog.js +136 -116
  9. package/lib/enable-drag.js +4 -13
  10. package/lib/eoss-ui.common.js +2394 -1397
  11. package/lib/flow-group.js +136 -116
  12. package/lib/flow-list.js +467 -271
  13. package/lib/flow.js +1502 -870
  14. package/lib/form.js +159 -148
  15. package/lib/handle-user.js +137 -117
  16. package/lib/handler.js +161 -125
  17. package/lib/icon.js +137 -117
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +136 -116
  20. package/lib/input.js +136 -116
  21. package/lib/login.js +150 -130
  22. package/lib/main.js +499 -309
  23. package/lib/nav.js +136 -116
  24. package/lib/notify.js +139 -119
  25. package/lib/page.js +136 -116
  26. package/lib/pagination.js +136 -116
  27. package/lib/player.js +136 -116
  28. package/lib/qr-code.js +149 -129
  29. package/lib/radio-group.js +138 -118
  30. package/lib/retrial-auth.js +140 -120
  31. package/lib/select-ganged.js +138 -118
  32. package/lib/select.js +138 -118
  33. package/lib/selector-panel.js +154 -134
  34. package/lib/selector.js +137 -117
  35. package/lib/sizer.js +138 -118
  36. package/lib/steps.js +136 -116
  37. package/lib/switch.js +136 -116
  38. package/lib/table-form.js +161 -121
  39. package/lib/tabs.js +136 -116
  40. package/lib/theme-chalk/flow.css +1 -1
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/tips.js +137 -117
  43. package/lib/tree-group.js +136 -116
  44. package/lib/tree.js +137 -117
  45. package/lib/upload.js +155 -134
  46. package/lib/wujie.js +136 -116
  47. package/lib/wxlogin.js +136 -116
  48. package/package.json +159 -159
  49. package/packages/button/index.js +5 -5
  50. package/packages/button/src/main.vue +418 -418
  51. package/packages/button-group/index.js +5 -5
  52. package/packages/button-group/src/main.vue +298 -298
  53. package/packages/calendar/index.js +5 -5
  54. package/packages/card/index.js +5 -5
  55. package/packages/card/src/main.vue +156 -156
  56. package/packages/cascader/index.js +5 -5
  57. package/packages/cascader/src/main.vue +168 -168
  58. package/packages/checkbox-group/index.js +5 -5
  59. package/packages/checkbox-group/src/main.vue +333 -333
  60. package/packages/clients/index.js +5 -5
  61. package/packages/clients/src/main.vue +144 -144
  62. package/packages/data-table/index.js +5 -5
  63. package/packages/data-table/src/children.vue +39 -39
  64. package/packages/data-table/src/column.vue +989 -989
  65. package/packages/data-table/src/main.vue +1822 -1822
  66. package/packages/data-table/src/sizer.vue +195 -195
  67. package/packages/data-table-form/index.js +5 -5
  68. package/packages/data-table-form/src/checkbox.vue +101 -101
  69. package/packages/data-table-form/src/colgroup.vue +17 -17
  70. package/packages/data-table-form/src/main.vue +181 -181
  71. package/packages/data-table-form/src/radio.vue +65 -65
  72. package/packages/data-table-form/src/table.vue +233 -233
  73. package/packages/data-table-form/src/tbody.vue +336 -336
  74. package/packages/data-table-form/src/thead.vue +68 -68
  75. package/packages/date-picker/index.js +5 -5
  76. package/packages/date-picker/src/main.vue +236 -236
  77. package/packages/dialog/index.js +5 -5
  78. package/packages/enable-drag/index.js +5 -5
  79. package/packages/enable-drag/src/main.vue +1 -8
  80. package/packages/enterprise/index.js +5 -5
  81. package/packages/enterprise/src/main.vue +66 -66
  82. package/packages/error-page/index.js +5 -5
  83. package/packages/error-page/src/main.vue +44 -44
  84. package/packages/flow/index.js +5 -5
  85. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  86. package/packages/flow/src/component/CustomPreset.vue +322 -322
  87. package/packages/flow/src/component/FileList.vue +99 -99
  88. package/packages/flow/src/component/Preset.vue +255 -255
  89. package/packages/flow/src/component/SendMsg.vue +229 -229
  90. package/packages/flow/src/component/TimeLimit.vue +190 -190
  91. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  92. package/packages/flow/src/form.vue +121 -121
  93. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  94. package/packages/flow/src/main.vue +3100 -2952
  95. package/packages/flow/src/processForm.vue +1031 -1018
  96. package/packages/flow/src/processReject.vue +293 -293
  97. package/packages/flow/src/reset.vue +899 -899
  98. package/packages/flow/src/startTaskRead.vue +597 -596
  99. package/packages/flow/src/supervise.vue +138 -0
  100. package/packages/flow/src/table.vue +58 -58
  101. package/packages/flow-group/index.js +5 -5
  102. package/packages/flow-group/src/main.vue +688 -688
  103. package/packages/flow-list/index.js +5 -5
  104. package/packages/flow-list/src/main.vue +1411 -1183
  105. package/packages/form/index.js +5 -5
  106. package/packages/form/src/main.vue +3583 -3584
  107. package/packages/form/src/table.vue +1426 -1420
  108. package/packages/handle-user/index.js +5 -5
  109. package/packages/handle-user/src/main.vue +138 -138
  110. package/packages/handler/index.js +5 -5
  111. package/packages/handler/src/main.vue +491 -474
  112. package/packages/icon/index.js +5 -5
  113. package/packages/icon/src/main.vue +101 -101
  114. package/packages/icons/index.js +5 -5
  115. package/packages/icons/src/main.vue +81 -81
  116. package/packages/input/index.js +5 -5
  117. package/packages/input/src/main.vue +356 -356
  118. package/packages/input-number/index.js +5 -5
  119. package/packages/input-number/src/main.vue +106 -106
  120. package/packages/label/index.js +5 -5
  121. package/packages/label/src/main.vue +457 -457
  122. package/packages/layout/index.js +5 -5
  123. package/packages/layout/src/item.vue +152 -152
  124. package/packages/layout/src/main.vue +31 -31
  125. package/packages/login/index.js +5 -5
  126. package/packages/login/src/main.vue +1935 -1935
  127. package/packages/login/src/resetPassword.vue +562 -562
  128. package/packages/main/index.js +5 -5
  129. package/packages/main/src/default/index.vue +231 -67
  130. package/packages/main/src/default/message.vue +249 -249
  131. package/packages/main/src/default/notice.vue +157 -157
  132. package/packages/main/src/default/userinfo.vue +505 -505
  133. package/packages/main/src/public/online.vue +89 -89
  134. package/packages/main/src/public/search.vue +461 -461
  135. package/packages/main/src/public/settings.vue +221 -221
  136. package/packages/main/src/simplicity/apps.vue +388 -388
  137. package/packages/main/src/simplicity/avatar.vue +82 -82
  138. package/packages/main/src/simplicity/handler.vue +259 -259
  139. package/packages/main/src/simplicity/index.vue +2049 -2044
  140. package/packages/main/src/simplicity/lists.vue +84 -84
  141. package/packages/main/src/simplicity/menu-list.vue +128 -128
  142. package/packages/main/src/simplicity/message.vue +259 -259
  143. package/packages/main/src/simplicity/notice.vue +190 -190
  144. package/packages/main/src/simplicity/router-page.vue +45 -45
  145. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  146. package/packages/main/src/simplicity/user.vue +257 -257
  147. package/packages/main/src/simplicity/userinfo.vue +312 -312
  148. package/packages/menu/index.js +5 -5
  149. package/packages/menu/src/main.vue +536 -536
  150. package/packages/nav/index.js +5 -5
  151. package/packages/nav/src/main.vue +351 -351
  152. package/packages/notify/index.js +5 -5
  153. package/packages/notify/src/main.vue +538 -538
  154. package/packages/page/index.js +5 -5
  155. package/packages/page/src/main.vue +167 -167
  156. package/packages/pagination/index.js +5 -5
  157. package/packages/pagination/src/main.vue +96 -96
  158. package/packages/player/index.js +5 -5
  159. package/packages/player/src/main.vue +194 -194
  160. package/packages/qr-code/index.js +5 -5
  161. package/packages/qr-code/src/main.vue +170 -170
  162. package/packages/radio-group/index.js +6 -6
  163. package/packages/radio-group/src/main.vue +319 -319
  164. package/packages/retrial-auth/index.js +5 -5
  165. package/packages/retrial-auth/src/main.vue +280 -280
  166. package/packages/select/index.js +5 -5
  167. package/packages/select/src/main.vue +775 -775
  168. package/packages/select-ganged/index.js +5 -5
  169. package/packages/select-ganged/src/main.vue +724 -724
  170. package/packages/selector/index.js +5 -5
  171. package/packages/selector/src/main.vue +689 -689
  172. package/packages/selector-panel/index.js +5 -5
  173. package/packages/selector-panel/src/main.vue +1027 -1027
  174. package/packages/selector-panel/src/selection.vue +177 -177
  175. package/packages/selector-panel/src/tree.vue +129 -129
  176. package/packages/sizer/index.js +5 -5
  177. package/packages/sizer/src/main.vue +254 -254
  178. package/packages/steps/index.js +5 -5
  179. package/packages/steps/src/main.vue +181 -181
  180. package/packages/switch/index.js +5 -5
  181. package/packages/switch/src/main.vue +154 -154
  182. package/packages/table-form/index.js +5 -5
  183. package/packages/tabs/index.js +5 -5
  184. package/packages/tabs/src/main.vue +788 -788
  185. package/packages/tabs-panel/index.js +5 -5
  186. package/packages/tabs-panel/src/main.vue +29 -29
  187. package/packages/theme-chalk/lib/flow.css +1 -1
  188. package/packages/theme-chalk/lib/index.css +1 -1
  189. package/packages/theme-chalk/src/base.scss +260 -260
  190. package/packages/theme-chalk/src/button-group.scss +175 -175
  191. package/packages/theme-chalk/src/button.scss +24 -24
  192. package/packages/theme-chalk/src/calendar.scss +113 -113
  193. package/packages/theme-chalk/src/card.scss +99 -99
  194. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  195. package/packages/theme-chalk/src/clients.scss +87 -87
  196. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  197. package/packages/theme-chalk/src/data-table.scss +293 -293
  198. package/packages/theme-chalk/src/date-picker.scss +7 -7
  199. package/packages/theme-chalk/src/dialog.scss +77 -77
  200. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  201. package/packages/theme-chalk/src/enterprise.scss +5 -5
  202. package/packages/theme-chalk/src/error-page.scss +18 -18
  203. package/packages/theme-chalk/src/flow-group.scss +110 -110
  204. package/packages/theme-chalk/src/flow-list.scss +36 -36
  205. package/packages/theme-chalk/src/flow.scss +325 -318
  206. package/packages/theme-chalk/src/form.scss +496 -496
  207. package/packages/theme-chalk/src/handle-user.scss +40 -40
  208. package/packages/theme-chalk/src/handler.scss +143 -143
  209. package/packages/theme-chalk/src/icon.scss +1789 -1789
  210. package/packages/theme-chalk/src/icons.scss +99 -99
  211. package/packages/theme-chalk/src/input.scss +9 -9
  212. package/packages/theme-chalk/src/label.scss +24 -24
  213. package/packages/theme-chalk/src/layout.scss +46 -46
  214. package/packages/theme-chalk/src/login.scss +969 -969
  215. package/packages/theme-chalk/src/main.scss +656 -656
  216. package/packages/theme-chalk/src/menu.scss +222 -222
  217. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  218. package/packages/theme-chalk/src/nav.scss +111 -111
  219. package/packages/theme-chalk/src/page.scss +3 -3
  220. package/packages/theme-chalk/src/pagination.scss +29 -29
  221. package/packages/theme-chalk/src/player.scss +9 -9
  222. package/packages/theme-chalk/src/qr-code.scss +17 -17
  223. package/packages/theme-chalk/src/radio-group.scss +9 -9
  224. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  225. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  226. package/packages/theme-chalk/src/select.scss +8 -8
  227. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  228. package/packages/theme-chalk/src/selector.scss +91 -91
  229. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  230. package/packages/theme-chalk/src/sizer.scss +36 -36
  231. package/packages/theme-chalk/src/steps.scss +88 -88
  232. package/packages/theme-chalk/src/switch.scss +3 -3
  233. package/packages/theme-chalk/src/table-form.scss +1 -1
  234. package/packages/theme-chalk/src/tabs.scss +87 -87
  235. package/packages/theme-chalk/src/tips.scss +7 -7
  236. package/packages/theme-chalk/src/toolbar.scss +179 -179
  237. package/packages/theme-chalk/src/tree-group.scss +72 -72
  238. package/packages/theme-chalk/src/tree.scss +165 -165
  239. package/packages/theme-chalk/src/upload.scss +167 -167
  240. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  241. package/packages/tips/index.js +5 -5
  242. package/packages/tips/src/main.vue +141 -141
  243. package/packages/toolbar/index.js +5 -5
  244. package/packages/toolbar/src/main.vue +430 -430
  245. package/packages/tree/index.js +5 -5
  246. package/packages/tree-group/index.js +5 -5
  247. package/packages/upload/index.js +5 -5
  248. package/packages/upload/src/main.vue +1335 -1334
  249. package/packages/upload/src/picture.js +15 -15
  250. package/packages/wujie/index.js +5 -5
  251. package/packages/wujie/src/main.vue +145 -145
  252. package/packages/wxlogin/index.js +5 -5
  253. package/packages/wxlogin/src/main.vue +128 -128
  254. package/src/config/api.js +281 -248
  255. package/src/config/image.js +2 -2
  256. package/src/index.js +160 -160
  257. package/src/utils/bus.js +3 -3
  258. package/src/utils/date-util.js +312 -312
  259. package/src/utils/http.js +50 -50
  260. package/src/utils/rules.js +18 -18
  261. package/src/utils/store.js +21 -21
  262. package/src/utils/webSocket.js +107 -107
  263. package/packages/.DS_Store +0 -0
  264. package/packages/data-table/.DS_Store +0 -0
  265. package/packages/data-table-form/.DS_Store +0 -0
  266. package/packages/error-page/.DS_Store +0 -0
  267. package/packages/flow/.DS_Store +0 -0
  268. package/packages/form/.DS_Store +0 -0
  269. package/packages/login/.DS_Store +0 -0
  270. package/packages/main/.DS_Store +0 -0
  271. package/packages/main/src/.DS_Store +0 -0
  272. package/packages/selector/.DS_Store +0 -0
  273. package/packages/selector-panel/.DS_Store +0 -0
  274. package/packages/sizer/.DS_Store +0 -0
  275. package/packages/tabs/.DS_Store +0 -0
  276. package/packages/theme-chalk/src/.DS_Store +0 -0
  277. package/packages/upload/.DS_Store +0 -0
  278. package/src/.DS_Store +0 -0
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,140 +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__, "kc", 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__, "fc", 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__, "ec", 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__, "jc", function() { return uploads; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", 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__, "ic", 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__, "gc", 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__, "dc", 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__, "lc", function() { return wss; });
3577
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", 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__, "Xb", 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__, "Yb", 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__, "Wb", 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__, "Gb", function() { return taskStartDraft; });
3595
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskUnionSeal; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTwoOfficesDispatch; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return twoOfficesDispatch; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskContinuation; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getFreeStartFlowParams; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return freeStartFlowWithSubmitTask; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sendList; });
3608
- /* 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; });
3609
3616
  /* unused harmony export sendSave */
3610
3617
  /* unused harmony export sendUpdate */
3611
3618
  /* unused harmony export sendDelete */
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendBatch; });
3613
- /* 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; });
3614
3621
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3615
3622
  // 登录
3616
3623
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3807,7 +3814,10 @@ var toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
3807
3814
  var taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
3808
3815
  // 稿件递送
3809
3816
  var toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
3810
-
3817
+ // 获取督办页面信息
3818
+ var toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
3819
+ // 督办提交
3820
+ var toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
3811
3821
  // 稿件递送提交接口
3812
3822
  // export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
3813
3823
  var taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
@@ -3835,6 +3845,16 @@ var taskContinuation = '/bpm/task/taskHandle/taskContinuation.dhtml';
3835
3845
  var getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
3836
3846
  // 自由发起流程提交
3837
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';
3838
3858
  // notifySend 消息发送
3839
3859
  var sendList = '/notify2/notifySendRecord/listJson';
3840
3860
  var sendInfo = '/notify2/notifySendRecord/info';
@@ -4280,7 +4300,7 @@ var util = __webpack_require__(0);
4280
4300
 
4281
4301
  var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
4282
4302
  var params = {
4283
- url: api["g" /* delAdjunct */],
4303
+ url: api["j" /* delAdjunct */],
4284
4304
  params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
4285
4305
  };
4286
4306
  util["a" /* default */].ajax(params).then(function (res) {
@@ -4347,7 +4367,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4347
4367
  // ESM COMPAT FLAG
4348
4368
  __webpack_require__.r(__webpack_exports__);
4349
4369
 
4350
- // 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=aca8921c&
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&
4351
4371
  var render = function () {
4352
4372
  var _vm = this
4353
4373
  var _h = _vm.$createElement
@@ -4361,7 +4381,26 @@ var render = function () {
4361
4381
  style: _vm.styles,
4362
4382
  },
4363
4383
  [
4364
- _vm.newTypeCode == "reset" || _vm.newTypeCode == "continuation"
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"
4402
+ ? _c("Supervise", { attrs: { businessId: _vm.businessId } })
4403
+ : _vm.newTypeCode == "reset" || _vm.newTypeCode == "continuation"
4365
4404
  ? _c("reset", {
4366
4405
  staticStyle: { height: "100%" },
4367
4406
  attrs: {
@@ -4507,6 +4546,97 @@ var render = function () {
4507
4546
  ],
4508
4547
  1
4509
4548
  ),
4549
+ _c(
4550
+ "el-form",
4551
+ {
4552
+ directives: [
4553
+ {
4554
+ name: "show",
4555
+ rawName: "v-show",
4556
+ value: _vm.currentNodeIsCircularReadNode,
4557
+ expression: "currentNodeIsCircularReadNode",
4558
+ },
4559
+ ],
4560
+ ref: "nextNode",
4561
+ staticClass: "demo-dynamic",
4562
+ attrs: {
4563
+ model: _vm.isFlow ? _vm.nodeInfo : _vm.nextNode,
4564
+ "label-width": "120px",
4565
+ },
4566
+ },
4567
+ [
4568
+ _c(
4569
+ "el-form-item",
4570
+ {
4571
+ attrs: {
4572
+ prop: "nextCurrentOrgObj",
4573
+ label: _vm.currentOrgName
4574
+ ? _vm.currentOrgName
4575
+ : "本单位",
4576
+ },
4577
+ },
4578
+ [
4579
+ _c("SelectUser", {
4580
+ attrs: {
4581
+ nextUser: _vm.nextCurrentOrgObjSelect,
4582
+ multiple: "",
4583
+ mix: "",
4584
+ disableds: _vm.currentOrgDisabledObjId,
4585
+ types: ["employee", "persongroup"],
4586
+ params: { filid: _vm.userModel.orgId },
4587
+ },
4588
+ on: {
4589
+ change: function ($event) {
4590
+ _vm.disposeAppUnit(
4591
+ $event,
4592
+ "nextCurrentOrgObjSelect"
4593
+ )
4594
+ },
4595
+ },
4596
+ }),
4597
+ ],
4598
+ 1
4599
+ ),
4600
+ _c(
4601
+ "el-form-item",
4602
+ {
4603
+ attrs: {
4604
+ prop: "nextOtherOrgObj",
4605
+ label: _vm.otherOrgName
4606
+ ? _vm.otherOrgName
4607
+ : "外单位",
4608
+ },
4609
+ },
4610
+ [
4611
+ _c("SelectUser", {
4612
+ attrs: {
4613
+ nextUser: _vm.nextOtherOrgObjSelect,
4614
+ multiple: "",
4615
+ mix: "",
4616
+ disableds: _vm.otherOrgDisabledObjId,
4617
+ types: ["enterprise", "filgroupobj"],
4618
+ params: {
4619
+ filid: "all",
4620
+ roleid:
4621
+ _vm.circularReadParamsMap
4622
+ .circularReadOrgRoleCode,
4623
+ },
4624
+ },
4625
+ on: {
4626
+ change: function ($event) {
4627
+ _vm.disposeAppUnit(
4628
+ $event,
4629
+ "nextOtherOrgObjSelect"
4630
+ )
4631
+ },
4632
+ },
4633
+ }),
4634
+ ],
4635
+ 1
4636
+ ),
4637
+ ],
4638
+ 1
4639
+ ),
4510
4640
  _c(
4511
4641
  "div",
4512
4642
  {
@@ -6112,10 +6242,8 @@ var render = function () {
6112
6242
  _c(
6113
6243
  "el-button",
6114
6244
  {
6115
- staticStyle: {
6116
- width: "100%",
6117
- margin: "10px 0px",
6118
- },
6245
+ staticClass: "es-fenyue-buttons-yj",
6246
+ style: "margin: 10px 0px",
6119
6247
  attrs: { type: "primary", size: "medium" },
6120
6248
  on: {
6121
6249
  click: function ($event) {
@@ -6125,12 +6253,42 @@ var render = function () {
6125
6253
  },
6126
6254
  [_vm._v("\n 阅结\n ")]
6127
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
+ ),
6128
6283
  _vm.isCanFenyue == "1"
6129
6284
  ? _c(
6130
6285
  "el-button",
6131
6286
  {
6132
6287
  staticClass: "es-flow-btn",
6133
- staticStyle: { "margin-left": "0px" },
6288
+ staticStyle: {
6289
+ margin: "10px 0px",
6290
+ "margin-left": "10px",
6291
+ },
6134
6292
  attrs: { size: "medium" },
6135
6293
  on: { click: _vm.taskReadBtn },
6136
6294
  },
@@ -6177,6 +6335,7 @@ var render = function () {
6177
6335
  _vm.nodeInfo.nextNode,
6178
6336
  opinion: _vm.value,
6179
6337
  taskParams: _vm.taskParams,
6338
+ formType: _vm.processFormType,
6180
6339
  },
6181
6340
  on: {
6182
6341
  cancel: function ($event) {
@@ -6468,7 +6627,7 @@ var staticRenderFns = []
6468
6627
  render._withStripped = true
6469
6628
 
6470
6629
 
6471
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=aca8921c&
6630
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=52c26ca0&
6472
6631
 
6473
6632
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6474
6633
  var regenerator_ = __webpack_require__(14);
@@ -7051,7 +7210,7 @@ var util = __webpack_require__(0);
7051
7210
 
7052
7211
  this.loading = true;
7053
7212
  util["a" /* default */].ajax({
7054
- url: id ? api["s" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7213
+ url: id ? api["v" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7055
7214
  params: { id: id }
7056
7215
  }).then(function (res) {
7057
7216
  var status = res.status,
@@ -7281,27 +7440,27 @@ var _components;
7281
7440
  return validSate;
7282
7441
  },
7283
7442
 
7284
- /**
7285
- * changeOpinion
7286
- * @desc:监听意见变化
7287
- * @author liufan
7288
- * @date 2022年10月28日
7443
+ /**
7444
+ * changeOpinion
7445
+ * @desc:监听意见变化
7446
+ * @author liufan
7447
+ * @date 2022年10月28日
7289
7448
  **/
7290
7449
  changeOpinion: function changeOpinion() {
7291
7450
  this.$emit('change', this.form.value);
7292
7451
  },
7293
7452
 
7294
- /**
7295
- * getCommonOpion
7296
- * @desc:获取意见
7297
- * @author liufan
7298
- * @date 2022年5月25日
7453
+ /**
7454
+ * getCommonOpion
7455
+ * @desc:获取意见
7456
+ * @author liufan
7457
+ * @date 2022年5月25日
7299
7458
  **/
7300
7459
  getCommonOpion: function getCommonOpion() {
7301
7460
  var _this = this;
7302
7461
 
7303
7462
  util["a" /* default */].ajax({
7304
- url: api["f" /* commonOpion */],
7463
+ url: api["i" /* commonOpion */],
7305
7464
  params: {
7306
7465
  userId: util["a" /* default */].getStorage('userId')
7307
7466
  },
@@ -7324,31 +7483,31 @@ var _components;
7324
7483
  });
7325
7484
  },
7326
7485
 
7327
- /**
7328
- * upDate
7329
- * @desc:修改常用语
7330
- * @author liufan
7331
- * @param {Object} val 修改值
7332
- * @date 2022年5月25日
7486
+ /**
7487
+ * upDate
7488
+ * @desc:修改常用语
7489
+ * @author liufan
7490
+ * @param {Object} val 修改值
7491
+ * @date 2022年5月25日
7333
7492
  **/
7334
7493
  upDate: function upDate(val) {
7335
7494
  this.FormData.id = val.id;
7336
7495
  this.addVisible = true;
7337
7496
  },
7338
7497
 
7339
- /**
7340
- * selectChange
7341
- * @desc:常用语选择
7342
- * @author liufan
7343
- * @param {String} val 选中值
7344
- * @date 2022年5月25日
7498
+ /**
7499
+ * selectChange
7500
+ * @desc:常用语选择
7501
+ * @author liufan
7502
+ * @param {String} val 选中值
7503
+ * @date 2022年5月25日
7345
7504
  **/
7346
7505
  selectChange: function selectChange(val) {
7347
7506
  var _this2 = this;
7348
7507
 
7349
7508
  var that = this;
7350
7509
  util["a" /* default */].ajax({
7351
- url: api["x" /* findSysParam */],
7510
+ url: api["A" /* findSysParam */],
7352
7511
  params: { cpName: 'commonOpinionsSelectType' }
7353
7512
  }).then(function (res) {
7354
7513
  if (res.status == 'success') {
@@ -7360,12 +7519,12 @@ var _components;
7360
7519
  });
7361
7520
  },
7362
7521
 
7363
- /**
7364
- * del
7365
- * @desc:删除常用语
7366
- * @author liufan
7367
- * @param {Object} val 删除的数据
7368
- * @date 2022年5月25日
7522
+ /**
7523
+ * del
7524
+ * @desc:删除常用语
7525
+ * @author liufan
7526
+ * @param {Object} val 删除的数据
7527
+ * @date 2022年5月25日
7369
7528
  **/
7370
7529
  del: function del(val) {
7371
7530
  var _this3 = this;
@@ -7377,7 +7536,7 @@ var _components;
7377
7536
  }).then(function () {
7378
7537
  _this3.loading = util["a" /* default */].loading(_this3.$loading, '删除中...');
7379
7538
  util["a" /* default */].ajax({
7380
- url: api["h" /* deleteCommonOpion */],
7539
+ url: api["k" /* deleteCommonOpion */],
7381
7540
  params: {
7382
7541
  id: val.id
7383
7542
  }
@@ -7407,12 +7566,12 @@ var _components;
7407
7566
  }).catch(function (e) {});
7408
7567
  },
7409
7568
 
7410
- /**
7411
- * submit
7412
- * @desc:新增/编辑意见保存
7413
- * @author liufan
7414
- * @param {Object} val 保存数据
7415
- * @date 2022年5月25日
7569
+ /**
7570
+ * submit
7571
+ * @desc:新增/编辑意见保存
7572
+ * @author liufan
7573
+ * @param {Object} val 保存数据
7574
+ * @date 2022年5月25日
7416
7575
  **/
7417
7576
  submit: function submit(val) {
7418
7577
  var _this4 = this;
@@ -7426,7 +7585,7 @@ var _components;
7426
7585
  }
7427
7586
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
7428
7587
  util["a" /* default */].ajax({
7429
- url: data.id ? api["dc" /* updateCommonOpinion */] : api["sb" /* saveCommonOpinion */],
7588
+ url: data.id ? api["kc" /* updateCommonOpinion */] : api["wb" /* saveCommonOpinion */],
7430
7589
  data: info,
7431
7590
  header: { 'Content-Type': 'multipart/form-data' },
7432
7591
  method: 'post'
@@ -7477,8 +7636,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
7477
7636
  )
7478
7637
 
7479
7638
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
7480
- // 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&
7481
- 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 () {
7482
7641
  var _vm = this
7483
7642
  var _h = _vm.$createElement
7484
7643
  var _c = _vm._self._c || _h
@@ -7552,13 +7711,18 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
7552
7711
  ],
7553
7712
  1
7554
7713
  ),
7555
- _vm.isSinglePage || _vm.copyHistory
7714
+ _vm.isSinglePage ||
7715
+ _vm.copyHistory ||
7716
+ _vm.formType == "readTransfer"
7556
7717
  ? _c(
7557
7718
  "el-form-item",
7558
7719
  {
7559
7720
  attrs: {
7560
7721
  prop: "newOpinion",
7561
- label: _vm.copyHistory ? "填写意见" : "意见",
7722
+ label:
7723
+ _vm.copyHistory || _vm.formType == "readTransfer"
7724
+ ? "填写意见"
7725
+ : "意见",
7562
7726
  },
7563
7727
  },
7564
7728
  [
@@ -7566,7 +7730,10 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
7566
7730
  staticClass: "opinions",
7567
7731
  attrs: {
7568
7732
  opinion: _vm.nextNode.newOpinion,
7569
- rows: _vm.copyHistory ? 2 : 5,
7733
+ rows:
7734
+ _vm.copyHistory || _vm.formType == "readTransfer"
7735
+ ? 2
7736
+ : 5,
7570
7737
  },
7571
7738
  on: {
7572
7739
  change: function (val) {
@@ -8008,11 +8175,11 @@ var processFormvue_type_template_id_0829b0a1_render = function () {
8008
8175
  1
8009
8176
  )
8010
8177
  }
8011
- var processFormvue_type_template_id_0829b0a1_staticRenderFns = []
8012
- 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
8013
8180
 
8014
8181
 
8015
- // 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&
8016
8183
 
8017
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&
8018
8185
  var selectUservue_type_template_id_615d0e78_render = function () {
@@ -8350,7 +8517,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8350
8517
  newNextUser: [],
8351
8518
  newOptions: [],
8352
8519
  newSelectUserList: [],
8353
- url: api["W" /* handleInfo */],
8520
+ url: api["Z" /* handleInfo */],
8354
8521
  newCheckboxList: [],
8355
8522
  newPresetEdit: 0,
8356
8523
  newMultiple: false,
@@ -8467,7 +8634,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8467
8634
  if (query !== '') {
8468
8635
  this.searchLoading = true;
8469
8636
  util["a" /* default */].ajax({
8470
- url: api["W" /* handleInfo */],
8637
+ url: api["Z" /* handleInfo */],
8471
8638
  params: { searchKey: query, query: query, type: 'user' }
8472
8639
  }).then(function (res) {
8473
8640
  var status = res.status,
@@ -8882,7 +9049,7 @@ var CustomPresetvue_type_script_lang_js_components;
8882
9049
  nextNodeId: nodeId,
8883
9050
  businessId: this.id
8884
9051
  };
8885
- 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) {
8886
9053
  var status = res.status,
8887
9054
  message = res.message,
8888
9055
  _res$data = res.data,
@@ -8980,7 +9147,7 @@ var CustomPresetvue_type_script_lang_js_components;
8980
9147
 
8981
9148
  isNoStart && (this.newPresetList = []);
8982
9149
  var params = {
8983
- url: api["M" /* getPresetCustomInfo */],
9150
+ url: api["P" /* getPresetCustomInfo */],
8984
9151
  data: {
8985
9152
  nodeId: nodeId,
8986
9153
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -9334,7 +9501,7 @@ var Presetvue_type_script_lang_js_components;
9334
9501
  nodeId = this.nodeId;
9335
9502
 
9336
9503
  var params = {
9337
- url: api["N" /* getPresetNodeInfo */],
9504
+ url: api["Q" /* getPresetNodeInfo */],
9338
9505
  data: {
9339
9506
  nextNodeId: nextNodeId,
9340
9507
  processDefinitionId: processDefinitionId,
@@ -9772,6 +9939,10 @@ var processFormvue_type_script_lang_js_components;
9772
9939
  type: String,
9773
9940
  default: ''
9774
9941
  },
9942
+ formType: {
9943
+ type: String,
9944
+ default: 'freeStart'
9945
+ },
9775
9946
  id: {
9776
9947
  type: String,
9777
9948
  default: ''
@@ -9897,7 +10068,7 @@ var processFormvue_type_script_lang_js_components;
9897
10068
  this.getStartFlow(this.processDefinitionId);
9898
10069
  if (this.copyHistory) {
9899
10070
  this.nextNode.newOpinion = this.opinion;
9900
- } else {
10071
+ } else if (this.formType != 'readTransfer') {
9901
10072
  this.newOpinion = this.opinion;
9902
10073
  }
9903
10074
  },
@@ -9910,7 +10081,7 @@ var processFormvue_type_script_lang_js_components;
9910
10081
  if (mainConfig) {
9911
10082
  this.userModel = JSON.parse(mainConfig).userModel;
9912
10083
  } else {
9913
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
10084
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
9914
10085
  var status = res.status,
9915
10086
  data = res.data;
9916
10087
 
@@ -10015,7 +10186,7 @@ var processFormvue_type_script_lang_js_components;
10015
10186
  var _this2 = this;
10016
10187
 
10017
10188
  util["a" /* default */].ajax({
10018
- url: api["u" /* findCodeValues */],
10189
+ url: api["x" /* findCodeValues */],
10019
10190
  params: {
10020
10191
  ccCode: 'notification_type',
10021
10192
  userId: util["a" /* default */].getStorage('userId')
@@ -10044,7 +10215,7 @@ var processFormvue_type_script_lang_js_components;
10044
10215
  nodeId: this.nextNode.nextNode,
10045
10216
  businessId: this.id
10046
10217
  };
10047
- 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) {
10048
10219
  if (res.status === 'success') {
10049
10220
  _this3.nextNode.noticeInfo = res.message;
10050
10221
  }
@@ -10116,7 +10287,7 @@ var processFormvue_type_script_lang_js_components;
10116
10287
  opinion: _this4.newOpinion || newOpinion
10117
10288
  };
10118
10289
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
10119
- if (_this4.isFreeStartFlow) {
10290
+ if (_this4.isFreeStartFlow || _this4.formType === 'readTransfer') {
10120
10291
  var newParm = {};
10121
10292
  newParm.copyHistory = _this4.copyHistory === 'needCopyPendedHistory';
10122
10293
  newParm.startFlowParamJson = params;
@@ -10127,11 +10298,19 @@ var processFormvue_type_script_lang_js_components;
10127
10298
  _this4.taskParams[key] = _this4.taskParams[key].length > 0 ? _this4.taskParams[key].join(',') : '';
10128
10299
  }
10129
10300
  }
10301
+
10130
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
+ }
10131
10310
  params = newParm;
10132
10311
  }
10133
10312
  util["a" /* default */].ajax({
10134
- 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 */],
10135
10314
  method: 'post',
10136
10315
  data: params
10137
10316
  }).then(function (res) {
@@ -10165,7 +10344,7 @@ var processFormvue_type_script_lang_js_components;
10165
10344
  businessId: this.id,
10166
10345
  userId: util["a" /* default */].getStorage('userId')
10167
10346
  };
10168
- 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) {
10169
10348
  var status = res.status,
10170
10349
  message = res.message,
10171
10350
  _res$data = res.data,
@@ -10252,7 +10431,7 @@ var processFormvue_type_script_lang_js_components;
10252
10431
  var _this6 = this;
10253
10432
 
10254
10433
  util["a" /* default */].ajax({
10255
- url: api["w" /* findSysCodes */]
10434
+ url: api["z" /* findSysCodes */]
10256
10435
  }).then(function (res) {
10257
10436
  var status = res.status,
10258
10437
  message = res.message;
@@ -10279,11 +10458,11 @@ var processFormvue_type_script_lang_js_components;
10279
10458
  });
10280
10459
  },
10281
10460
 
10282
- /**
10283
- * isMultiple
10284
- * @desc:是否多选
10285
- * @author liufan
10286
- * @date 2022年9月13日
10461
+ /**
10462
+ * isMultiple
10463
+ * @desc:是否多选
10464
+ * @author liufan
10465
+ * @date 2022年9月13日
10287
10466
  **/
10288
10467
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
10289
10468
  var multiple = false;
@@ -10330,7 +10509,7 @@ var processFormvue_type_script_lang_js_components;
10330
10509
  businessId: this.businessId
10331
10510
  };
10332
10511
  // 获取节点
10333
- 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) {
10334
10513
  //pc接口返回数据处理
10335
10514
  var status = res.status,
10336
10515
  message = res.message,
@@ -10436,8 +10615,8 @@ var processFormvue_type_script_lang_js_components;
10436
10615
 
10437
10616
  var processForm_component = Object(componentNormalizer["a" /* default */])(
10438
10617
  src_processFormvue_type_script_lang_js_,
10439
- processFormvue_type_template_id_0829b0a1_render,
10440
- processFormvue_type_template_id_0829b0a1_staticRenderFns,
10618
+ processFormvue_type_template_id_1e31d327_render,
10619
+ processFormvue_type_template_id_1e31d327_staticRenderFns,
10441
10620
  false,
10442
10621
  null,
10443
10622
  null,
@@ -10805,7 +10984,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
10805
10984
  notificationType = _sendInfo.notificationType;
10806
10985
 
10807
10986
  var params = {
10808
- url: api["yb" /* sendMsg */],
10987
+ url: api["Cb" /* sendMsg */],
10809
10988
  headers: { Accept: 'application/json,text/plain' },
10810
10989
  method: 'post',
10811
10990
  data: {
@@ -10867,7 +11046,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
10867
11046
 
10868
11047
  this.loading = true;
10869
11048
  util["a" /* default */].ajax({
10870
- url: api["Ob" /* toSendMsg */],
11049
+ url: api["Tb" /* toSendMsg */],
10871
11050
  params: { pendingId: this.$attrs.pendingId }
10872
11051
  }).then(function (res) {
10873
11052
  var status = res.status,
@@ -11688,7 +11867,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11688
11867
  var _this = this;
11689
11868
 
11690
11869
  util["a" /* default */].ajax({
11691
- url: api["u" /* findCodeValues */],
11870
+ url: api["x" /* findCodeValues */],
11692
11871
  params: {
11693
11872
  ccCode: 'notification_type',
11694
11873
  userId: util["a" /* default */].getStorage('userId')
@@ -11731,7 +11910,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11731
11910
  userId: util["a" /* default */].getStorage('userId'),
11732
11911
  nextNodeId: _this2.nextNode.nextNodeId
11733
11912
  };
11734
- 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) {
11735
11914
  var status = res.status,
11736
11915
  message = res.message;
11737
11916
 
@@ -11762,7 +11941,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11762
11941
  var _this3 = this;
11763
11942
 
11764
11943
  util["a" /* default */].ajax({
11765
- url: api["w" /* findSysCodes */]
11944
+ url: api["z" /* findSysCodes */]
11766
11945
  }).then(function (res) {
11767
11946
  var status = res.status,
11768
11947
  message = res.message;
@@ -11795,7 +11974,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
11795
11974
  isSinglePage: false,
11796
11975
  opinion: this.option
11797
11976
  };
11798
- 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) {
11799
11978
  var status = res.status,
11800
11979
  message = res.message,
11801
11980
  _res$data = res.data,
@@ -11861,8 +12040,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
11861
12040
  )
11862
12041
 
11863
12042
  /* harmony default export */ var processReject = (processReject_component.exports);
11864
- // 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&
11865
- 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 () {
11866
12045
  var _vm = this
11867
12046
  var _h = _vm.$createElement
11868
12047
  var _c = _vm._self._c || _h
@@ -11896,11 +12075,10 @@ var startTaskReadvue_type_template_id_1372220b_render = function () {
11896
12075
  _c(
11897
12076
  "div",
11898
12077
  {
11899
- staticStyle: {
11900
- "max-height": "290px",
11901
- "overflow-y": "auto",
11902
- "margin-bottom": "10px",
11903
- },
12078
+ style:
12079
+ "max-height: " +
12080
+ (_vm.typeCode ? "unset" : "290px") +
12081
+ "; overflow-y: auto; margin-bottom: 10px",
11904
12082
  },
11905
12083
  [
11906
12084
  _vm.type === "transfer"
@@ -12287,11 +12465,11 @@ var startTaskReadvue_type_template_id_1372220b_render = function () {
12287
12465
  1
12288
12466
  )
12289
12467
  }
12290
- var startTaskReadvue_type_template_id_1372220b_staticRenderFns = []
12291
- 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
12292
12470
 
12293
12471
 
12294
- // 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&
12295
12473
 
12296
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&
12297
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; };
@@ -12468,6 +12646,7 @@ var startTaskReadvue_type_script_lang_js_components;
12468
12646
  newsInfo: { type: String, default: '' },
12469
12647
  type: { type: String, default: '' },
12470
12648
  option: { type: String, default: '' },
12649
+ typeCode: { type: String, default: '' },
12471
12650
  taskExamine: { type: Object, default: function _default() {} }
12472
12651
  },
12473
12652
  data: function data() {
@@ -12542,7 +12721,7 @@ var startTaskReadvue_type_script_lang_js_components;
12542
12721
  taskExamine = this.taskExamine;
12543
12722
 
12544
12723
  var params = {
12545
- url: api["Xb" /* toTaskTransferIndex */],
12724
+ url: api["ec" /* toTaskTransferIndex */],
12546
12725
  params: {
12547
12726
  opinion: opinion,
12548
12727
  pendingId: pendingId,
@@ -12667,7 +12846,7 @@ var startTaskReadvue_type_script_lang_js_components;
12667
12846
  var _this3 = this;
12668
12847
 
12669
12848
  var params = {
12670
- url: api["Qb" /* toStartTaskRead */],
12849
+ url: api["Vb" /* toStartTaskRead */],
12671
12850
  params: { pendingId: this.pendingId, taskAction: this.type }
12672
12851
  };
12673
12852
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -12706,7 +12885,7 @@ var startTaskReadvue_type_script_lang_js_components;
12706
12885
  var _this5 = this;
12707
12886
 
12708
12887
  util["a" /* default */].ajax({
12709
- url: api["u" /* findCodeValues */],
12888
+ url: api["x" /* findCodeValues */],
12710
12889
  params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
12711
12890
  }).then(function (res) {
12712
12891
  var status = res.status,
@@ -12749,7 +12928,7 @@ var startTaskReadvue_type_script_lang_js_components;
12749
12928
  type = this.type;
12750
12929
 
12751
12930
  var params = {
12752
- url: api["Ib" /* taskTransfer */],
12931
+ url: api["Nb" /* taskTransfer */],
12753
12932
  data: {
12754
12933
  choiceDeptId: choiceDeptId,
12755
12934
  choiceOrgId: choiceOrgId,
@@ -12843,7 +13022,7 @@ var startTaskReadvue_type_script_lang_js_components;
12843
13022
  !download && delete params.isDownload;
12844
13023
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
12845
13024
  util["a" /* default */].ajax({
12846
- url: api["Db" /* taskReadHtml */],
13025
+ url: api["Ib" /* taskReadHtml */],
12847
13026
  params: { taskAction: _this7.type },
12848
13027
  headers: {
12849
13028
  Accept: 'application/json,text/plain'
@@ -12882,7 +13061,7 @@ var startTaskReadvue_type_script_lang_js_components;
12882
13061
 
12883
13062
  this.loading = true;
12884
13063
  util["a" /* default */].ajax({
12885
- url: api["w" /* findSysCodes */]
13064
+ url: api["z" /* findSysCodes */]
12886
13065
  }).then(function (res) {
12887
13066
  var status = res.status,
12888
13067
  message = res.message,
@@ -12925,8 +13104,8 @@ var startTaskReadvue_type_script_lang_js_components;
12925
13104
 
12926
13105
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
12927
13106
  src_startTaskReadvue_type_script_lang_js_,
12928
- startTaskReadvue_type_template_id_1372220b_render,
12929
- startTaskReadvue_type_template_id_1372220b_staticRenderFns,
13107
+ startTaskReadvue_type_template_id_1d99a67a_render,
13108
+ startTaskReadvue_type_template_id_1d99a67a_staticRenderFns,
12930
13109
  false,
12931
13110
  null,
12932
13111
  null,
@@ -13717,7 +13896,7 @@ var resetvue_type_script_lang_js_components;
13717
13896
  if (mainConfig) {
13718
13897
  this.userModel = JSON.parse(mainConfig).userModel;
13719
13898
  } else {
13720
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
13899
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
13721
13900
  var status = res.status,
13722
13901
  data = res.data;
13723
13902
 
@@ -13810,7 +13989,7 @@ var resetvue_type_script_lang_js_components;
13810
13989
  var _this2 = this;
13811
13990
 
13812
13991
  util["a" /* default */].ajax({
13813
- url: api["u" /* findCodeValues */],
13992
+ url: api["x" /* findCodeValues */],
13814
13993
  params: {
13815
13994
  ccCode: 'notification_type',
13816
13995
  userId: util["a" /* default */].getStorage('userId')
@@ -13840,7 +14019,7 @@ var resetvue_type_script_lang_js_components;
13840
14019
  nodeId: this.nextNode.nextNode,
13841
14020
  businessId: this.taskExamine.businessId
13842
14021
  };
13843
- 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) {
13844
14023
  if (res.status === 'success') {
13845
14024
  _this3.nextNode.noticeInfo = res.message;
13846
14025
  }
@@ -13925,7 +14104,7 @@ var resetvue_type_script_lang_js_components;
13925
14104
  };
13926
14105
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
13927
14106
  util["a" /* default */].ajax({
13928
- url: _this4.type == 'reset' ? api["rb" /* resetProcess */] : api["Bb" /* taskContinuation */],
14107
+ url: _this4.type == 'reset' ? api["vb" /* resetProcess */] : api["Gb" /* taskContinuation */],
13929
14108
  method: 'post',
13930
14109
  data: params
13931
14110
  }).then(function (res) {
@@ -13959,7 +14138,7 @@ var resetvue_type_script_lang_js_components;
13959
14138
  businessId: this.taskExamine.businessId,
13960
14139
  pendingId: this.taskExamine.pendingId
13961
14140
  };
13962
- 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) {
13963
14142
  var status = res.status,
13964
14143
  message = res.message,
13965
14144
  _res$data = res.data,
@@ -14060,7 +14239,7 @@ var resetvue_type_script_lang_js_components;
14060
14239
  var _this6 = this;
14061
14240
 
14062
14241
  util["a" /* default */].ajax({
14063
- url: api["w" /* findSysCodes */]
14242
+ url: api["z" /* findSysCodes */]
14064
14243
  }).then(function (res) {
14065
14244
  var status = res.status,
14066
14245
  message = res.message;
@@ -14088,11 +14267,11 @@ var resetvue_type_script_lang_js_components;
14088
14267
  });
14089
14268
  },
14090
14269
 
14091
- /**
14092
- * isMultiple
14093
- * @desc:是否多选
14094
- * @author liufan
14095
- * @date 2022年9月13日
14270
+ /**
14271
+ * isMultiple
14272
+ * @desc:是否多选
14273
+ * @author liufan
14274
+ * @date 2022年9月13日
14096
14275
  **/
14097
14276
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14098
14277
  var multiple = false;
@@ -14129,7 +14308,7 @@ var resetvue_type_script_lang_js_components;
14129
14308
  var _this7 = this;
14130
14309
 
14131
14310
  var params = {
14132
- url: this.type == 'continuation' ? api["Sb" /* toTaskContinuationIndex */] : api["Nb" /* toResetProcessIndex */],
14311
+ url: this.type == 'continuation' ? api["Xb" /* toTaskContinuationIndex */] : api["Sb" /* toResetProcessIndex */],
14133
14312
  params: resetvue_type_script_lang_js_extends({
14134
14313
  appId: this.appId
14135
14314
  }, this.flowParams)
@@ -14705,7 +14884,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14705
14884
  pendingId = this.pendingId;
14706
14885
 
14707
14886
  var params = {
14708
- url: api["Fb" /* taskReview */],
14887
+ url: api["Kb" /* taskReview */],
14709
14888
  data: {
14710
14889
  nextUserId: nextOtherOrgObj.join(','),
14711
14890
  notificationType: noticeType.join(','),
@@ -14741,7 +14920,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14741
14920
  var _this2 = this;
14742
14921
 
14743
14922
  var params = {
14744
- url: api["Ub" /* toTaskReview */],
14923
+ url: api["Zb" /* toTaskReview */],
14745
14924
  params: { pendingId: this.pendingId }
14746
14925
  };
14747
14926
  util["a" /* default */].ajax(params).then(function (res) {
@@ -14775,7 +14954,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14775
14954
  var _this3 = this;
14776
14955
 
14777
14956
  var params = {
14778
- url: this.type == 'takeAdvice' ? api["Wb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Vb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Zb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["ac" /* toTwoOfficesDispatch */] : api["Yb" /* 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 */],
14779
14958
  params: { pendingId: this.pendingId },
14780
14959
  headers: { Accept: 'application/json,text/plain' }
14781
14960
  };
@@ -14896,7 +15075,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14896
15075
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
14897
15076
  // return this.$message.warning('暂未开放,敬请期待!');
14898
15077
  var param = {
14899
- url: this.type === 'startDraf' ? api["Gb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Kb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["cc" /* 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 */],
14900
15079
  data: {
14901
15080
  opinion: opinion,
14902
15081
  pendingId: pendingId,
@@ -14962,7 +15141,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14962
15141
  var _this5 = this;
14963
15142
 
14964
15143
  util["a" /* default */].ajax({
14965
- url: api["u" /* findCodeValues */],
15144
+ url: api["x" /* findCodeValues */],
14966
15145
  params: {
14967
15146
  ccCode: 'notification_type',
14968
15147
  userId: util["a" /* default */].getStorage('userId')
@@ -14990,7 +15169,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
14990
15169
  var params = {
14991
15170
  pendingId: this.pendingId
14992
15171
  };
14993
- 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) {
14994
15173
  if (res.status === 'success') {
14995
15174
  _this6.infoList.noticeInfo = res.message;
14996
15175
  }
@@ -15006,7 +15185,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15006
15185
  var _this7 = this;
15007
15186
 
15008
15187
  util["a" /* default */].ajax({
15009
- url: api["w" /* findSysCodes */]
15188
+ url: api["z" /* findSysCodes */]
15010
15189
  }).then(function (res) {
15011
15190
  var status = res.status,
15012
15191
  message = res.message;
@@ -18244,7 +18423,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18244
18423
  var _this = this;
18245
18424
 
18246
18425
  var params = {
18247
- url: api["A" /* getAdjunctFileInfos */],
18426
+ url: api["D" /* getAdjunctFileInfos */],
18248
18427
  params: { ownId: ownId, code: code }
18249
18428
  };
18250
18429
  util["a" /* default */].ajax(params).then(function (res) {
@@ -18332,7 +18511,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18332
18511
  taskAction: 'complete'
18333
18512
  };
18334
18513
  util["a" /* default */].ajax({
18335
- url: api["Db" /* taskReadHtml */],
18514
+ url: api["Ib" /* taskReadHtml */],
18336
18515
  params: { taskAction: 'complete' },
18337
18516
  headers: {
18338
18517
  Accept: 'application/json,text/plain'
@@ -18364,7 +18543,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18364
18543
 
18365
18544
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
18366
18545
  util["a" /* default */].ajax({
18367
- url: api["Rb" /* toStartTaskReadIndex */],
18546
+ url: api["Wb" /* toStartTaskReadIndex */],
18368
18547
  params: { pendingId: this.pendingId }
18369
18548
  }).then(function (res) {
18370
18549
  var status = res.status,
@@ -18400,7 +18579,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18400
18579
  if (mainConfig) {
18401
18580
  this.userModel = JSON.parse(mainConfig).userModel;
18402
18581
  } else {
18403
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
18582
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
18404
18583
  var status = res.status,
18405
18584
  data = res.data;
18406
18585
 
@@ -18435,7 +18614,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18435
18614
  var _this5 = this;
18436
18615
 
18437
18616
  util["a" /* default */].ajax({
18438
- url: api["u" /* findCodeValues */],
18617
+ url: api["x" /* findCodeValues */],
18439
18618
  params: {
18440
18619
  ccCode: 'notification_type',
18441
18620
  userId: util["a" /* default */].getStorage('userId')
@@ -18454,11 +18633,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18454
18633
  });
18455
18634
  },
18456
18635
 
18457
- /**
18458
- * saveInfo
18459
- * @desc:暂存
18460
- * @author liufan
18461
- * @date 2022年9月9日
18636
+ /**
18637
+ * saveInfo
18638
+ * @desc:暂存
18639
+ * @author liufan
18640
+ * @date 2022年9月9日
18462
18641
  **/
18463
18642
  saveInfo: function saveInfo(type, btn) {
18464
18643
  var _this6 = this;
@@ -18501,7 +18680,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18501
18680
  pendingId: this.pendingId
18502
18681
  };
18503
18682
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
18504
- 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) {
18505
18684
  var status = res.status,
18506
18685
  message = res.message;
18507
18686
 
@@ -18520,11 +18699,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18520
18699
  });
18521
18700
  },
18522
18701
 
18523
- /**
18524
- * rejectBtn
18525
- * @desc:点击驳回
18526
- * @author liufan
18527
- * @date 2022年5月25日
18702
+ /**
18703
+ * rejectBtn
18704
+ * @desc:点击驳回
18705
+ * @author liufan
18706
+ * @date 2022年5月25日
18528
18707
  **/
18529
18708
  rejectBtn: function rejectBtn() {
18530
18709
  var _this8 = this;
@@ -18542,11 +18721,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18542
18721
  }
18543
18722
  },
18544
18723
 
18545
- /**
18546
- * taskReadBtn
18547
- * @desc:点击分阅
18548
- * @author liufan
18549
- * @date 2022年5月25日
18724
+ /**
18725
+ * taskReadBtn
18726
+ * @desc:点击分阅
18727
+ * @author liufan
18728
+ * @date 2022年5月25日
18550
18729
  **/
18551
18730
  taskReadBtn: function taskReadBtn() {
18552
18731
  var _this9 = this;
@@ -18565,17 +18744,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18565
18744
  }
18566
18745
  },
18567
18746
 
18568
- /**
18569
- * getFind
18570
- * @desc:获取通知方式
18571
- * @author liufan
18572
- * @date 2022年5月25日
18747
+ /**
18748
+ * getFind
18749
+ * @desc:获取通知方式
18750
+ * @author liufan
18751
+ * @date 2022年5月25日
18573
18752
  **/
18574
18753
  getFind: function getFind() {
18575
18754
  var _this10 = this;
18576
18755
 
18577
18756
  util["a" /* default */].ajax({
18578
- url: api["w" /* findSysCodes */]
18757
+ url: api["z" /* findSysCodes */]
18579
18758
  }).then(function (res) {
18580
18759
  var status = res.status,
18581
18760
  message = res.message;
@@ -18607,7 +18786,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18607
18786
  nodeId = _endFlowInfo.nodeId;
18608
18787
 
18609
18788
  var param = {
18610
- url: api["F" /* getFreeStartFlowParams */],
18789
+ url: api["I" /* getFreeStartFlowParams */],
18611
18790
  params: {
18612
18791
  businessId: businessId,
18613
18792
  processDefinitionId: processDefinitionId,
@@ -18624,12 +18803,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18624
18803
  });
18625
18804
  },
18626
18805
 
18627
- /**
18628
- * endFlows
18629
- * @desc:直接办结
18630
- * @author liufan
18631
- * @param {Object} res 直接办结数据
18632
- * @date 2022年5月25日
18806
+ /**
18807
+ * endFlows
18808
+ * @desc:直接办结
18809
+ * @author liufan
18810
+ * @param {Object} res 直接办结数据
18811
+ * @date 2022年5月25日
18633
18812
  **/
18634
18813
  endFlows: function endFlows(res) {
18635
18814
  var _this12 = this;
@@ -18647,7 +18826,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18647
18826
 
18648
18827
  this.$confirm('确认' + res.value + '?').then(function () {
18649
18828
  var params = {
18650
- url: api["t" /* endFlowHtml */],
18829
+ url: api["w" /* endFlowHtml */],
18651
18830
  headers: { Accept: 'application/json,text/plain' },
18652
18831
  method: 'post',
18653
18832
  data: freeStartFlowvue_type_script_lang_js_extends({}, _this13.endFlowInfo, _this13.nextNode, {
@@ -18683,12 +18862,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18683
18862
  }).catch(function (e) {});
18684
18863
  },
18685
18864
 
18686
- /**
18687
- * goView
18688
- * @desc:更多流程按钮操作
18689
- * @author liufan
18690
- * @param {Object} res 当前点击操作按钮数据
18691
- * @date 2022年5月25日
18865
+ /**
18866
+ * goView
18867
+ * @desc:更多流程按钮操作
18868
+ * @author liufan
18869
+ * @param {Object} res 当前点击操作按钮数据
18870
+ * @date 2022年5月25日
18692
18871
  **/
18693
18872
  goView: function goView(res) {
18694
18873
  // 驳回并办结:rejectAndEndHtml
@@ -18773,11 +18952,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18773
18952
  // isCanStartSubFlow
18774
18953
  },
18775
18954
 
18776
- /**
18777
- * toTakeAdvice
18778
- * @desc:征求意见
18779
- * @author liufan
18780
- * @date 2022年9月29日
18955
+ /**
18956
+ * toTakeAdvice
18957
+ * @desc:征求意见
18958
+ * @author liufan
18959
+ * @date 2022年9月29日
18781
18960
  **/
18782
18961
  toTakeAdvice: function toTakeAdvice(res) {
18783
18962
  var _this14 = this;
@@ -18795,7 +18974,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18795
18974
  var _this15 = this;
18796
18975
 
18797
18976
  var params = {
18798
- url: api["db" /* isCanStartSubFlow */],
18977
+ url: api["gb" /* isCanStartSubFlow */],
18799
18978
  data: {
18800
18979
  appId: this.taskExamineInfo.appId,
18801
18980
  inevitableNode: res.inevitableNode
@@ -18821,11 +19000,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18821
19000
  });
18822
19001
  },
18823
19002
 
18824
- /**
18825
- * toStartDraf
18826
- * @desc: 稿件递送、联合审核、复核
18827
- * @author liufan
18828
- * @date 2022年9月29日
19003
+ /**
19004
+ * toStartDraf
19005
+ * @desc: 稿件递送、联合审核、复核
19006
+ * @author liufan
19007
+ * @date 2022年9月29日
18829
19008
  **/
18830
19009
  toStartDraf: function toStartDraf(res) {
18831
19010
  var _this16 = this;
@@ -18839,11 +19018,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18839
19018
  }
18840
19019
  },
18841
19020
 
18842
- /**
18843
- * toSendMsg
18844
- * @desc:核稿通知
18845
- * @author liufan
18846
- * @date 2022年9月29日
19021
+ /**
19022
+ * toSendMsg
19023
+ * @desc:核稿通知
19024
+ * @author liufan
19025
+ * @date 2022年9月29日
18847
19026
  **/
18848
19027
  toSendMsg: function toSendMsg(res) {
18849
19028
  var _this17 = this;
@@ -18857,11 +19036,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18857
19036
  }
18858
19037
  },
18859
19038
 
18860
- /**
18861
- * toTaskReadAndEnd
18862
- * @desc:分阅并办结
18863
- * @author liufan
18864
- * @date 2022年9月29日
19039
+ /**
19040
+ * toTaskReadAndEnd
19041
+ * @desc:分阅并办结
19042
+ * @author liufan
19043
+ * @date 2022年9月29日
18865
19044
  **/
18866
19045
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
18867
19046
  var _this18 = this;
@@ -18879,11 +19058,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18879
19058
  }
18880
19059
  },
18881
19060
 
18882
- /**
18883
- * rejectAndEnd
18884
- * @desc:驳回并办结
18885
- * @author liufan
18886
- * @date 2022年9月29日
19061
+ /**
19062
+ * rejectAndEnd
19063
+ * @desc:驳回并办结
19064
+ * @author liufan
19065
+ * @date 2022年9月29日
18887
19066
  **/
18888
19067
  rejectAndEnd: function rejectAndEnd(res) {
18889
19068
  var _this19 = this;
@@ -18905,7 +19084,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18905
19084
  this.$confirm('确认' + res.value + '?').then(function () {
18906
19085
  // return this.$message.warning('请填写意见');
18907
19086
  var params = {
18908
- url: api["qb" /* rejectAndEnd */],
19087
+ url: api["ub" /* rejectAndEnd */],
18909
19088
  headers: { Accept: 'application/json,text/plain' },
18910
19089
  method: 'post',
18911
19090
  data: {
@@ -18938,11 +19117,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18938
19117
  });
18939
19118
  },
18940
19119
 
18941
- /**
18942
- * toTransfer
18943
- * @desc:转办
18944
- * @author liufan
18945
- * @date 2022年9月29日
19120
+ /**
19121
+ * toTransfer
19122
+ * @desc:转办
19123
+ * @author liufan
19124
+ * @date 2022年9月29日
18946
19125
  **/
18947
19126
  toTransfer: function toTransfer(res) {
18948
19127
  var _this21 = this;
@@ -18958,11 +19137,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18958
19137
  }
18959
19138
  },
18960
19139
 
18961
- /**
18962
- * getNodeInfo
18963
- * @desc:获取节点信息
18964
- * @author liufan
18965
- * @date 2022年5月25日
19140
+ /**
19141
+ * getNodeInfo
19142
+ * @desc:获取节点信息
19143
+ * @author liufan
19144
+ * @date 2022年5月25日
18966
19145
  **/
18967
19146
  getNodeInfo: function getNodeInfo() {
18968
19147
  var _this22 = this;
@@ -18975,7 +19154,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18975
19154
  pendingId: this.pendingId,
18976
19155
  businessId: this.businessIds
18977
19156
  };
18978
- 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) {
18979
19158
  var status = res.status,
18980
19159
  message = res.message,
18981
19160
  data = res.data;
@@ -19061,12 +19240,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19061
19240
  });
19062
19241
  },
19063
19242
 
19064
- /**
19065
- * selecNext
19066
- * @desc:下步节点变化时更新数据
19067
- * @author liufan
19068
- * @param {String} val 当前选中值
19069
- * @date 2022年5月25日
19243
+ /**
19244
+ * selecNext
19245
+ * @desc:下步节点变化时更新数据
19246
+ * @author liufan
19247
+ * @param {String} val 当前选中值
19248
+ * @date 2022年5月25日
19070
19249
  **/
19071
19250
  selecNext: function selecNext(val, type, isDef) {
19072
19251
  var _this23 = this;
@@ -19175,11 +19354,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19175
19354
  if (isDef !== true) this.getNodeInfo();
19176
19355
  },
19177
19356
 
19178
- /**
19179
- * isMultiple
19180
- * @desc:是否多选
19181
- * @author liufan
19182
- * @date 2022年9月13日
19357
+ /**
19358
+ * isMultiple
19359
+ * @desc:是否多选
19360
+ * @author liufan
19361
+ * @date 2022年9月13日
19183
19362
  **/
19184
19363
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19185
19364
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19211,11 +19390,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19211
19390
  }
19212
19391
  },
19213
19392
 
19214
- /**
19215
- * getHedInfo
19216
- * @desc:获取审核页面数据
19217
- * @author liufan
19218
- * @date 2022年5月25日
19393
+ /**
19394
+ * getHedInfo
19395
+ * @desc:获取审核页面数据
19396
+ * @author liufan
19397
+ * @date 2022年5月25日
19219
19398
  **/
19220
19399
  getHedInfo: function getHedInfo() {
19221
19400
  var _this24 = this;
@@ -19225,7 +19404,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19225
19404
  pendingId: this.pendingId,
19226
19405
  userId: util["a" /* default */].getStorage('userId')
19227
19406
  };
19228
- 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) {
19229
19408
  //pc返回数据
19230
19409
 
19231
19410
  _this24.loading.close();
@@ -19451,13 +19630,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19451
19630
  });
19452
19631
  },
19453
19632
 
19454
- /**
19455
- * closeProcess
19456
- * @desc:关闭弹窗
19457
- * @author liufan
19458
- * @param {boolean} val 当前是否办理流程
19459
- * @param {String} type 当前点击的弹窗类型
19460
- * @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日
19461
19640
  **/
19462
19641
  closeProcess: function closeProcess(val, type, closeParent) {
19463
19642
  if (closeParent) {
@@ -19474,23 +19653,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19474
19653
  }
19475
19654
  },
19476
19655
 
19477
- /**
19478
- * selectChange
19479
- * @desc:常用语选择
19480
- * @author liufan
19481
- * @param {String} val 选中值
19482
- * @date 2022年5月25日
19656
+ /**
19657
+ * selectChange
19658
+ * @desc:常用语选择
19659
+ * @author liufan
19660
+ * @param {String} val 选中值
19661
+ * @date 2022年5月25日
19483
19662
  **/
19484
19663
  selectChange: function selectChange(val) {
19485
19664
  this.value = val;
19486
19665
  },
19487
19666
 
19488
- /**
19489
- * upDate
19490
- * @desc:修改常用语
19491
- * @author liufan
19492
- * @param {Object} val 修改值
19493
- * @date 2022年5月25日
19667
+ /**
19668
+ * upDate
19669
+ * @desc:修改常用语
19670
+ * @author liufan
19671
+ * @param {Object} val 修改值
19672
+ * @date 2022年5月25日
19494
19673
  **/
19495
19674
  upDate: function upDate(val) {
19496
19675
  this.FormData.id = val.id;
@@ -19498,11 +19677,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19498
19677
  },
19499
19678
 
19500
19679
 
19501
- /**
19502
- * getProcess
19503
- * @desc:获取选择流程
19504
- * @author liufan
19505
- * @date 2022年5月25日
19680
+ /**
19681
+ * getProcess
19682
+ * @desc:获取选择流程
19683
+ * @author liufan
19684
+ * @date 2022年5月25日
19506
19685
  **/
19507
19686
  getProcess: function getProcess() {
19508
19687
  var _this25 = this;
@@ -19517,7 +19696,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19517
19696
  // onlyFlag: true
19518
19697
  };
19519
19698
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
19520
- 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) {
19521
19700
  var status = res.status,
19522
19701
  message = res.message,
19523
19702
  data = res.data;
@@ -19556,11 +19735,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19556
19735
  });
19557
19736
  },
19558
19737
 
19559
- /**
19560
- * getPendedhistoryList
19561
- * @desc:获取流程列表
19562
- * @author liufan
19563
- * @date 2022年5月25日
19738
+ /**
19739
+ * getPendedhistoryList
19740
+ * @desc:获取流程列表
19741
+ * @author liufan
19742
+ * @date 2022年5月25日
19564
19743
  **/
19565
19744
  getPendedhistoryList: function getPendedhistoryList() {
19566
19745
  var _this26 = this;
@@ -19570,7 +19749,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19570
19749
  userId: util["a" /* default */].getStorage('userId'),
19571
19750
  type: 2
19572
19751
  };
19573
- 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) {
19574
19753
  var rCode = res.rCode,
19575
19754
  msg = res.msg,
19576
19755
  results = res.results;
@@ -19592,12 +19771,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19592
19771
  },
19593
19772
 
19594
19773
  // 提交流程
19595
- /**
19596
- * subProcess
19597
- * @desc:提交流程
19598
- * @author liufan
19599
- * @param {String} formName 当前form表单ref值
19600
- * @date 2022年5月25日
19774
+ /**
19775
+ * subProcess
19776
+ * @desc:提交流程
19777
+ * @author liufan
19778
+ * @param {String} formName 当前form表单ref值
19779
+ * @date 2022年5月25日
19601
19780
  **/
19602
19781
  subProcess: function subProcess(val) {
19603
19782
  var _this27 = this;
@@ -19766,7 +19945,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19766
19945
  params.isSubFlow = taskExamineInfo.isSubFlow;
19767
19946
  params.nodeId = taskExamineInfo.nodeId;
19768
19947
  params.needRetrialAuth = needRetrialAuth;
19769
- 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) {
19770
19949
  var status = res.status,
19771
19950
  message = res.message;
19772
19951
 
@@ -19857,6 +20036,334 @@ var freeStartFlow_component = Object(componentNormalizer["a" /* default */])(
19857
20036
  )
19858
20037
 
19859
20038
  /* harmony default export */ var freeStartFlow = (freeStartFlow_component.exports);
20039
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=template&id=3c874472&
20040
+ var supervisevue_type_template_id_3c874472_render = function () {
20041
+ var _vm = this
20042
+ var _h = _vm.$createElement
20043
+ var _c = _vm._self._c || _h
20044
+ return _c(
20045
+ "div",
20046
+ { staticClass: "supervise-flow" },
20047
+ [
20048
+ _c(
20049
+ "el-form",
20050
+ {
20051
+ ref: "nextNode",
20052
+ staticClass: "demo-dynamic",
20053
+ attrs: {
20054
+ model: _vm.nextNode,
20055
+ "label-width": "120px",
20056
+ "label-position": "left",
20057
+ },
20058
+ },
20059
+ [
20060
+ _c(
20061
+ "el-form-item",
20062
+ { attrs: { prop: "pendTitle", label: "标题" } },
20063
+ [
20064
+ _c("el-input", {
20065
+ attrs: { disabled: "", type: "textarea", autosize: "" },
20066
+ model: {
20067
+ value: _vm.nextNode.pendTitle,
20068
+ callback: function ($$v) {
20069
+ _vm.$set(_vm.nextNode, "pendTitle", $$v)
20070
+ },
20071
+ expression: "nextNode.pendTitle",
20072
+ },
20073
+ }),
20074
+ ],
20075
+ 1
20076
+ ),
20077
+ _c(
20078
+ "el-form-item",
20079
+ { attrs: { prop: "currentHandleNode", label: "当前办理节点" } },
20080
+ [
20081
+ _c("el-input", {
20082
+ attrs: { disabled: "" },
20083
+ model: {
20084
+ value: _vm.nextNode.currentHandleNode,
20085
+ callback: function ($$v) {
20086
+ _vm.$set(_vm.nextNode, "currentHandleNode", $$v)
20087
+ },
20088
+ expression: "nextNode.currentHandleNode",
20089
+ },
20090
+ }),
20091
+ ],
20092
+ 1
20093
+ ),
20094
+ _c(
20095
+ "el-form-item",
20096
+ { attrs: { prop: "pendingUserNames", label: "当前办理人" } },
20097
+ [
20098
+ _c("el-input", {
20099
+ attrs: { type: "textarea", autosize: "", disabled: "" },
20100
+ model: {
20101
+ value: _vm.nextNode.pendingUserNames,
20102
+ callback: function ($$v) {
20103
+ _vm.$set(_vm.nextNode, "pendingUserNames", $$v)
20104
+ },
20105
+ expression: "nextNode.pendingUserNames",
20106
+ },
20107
+ }),
20108
+ ],
20109
+ 1
20110
+ ),
20111
+ _c(
20112
+ "el-form-item",
20113
+ { attrs: { prop: "noticeType", label: "通知方式" } },
20114
+ [
20115
+ _c(
20116
+ "el-checkbox-group",
20117
+ {
20118
+ model: {
20119
+ value: _vm.nextNode.noticeType,
20120
+ callback: function ($$v) {
20121
+ _vm.$set(_vm.nextNode, "noticeType", $$v)
20122
+ },
20123
+ expression: "nextNode.noticeType",
20124
+ },
20125
+ },
20126
+ _vm._l(_vm.nextNode.notificationType, function (item, index) {
20127
+ return _c(
20128
+ "el-checkbox",
20129
+ { key: index, attrs: { label: item.cciValue } },
20130
+ [
20131
+ _vm._v(
20132
+ "\n " +
20133
+ _vm._s(item.shortName) +
20134
+ "\n "
20135
+ ),
20136
+ ]
20137
+ )
20138
+ }),
20139
+ 1
20140
+ ),
20141
+ ],
20142
+ 1
20143
+ ),
20144
+ _c(
20145
+ "el-form-item",
20146
+ { attrs: { prop: "notifyMessage", label: "通知消息" } },
20147
+ [
20148
+ _c("es-input", {
20149
+ staticStyle: {
20150
+ "border-color": "#ccc",
20151
+ padding: "5px",
20152
+ "border-radius": "5px",
20153
+ "font-size": "13px",
20154
+ },
20155
+ attrs: { type: "textarea" },
20156
+ model: {
20157
+ value: _vm.nextNode.notifyMessage,
20158
+ callback: function ($$v) {
20159
+ _vm.$set(_vm.nextNode, "notifyMessage", $$v)
20160
+ },
20161
+ expression: "nextNode.notifyMessage",
20162
+ },
20163
+ }),
20164
+ ],
20165
+ 1
20166
+ ),
20167
+ _c("el-form-item", { staticStyle: { "margin-bottom": "0px" } }, [
20168
+ _c(
20169
+ "div",
20170
+ { staticStyle: { "text-align": "right" } },
20171
+ [
20172
+ _c(
20173
+ "el-button",
20174
+ {
20175
+ attrs: { type: "primary", size: "small" },
20176
+ on: {
20177
+ click: function ($event) {
20178
+ _vm.subProcess()
20179
+ },
20180
+ },
20181
+ },
20182
+ [_vm._v("\n 确认\n ")]
20183
+ ),
20184
+ ],
20185
+ 1
20186
+ ),
20187
+ ]),
20188
+ ],
20189
+ 1
20190
+ ),
20191
+ ],
20192
+ 1
20193
+ )
20194
+ }
20195
+ var supervisevue_type_template_id_3c874472_staticRenderFns = []
20196
+ supervisevue_type_template_id_3c874472_render._withStripped = true
20197
+
20198
+
20199
+ // CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=3c874472&
20200
+
20201
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=script&lang=js&
20202
+ var supervisevue_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; };
20203
+
20204
+ //
20205
+ //
20206
+ //
20207
+ //
20208
+ //
20209
+ //
20210
+ //
20211
+ //
20212
+ //
20213
+ //
20214
+ //
20215
+ //
20216
+ //
20217
+ //
20218
+ //
20219
+ //
20220
+ //
20221
+ //
20222
+ //
20223
+ //
20224
+ //
20225
+ //
20226
+ //
20227
+ //
20228
+ //
20229
+ //
20230
+ //
20231
+ //
20232
+ //
20233
+ //
20234
+ //
20235
+ //
20236
+ //
20237
+ //
20238
+ //
20239
+ //
20240
+ //
20241
+ //
20242
+ //
20243
+ //
20244
+ //
20245
+ //
20246
+ //
20247
+ //
20248
+ //
20249
+ //
20250
+ //
20251
+ //
20252
+ //
20253
+ //
20254
+ //
20255
+ //
20256
+ //
20257
+ //
20258
+ //
20259
+ //
20260
+ //
20261
+ //
20262
+ //
20263
+ //
20264
+
20265
+
20266
+
20267
+ /* harmony default export */ var supervisevue_type_script_lang_js_ = ({
20268
+ props: {
20269
+ businessId: {
20270
+ type: String,
20271
+ default: ''
20272
+ }
20273
+ },
20274
+ data: function data() {
20275
+ return {
20276
+ nextNode: {
20277
+ noticeType: [],
20278
+ notificationType: [],
20279
+ loading: undefined
20280
+ }
20281
+ };
20282
+ },
20283
+ mounted: function mounted() {
20284
+ this.getFlowInfo();
20285
+ },
20286
+
20287
+ methods: {
20288
+ subProcess: function subProcess() {
20289
+ var _this = this;
20290
+
20291
+ if (this.nextNode.noticeType.length == 0) {
20292
+ this.$message.warning('请选择通知方式');
20293
+ return;
20294
+ }
20295
+ if (!this.nextNode.notifyMessage) {
20296
+ this.$message.warning('请填写通知消息内容');
20297
+ return;
20298
+ }
20299
+ var _nextNode = this.nextNode,
20300
+ noticeType = _nextNode.noticeType,
20301
+ notifyMessage = _nextNode.notifyMessage,
20302
+ pendingUserIds = _nextNode.pendingUserIds;
20303
+
20304
+ var params = {
20305
+ url: api["cc" /* toTaskSuperviseSub */],
20306
+ params: {
20307
+ userId: util["a" /* default */].getStorage('userId'),
20308
+ urgeUserIds: pendingUserIds,
20309
+ notificationType: noticeType.join(','), notificationMessage: notifyMessage,
20310
+ businessId: this.businessId
20311
+ }
20312
+ };
20313
+ this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
20314
+ util["a" /* default */].ajax(params).then(function (res) {
20315
+ _this.loading.close();
20316
+ if (res.rCode == 0 || res.status == 'success') {
20317
+ _this.$message.success('操作成功');
20318
+ _this.$parent.$emit('success');
20319
+ } else {
20320
+ _this.$message.error(res.message || '系统错误,请联系管理员!');
20321
+ }
20322
+ });
20323
+ },
20324
+ getFlowInfo: function getFlowInfo() {
20325
+ var _this2 = this;
20326
+
20327
+ this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20328
+ util["a" /* default */].ajax({
20329
+ url: api["bc" /* toTaskSupervise */],
20330
+ params: {
20331
+ businessId: this.businessId,
20332
+ userId: util["a" /* default */].getStorage('userId')
20333
+ }
20334
+ }).then(function (res) {
20335
+ _this2.loading.close();
20336
+ console.log(res);
20337
+ if (res.rCode == 0) {
20338
+ _this2.nextNode = supervisevue_type_script_lang_js_extends({}, _this2.nextNode, res.results);
20339
+ _this2.nextNode.noticeType = res.results.defaultNotificationType.split(',');
20340
+ }
20341
+ });
20342
+ }
20343
+ }
20344
+ });
20345
+ // CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=script&lang=js&
20346
+ /* harmony default export */ var src_supervisevue_type_script_lang_js_ = (supervisevue_type_script_lang_js_);
20347
+ // CONCATENATED MODULE: ./packages/flow/src/supervise.vue
20348
+
20349
+
20350
+
20351
+
20352
+
20353
+ /* normalize component */
20354
+
20355
+ var supervise_component = Object(componentNormalizer["a" /* default */])(
20356
+ src_supervisevue_type_script_lang_js_,
20357
+ supervisevue_type_template_id_3c874472_render,
20358
+ supervisevue_type_template_id_3c874472_staticRenderFns,
20359
+ false,
20360
+ null,
20361
+ null,
20362
+ null
20363
+
20364
+ )
20365
+
20366
+ /* harmony default export */ var supervise = (supervise_component.exports);
19860
20367
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=script&lang=js&
19861
20368
 
19862
20369
 
@@ -20663,6 +21170,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20663
21170
  //
20664
21171
  //
20665
21172
  //
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
+ //
21199
+
20666
21200
 
20667
21201
 
20668
21202
 
@@ -20682,7 +21216,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20682
21216
  /* harmony default export */ var mainvue_type_script_lang_js_ = ({
20683
21217
  name: 'EsFlow',
20684
21218
  componentName: 'EsFlow',
20685
- components: (mainvue_type_script_lang_js_components = {}, mainvue_type_script_lang_js_components[processForm.name] = processForm, mainvue_type_script_lang_js_components[processReject.name] = processReject, mainvue_type_script_lang_js_components[startTaskRead.name] = startTaskRead, mainvue_type_script_lang_js_components[CustomPreset.name] = CustomPreset, mainvue_type_script_lang_js_components[CommonOpinions.name] = CommonOpinions, mainvue_type_script_lang_js_components[FileList["a" /* default */].name] = FileList["a" /* default */], mainvue_type_script_lang_js_components[TimeLimit.name] = TimeLimit, mainvue_type_script_lang_js_components[SendMsg.name] = SendMsg, mainvue_type_script_lang_js_components[selectUser.name] = selectUser, mainvue_type_script_lang_js_components[taskUnionExamine.name] = taskUnionExamine, mainvue_type_script_lang_js_components[freeStartFlow.name] = freeStartFlow, mainvue_type_script_lang_js_components.Preset = Preset, mainvue_type_script_lang_js_components.Reset = src_reset, mainvue_type_script_lang_js_components),
21219
+ components: (mainvue_type_script_lang_js_components = {}, mainvue_type_script_lang_js_components[processForm.name] = processForm, mainvue_type_script_lang_js_components[processReject.name] = processReject, mainvue_type_script_lang_js_components[startTaskRead.name] = startTaskRead, mainvue_type_script_lang_js_components[CustomPreset.name] = CustomPreset, mainvue_type_script_lang_js_components[CommonOpinions.name] = CommonOpinions, mainvue_type_script_lang_js_components[FileList["a" /* default */].name] = FileList["a" /* default */], mainvue_type_script_lang_js_components[TimeLimit.name] = TimeLimit, mainvue_type_script_lang_js_components[SendMsg.name] = SendMsg, mainvue_type_script_lang_js_components[selectUser.name] = selectUser, mainvue_type_script_lang_js_components[taskUnionExamine.name] = taskUnionExamine, mainvue_type_script_lang_js_components[freeStartFlow.name] = freeStartFlow, mainvue_type_script_lang_js_components.Preset = Preset, mainvue_type_script_lang_js_components.Reset = src_reset, mainvue_type_script_lang_js_components.Supervise = supervise, mainvue_type_script_lang_js_components),
20686
21220
  props: {
20687
21221
  showShrink: { type: Boolean, default: true },
20688
21222
  isStartFlow: { type: Boolean, default: false },
@@ -20734,10 +21268,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20734
21268
  freeStartFlowParams: {}, //自由发起流程参数
20735
21269
  freeStartFlowNextNode: undefined,
20736
21270
  otherOrgDisabledObjId: [],
21271
+ isCanReadTransferHandle: false,
21272
+ readTransferHandleDisabled: true,
20737
21273
  currentOrgDisabledObjId: [],
20738
21274
  nextNodeCheckType: 'select',
20739
21275
  readOnlyNotificationType: '',
21276
+ circularReadParamsMap: { circularReadOrgRoleCode: '' },
20740
21277
  taskParams: {},
21278
+ processFormType: undefined,
20741
21279
  notificationMessageReadOnly: false,
20742
21280
  isCanPreAddSign: false,
20743
21281
  isStartFlowChartView: undefined,
@@ -20790,6 +21328,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20790
21328
  isLimitedTimeHandling: 0, //是否支持发起子流程限时办理
20791
21329
  nodeType: 0, //节点类型, (普通节点0,承办节点1,会签节点2,阅办节点3)
20792
21330
  userOptions: [], //分阅用户
21331
+ StartTaskReadKey: 0,
20793
21332
  mixReadList: [], //分阅混选
20794
21333
  mixCurrentOrg: [], //本单位混选
20795
21334
  isTaskread: 0, //是否展示分阅用户
@@ -20866,6 +21405,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20866
21405
  mounted: function mounted() {
20867
21406
  this.businessIds = this.businessId;
20868
21407
  this.nextNode.nextNodeId = this.nextNodeId;
21408
+ if (this.typeCode == 'supervise') return;
20869
21409
  this.getNodeType();
20870
21410
  !this.isFlow && (this.newTypeCode = this.typeCode || this.$route.query.typecode);
20871
21411
  if (this.isFlow) {
@@ -20938,6 +21478,30 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20938
21478
  }
20939
21479
  },
20940
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
+ },
20941
21505
  showMessage: function showMessage() {
20942
21506
  var _this = this;
20943
21507
 
@@ -21019,7 +21583,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21019
21583
  var _this2 = this;
21020
21584
 
21021
21585
  var params = {
21022
- url: api["A" /* getAdjunctFileInfos */],
21586
+ url: api["D" /* getAdjunctFileInfos */],
21023
21587
  params: { ownId: ownId, code: code }
21024
21588
  };
21025
21589
  util["a" /* default */].ajax(params).then(function (res) {
@@ -21092,11 +21656,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21092
21656
  type: 'warning'
21093
21657
  }).then(function () {
21094
21658
  _this3.loading = util["a" /* default */].loading(_this3.$loading, '加载中...');
21095
- var _taskExamineInfo = _this3.taskExamineInfo,
21096
- businessId = _taskExamineInfo.businessId,
21097
- appId = _taskExamineInfo.appId,
21098
- processDefinitionId = _taskExamineInfo.processDefinitionId,
21099
- pendingId = _taskExamineInfo.pendingId;
21659
+ var _taskExamineInfo2 = _this3.taskExamineInfo,
21660
+ businessId = _taskExamineInfo2.businessId,
21661
+ appId = _taskExamineInfo2.appId,
21662
+ processDefinitionId = _taskExamineInfo2.processDefinitionId,
21663
+ pendingId = _taskExamineInfo2.pendingId;
21100
21664
 
21101
21665
  var params = {
21102
21666
  businessId: businessId,
@@ -21107,7 +21671,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21107
21671
  taskAction: 'complete'
21108
21672
  };
21109
21673
  util["a" /* default */].ajax({
21110
- url: api["Db" /* taskReadHtml */],
21674
+ url: api["Ib" /* taskReadHtml */],
21111
21675
  params: { taskAction: 'complete' },
21112
21676
  headers: {
21113
21677
  Accept: 'application/json,text/plain'
@@ -21134,12 +21698,26 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21134
21698
  });
21135
21699
  }).catch(function () {});
21136
21700
  },
21137
- getTaskReadFlow: function getTaskReadFlow() {
21701
+ validReadTransferHandle: function validReadTransferHandle(readTransferHandleBusinessId, readTransferHandleProcessKey) {
21138
21702
  var _this4 = this;
21139
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
+
21140
21718
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21141
21719
  util["a" /* default */].ajax({
21142
- url: api["Rb" /* toStartTaskReadIndex */],
21720
+ url: api["Wb" /* toStartTaskReadIndex */],
21143
21721
  params: { pendingId: this.pendingId }
21144
21722
  }).then(function (res) {
21145
21723
  var status = res.status,
@@ -21147,47 +21725,52 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21147
21725
  _res$data = res.data,
21148
21726
  isCanFenyue = _res$data.isCanFenyue,
21149
21727
  taskExamine = _res$data.taskExamine,
21150
- taskReadOpinionRequired = _res$data.taskReadOpinionRequired;
21728
+ taskReadOpinionRequired = _res$data.taskReadOpinionRequired,
21729
+ isCanReadTransferHandle = _res$data.isCanReadTransferHandle;
21151
21730
 
21152
21731
  if (status === 'success') {
21153
- _this4.taskExamineInfo = taskExamine;
21154
- _this4.taskReadOpinionRequired = taskReadOpinionRequired;
21155
- _this4.isCanFenyue = isCanFenyue;
21156
- if (_this4.nodeName) {
21157
- _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);
21158
21741
  }
21159
- _this4.getNodeType();
21742
+ _this5.getNodeType();
21160
21743
  } else {
21161
- _this4.$message.error(message || '系统错误,请联系管理员!');
21744
+ _this5.$message.error(message || '系统错误,请联系管理员!');
21162
21745
  }
21163
- _this4.loading.close();
21746
+ _this5.loading.close();
21164
21747
  }).catch(function (err) {
21165
- _this4.loading.close();
21748
+ _this5.loading.close();
21166
21749
  if (err.message && err.message !== 'canceled') {
21167
- _this4.$message.error(err.message);
21750
+ _this5.$message.error(err.message);
21168
21751
  }
21169
21752
  });
21170
21753
  },
21171
21754
  getUserInfo: function getUserInfo() {
21172
- var _this5 = this;
21755
+ var _this6 = this;
21173
21756
 
21174
21757
  var mainConfig = util["a" /* default */].getStorage('mainConfig');
21175
21758
  if (mainConfig) {
21176
21759
  this.userModel = JSON.parse(mainConfig).userModel;
21177
21760
  } else {
21178
- util["a" /* default */].ajax({ url: api["fb" /* loginUserInfo */] }).then(function (res) {
21761
+ util["a" /* default */].ajax({ url: api["ib" /* loginUserInfo */] }).then(function (res) {
21179
21762
  var status = res.status,
21180
21763
  data = res.data;
21181
21764
 
21182
21765
  if (status == 'success') {
21183
- _this5.userModel = data;
21766
+ _this6.userModel = data;
21184
21767
  } else {
21185
21768
  var msg = res.msg || '系统错误,请联系管理员!';
21186
- _this5.$message.error(msg);
21769
+ _this6.$message.error(msg);
21187
21770
  }
21188
21771
  }).catch(function (err) {
21189
21772
  if (err.message && err.message !== 'canceled') {
21190
- _this5.$message.error(err.message);
21773
+ _this6.$message.error(err.message);
21191
21774
  }
21192
21775
  });
21193
21776
  }
@@ -21207,10 +21790,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21207
21790
  }
21208
21791
  },
21209
21792
  getNodeType: function getNodeType() {
21210
- var _this6 = this;
21793
+ var _this7 = this;
21211
21794
 
21212
21795
  util["a" /* default */].ajax({
21213
- url: api["u" /* findCodeValues */],
21796
+ url: api["x" /* findCodeValues */],
21214
21797
  params: {
21215
21798
  ccCode: 'notification_type',
21216
21799
  userId: util["a" /* default */].getStorage('userId')
@@ -21220,33 +21803,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21220
21803
  data = res.data;
21221
21804
 
21222
21805
  if (status === 'success') {
21223
- _this6.newsList = data;
21806
+ _this7.newsList = data;
21224
21807
  }
21225
21808
  }).catch(function (err) {
21226
21809
  if (err.message && err.message !== 'canceled') {
21227
- _this6.$message.error(err.message);
21810
+ _this7.$message.error(err.message);
21228
21811
  }
21229
21812
  });
21230
21813
  },
21231
21814
 
21232
- /**
21233
- * saveInfo
21234
- * @desc:暂存
21235
- * @author liufan
21236
- * @date 2022年9月9日
21815
+ /**
21816
+ * saveInfo
21817
+ * @desc:暂存
21818
+ * @author liufan
21819
+ * @date 2022年9月9日
21237
21820
  **/
21238
21821
  saveInfo: function saveInfo(type, btn) {
21239
- var _this7 = this;
21822
+ var _this8 = this;
21240
21823
 
21241
21824
  if (this.isFlow) {
21242
21825
  if (!type) {
21243
21826
  if (btn && btn.before) {
21244
21827
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21245
- _this7.$emit('save', _this7.businessIds);
21828
+ _this8.$emit('save', _this8.businessIds);
21246
21829
  }).catch(function (e) {});
21247
21830
  } else if (this.beforeSubmit != undefined) {
21248
21831
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
21249
- _this7.$emit('save', _this7.businessIds);
21832
+ _this8.$emit('save', _this8.businessIds);
21250
21833
  }).catch(function (e) {});
21251
21834
  } else {
21252
21835
  this.$emit('save', this.businessIds);
@@ -21255,13 +21838,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21255
21838
  } else {
21256
21839
  if (btn && btn.before && !type) {
21257
21840
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21258
- _this7.saveFlowInfo();
21841
+ _this8.saveFlowInfo();
21259
21842
  }).catch(function (e) {});
21260
21843
  } else if (this.beforeSubmit == undefined && !type) {
21261
21844
  this.subFun(this.saveFlowInfo);
21262
21845
  } else if (!type && this.beforeSubmit != undefined) {
21263
21846
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
21264
- _this7.saveFlowInfo();
21847
+ _this8.saveFlowInfo();
21265
21848
  }).catch(function (e) {});
21266
21849
  } else {
21267
21850
  this.saveFlowInfo(type);
@@ -21269,40 +21852,40 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21269
21852
  }
21270
21853
  },
21271
21854
  saveFlowInfo: function saveFlowInfo(isSave) {
21272
- var _this8 = this;
21855
+ var _this9 = this;
21273
21856
 
21274
21857
  var params = {
21275
21858
  opinion: this.value,
21276
21859
  pendingId: this.pendingId
21277
21860
  };
21278
21861
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
21279
- 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) {
21280
21863
  var status = res.status,
21281
21864
  message = res.message;
21282
21865
 
21283
- if (!isSave) _this8.loading.close();
21866
+ if (!isSave) _this9.loading.close();
21284
21867
  if (status == 'success') {
21285
21868
  // this.$message.success('暂存成功');
21286
- !isSave && _this8.$emit('save', _this8.businessIds);
21869
+ !isSave && _this9.$emit('save', _this9.businessIds);
21287
21870
  } else {
21288
- _this8.$message.error(message || '系统错误,请联系管理员!');
21871
+ _this9.$message.error(message || '系统错误,请联系管理员!');
21289
21872
  }
21290
21873
  }).catch(function (err) {
21291
- if (!isSave) _this8.loading.close();
21874
+ if (!isSave) _this9.loading.close();
21292
21875
  if (err.message && err.message !== 'canceled') {
21293
- _this8.$message.error(err.message);
21876
+ _this9.$message.error(err.message);
21294
21877
  }
21295
21878
  });
21296
21879
  },
21297
21880
 
21298
- /**
21299
- * rejectBtn
21300
- * @desc:点击驳回
21301
- * @author liufan
21302
- * @date 2022年5月25日
21881
+ /**
21882
+ * rejectBtn
21883
+ * @desc:点击驳回
21884
+ * @author liufan
21885
+ * @date 2022年5月25日
21303
21886
  **/
21304
21887
  rejectBtn: function rejectBtn() {
21305
- var _this9 = this;
21888
+ var _this10 = this;
21306
21889
 
21307
21890
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
21308
21891
  if (!this.value) {
@@ -21310,28 +21893,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21310
21893
  }
21311
21894
  if (this.beforeSubmit != undefined) {
21312
21895
  this.beforeSubmit(0).then(function (next) {
21313
- _this9.showReject = true;
21896
+ _this10.showReject = true;
21314
21897
  }).catch(function (e) {});
21315
21898
  } else {
21316
21899
  this.showReject = true;
21317
21900
  }
21318
21901
  },
21319
21902
 
21320
- /**
21321
- * taskReadBtn
21322
- * @desc:点击分阅
21323
- * @author liufan
21324
- * @date 2022年5月25日
21903
+ /**
21904
+ * taskReadBtn
21905
+ * @desc:点击分阅
21906
+ * @author liufan
21907
+ * @date 2022年5月25日
21325
21908
  **/
21326
21909
  taskReadBtn: function taskReadBtn() {
21327
- var _this10 = this;
21910
+ var _this11 = this;
21328
21911
 
21329
21912
  // return this.$message.warning('暂未开放!敬请期待');
21330
21913
  if (this.beforeSubmit != undefined) {
21331
21914
  this.beforeSubmit().then(function (next) {
21332
- if (_this10.value === '') _this10.value = _this10.nodeDefaultRejectOpinion;
21333
- _this10.taskReadType = 'create';
21334
- _this10.showTaskRead = true;
21915
+ if (_this11.value === '') _this11.value = _this11.nodeDefaultRejectOpinion;
21916
+ _this11.taskReadType = 'create';
21917
+ _this11.showTaskRead = true;
21335
21918
  }).catch(function (e) {});
21336
21919
  } else {
21337
21920
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -21340,41 +21923,41 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21340
21923
  }
21341
21924
  },
21342
21925
 
21343
- /**
21344
- * getFind
21345
- * @desc:获取通知方式
21346
- * @author liufan
21347
- * @date 2022年5月25日
21926
+ /**
21927
+ * getFind
21928
+ * @desc:获取通知方式
21929
+ * @author liufan
21930
+ * @date 2022年5月25日
21348
21931
  **/
21349
21932
  getFind: function getFind() {
21350
- var _this11 = this;
21933
+ var _this12 = this;
21351
21934
 
21352
21935
  util["a" /* default */].ajax({
21353
- url: api["w" /* findSysCodes */]
21936
+ url: api["z" /* findSysCodes */]
21354
21937
  }).then(function (res) {
21355
21938
  var status = res.status,
21356
21939
  message = res.message;
21357
21940
 
21358
21941
  if (status === 'success') {
21359
- _this11.nextNode.notificationType = message.split(',');
21942
+ _this12.nextNode.notificationType = message.split(',');
21360
21943
  var arr = [];
21361
- _this11.newsList.map(function (item) {
21362
- _this11.nextNode.notificationType.map(function (x) {
21944
+ _this12.newsList.map(function (item) {
21945
+ _this12.nextNode.notificationType.map(function (x) {
21363
21946
  if (x == item.cciValue) {
21364
21947
  arr.push(x);
21365
21948
  }
21366
21949
  });
21367
21950
  });
21368
- _this11.nextNode.notificationType = arr;
21951
+ _this12.nextNode.notificationType = arr;
21369
21952
  }
21370
21953
  }).catch(function (err) {
21371
21954
  if (err.message && err.message !== 'canceled') {
21372
- _this11.$message.error(err.message);
21955
+ _this12.$message.error(err.message);
21373
21956
  }
21374
21957
  });
21375
21958
  },
21376
21959
  getFreeStartParams: function getFreeStartParams() {
21377
- var _this12 = this;
21960
+ var _this13 = this;
21378
21961
 
21379
21962
  var _endFlowInfo = this.endFlowInfo,
21380
21963
  businessId = _endFlowInfo.businessId,
@@ -21382,7 +21965,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21382
21965
  nodeId = _endFlowInfo.nodeId;
21383
21966
 
21384
21967
  var param = {
21385
- url: api["F" /* getFreeStartFlowParams */],
21968
+ url: api["I" /* getFreeStartFlowParams */],
21386
21969
  params: {
21387
21970
  businessId: businessId,
21388
21971
  processDefinitionId: processDefinitionId,
@@ -21391,89 +21974,89 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21391
21974
  };
21392
21975
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21393
21976
  util["a" /* default */].ajax(param).then(function (res) {
21394
- _this12.loading.close();
21977
+ _this13.loading.close();
21395
21978
  if (res.rCode == 0 || res.status == 'success') {
21396
- _this12.freeStartFlowParams = res.results;
21397
- if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this12.subProcess('同意。', res.results.useScene);
21398
- if (!_this12.freeValid) return;
21399
- 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('未找到流程定义!');
21400
21983
  if (res.results.startFlowIndexProcessKeys.length == 1) {
21401
- _this12.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21402
- _this12.handleVisible = true;
21984
+ _this13.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
21985
+ _this13.handleVisible = true;
21403
21986
  } else {
21404
- _this12.showFreeStartFlow = true;
21987
+ _this13.showFreeStartFlow = true;
21405
21988
  }
21406
21989
  } else {
21407
- _this12.$message.error(res.message || '系统错误,请联系管理员!');
21990
+ _this13.$message.error(res.message || '系统错误,请联系管理员!');
21408
21991
  }
21409
21992
  });
21410
21993
  },
21411
21994
 
21412
- /**
21413
- * endFlows
21414
- * @desc:直接办结
21415
- * @author liufan
21416
- * @param {Object} res 直接办结数据
21417
- * @date 2022年5月25日
21995
+ /**
21996
+ * endFlows
21997
+ * @desc:直接办结
21998
+ * @author liufan
21999
+ * @param {Object} res 直接办结数据
22000
+ * @date 2022年5月25日
21418
22001
  **/
21419
22002
  endFlows: function endFlows(res) {
21420
- var _this13 = this;
22003
+ var _this14 = this;
21421
22004
 
21422
22005
  if (this.beforeSubmit != undefined) {
21423
22006
  this.beforeSubmit().then(function (next) {
21424
- _this13.saveEndFlows(res);
22007
+ _this14.saveEndFlows(res);
21425
22008
  }).catch(function (e) {});
21426
22009
  } else {
21427
22010
  this.saveEndFlows(res);
21428
22011
  }
21429
22012
  },
21430
22013
  saveEndFlows: function saveEndFlows(res) {
21431
- var _this14 = this;
22014
+ var _this15 = this;
21432
22015
 
21433
22016
  this.$confirm('确认' + res.value + '?').then(function () {
21434
22017
  var params = {
21435
- url: api["t" /* endFlowHtml */],
22018
+ url: api["w" /* endFlowHtml */],
21436
22019
  headers: { Accept: 'application/json,text/plain' },
21437
22020
  method: 'post',
21438
- data: mainvue_type_script_lang_js_extends({}, _this14.endFlowInfo, _this14.nextNode, {
21439
- opinion: _this14.value,
22021
+ data: mainvue_type_script_lang_js_extends({}, _this15.endFlowInfo, _this15.nextNode, {
22022
+ opinion: _this15.value,
21440
22023
  userId: util["a" /* default */].getStorage('userId'),
21441
- nextUserId: _this14.multiple ? _this14.nextNode.nextUserId.join(',') : _this14.nextNode.nextUserId,
21442
- addSignUserId: _this14.nextNode.addSignUserId.join(','),
21443
- customPresetUserJson: JSON.stringify(_this14.presetList),
21444
- presetUserJson: JSON.stringify(_this14.presetUserJson),
21445
- removeSignUserId: _this14.nextNode.removeSignUserId.join(','),
21446
- 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(',')
21447
22030
  })
21448
22031
  };
21449
- _this14.loading = util["a" /* default */].loading(_this14.$loading, '加载中...');
22032
+ _this15.loading = util["a" /* default */].loading(_this15.$loading, '加载中...');
21450
22033
  util["a" /* default */].ajax(params).then(function (res) {
21451
22034
  var status = res.status,
21452
22035
  message = res.message;
21453
22036
 
21454
- _this14.loading.close();
22037
+ _this15.loading.close();
21455
22038
  if (status === 'success') {
21456
- _this14.$message.success('提交成功');
21457
- _this14.$emit('success');
22039
+ _this15.$message.success('提交成功');
22040
+ _this15.$emit('success');
21458
22041
  } else {
21459
- _this14.$message.error(message || '系统错误,请联系管理员!');
21460
- _this14.$emit('error');
22042
+ _this15.$message.error(message || '系统错误,请联系管理员!');
22043
+ _this15.$emit('error');
21461
22044
  }
21462
22045
  }).catch(function (err) {
21463
- _this14.loading.close();
22046
+ _this15.loading.close();
21464
22047
  if (err.message && err.message !== 'canceled') {
21465
- _this14.$message.error(err.message);
22048
+ _this15.$message.error(err.message);
21466
22049
  }
21467
22050
  });
21468
22051
  }).catch(function (e) {});
21469
22052
  },
21470
22053
 
21471
- /**
21472
- * goView
21473
- * @desc:更多流程按钮操作
21474
- * @author liufan
21475
- * @param {Object} res 当前点击操作按钮数据
21476
- * @date 2022年5月25日
22054
+ /**
22055
+ * goView
22056
+ * @desc:更多流程按钮操作
22057
+ * @author liufan
22058
+ * @param {Object} res 当前点击操作按钮数据
22059
+ * @date 2022年5月25日
21477
22060
  **/
21478
22061
  goView: function goView(res) {
21479
22062
  // 驳回并办结:rejectAndEndHtml
@@ -21558,18 +22141,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21558
22141
  // isCanStartSubFlow
21559
22142
  },
21560
22143
 
21561
- /**
21562
- * toTakeAdvice
21563
- * @desc:征求意见
21564
- * @author liufan
21565
- * @date 2022年9月29日
22144
+ /**
22145
+ * toTakeAdvice
22146
+ * @desc:征求意见
22147
+ * @author liufan
22148
+ * @date 2022年9月29日
21566
22149
  **/
21567
22150
  toTakeAdvice: function toTakeAdvice(res) {
21568
- var _this15 = this;
22151
+ var _this16 = this;
21569
22152
 
21570
22153
  if (this.beforeSubmit != undefined) {
21571
22154
  this.beforeSubmit().then(function (next) {
21572
- _this15.saveToTakeAdvice(res);
22155
+ _this16.saveToTakeAdvice(res);
21573
22156
  }).catch(function (e) {});
21574
22157
  } else {
21575
22158
  this.saveToTakeAdvice(res);
@@ -21577,10 +22160,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21577
22160
  // return this.$message.warning('暂未开放!敬请期待');
21578
22161
  },
21579
22162
  saveToTakeAdvice: function saveToTakeAdvice(res) {
21580
- var _this16 = this;
22163
+ var _this17 = this;
21581
22164
 
21582
22165
  var params = {
21583
- url: api["db" /* isCanStartSubFlow */],
22166
+ url: api["gb" /* isCanStartSubFlow */],
21584
22167
  data: {
21585
22168
  appId: this.taskExamineInfo.appId,
21586
22169
  inevitableNode: res.inevitableNode
@@ -21592,70 +22175,70 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21592
22175
  util["a" /* default */].ajax(params).then(function (res) {
21593
22176
  var message = res.message;
21594
22177
 
21595
- _this16.loading.close();
22178
+ _this17.loading.close();
21596
22179
  if (message == 'success') {
21597
- _this16.showTaskUnionExamine = true;
22180
+ _this17.showTaskUnionExamine = true;
21598
22181
  } else {
21599
- _this16.$message.error(message || '系统错误,请联系管理员!');
22182
+ _this17.$message.error(message || '系统错误,请联系管理员!');
21600
22183
  }
21601
22184
  }).catch(function (err) {
21602
- _this16.loading.close();
22185
+ _this17.loading.close();
21603
22186
  if (err.message && err.message !== 'canceled') {
21604
- _this16.$message.error(err.message);
22187
+ _this17.$message.error(err.message);
21605
22188
  }
21606
22189
  });
21607
22190
  },
21608
22191
 
21609
- /**
21610
- * toStartDraf
21611
- * @desc: 稿件递送、联合审核、复核
21612
- * @author liufan
21613
- * @date 2022年9月29日
22192
+ /**
22193
+ * toStartDraf
22194
+ * @desc: 稿件递送、联合审核、复核
22195
+ * @author liufan
22196
+ * @date 2022年9月29日
21614
22197
  **/
21615
22198
  toStartDraf: function toStartDraf(res) {
21616
- var _this17 = this;
22199
+ var _this18 = this;
21617
22200
 
21618
22201
  if (this.beforeSubmit != undefined) {
21619
22202
  this.beforeSubmit().then(function (next) {
21620
- _this17.showTaskUnionExamine = true;
22203
+ _this18.showTaskUnionExamine = true;
21621
22204
  }).catch(function (e) {});
21622
22205
  } else {
21623
22206
  this.showTaskUnionExamine = true;
21624
22207
  }
21625
22208
  },
21626
22209
 
21627
- /**
21628
- * toSendMsg
21629
- * @desc:核稿通知
21630
- * @author liufan
21631
- * @date 2022年9月29日
22210
+ /**
22211
+ * toSendMsg
22212
+ * @desc:核稿通知
22213
+ * @author liufan
22214
+ * @date 2022年9月29日
21632
22215
  **/
21633
22216
  toSendMsg: function toSendMsg(res) {
21634
- var _this18 = this;
22217
+ var _this19 = this;
21635
22218
 
21636
22219
  if (this.beforeSubmit != undefined) {
21637
22220
  this.beforeSubmit().then(function (next) {
21638
- _this18.showSendMsg = true;
22221
+ _this19.showSendMsg = true;
21639
22222
  }).catch(function (e) {});
21640
22223
  } else {
21641
22224
  this.showSendMsg = true;
21642
22225
  }
21643
22226
  },
21644
22227
 
21645
- /**
21646
- * toTaskReadAndEnd
21647
- * @desc:分阅并办结
21648
- * @author liufan
21649
- * @date 2022年9月29日
22228
+ /**
22229
+ * toTaskReadAndEnd
22230
+ * @desc:分阅并办结
22231
+ * @author liufan
22232
+ * @date 2022年9月29日
21650
22233
  **/
21651
22234
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
21652
- var _this19 = this;
22235
+ var _this20 = this;
21653
22236
 
21654
22237
  if (this.beforeSubmit != undefined) {
21655
22238
  this.beforeSubmit().then(function (next) {
21656
- if (_this19.value === '') _this19.value = _this19.nodeDefaultRejectOpinion;
21657
- _this19.taskReadType = 'taskReadAndEnd';
21658
- _this19.showTaskRead = true;
22239
+ if (_this20.value === '') _this20.value = _this20.nodeDefaultRejectOpinion;
22240
+ _this20.taskReadType = 'taskReadAndEnd';
22241
+ _this20.showTaskRead = true;
21659
22242
  }).catch(function (e) {});
21660
22243
  } else {
21661
22244
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -21664,58 +22247,58 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21664
22247
  }
21665
22248
  },
21666
22249
 
21667
- /**
21668
- * rejectAndEnd
21669
- * @desc:驳回并办结
21670
- * @author liufan
21671
- * @date 2022年9月29日
22250
+ /**
22251
+ * rejectAndEnd
22252
+ * @desc:驳回并办结
22253
+ * @author liufan
22254
+ * @date 2022年9月29日
21672
22255
  **/
21673
22256
  rejectAndEnd: function rejectAndEnd(res) {
21674
- var _this20 = this;
22257
+ var _this21 = this;
21675
22258
 
21676
22259
  if (this.isOpinionRequired == 1 && (this.value == '' || !this.value)) {
21677
22260
  if (!this.$refs.commonOpinions.validate()) return;
21678
22261
  }
21679
22262
  if (this.beforeSubmit != undefined) {
21680
22263
  this.beforeSubmit().then(function (next) {
21681
- _this20.saveRejectAndEnd(res);
22264
+ _this21.saveRejectAndEnd(res);
21682
22265
  }).catch(function (e) {});
21683
22266
  } else {
21684
22267
  this.saveRejectAndEnd(res);
21685
22268
  }
21686
22269
  },
21687
22270
  saveRejectAndEnd: function saveRejectAndEnd(res) {
21688
- var _this21 = this;
22271
+ var _this22 = this;
21689
22272
 
21690
22273
  this.$confirm('确认' + res.value + '?').then(function () {
21691
22274
  // return this.$message.warning('请填写意见');
21692
22275
  var params = {
21693
- url: api["qb" /* rejectAndEnd */],
22276
+ url: api["ub" /* rejectAndEnd */],
21694
22277
  headers: { Accept: 'application/json,text/plain' },
21695
22278
  method: 'post',
21696
22279
  data: {
21697
- opinion: _this21.value,
21698
- pendingId: _this21.pendingId,
22280
+ opinion: _this22.value,
22281
+ pendingId: _this22.pendingId,
21699
22282
  isSinglePage: false
21700
22283
  }
21701
22284
  };
21702
- _this21.loading = util["a" /* default */].loading(_this21.$loading, '加载中...');
22285
+ _this22.loading = util["a" /* default */].loading(_this22.$loading, '加载中...');
21703
22286
  util["a" /* default */].ajax(params).then(function (res) {
21704
22287
  var status = res.status,
21705
22288
  message = res.message;
21706
22289
 
21707
- _this21.loading.close();
22290
+ _this22.loading.close();
21708
22291
  if (status === 'success') {
21709
- _this21.$message.success('提交成功');
21710
- _this21.$emit('success');
22292
+ _this22.$message.success('提交成功');
22293
+ _this22.$emit('success');
21711
22294
  } else {
21712
- _this21.$message.error(message || '系统错误,请联系管理员!');
21713
- _this21.$emit('error');
22295
+ _this22.$message.error(message || '系统错误,请联系管理员!');
22296
+ _this22.$emit('error');
21714
22297
  }
21715
22298
  }).catch(function (err) {
21716
- _this21.loading.close();
22299
+ _this22.loading.close();
21717
22300
  if (err.message && err.message !== 'canceled') {
21718
- _this21.$message.error(err.message);
22301
+ _this22.$message.error(err.message);
21719
22302
  }
21720
22303
  });
21721
22304
  }).catch(function () {
@@ -21723,19 +22306,19 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21723
22306
  });
21724
22307
  },
21725
22308
 
21726
- /**
21727
- * toTransfer
21728
- * @desc:转办
21729
- * @author liufan
21730
- * @date 2022年9月29日
22309
+ /**
22310
+ * toTransfer
22311
+ * @desc:转办
22312
+ * @author liufan
22313
+ * @date 2022年9月29日
21731
22314
  **/
21732
22315
  toTransfer: function toTransfer(res) {
21733
- var _this22 = this;
22316
+ var _this23 = this;
21734
22317
 
21735
22318
  if (this.beforeSubmit != undefined) {
21736
22319
  this.beforeSubmit(0).then(function (next) {
21737
- _this22.taskReadType = 'transfer';
21738
- _this22.showTaskRead = true;
22320
+ _this23.taskReadType = 'transfer';
22321
+ _this23.showTaskRead = true;
21739
22322
  }).catch(function (e) {});
21740
22323
  } else {
21741
22324
  this.taskReadType = 'transfer';
@@ -21743,14 +22326,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21743
22326
  }
21744
22327
  },
21745
22328
 
21746
- /**
21747
- * getNodeInfo
21748
- * @desc:获取节点信息
21749
- * @author liufan
21750
- * @date 2022年5月25日
22329
+ /**
22330
+ * getNodeInfo
22331
+ * @desc:获取节点信息
22332
+ * @author liufan
22333
+ * @date 2022年5月25日
21751
22334
  **/
21752
22335
  getNodeInfo: function getNodeInfo() {
21753
- var _this23 = this;
22336
+ var _this24 = this;
21754
22337
 
21755
22338
  var params = {
21756
22339
  processDefinitionId: this.nodeInfo.nextNode,
@@ -21760,49 +22343,49 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21760
22343
  pendingId: this.pendingId,
21761
22344
  businessId: this.businessIds
21762
22345
  };
21763
- 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) {
21764
22347
  var status = res.status,
21765
22348
  message = res.message,
21766
22349
  data = res.data;
21767
22350
 
21768
- _this23.loading.close();
22351
+ _this24.loading.close();
21769
22352
  if (status === 'success') {
21770
- data.otherOrgDisabledObjId && (_this23.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
21771
- data.currentOrgDisabledObjId && (_this23.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22353
+ data.otherOrgDisabledObjId && (_this24.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22354
+ data.currentOrgDisabledObjId && (_this24.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
21772
22355
  if (data != null) {
21773
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) {
21774
- _this23.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22357
+ _this24.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
21775
22358
  } else {
21776
- _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);
21777
22360
  }
21778
- _this23.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
21779
- _this23.isTaskread = data.nodeExtAttr.isTaskread;
21780
- _this23.isHandleExplain = data.nodeExtAttr.isHandleExplain;
21781
- _this23.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
21782
- _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;
21783
22366
  //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
21784
- if (_this23.nodeType === 1 || _this23.nodeType === 2) {
21785
- _this23.isMainSubProcess === true ? _this23.isNodeShowProcess = true : _this23.isNodeShowProcess = false;
21786
- _this23.isMainSubProcess === true ? _this23.isMainSubProcess = true : _this23.isMainSubProcess = false;
21787
- _this23.isNextUser = false;
21788
- _this23.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
21789
- _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; //判断是否隐藏外单位
21790
22373
  } else {
21791
- _this23.isHideCurrentOrg = false;
21792
- _this23.isHideOtherOrg = false;
21793
- _this23.isNodeShowProcess = false;
21794
- _this23.isMainSubProcess = false;
21795
- _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;
21796
22379
  // this.isMainSubProcess === true
21797
22380
  // ? (this.isMainSubProcess = true)
21798
22381
  // : (this.isMainSubProcess = false);
21799
22382
  }
21800
- _this23.multiple ? _this23.nextNode.nextUserId = [] : _this23.nextNode.nextUserId = '';
21801
- 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) {
21802
22385
  data.nextUserList.map(function (item) {
21803
22386
  if (item.userId && item.username) {
21804
- _this23.nextNode.nextUserId.push(item.userId);
21805
- _this23.selectUserList.push({
22387
+ _this24.nextNode.nextUserId.push(item.userId);
22388
+ _this24.selectUserList.push({
21806
22389
  showname: item.username,
21807
22390
  showid: item.userId
21808
22391
  });
@@ -21811,50 +22394,50 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21811
22394
  }
21812
22395
  data.nextUserList.map(function (item) {
21813
22396
  if (item.userId && item.username) {
21814
- _this23.options.push({
22397
+ _this24.options.push({
21815
22398
  showname: item.username,
21816
22399
  showid: item.userId
21817
22400
  });
21818
22401
  }
21819
22402
  });
21820
22403
  if (data.nodeExtAttr.presetEdit != 0) {
21821
- _this23.radioList = _this23.options;
22404
+ _this24.radioList = _this24.options;
21822
22405
  }
21823
- if (!_this23.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
21824
- _this23.nextNode.nextUserId = data.nextUserList[0].userId;
21825
- _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({
21826
22409
  showname: data.nextUserList[0].username,
21827
22410
  showid: data.nextUserList[0].userId
21828
22411
  });
21829
22412
  }
21830
- _this23.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
21831
- _this23.isCustomUser = data.nodeExtAttr.isCustomUser;
21832
- _this23.presetEdit = data.nodeExtAttr.presetEdit;
21833
- _this23.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
21834
- _this23.handleMode = data.countersignaturetypeText;
21835
- 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 : '';
21836
22419
  }
21837
- _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);
21838
22421
  } else {
21839
- _this23.$message.error(message || '系统错误,请联系管理员!');
22422
+ _this24.$message.error(message || '系统错误,请联系管理员!');
21840
22423
  }
21841
22424
  }).catch(function (err) {
21842
- _this23.loading.close();
22425
+ _this24.loading.close();
21843
22426
  if (err.message && err.message !== 'canceled') {
21844
- _this23.$message.error(err.message);
22427
+ _this24.$message.error(err.message);
21845
22428
  }
21846
22429
  });
21847
22430
  },
21848
22431
 
21849
- /**
21850
- * selecNext
21851
- * @desc:下步节点变化时更新数据
21852
- * @author liufan
21853
- * @param {String} val 当前选中值
21854
- * @date 2022年5月25日
22432
+ /**
22433
+ * selecNext
22434
+ * @desc:下步节点变化时更新数据
22435
+ * @author liufan
22436
+ * @param {String} val 当前选中值
22437
+ * @date 2022年5月25日
21855
22438
  **/
21856
22439
  selecNext: function selecNext(val, type, isDef) {
21857
- var _this24 = this;
22440
+ var _this25 = this;
21858
22441
 
21859
22442
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
21860
22443
  if (this.multiple) {
@@ -21885,16 +22468,16 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21885
22468
  this.operationList.forEach(function (item) {
21886
22469
  if (item.key === val) {
21887
22470
  if (!item.taskNodeList) {
21888
- _this24.nodeInfos = [];
22471
+ _this25.nodeInfos = [];
21889
22472
  } else {
21890
- _this24.nodeInfos = item.taskNodeList;
22473
+ _this25.nodeInfos = item.taskNodeList;
21891
22474
  }
21892
22475
  return;
21893
22476
  }
21894
22477
  });
21895
22478
  if (this.defaultNextNode) {
21896
22479
  var defaultNode = this.nodeInfos.filter(function (item) {
21897
- return item.nodeId == _this24.defaultNextNode;
22480
+ return item.nodeId == _this25.defaultNextNode;
21898
22481
  });
21899
22482
  if (this.nodeInfos.length > 0 && defaultNode.length == 0) {
21900
22483
  this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
@@ -21960,11 +22543,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21960
22543
  if (isDef !== true) this.getNodeInfo();
21961
22544
  },
21962
22545
 
21963
- /**
21964
- * isMultiple
21965
- * @desc:是否多选
21966
- * @author liufan
21967
- * @date 2022年9月13日
22546
+ /**
22547
+ * isMultiple
22548
+ * @desc:是否多选
22549
+ * @author liufan
22550
+ * @date 2022年9月13日
21968
22551
  **/
21969
22552
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
21970
22553
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -21996,24 +22579,24 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21996
22579
  }
21997
22580
  },
21998
22581
 
21999
- /**
22000
- * getHedInfo
22001
- * @desc:获取审核页面数据
22002
- * @author liufan
22003
- * @date 2022年5月25日
22582
+ /**
22583
+ * getHedInfo
22584
+ * @desc:获取审核页面数据
22585
+ * @author liufan
22586
+ * @date 2022年5月25日
22004
22587
  **/
22005
22588
  getHedInfo: function getHedInfo() {
22006
- var _this25 = this;
22589
+ var _this26 = this;
22007
22590
 
22008
22591
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22009
22592
  var params = {
22010
22593
  pendingId: this.pendingId,
22011
22594
  userId: util["a" /* default */].getStorage('userId')
22012
22595
  };
22013
- 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) {
22014
22597
  //pc返回数据
22015
22598
 
22016
- _this25.loading.close();
22599
+ _this26.loading.close();
22017
22600
  if (res.status === 'success') {
22018
22601
  var _res$data2 = res.data,
22019
22602
  nextNodeList = _res$data2.nextNodeList,
@@ -22021,6 +22604,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22021
22604
  isCustomPreset = _res$data2.isCustomPreset,
22022
22605
  presetTaskNodeKeyStr = _res$data2.presetTaskNodeKeyStr,
22023
22606
  presetTaskNodeMap = _res$data2.presetTaskNodeMap,
22607
+ circularReadParamsMap = _res$data2.circularReadParamsMap,
22024
22608
  isPreset = _res$data2.isPreset,
22025
22609
  choiceOrgId = _res$data2.choiceOrgId,
22026
22610
  choiceDeptId = _res$data2.choiceDeptId,
@@ -22044,206 +22628,208 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22044
22628
  taskButtonList = _res$data2.taskButtonList,
22045
22629
  isCanPreAddSign = _res$data2.isCanPreAddSign;
22046
22630
 
22047
- _this25.$emit('startTaskRead', res);
22048
- _this25.$emit('start-task-read', res);
22049
- _this25.currentOrgName = currentOrgName;
22050
- _this25.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
22051
- _this25.readOnlyNotificationType = readOnlyNotificationType;
22052
- _this25.isSpecial = isSpecial;
22053
- _this25.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
22054
- _this25.otherOrgName = otherOrgName;
22055
- _this25.isCanPreAddSign = isCanPreAddSign;
22056
- _this25.endFlowInfo.choiceOrgId = choiceOrgId;
22057
- _this25.endFlowInfo.choiceDeptId = choiceDeptId;
22058
- _this25.endFlowInfo.pendingId = _this25.pendingId;
22059
- _this25.attachedCode = attachedCode;
22060
- _this25.endFlowInfo.pOrgId = pOrgId;
22061
- _this25.canPresetRead = canPresetRead;
22062
- _this25.isCdjxjTaskHandle = isCdjxjTaskHandle;
22063
- nextNodeCheckType && (_this25.nextNodeCheckType = nextNodeCheckType);
22064
- _this25.operationList = taskOperations || [];
22065
- _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;
22066
22651
  if (canPresetRead) {
22067
22652
  var ids = nodeInfoMap.nodeExtAttr.presetReadCandinateIds.split(',');
22068
22653
  var names = nodeInfoMap.nodeExtAttr.presetReadCandinateNames.split(',');
22069
22654
  ids.map(function (item, index) {
22070
- _this25.presetReadUserId.push({
22655
+ _this26.presetReadUserId.push({
22071
22656
  showid: item,
22072
22657
  showname: names[index]
22073
22658
  });
22074
- _this25.selectPresetUserList.push({
22659
+ _this26.selectPresetUserList.push({
22075
22660
  showid: item,
22076
22661
  showname: names[index]
22077
22662
  });
22078
- _this25.nextNode.presetReadUserId.push(item);
22663
+ _this26.nextNode.presetReadUserId.push(item);
22079
22664
  });
22080
22665
  }
22081
- if (!_this25.isFlow) _this25.getFile(_this25.pendingId, attachedCode);
22666
+ if (!_this26.isFlow) _this26.getFile(_this26.pendingId, attachedCode);
22082
22667
  if (nextNodeList && nextNodeList.length != 0) {
22083
- _this25.nextNodeList = nextNodeList;
22668
+ _this26.nextNodeList = nextNodeList;
22084
22669
  }
22085
- if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this25.removeUsers = canRemoveSignUserList;
22670
+ if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this26.removeUsers = canRemoveSignUserList;
22086
22671
  if (taskOperations && taskOperations.length != 0) {
22087
22672
  taskOperations.map(function (item) {
22088
- if (item.key === 9) _this25.isReject = true;
22673
+ if (item.key === 9) _this26.isReject = true;
22089
22674
  if (item.isSelected) {
22090
- _this25.nodeInfos = [];
22091
- _this25.nextNode.nextOperate = item.key;
22675
+ _this26.nodeInfos = [];
22676
+ _this26.nextNode.nextOperate = item.key;
22092
22677
  if (item.taskNodeList != null) {
22093
- _this25.nodeInfos = item.taskNodeList;
22678
+ _this26.nodeInfos = item.taskNodeList;
22094
22679
  }
22095
22680
  }
22096
22681
  if (taskOperations.length == 1) {
22097
- _this25.nodeInfos = [];
22098
- _this25.nextNode.nextOperate = taskOperations[0].key;
22682
+ _this26.nodeInfos = [];
22683
+ _this26.nextNode.nextOperate = taskOperations[0].key;
22099
22684
  if (taskOperations[0].taskNodeList != null) {
22100
- _this25.nodeInfos = taskOperations[0].taskNodeList;
22685
+ _this26.nodeInfos = taskOperations[0].taskNodeList;
22101
22686
  }
22102
22687
  }
22103
22688
  });
22104
- _this25.selecNext(_this25.nextNode.nextOperate, true, true);
22689
+ _this26.selecNext(_this26.nextNode.nextOperate, true, true);
22105
22690
  }
22106
22691
  if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
22107
- _this25.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22692
+ _this26.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
22108
22693
  if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
22109
22694
  var notice = JSON.parse(nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList);
22110
22695
  notice.map(function (x) {
22111
- _this25.nodeFixedOpinionSelectList.push({ content: x });
22696
+ _this26.nodeFixedOpinionSelectList.push({ content: x });
22112
22697
  });
22113
22698
  }
22114
- _this25.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
22115
- _this25.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
22116
- _this25.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
22117
- _this25.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
22118
- _this25.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
22119
- _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;
22120
22705
  // this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
22121
- _this25.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22706
+ _this26.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
22122
22707
  if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
22123
- var defaultNode = _this25.nodeInfos.filter(function (item) {
22708
+ var defaultNode = _this26.nodeInfos.filter(function (item) {
22124
22709
  return item.nodeId == nodeInfoMap.nodeExtAttr.defaultNextNode;
22125
22710
  });
22126
- if (_this25.nodeInfos.length > 0 && defaultNode.length == 0) {
22127
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22711
+ if (_this26.nodeInfos.length > 0 && defaultNode.length == 0) {
22712
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22128
22713
  } else {
22129
- _this25.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22714
+ _this26.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
22130
22715
  }
22131
- } else if (_this25.nodeInfos.length > 0) {
22132
- _this25.nextNode.nextNodeId = _this25.nodeInfos[0].nodeId;
22716
+ } else if (_this26.nodeInfos.length > 0) {
22717
+ _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
22133
22718
  }
22134
- _this25.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22719
+ _this26.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
22135
22720
  if (nodeInfoMap.nodeExtAttr.submitText) {
22136
- _this25.btnList.map(function (x) {
22721
+ _this26.btnList.map(function (x) {
22137
22722
  if (x.event === 'sub') {
22138
22723
  x.text = nodeInfoMap.nodeExtAttr.submitText;
22139
22724
  }
22140
22725
  });
22141
22726
  }
22142
22727
  }
22143
- _this25.choiceOrgId = choiceOrgId;
22144
- _this25.choiceDeptId = choiceDeptId;
22145
- _this25.pOrgId = pOrgId;
22728
+ _this26.choiceOrgId = choiceOrgId;
22729
+ _this26.choiceDeptId = choiceDeptId;
22730
+ _this26.pOrgId = pOrgId;
22146
22731
  if (res.data && res.data.isEndUserTask != undefined) {
22147
- _this25.isEndUserTask = res.data.isEndUserTask;
22732
+ _this26.isEndUserTask = res.data.isEndUserTask;
22148
22733
  }
22149
22734
  if (JSON.stringify(taskExamine) != '{}' && taskExamine) {
22150
- _this25.nodeInfo.nextNode = taskExamine.processDefinitionId;
22151
- _this25.NodeName = taskExamine.nodeName;
22152
- _this25.taskId = taskExamine.taskId;
22153
- _this25.businessIds = taskExamine.businessId;
22154
- _this25.appId = taskExamine.appId;
22155
- _this25.taskExamineInfo = taskExamine;
22156
- _this25.taskExamineInfo.choiceOrgId = choiceOrgId;
22157
- _this25.taskExamineInfo.choiceDeptId = choiceDeptId;
22158
- _this25.endFlowInfo.processType = taskExamine.processType;
22159
- _this25.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
22160
- _this25.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
22161
- _this25.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
22162
- _this25.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22163
- _this25.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
22164
- _this25.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22165
- _this25.nextNode.isReadDealReply = taskExamine.isReadDealReply;
22166
- _this25.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
22167
- _this25.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
22168
- _this25.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
22169
- _this25.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
22170
- _this25.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
22171
- _this25.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
22172
- _this25.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
22173
- _this25.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
22174
- _this25.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
22175
- _this25.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
22176
- _this25.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
22177
- _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;
22178
22763
  // this.endFlowInfo.isReadDealReply =
22179
22764
  // taskExamine.isReadDealReplybusinessId;
22180
- _this25.endFlowInfo.appId = taskExamine.appId;
22181
- _this25.endFlowInfo.businessId = taskExamine.businessId;
22182
- _this25.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
22183
- _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;
22184
22769
  }
22185
- if (_this25.nodeName) {
22186
- _this25.NodeName = _this25.nodeName;
22770
+ if (_this26.nodeName) {
22771
+ _this26.NodeName = _this26.nodeName;
22187
22772
  }
22188
- _this25.isCanAddSign = isCanAddSign;
22189
- _this25.processObj = res.data;
22190
- if (_this25.isCanAddSign) {
22191
- _this25.nextNode.isAddSign = '2';
22773
+ _this26.isCanAddSign = isCanAddSign;
22774
+ _this26.processObj = res.data;
22775
+ if (_this26.isCanAddSign) {
22776
+ _this26.nextNode.isAddSign = '2';
22192
22777
  }
22193
- _this25.isCanRemoveSign = isCanRemoveSign;
22194
- if (_this25.isCanRemoveSign) {
22195
- _this25.nextNode.isRemoveSign = '2';
22778
+ _this26.isCanRemoveSign = isCanRemoveSign;
22779
+ if (_this26.isCanRemoveSign) {
22780
+ _this26.nextNode.isRemoveSign = '2';
22196
22781
  }
22197
22782
 
22198
- if (!_this25.isOpinionRequired) {
22199
- _this25.isOpinionRequired = 0;
22783
+ if (!_this26.isOpinionRequired) {
22784
+ _this26.isOpinionRequired = 0;
22200
22785
  }
22201
22786
  // opinion && (this.value = opinion);
22202
- _this25.nextNode.notificationMsg = defaultNotificationMessage;
22203
- _this25.moreList = [];
22787
+ _this26.nextNode.notificationMsg = defaultNotificationMessage;
22788
+ _this26.moreList = [];
22204
22789
  if (taskButtonList && taskButtonList.length != 0) {
22205
22790
  taskButtonList.map(function (item) {
22206
22791
  if (item.fun === 'reject()') {
22207
- _this25.rejectObj = item;
22792
+ _this26.rejectObj = item;
22208
22793
  } else if (item.fun === 'toStartTaskRead()') {
22209
- _this25.pointsReadingObj = item;
22794
+ _this26.pointsReadingObj = item;
22210
22795
  } else {
22211
- _this25.moreList.push(item);
22796
+ _this26.moreList.push(item);
22212
22797
  }
22213
22798
  });
22214
22799
  }
22215
- _this25.isMainSubProcess = res.data.isMainSubProcess == 'true';
22216
- _this25.isCustomPreset = isCustomPreset;
22217
- _this25.isPreset = isPreset;
22218
- _this25.presetTaskNodeMap = presetTaskNodeMap;
22219
- _this25.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
22220
- _this25.getFind();
22221
-
22222
- _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++;
22223
22809
  } else {
22224
22810
  if (res.status === 'taskCompleted') {
22225
- _this25.$emit('shrink', true);
22226
- _this25.shrinkAbled = true;
22227
- _this25.$message.warning(res.message || '系统错误,请联系管理员!');
22811
+ _this26.$emit('shrink', true);
22812
+ _this26.shrinkAbled = true;
22813
+ _this26.$message.warning(res.message || '系统错误,请联系管理员!');
22228
22814
  } else {
22229
- _this25.$message.error(res.message || '系统错误,请联系管理员!');
22815
+ _this26.$message.error(res.message || '系统错误,请联系管理员!');
22230
22816
  }
22231
22817
  }
22232
22818
  }).catch(function (err) {
22233
- _this25.loading.close();
22819
+ _this26.loading.close();
22234
22820
  if (err.message && err.message !== 'canceled') {
22235
- _this25.$message.error(err.message);
22821
+ _this26.$message.error(err.message);
22236
22822
  }
22237
22823
  });
22238
22824
  },
22239
22825
 
22240
- /**
22241
- * closeProcess
22242
- * @desc:关闭弹窗
22243
- * @author liufan
22244
- * @param {boolean} val 当前是否办理流程
22245
- * @param {String} type 当前点击的弹窗类型
22246
- * @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日
22247
22833
  **/
22248
22834
  closeProcess: function closeProcess(val, type, closeParent) {
22249
22835
  if (closeParent) {
@@ -22260,23 +22846,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22260
22846
  }
22261
22847
  },
22262
22848
 
22263
- /**
22264
- * selectChange
22265
- * @desc:常用语选择
22266
- * @author liufan
22267
- * @param {String} val 选中值
22268
- * @date 2022年5月25日
22849
+ /**
22850
+ * selectChange
22851
+ * @desc:常用语选择
22852
+ * @author liufan
22853
+ * @param {String} val 选中值
22854
+ * @date 2022年5月25日
22269
22855
  **/
22270
22856
  selectChange: function selectChange(val) {
22271
22857
  this.value = val;
22272
22858
  },
22273
22859
 
22274
- /**
22275
- * upDate
22276
- * @desc:修改常用语
22277
- * @author liufan
22278
- * @param {Object} val 修改值
22279
- * @date 2022年5月25日
22860
+ /**
22861
+ * upDate
22862
+ * @desc:修改常用语
22863
+ * @author liufan
22864
+ * @param {Object} val 修改值
22865
+ * @date 2022年5月25日
22280
22866
  **/
22281
22867
  upDate: function upDate(val) {
22282
22868
  this.FormData.id = val.id;
@@ -22284,14 +22870,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22284
22870
  },
22285
22871
 
22286
22872
 
22287
- /**
22288
- * getProcess
22289
- * @desc:获取选择流程
22290
- * @author liufan
22291
- * @date 2022年5月25日
22873
+ /**
22874
+ * getProcess
22875
+ * @desc:获取选择流程
22876
+ * @author liufan
22877
+ * @date 2022年5月25日
22292
22878
  **/
22293
22879
  getProcess: function getProcess() {
22294
- var _this26 = this;
22880
+ var _this27 = this;
22295
22881
 
22296
22882
  var params = mainvue_type_script_lang_js_extends({
22297
22883
  businessId: this.businessId,
@@ -22301,113 +22887,152 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22301
22887
  hideTempSave: true
22302
22888
  }, this.param);
22303
22889
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22304
- 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) {
22305
22891
  var status = res.status,
22306
22892
  message = res.message,
22307
22893
  data = res.data;
22308
22894
 
22309
- _this26.loading.close();
22895
+ _this27.loading.close();
22310
22896
  if (status === 'success') {
22311
- _this26.isStartFlowChartView = data.isStartFlowChartView;
22897
+ _this27.isStartFlowChartView = data.isStartFlowChartView;
22312
22898
  if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
22313
- _this26.$message.error('流程不存在或未关联对应流程!');
22899
+ _this27.$message.error('流程不存在或未关联对应流程!');
22314
22900
  } else {
22315
- _this26.nodeInfo.option = data.definitionList;
22316
- _this26.nodeInfo.nextNode = data.definitionList.filter(function (item) {
22317
- 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;
22318
22904
  });
22319
- if (_this26.nodeInfo.nextNode.length) {
22320
- _this26.nodeInfo.nextNode = _this26.nodeInfo.nextNode[0].processDefId;
22905
+ if (_this27.nodeInfo.nextNode.length) {
22906
+ _this27.nodeInfo.nextNode = _this27.nodeInfo.nextNode[0].processDefId;
22321
22907
  } else {
22322
22908
  if (data.definitionList.length != 0) {
22323
- _this26.nodeInfo.nextNode = data.definitionList[0].processDefId;
22909
+ _this27.nodeInfo.nextNode = data.definitionList[0].processDefId;
22324
22910
  } else {
22325
- _this26.nodeInfo.nextNode = '';
22911
+ _this27.nodeInfo.nextNode = '';
22326
22912
  }
22327
22913
  }
22328
- if (_this26.nodeInfo.nextNode) {
22329
- _this26.handleChange(_this26.nodeInfo.nextNode);
22914
+ if (_this27.nodeInfo.nextNode) {
22915
+ _this27.handleChange(_this27.nodeInfo.nextNode);
22330
22916
  }
22331
22917
  }
22332
22918
  } else {
22333
- _this26.$message.error(message || '系统错误,请联系管理员!');
22919
+ _this27.$message.error(message || '系统错误,请联系管理员!');
22334
22920
  }
22335
22921
  }).catch(function (err) {
22336
- _this26.loading.close();
22922
+ _this27.loading.close();
22337
22923
  if (err.message && err.message !== 'canceled') {
22338
- _this26.$message.error(err.message);
22924
+ _this27.$message.error(err.message);
22339
22925
  }
22340
22926
  });
22341
22927
  },
22342
22928
 
22343
- /**
22344
- * getPendedhistoryList
22345
- * @desc:获取流程列表
22346
- * @author liufan
22347
- * @date 2022年5月25日
22929
+ /**
22930
+ * getPendedhistoryList
22931
+ * @desc:获取流程列表
22932
+ * @author liufan
22933
+ * @date 2022年5月25日
22348
22934
  **/
22349
22935
  getPendedhistoryList: function getPendedhistoryList() {
22350
- var _this27 = this;
22936
+ var _this28 = this;
22351
22937
 
22352
22938
  var params = {
22353
22939
  apprecordId: this.businessIds,
22354
22940
  userId: util["a" /* default */].getStorage('userId'),
22355
22941
  type: 2
22356
22942
  };
22357
- 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) {
22358
22944
  var rCode = res.rCode,
22359
22945
  msg = res.msg,
22360
22946
  results = res.results;
22361
22947
 
22362
22948
  if (!rCode) {
22363
- _this27.nextNode.nextUserId = [];
22364
- _this27.showNews = false;
22365
- _this27.nextNode.notificationType = [];
22366
- _this27.pendingId = results[results.length - 1].attachId;
22367
- _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();
22368
22954
  } else {
22369
- _this27.$message.error(msg || '系统错误,请联系管理员!');
22955
+ _this28.$message.error(msg || '系统错误,请联系管理员!');
22370
22956
  }
22371
22957
  }).catch(function (err) {
22372
22958
  if (err.message && err.message !== 'canceled') {
22373
- _this27.$message.error(err.message);
22959
+ _this28.$message.error(err.message);
22374
22960
  }
22375
22961
  });
22376
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
+ },
22377
22998
 
22378
22999
  // 提交流程
22379
- /**
22380
- * subProcess
22381
- * @desc:提交流程
22382
- * @author liufan
22383
- * @param {String} formName 当前form表单ref值
22384
- * @date 2022年5月25日
23000
+ /**
23001
+ * subProcess
23002
+ * @desc:提交流程
23003
+ * @author liufan
23004
+ * @param {String} formName 当前form表单ref值
23005
+ * @date 2022年5月25日
22385
23006
  **/
22386
23007
  subProcess: function subProcess(val, type) {
22387
- var _this28 = this;
23008
+ var _this30 = this;
22388
23009
 
22389
23010
  return this.$refs['nextNode'].validate(function (valid) {
22390
23011
  if (valid) {
22391
- if (_this28.isSubmitButtonShowAgreeAndDisagree == 1) {
22392
- _this28.value = _this28.value.replace(RegExp('不同意。', 'g'), '');
22393
- _this28.value = _this28.value.replace(RegExp('同意。', 'g'), '');
22394
- _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;
22395
23016
  }
22396
- if (!_this28.validInfo()) {
22397
- _this28.freeValid = false;
23017
+ if (!_this30.validInfo()) {
23018
+ _this30.freeValid = false;
22398
23019
  return;
22399
23020
  } else {
22400
- _this28.freeValid = true;
23021
+ _this30.freeValid = true;
23022
+ }
23023
+ if (_this30.currentNodeIsCircularReadNode && _this30.nextNode.nextOtherOrgObj.length != 0) {
23024
+ _this30.reqCircularRead(type);
23025
+ return;
22401
23026
  }
22402
23027
  if (type == 'multiInsMidwayWithSubmitScene') {
22403
- _this28.sendData(type);
23028
+ _this30.sendData(type);
22404
23029
  return;
22405
23030
  }
22406
- if (_this28.beforeSubmit == undefined) {
22407
- _this28.subFun(_this28.sendData);
23031
+ if (_this30.beforeSubmit == undefined) {
23032
+ _this30.subFun(_this30.sendData);
22408
23033
  } else {
22409
- _this28.beforeSubmit(1).then(function (next) {
22410
- _this28.sendData();
23034
+ _this30.beforeSubmit(1).then(function (next) {
23035
+ _this30.sendData();
22411
23036
  }).catch(function (e) {});
22412
23037
  }
22413
23038
  }
@@ -22444,74 +23069,75 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22444
23069
  this.$message.warning('\u8BF7\u9009\u62E9' + (this.currentOrgName || '本单位'));
22445
23070
  return false;
22446
23071
  }
22447
- if (this.currentNodeIsCircularReadNode && !this.nextNode.nextCurrentOrgObj && !this.nextNode.nextOtherOrgObj) {
23072
+
23073
+ if (this.currentNodeIsCircularReadNode && this.nextNode.nextCurrentOrgObj.length == 0 && this.nextNode.nextOtherOrgObj.length == 0) {
22448
23074
  this.$message.warning('\u8BF7\u9009\u62E9\u5904\u7406\u5BF9\u8C61!');
22449
23075
  return false;
22450
23076
  }
22451
23077
  return true;
22452
23078
  },
22453
23079
  sendData: function sendData(freetype) {
22454
- var _this29 = this;
23080
+ var _this31 = this;
22455
23081
 
22456
23082
  this.$refs['nextNode'].validate(function () {
22457
23083
  var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
22458
- var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth;
23084
+ var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap;
22459
23085
  return regenerator_default.a.wrap(function _callee$(_context) {
22460
23086
  while (1) {
22461
23087
  switch (_context.prev = _context.next) {
22462
23088
  case 0:
22463
23089
  if (!valid) {
22464
- _context.next = 48;
23090
+ _context.next = 50;
22465
23091
  break;
22466
23092
  }
22467
23093
 
22468
- if (!_this29.isFlow) {
23094
+ if (!_this31.isFlow) {
22469
23095
  _context.next = 3;
22470
23096
  break;
22471
23097
  }
22472
23098
 
22473
- return _context.abrupt('return', _this29.handleVisible = true);
23099
+ return _context.abrupt('return', _this31.handleVisible = true);
22474
23100
 
22475
23101
  case 3:
22476
23102
  nextUserId = [];
22477
23103
 
22478
- if (_this29.multiple) {
22479
- _this29.nextNode.nextUserId && _this29.nextNode.nextUserId.map(function (item) {
23104
+ if (_this31.multiple) {
23105
+ _this31.nextNode.nextUserId && _this31.nextNode.nextUserId.map(function (item) {
22480
23106
  return nextUserId.push(item);
22481
23107
  });
22482
23108
  }
22483
23109
  addSignUserId = [];
22484
23110
 
22485
- if (_this29.isCanAddSign && _this29.nextNode.isAddSign == '1') {
22486
- _this29.nextNode.addSignUserId.map(function (item) {
23111
+ if (_this31.isCanAddSign && _this31.nextNode.isAddSign == '1') {
23112
+ _this31.nextNode.addSignUserId.map(function (item) {
22487
23113
  addSignUserId.push(item);
22488
23114
  });
22489
23115
  }
22490
23116
  removeSignUserId = [];
22491
23117
 
22492
- if (_this29.isCanRemoveSign && _this29.nextNode.isRemoveSign == '1') {
22493
- _this29.nextNode.removeSignUserId.map(function (item) {
23118
+ if (_this31.isCanRemoveSign && _this31.nextNode.isRemoveSign == '1') {
23119
+ _this31.nextNode.removeSignUserId.map(function (item) {
22494
23120
  removeSignUserId.push(item);
22495
23121
  });
22496
23122
  }
22497
23123
  str = '';
22498
23124
 
22499
- if (_this29.value) {
22500
- str = _this29.value.replace(/\s+/g, '');
23125
+ if (_this31.value) {
23126
+ str = _this31.value.replace(/\s+/g, '');
22501
23127
  }
22502
- if ((!_this29.value || str === '') && _this29.nodeDefaultSubmitOpinion) {
22503
- _this29.value = _this29.nodeDefaultSubmitOpinion;
23128
+ if ((!_this31.value || str === '') && _this31.nodeDefaultSubmitOpinion) {
23129
+ _this31.value = _this31.nodeDefaultSubmitOpinion;
22504
23130
  }
22505
- if (!_this29.isSpecial) {
22506
- delete _this29.nextNode.nextOperate;
22507
- delete _this29.nextNode.nextNodeId;
23131
+ if (!_this31.isSpecial) {
23132
+ delete _this31.nextNode.nextOperate;
23133
+ delete _this31.nextNode.nextNodeId;
22508
23134
  }
22509
- if (_this29.nextNode.nextOperate === 9) {
22510
- _this29.nextNode.isReturnRejectNode = 1;
22511
- _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;
22512
23138
  }
22513
- if (_this29.nextNode.nextOperate != 0 && _this29.nextNode.nextOperate != 1) {
22514
- delete _this29.nextNode.nextNodeId;
23139
+ if (_this31.nextNode.nextOperate != 0 && _this31.nextNode.nextOperate != 1) {
23140
+ delete _this31.nextNode.nextNodeId;
22515
23141
  }
22516
23142
 
22517
23143
  if (!(freetype != 'multiInsMidwayWithSubmitScene')) {
@@ -22520,54 +23146,57 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22520
23146
  }
22521
23147
 
22522
23148
  _context.next = 18;
22523
- return _this29.saveInfo('subMit');
23149
+ return _this31.saveInfo('subMit');
22524
23150
 
22525
23151
  case 18:
22526
- _this29.loading = util["a" /* default */].loading(_this29.$loading, '加载中...');
23152
+ _this31.loading = util["a" /* default */].loading(_this31.$loading, '加载中...');
22527
23153
 
22528
23154
  case 19:
22529
23155
  notificationType = '';
22530
23156
 
22531
- notificationType = _this29.nextNode.notificationType.join(',');
23157
+ notificationType = _this31.nextNode.notificationType.join(',');
22532
23158
  addSignUserId = addSignUserId.join(',');
22533
23159
  removeSignUserId = removeSignUserId.join(',');
22534
- if (!_this29.isCanPreAddSign || _this29.nextNode.isAddSign != '1') {
22535
- delete _this29.nextNode.addSignMode;
23160
+ if (!_this31.isCanPreAddSign || _this31.nextNode.isAddSign != '1') {
23161
+ delete _this31.nextNode.addSignMode;
22536
23162
  }
22537
- params = mainvue_type_script_lang_js_extends({}, _this29.nextNode, {
22538
- pendingId: _this29.pendingId,
22539
- 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,
22540
23166
  userId: util["a" /* default */].getStorage('userId'),
22541
- nextUserId: _this29.multiple ? nextUserId.join(',') : _this29.nextNode.nextUserId,
23167
+ nextUserId: _this31.multiple ? nextUserId.join(',') : _this31.nextNode.nextUserId,
22542
23168
  addSignUserId: addSignUserId,
22543
- customPresetUserJson: JSON.stringify(_this29.presetList),
22544
- presetUserJson: JSON.stringify(_this29.presetUserJson),
23169
+ customPresetUserJson: JSON.stringify(_this31.presetList),
23170
+ presetUserJson: JSON.stringify(_this31.presetUserJson),
22545
23171
  removeSignUserId: removeSignUserId,
22546
- nextReadUserId: _this29.readMultiple ? _this29.mixReadList && _this29.mixReadList.join('|') : _this29.nextNode.nextReadUserId,
22547
- nextOrgId: !_this29.isShowNextUser ? _this29.multiple ? _this29.mixOrgIdList && _this29.mixOrgIdList.join('|') : _this29.nextNode.nextOrgId : '',
22548
- 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(','),
22549
23175
  notificationType: notificationType
22550
23176
  });
22551
23177
 
22552
- if (_this29.activeNames != '1') delete params.customPresetUserJson;
22553
- if (_this29.nextNode.isRemoveSign != '1') {
23178
+ if (_this31.activeNames != '1') delete params.customPresetUserJson;
23179
+ if (_this31.nextNode.isRemoveSign != '1') {
22554
23180
  delete params.removeSignUserId;
22555
23181
  }
22556
- if (_this29.nextNode.isAddSign != '1') {
23182
+ if (_this31.nextNode.isAddSign != '1') {
22557
23183
  delete params.addSignUserId;
22558
23184
  }
23185
+ if (!_this31.isSpecial) {
23186
+ delete params.nextUserId;
23187
+ }
22559
23188
 
22560
23189
  if (!(freetype === 'multiInsMidwayWithSubmitScene')) {
22561
- _context.next = 31;
23190
+ _context.next = 32;
22562
23191
  break;
22563
23192
  }
22564
23193
 
22565
- _this29.taskParams = params;
23194
+ _this31.taskParams = params;
22566
23195
  return _context.abrupt('return');
22567
23196
 
22568
- case 31:
22569
- _this29.loading = util["a" /* default */].loading(_this29.$loading, '提交中...');
22570
- isEndUserTask = _this29.isEndUserTask, choiceOrgId = _this29.choiceOrgId, choiceDeptId = _this29.choiceDeptId, pOrgId = _this29.pOrgId, taskExamineInfo = _this29.taskExamineInfo, currentNodeIsCircularReadNode = _this29.currentNodeIsCircularReadNode, needRetrialAuth = _this29.needRetrialAuth;
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;
22571
23200
 
22572
23201
  params.isEndUserTask = isEndUserTask;
22573
23202
  params.choiceOrgId = choiceOrgId;
@@ -22581,35 +23210,38 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22581
23210
  params.nodeId = taskExamineInfo.nodeId;
22582
23211
  params.needRetrialAuth = needRetrialAuth;
22583
23212
  params.taskHandleSubmitMode = currentNodeIsCircularReadNode ? 'circularReadMode' : undefined;
22584
- // params.orgRoleCode="5f5c8e900dc6433fb5c7b3bcc1a81319"
22585
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23213
+ if (currentNodeIsCircularReadNode) {
23214
+ params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
23215
+ }
23216
+
23217
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Hb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
22586
23218
  var status = res.status,
22587
23219
  message = res.message;
22588
23220
 
22589
- _this29.loading.close();
23221
+ _this31.loading.close();
22590
23222
  if (status === 'success') {
22591
- _this29.$message.success('提交成功');
22592
- _this29.$emit('success');
23223
+ _this31.$message.success('提交成功');
23224
+ _this31.$emit('success');
22593
23225
  } else {
22594
- _this29.$message.error(message || '系统错误,请联系管理员!');
22595
- _this29.$emit('error');
23226
+ _this31.$message.error(message || '系统错误,请联系管理员!');
23227
+ _this31.$emit('error');
22596
23228
  }
22597
23229
  }).catch(function (err) {
22598
- _this29.loading.close();
23230
+ _this31.loading.close();
22599
23231
  if (err.message && err.message !== 'canceled') {
22600
- _this29.$message.error(err.message);
23232
+ _this31.$message.error(err.message);
22601
23233
  }
22602
23234
  }));
22603
23235
 
22604
- case 48:
23236
+ case 50:
22605
23237
  return _context.abrupt('return', false);
22606
23238
 
22607
- case 49:
23239
+ case 51:
22608
23240
  case 'end':
22609
23241
  return _context.stop();
22610
23242
  }
22611
23243
  }
22612
- }, _callee, _this29);
23244
+ }, _callee, _this31);
22613
23245
  }));
22614
23246
 
22615
23247
  return function (_x) {