eoss-ui 0.6.60 → 0.6.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (265) hide show
  1. package/lib/button-group.js +118 -114
  2. package/lib/button.js +118 -114
  3. package/lib/checkbox-group.js +120 -116
  4. package/lib/config/api.js +3 -1
  5. package/lib/data-table-form.js +120 -116
  6. package/lib/data-table.js +123 -119
  7. package/lib/date-picker.js +118 -114
  8. package/lib/dialog.js +118 -114
  9. package/lib/eoss-ui.common.js +2085 -1334
  10. package/lib/flow-group.js +118 -114
  11. package/lib/flow-list.js +246 -208
  12. package/lib/flow.js +1712 -995
  13. package/lib/form.js +120 -116
  14. package/lib/handle-user.js +119 -115
  15. package/lib/handler.js +119 -115
  16. package/lib/icon.js +119 -115
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +118 -114
  19. package/lib/input.js +118 -114
  20. package/lib/login.js +131 -127
  21. package/lib/main.js +285 -281
  22. package/lib/nav.js +118 -114
  23. package/lib/notify.js +121 -117
  24. package/lib/page.js +118 -114
  25. package/lib/pagination.js +118 -114
  26. package/lib/player.js +118 -114
  27. package/lib/qr-code.js +131 -127
  28. package/lib/radio-group.js +120 -116
  29. package/lib/retrial-auth.js +121 -117
  30. package/lib/select-ganged.js +120 -116
  31. package/lib/select.js +120 -116
  32. package/lib/selector-panel.js +136 -132
  33. package/lib/selector.js +119 -115
  34. package/lib/sizer.js +120 -116
  35. package/lib/steps.js +118 -114
  36. package/lib/switch.js +118 -114
  37. package/lib/table-form.js +118 -114
  38. package/lib/tabs.js +118 -114
  39. package/lib/tips.js +119 -115
  40. package/lib/tree-group.js +118 -114
  41. package/lib/tree.js +119 -115
  42. package/lib/upload.js +130 -126
  43. package/lib/wujie.js +118 -114
  44. package/lib/wxlogin.js +118 -114
  45. package/package.json +159 -159
  46. package/packages/button/index.js +5 -5
  47. package/packages/button/src/main.vue +418 -418
  48. package/packages/button-group/index.js +5 -5
  49. package/packages/button-group/src/main.vue +298 -298
  50. package/packages/calendar/index.js +5 -5
  51. package/packages/card/index.js +5 -5
  52. package/packages/card/src/main.vue +156 -156
  53. package/packages/cascader/index.js +5 -5
  54. package/packages/cascader/src/main.vue +168 -168
  55. package/packages/checkbox-group/index.js +5 -5
  56. package/packages/checkbox-group/src/main.vue +333 -333
  57. package/packages/clients/index.js +5 -5
  58. package/packages/clients/src/main.vue +151 -151
  59. package/packages/data-table/index.js +5 -5
  60. package/packages/data-table/src/children.vue +39 -39
  61. package/packages/data-table/src/column.vue +989 -989
  62. package/packages/data-table/src/main.vue +1822 -1822
  63. package/packages/data-table/src/sizer.vue +195 -195
  64. package/packages/data-table-form/index.js +5 -5
  65. package/packages/data-table-form/src/checkbox.vue +101 -101
  66. package/packages/data-table-form/src/colgroup.vue +17 -17
  67. package/packages/data-table-form/src/main.vue +181 -181
  68. package/packages/data-table-form/src/radio.vue +65 -65
  69. package/packages/data-table-form/src/table.vue +233 -233
  70. package/packages/data-table-form/src/tbody.vue +336 -336
  71. package/packages/data-table-form/src/thead.vue +68 -68
  72. package/packages/date-picker/index.js +5 -5
  73. package/packages/date-picker/src/main.vue +236 -236
  74. package/packages/dialog/index.js +5 -5
  75. package/packages/enable-drag/index.js +5 -5
  76. package/packages/enterprise/index.js +5 -5
  77. package/packages/enterprise/src/main.vue +66 -66
  78. package/packages/error-page/index.js +5 -5
  79. package/packages/error-page/src/main.vue +44 -44
  80. package/packages/flow/index.js +5 -5
  81. package/packages/flow/src/component/Circulate.vue +322 -0
  82. package/packages/flow/src/component/CommonOpinions.vue +346 -345
  83. package/packages/flow/src/component/CustomPreset.vue +322 -322
  84. package/packages/flow/src/component/FileList.vue +99 -99
  85. package/packages/flow/src/component/Preset.vue +255 -255
  86. package/packages/flow/src/component/SendMsg.vue +241 -229
  87. package/packages/flow/src/component/TimeLimit.vue +190 -190
  88. package/packages/flow/src/component/taskUnionExamine.vue +619 -611
  89. package/packages/flow/src/form.vue +121 -121
  90. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  91. package/packages/flow/src/main.vue +3275 -3175
  92. package/packages/flow/src/processForm.vue +1091 -1087
  93. package/packages/flow/src/processReject.vue +294 -293
  94. package/packages/flow/src/reset.vue +900 -900
  95. package/packages/flow/src/startTaskRead.vue +659 -646
  96. package/packages/flow/src/supervise.vue +149 -144
  97. package/packages/flow/src/table.vue +58 -58
  98. package/packages/flow-group/index.js +5 -5
  99. package/packages/flow-group/src/main.vue +688 -688
  100. package/packages/flow-list/index.js +5 -5
  101. package/packages/flow-list/src/main.vue +1718 -1691
  102. package/packages/form/index.js +5 -5
  103. package/packages/form/src/main.vue +3583 -3583
  104. package/packages/form/src/table.vue +1426 -1426
  105. package/packages/handle-user/index.js +5 -5
  106. package/packages/handle-user/src/main.vue +138 -138
  107. package/packages/handler/index.js +5 -5
  108. package/packages/handler/src/main.vue +493 -493
  109. package/packages/icon/index.js +5 -5
  110. package/packages/icon/src/main.vue +101 -101
  111. package/packages/icons/index.js +5 -5
  112. package/packages/icons/src/main.vue +81 -81
  113. package/packages/input/index.js +5 -5
  114. package/packages/input/src/main.vue +356 -356
  115. package/packages/input-number/index.js +5 -5
  116. package/packages/input-number/src/main.vue +106 -106
  117. package/packages/label/index.js +5 -5
  118. package/packages/label/src/main.vue +457 -457
  119. package/packages/layout/index.js +5 -5
  120. package/packages/layout/src/item.vue +152 -152
  121. package/packages/layout/src/main.vue +31 -31
  122. package/packages/login/index.js +5 -5
  123. package/packages/login/src/main.vue +1942 -1942
  124. package/packages/login/src/resetPassword.vue +562 -562
  125. package/packages/main/index.js +5 -5
  126. package/packages/main/src/default/message.vue +249 -249
  127. package/packages/main/src/default/notice.vue +157 -157
  128. package/packages/main/src/default/userinfo.vue +503 -503
  129. package/packages/main/src/public/online.vue +89 -89
  130. package/packages/main/src/public/search.vue +462 -462
  131. package/packages/main/src/public/settings.vue +221 -221
  132. package/packages/main/src/simplicity/apps.vue +388 -388
  133. package/packages/main/src/simplicity/avatar.vue +82 -82
  134. package/packages/main/src/simplicity/handler.vue +259 -259
  135. package/packages/main/src/simplicity/index.vue +2086 -2086
  136. package/packages/main/src/simplicity/lists.vue +84 -84
  137. package/packages/main/src/simplicity/menu-list.vue +135 -135
  138. package/packages/main/src/simplicity/message.vue +259 -259
  139. package/packages/main/src/simplicity/notice.vue +190 -190
  140. package/packages/main/src/simplicity/router-page.vue +45 -45
  141. package/packages/main/src/simplicity/sub-menu.vue +264 -264
  142. package/packages/main/src/simplicity/user.vue +257 -257
  143. package/packages/main/src/simplicity/userinfo.vue +312 -312
  144. package/packages/menu/index.js +5 -5
  145. package/packages/menu/src/main.vue +584 -584
  146. package/packages/nav/index.js +5 -5
  147. package/packages/nav/src/main.vue +351 -351
  148. package/packages/notify/index.js +5 -5
  149. package/packages/notify/src/main.vue +538 -538
  150. package/packages/page/index.js +5 -5
  151. package/packages/page/src/main.vue +167 -167
  152. package/packages/pagination/index.js +5 -5
  153. package/packages/pagination/src/main.vue +96 -96
  154. package/packages/player/index.js +5 -5
  155. package/packages/player/src/main.vue +194 -194
  156. package/packages/qr-code/index.js +5 -5
  157. package/packages/qr-code/src/main.vue +170 -170
  158. package/packages/radio-group/index.js +6 -6
  159. package/packages/radio-group/src/main.vue +319 -319
  160. package/packages/retrial-auth/index.js +5 -5
  161. package/packages/retrial-auth/src/main.vue +280 -280
  162. package/packages/select/index.js +5 -5
  163. package/packages/select/src/main.vue +778 -778
  164. package/packages/select-ganged/index.js +5 -5
  165. package/packages/select-ganged/src/main.vue +724 -724
  166. package/packages/selector/index.js +5 -5
  167. package/packages/selector/src/main.vue +687 -687
  168. package/packages/selector-panel/index.js +5 -5
  169. package/packages/selector-panel/src/main.vue +1027 -1027
  170. package/packages/selector-panel/src/selection.vue +177 -177
  171. package/packages/selector-panel/src/tree.vue +129 -129
  172. package/packages/sizer/index.js +5 -5
  173. package/packages/sizer/src/main.vue +254 -254
  174. package/packages/steps/index.js +5 -5
  175. package/packages/steps/src/main.vue +181 -181
  176. package/packages/switch/index.js +5 -5
  177. package/packages/switch/src/main.vue +154 -154
  178. package/packages/table-form/index.js +5 -5
  179. package/packages/tabs/index.js +5 -5
  180. package/packages/tabs/src/main.vue +788 -788
  181. package/packages/tabs-panel/index.js +5 -5
  182. package/packages/tabs-panel/src/main.vue +29 -29
  183. package/packages/theme-chalk/src/base.scss +260 -260
  184. package/packages/theme-chalk/src/button-group.scss +176 -176
  185. package/packages/theme-chalk/src/button.scss +24 -24
  186. package/packages/theme-chalk/src/calendar.scss +113 -113
  187. package/packages/theme-chalk/src/card.scss +99 -99
  188. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  189. package/packages/theme-chalk/src/clients.scss +87 -87
  190. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  191. package/packages/theme-chalk/src/data-table.scss +293 -293
  192. package/packages/theme-chalk/src/date-picker.scss +7 -7
  193. package/packages/theme-chalk/src/dialog.scss +77 -77
  194. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  195. package/packages/theme-chalk/src/enterprise.scss +5 -5
  196. package/packages/theme-chalk/src/error-page.scss +18 -18
  197. package/packages/theme-chalk/src/flow-group.scss +110 -110
  198. package/packages/theme-chalk/src/flow-list.scss +39 -39
  199. package/packages/theme-chalk/src/flow.scss +343 -343
  200. package/packages/theme-chalk/src/form.scss +496 -496
  201. package/packages/theme-chalk/src/handle-user.scss +40 -40
  202. package/packages/theme-chalk/src/handler.scss +143 -143
  203. package/packages/theme-chalk/src/icon.scss +1792 -1792
  204. package/packages/theme-chalk/src/icons.scss +99 -99
  205. package/packages/theme-chalk/src/input.scss +9 -9
  206. package/packages/theme-chalk/src/label.scss +24 -24
  207. package/packages/theme-chalk/src/layout.scss +46 -46
  208. package/packages/theme-chalk/src/login.scss +969 -969
  209. package/packages/theme-chalk/src/main.scss +663 -663
  210. package/packages/theme-chalk/src/menu.scss +222 -222
  211. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  212. package/packages/theme-chalk/src/nav.scss +111 -111
  213. package/packages/theme-chalk/src/page.scss +3 -3
  214. package/packages/theme-chalk/src/pagination.scss +29 -29
  215. package/packages/theme-chalk/src/player.scss +9 -9
  216. package/packages/theme-chalk/src/qr-code.scss +17 -17
  217. package/packages/theme-chalk/src/radio-group.scss +9 -9
  218. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  219. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  220. package/packages/theme-chalk/src/select.scss +8 -8
  221. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  222. package/packages/theme-chalk/src/selector.scss +91 -91
  223. package/packages/theme-chalk/src/simplicity.scss +1351 -1351
  224. package/packages/theme-chalk/src/sizer.scss +36 -36
  225. package/packages/theme-chalk/src/steps.scss +88 -88
  226. package/packages/theme-chalk/src/switch.scss +3 -3
  227. package/packages/theme-chalk/src/table-form.scss +1 -1
  228. package/packages/theme-chalk/src/tabs.scss +87 -87
  229. package/packages/theme-chalk/src/tips.scss +7 -7
  230. package/packages/theme-chalk/src/toolbar.scss +179 -179
  231. package/packages/theme-chalk/src/tree-group.scss +72 -72
  232. package/packages/theme-chalk/src/tree.scss +165 -165
  233. package/packages/theme-chalk/src/upload.scss +168 -168
  234. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  235. package/packages/tips/index.js +5 -5
  236. package/packages/tips/src/main.vue +141 -141
  237. package/packages/toolbar/index.js +5 -5
  238. package/packages/toolbar/src/main.vue +430 -430
  239. package/packages/tree/index.js +5 -5
  240. package/packages/tree-group/index.js +5 -5
  241. package/packages/upload/index.js +5 -5
  242. package/packages/upload/src/main.vue +1347 -1347
  243. package/packages/upload/src/picture.js +15 -15
  244. package/packages/wujie/index.js +5 -5
  245. package/packages/wujie/src/main.vue +145 -145
  246. package/packages/wxlogin/index.js +5 -5
  247. package/packages/wxlogin/src/main.vue +128 -128
  248. package/src/config/api.js +290 -286
  249. package/src/config/image.js +2 -2
  250. package/src/index.js +160 -160
  251. package/src/utils/bus.js +3 -3
  252. package/src/utils/date-util.js +312 -312
  253. package/src/utils/http.js +50 -50
  254. package/src/utils/rules.js +18 -18
  255. package/src/utils/store.js +21 -21
  256. package/src/utils/webSocket.js +107 -107
  257. package/packages/.DS_Store +0 -0
  258. package/packages/autocomplete/.DS_Store +0 -0
  259. package/packages/menu/.DS_Store +0 -0
  260. package/packages/scrollbar/.DS_Store +0 -0
  261. package/packages/select/.DS_Store +0 -0
  262. package/packages/theme-chalk/src/.DS_Store +0 -0
  263. package/packages/upload/.DS_Store +0 -0
  264. package/src/.DS_Store +0 -0
  265. package/src/utils/.DS_Store +0 -0
package/lib/flow.js CHANGED
@@ -1601,7 +1601,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1601
1601
  * @param {function} callback - 回调函数
1602
1602
  **/
1603
1603
  var getMainConfig = function getMainConfig(callback) {
1604
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "lb"] }).then(function (res) {
1604
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "nb"] }).then(function (res) {
1605
1605
  if (res && res.rCode === 0) {
1606
1606
  callback(res.results);
1607
1607
  }
@@ -2358,7 +2358,7 @@ var isLogined = function () {
2358
2358
  break;
2359
2359
  }
2360
2360
 
2361
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "kb"] }).then(function (res) {
2361
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "mb"] }).then(function (res) {
2362
2362
  if (res.rCode === 0) {
2363
2363
  removeStorage();
2364
2364
  }
@@ -3510,149 +3510,151 @@ var watermark = function watermark(option) {
3510
3510
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3511
3511
 
3512
3512
  "use strict";
3513
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3514
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3515
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3516
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return logout; });
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initLogin; });
3518
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return switchUserTo; });
3513
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
3514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
3515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return logout; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initLogin; });
3518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return switchUserTo; });
3519
3519
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getLoginCode; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getLoginCode; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3522
3522
  /* unused harmony export updateCode */
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getModifyPassCode; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getModifyPassCode; });
3524
3524
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginModifyPassword; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return loginModifyPassword; });
3526
3526
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initModifyPassword; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getTwoFactorLoginCode; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initRetrialAuth; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getRetrialAuthCode; });
3533
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return scanCodeRetrialAuth; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initModifyPassword; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getTwoFactorLoginCode; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initRetrialAuth; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getRetrialAuthCode; });
3533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return scanCodeRetrialAuth; });
3534
3534
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3535
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3536
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return userOnline; });
3537
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getUserAppWithTag; });
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return recordUserApp; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return mainConfig; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return initUserSet; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateUserInfo; });
3535
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return userOnline; });
3537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getUserAppWithTag; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return recordUserApp; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return mainConfig; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initUserSet; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateUserInfo; });
3542
3542
  /* unused harmony export getUserImgUrl */
3543
3543
  /* unused harmony export getDoorIndex */
3544
3544
  /* unused harmony export refreshOnlineUsers */
3545
3545
  /* unused harmony export getQuickMenuIds */
3546
3546
  /* unused harmony export getApplicationIdArray */
3547
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplications; });
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplicationsNew; });
3547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getComplexApplications; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplicationsNew; });
3549
3549
  /* unused harmony export getUserCustomInfo */
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return updateUserCustomInfo; });
3551
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sysMsgPage; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return ignoreSysMsg; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreAllSysMsg; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return searchType; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctProperties; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploads; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploadOnlyOne; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctFileInfos; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadSort; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadDownloads; });
3562
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunct2; });
3564
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunctOffice; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return updateUserCustomInfo; });
3551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sysMsgPage; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return ignoreSysMsg; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return ignoreAllSysMsg; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return searchType; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctProperties; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploads; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return uploadOnlyOne; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getAdjunctFileInfos; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadSort; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return uploadDownloads; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return previewAdjunct; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return previewAdjunct2; });
3564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunctOffice; });
3565
3565
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3566
3566
  /* unused harmony export upload_updateClassify */
3567
3567
  /* unused harmony export getDeleteAdjunctFileInfos */
3568
3568
  /* unused harmony export getPictureBase64 */
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectorOrgTree; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgDetail; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getOrgMainTree; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectOrgsubids; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getDictList; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getSelectorOrgTree; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getSelectorOrgDetail; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getOrgMainTree; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getSelectOrgsubids; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCode; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getDictList; });
3575
3575
  /* unused harmony export findUserBaseInfo */
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return gethelpdoc; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return gethelpdoc; });
3577
3577
  /* unused harmony export getCurrentuser */
3578
3578
  /* unused harmony export mainDetail */
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartFlow; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return tempSave; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartFlow; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return tempSave; });
3581
3581
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3582
3582
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return saveCommonOpinion; });
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateCommonOpinion; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return saveCommonOpinion; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return updateCommonOpinion; });
3586
3586
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getProcessDefList; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNodeInfo; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNotificationMsg; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getHandleInfoHtml; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskHandleHtml; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getProcessDefList; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getNodeInfo; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findCodeValues; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysParam; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCodes; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getNotificationMsg; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getHandleInfoHtml; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskHandleHtml; });
3595
3595
  /* unused harmony export getView */
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return register; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryList; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskRejectHtml; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskRejectHtml; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toStartTaskRead; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toStartTaskReadIndex; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskReadHtml; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return rejectAndEnd; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toSendMsg; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendMsg; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return handleInfo; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return loginUserInfo; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return wss; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return topic; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetCustomInfo; });
3612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getPresetNodeInfo; });
3613
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskTransferIndex; });
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskTransfer; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toPresetInfoListIndex; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return register; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryList; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskRejectHtml; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskRejectHtml; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toStartTaskRead; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartTaskReadIndex; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskReadHtml; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return rejectAndEnd; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toSendMsg; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendMsg; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowHtml; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return handleInfo; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return loginUserInfo; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return wss; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return topic; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getPresetCustomInfo; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetNodeInfo; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskTransferIndex; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskTransfer; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toPresetInfoListIndex; });
3616
3616
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3617
3617
  /* unused harmony export historyListJson */
3618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListJson; });
3619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pressListJson; });
3618
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return pendedhistoryListJson; });
3619
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pressListJson; });
3620
3620
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return isCanStartSubFlow; });
3622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskUnionExamine; });
3623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskUnionExamine; });
3624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskTakeAdvice; });
3625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskTakeAdvice; });
3626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskStartDraft; });
3627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskSupervise; });
3628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskSuperviseSub; });
3629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskStartDraft; });
3630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskReview; });
3631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReview; });
3632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskUnionSeal; });
3633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskUnionSeal; });
3634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTwoOfficesDispatch; });
3635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return twoOfficesDispatch; });
3636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toResetProcessIndex; });
3637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return resetProcess; });
3638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskContinuationIndex; });
3639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskContinuation; });
3640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getFreeStartFlowParams; });
3641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return isCanStartSubFlow; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskUnionExamine; });
3623
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskUnionExamine; });
3624
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskTakeAdvice; });
3625
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskTakeAdvice; });
3626
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskStartDraft; });
3627
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskSupervise; });
3628
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskSuperviseSub; });
3629
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskStartDraft; });
3630
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskReview; });
3631
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReview; });
3632
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskUnionSeal; });
3633
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskUnionSeal; });
3634
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTwoOfficesDispatch; });
3635
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return twoOfficesDispatch; });
3636
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toResetProcessIndex; });
3637
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return resetProcess; });
3638
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskContinuationIndex; });
3639
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskContinuation; });
3640
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getFreeStartFlowParams; });
3641
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return freeStartFlowWithSubmitTask; });
3642
3642
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pendedhistoryListWithCircularReadJson; });
3644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return fyListJson; });
3643
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryListWithCircularReadJson; });
3644
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return fyListJson; });
3645
3645
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReadWithDraw; });
3647
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3646
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskReadWithDraw; });
3647
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3648
3648
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3649
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendList; });
3650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendInfo; });
3649
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendList; });
3650
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return sendInfo; });
3651
3651
  /* unused harmony export sendSave */
3652
3652
  /* unused harmony export sendUpdate */
3653
3653
  /* unused harmony export sendDelete */
3654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendBatch; });
3655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3654
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendBatch; });
3655
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return formContents; });
3656
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3657
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfoForStart; });
3656
3658
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3657
3659
  // 登录
3658
3660
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3907,6 +3909,8 @@ var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
3907
3909
  // 表单结构
3908
3910
 
3909
3911
  var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
3912
+ var directStartTaskCircularRead = '/bpm/bpmBackend/directStartTaskCircularRead';
3913
+ var getNodeInfoForStart = '/bpm/task/taskHandle/getNodeInfoForStart.dhtml';
3910
3914
 
3911
3915
  /***/ }),
3912
3916
  /* 2 */
@@ -4407,7 +4411,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4407
4411
  // ESM COMPAT FLAG
4408
4412
  __webpack_require__.r(__webpack_exports__);
4409
4413
 
4410
- // 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=cb2a9dc2&
4414
+ // 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=fc4f395a&
4411
4415
  var render = function () {
4412
4416
  var _vm = this
4413
4417
  var _h = _vm.$createElement
@@ -4428,7 +4432,9 @@ var render = function () {
4428
4432
  "pending-id": _vm.pendingId,
4429
4433
  opinion: _vm.value,
4430
4434
  type: "create",
4435
+ simpleTips: _vm.simpleTips,
4431
4436
  typeCode: "read",
4437
+ param: _vm.param,
4432
4438
  resetAppId: _vm.resetAppId,
4433
4439
  taskExamine: _vm.taskExamineInfo,
4434
4440
  "news-info": _vm.nextNode.notificationMsg,
@@ -4441,7 +4447,10 @@ var render = function () {
4441
4447
  })
4442
4448
  : _vm.typeCode == "supervise"
4443
4449
  ? _c("Supervise", {
4444
- attrs: { businessId: _vm.businessId },
4450
+ attrs: {
4451
+ businessId: _vm.businessId,
4452
+ simpleTips: _vm.simpleTips,
4453
+ },
4445
4454
  on: {
4446
4455
  cancel: function ($event) {
4447
4456
  _vm.closeProcess($event)
@@ -4453,6 +4462,7 @@ var render = function () {
4453
4462
  staticStyle: { height: "100%" },
4454
4463
  attrs: {
4455
4464
  type: _vm.newTypeCode,
4465
+ simpleTips: _vm.simpleTips,
4456
4466
  appId: _vm.resetAppId,
4457
4467
  flowParams: _vm.param,
4458
4468
  },
@@ -4590,6 +4600,7 @@ var render = function () {
4590
4600
  attrs: {
4591
4601
  opinion: _vm.value,
4592
4602
  rows: _vm.rows,
4603
+ required: _vm.isOpinionRequired == 1,
4593
4604
  isBanInputOpinion: _vm.isBanInputOpinion,
4594
4605
  nodeFixedOpinionSelectList:
4595
4606
  _vm.nodeFixedOpinionSelectList,
@@ -6462,6 +6473,43 @@ var render = function () {
6462
6473
  1
6463
6474
  )
6464
6475
  : _vm._e(),
6476
+ _vm.circulateVisible
6477
+ ? _c(
6478
+ "es-dialog",
6479
+ {
6480
+ ref: "circulateVisible",
6481
+ attrs: {
6482
+ "append-to-body": "",
6483
+ height: "400",
6484
+ title: "发起传阅",
6485
+ "close-on-click-modal": false,
6486
+ visible: _vm.circulateVisible,
6487
+ closeParent: _vm.closeParent,
6488
+ },
6489
+ on: {
6490
+ "update:visible": function ($event) {
6491
+ _vm.circulateVisible = $event
6492
+ },
6493
+ },
6494
+ },
6495
+ [
6496
+ _c("circulate", {
6497
+ attrs: {
6498
+ businessId: _vm.businessId,
6499
+ processDefinitionId: _vm.nodeInfo.nextNode,
6500
+ simpleTips: _vm.simpleTips,
6501
+ oldOption: _vm.value,
6502
+ },
6503
+ on: {
6504
+ cancel: function ($event) {
6505
+ _vm.closeProcess($event, "circulateVisible")
6506
+ },
6507
+ },
6508
+ }),
6509
+ ],
6510
+ 1
6511
+ )
6512
+ : _vm._e(),
6465
6513
  _vm.handleVisible
6466
6514
  ? _c(
6467
6515
  "es-dialog",
@@ -6488,6 +6536,7 @@ var render = function () {
6488
6536
  id:
6489
6537
  _vm.freeStartFlowParams.startFlowBusinessId ||
6490
6538
  _vm.businessIds,
6539
+ simpleTips: _vm.simpleTips,
6491
6540
  "is-free-start-flow":
6492
6541
  _vm.freeStartFlowParams.useScene ===
6493
6542
  "multiInsMidwayWithSubmitScene",
@@ -6568,6 +6617,7 @@ var render = function () {
6568
6617
  attrs: {
6569
6618
  "pending-id": _vm.pendingId,
6570
6619
  option: _vm.value,
6620
+ simpleTips: _vm.simpleTips,
6571
6621
  "show-reject": _vm.showReject,
6572
6622
  "news-info": _vm.nextNode.notificationMsg,
6573
6623
  },
@@ -6607,6 +6657,7 @@ var render = function () {
6607
6657
  "pending-id": _vm.pendingId,
6608
6658
  opinion: _vm.value,
6609
6659
  type: _vm.taskReadType,
6660
+ simpleTips: _vm.simpleTips,
6610
6661
  taskExamine: _vm.taskExamineInfo,
6611
6662
  "news-info": _vm.nextNode.notificationMsg,
6612
6663
  },
@@ -6675,6 +6726,7 @@ var render = function () {
6675
6726
  [
6676
6727
  _c("SendMsg", {
6677
6728
  attrs: {
6729
+ simpleTips: _vm.simpleTips,
6678
6730
  pendingId: _vm.pendingId,
6679
6731
  newsList: _vm.newsList,
6680
6732
  },
@@ -6710,8 +6762,10 @@ var render = function () {
6710
6762
  [
6711
6763
  _c("TaskUnionExamine", {
6712
6764
  attrs: {
6765
+ simpleTips: _vm.simpleTips,
6713
6766
  pendingId: _vm.pendingId,
6714
6767
  defaultOpinion: _vm.nodeDefaultSubmitOpinion,
6768
+ oldOption: _vm.value,
6715
6769
  type: _vm.flowType,
6716
6770
  multiple: _vm.flowMultiple,
6717
6771
  disabled: _vm.flowDisabled,
@@ -6752,6 +6806,7 @@ var render = function () {
6752
6806
  {
6753
6807
  attrs: {
6754
6808
  isStartFlow: "",
6809
+ simpleTips: _vm.simpleTips,
6755
6810
  btnList: [
6756
6811
  {
6757
6812
  text: "提交",
@@ -6790,14 +6845,14 @@ var staticRenderFns = []
6790
6845
  render._withStripped = true
6791
6846
 
6792
6847
 
6793
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=cb2a9dc2&
6848
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=fc4f395a&
6794
6849
 
6795
6850
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
6796
6851
  var regenerator_ = __webpack_require__(4);
6797
6852
  var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator_);
6798
6853
 
6799
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=feb3781a&
6800
- var CommonOpinionsvue_type_template_id_feb3781a_render = function () {
6854
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=fdf49dec&
6855
+ var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
6801
6856
  var _vm = this
6802
6857
  var _h = _vm.$createElement
6803
6858
  var _c = _vm._self._c || _h
@@ -6809,7 +6864,11 @@ var CommonOpinionsvue_type_template_id_feb3781a_render = function () {
6809
6864
  "el-form",
6810
6865
  {
6811
6866
  ref: "ruleForm",
6812
- attrs: { model: _vm.form, rules: _vm.rules, "label-width": "0" },
6867
+ attrs: {
6868
+ model: _vm.form,
6869
+ rules: _vm.required ? _vm.rules : {},
6870
+ "label-width": "0",
6871
+ },
6813
6872
  },
6814
6873
  [
6815
6874
  _c(
@@ -6983,11 +7042,11 @@ var CommonOpinionsvue_type_template_id_feb3781a_render = function () {
6983
7042
  1
6984
7043
  )
6985
7044
  }
6986
- var CommonOpinionsvue_type_template_id_feb3781a_staticRenderFns = []
6987
- CommonOpinionsvue_type_template_id_feb3781a_render._withStripped = true
7045
+ var CommonOpinionsvue_type_template_id_fdf49dec_staticRenderFns = []
7046
+ CommonOpinionsvue_type_template_id_fdf49dec_render._withStripped = true
6988
7047
 
6989
7048
 
6990
- // CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=feb3781a&
7049
+ // CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=fdf49dec&
6991
7050
 
6992
7051
  // EXTERNAL MODULE: ./src/config/api.js
6993
7052
  var api = __webpack_require__(1);
@@ -7373,7 +7432,7 @@ var util = __webpack_require__(0);
7373
7432
 
7374
7433
  this.loading = true;
7375
7434
  util["a" /* default */].ajax({
7376
- url: id ? api["v" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7435
+ url: id ? api["w" /* editCommonOpion */] : api["a" /* addCommonOpion */],
7377
7436
  params: { id: id }
7378
7437
  }).then(function (res) {
7379
7438
  var status = res.status,
@@ -7573,7 +7632,8 @@ var _components;
7573
7632
  rows: {
7574
7633
  type: [Number, String],
7575
7634
  default: 10
7576
- }
7635
+ },
7636
+ required: { type: Boolean, default: false }
7577
7637
  },
7578
7638
  mounted: function mounted() {
7579
7639
  if (this.nodeFixedOpinionSelectList.length > 0) {
@@ -7603,21 +7663,21 @@ var _components;
7603
7663
  return validSate;
7604
7664
  },
7605
7665
 
7606
- /**
7607
- * changeOpinion
7608
- * @desc:监听意见变化
7609
- * @author liufan
7610
- * @date 2022年10月28日
7666
+ /**
7667
+ * changeOpinion
7668
+ * @desc:监听意见变化
7669
+ * @author liufan
7670
+ * @date 2022年10月28日
7611
7671
  **/
7612
7672
  changeOpinion: function changeOpinion() {
7613
7673
  this.$emit('change', this.form.value);
7614
7674
  },
7615
7675
 
7616
- /**
7617
- * getCommonOpion
7618
- * @desc:获取意见
7619
- * @author liufan
7620
- * @date 2022年5月25日
7676
+ /**
7677
+ * getCommonOpion
7678
+ * @desc:获取意见
7679
+ * @author liufan
7680
+ * @date 2022年5月25日
7621
7681
  **/
7622
7682
  getCommonOpion: function getCommonOpion() {
7623
7683
  var _this = this;
@@ -7646,31 +7706,31 @@ var _components;
7646
7706
  });
7647
7707
  },
7648
7708
 
7649
- /**
7650
- * upDate
7651
- * @desc:修改常用语
7652
- * @author liufan
7653
- * @param {Object} val 修改值
7654
- * @date 2022年5月25日
7709
+ /**
7710
+ * upDate
7711
+ * @desc:修改常用语
7712
+ * @author liufan
7713
+ * @param {Object} val 修改值
7714
+ * @date 2022年5月25日
7655
7715
  **/
7656
7716
  upDate: function upDate(val) {
7657
7717
  this.FormData.id = val.id;
7658
7718
  this.addVisible = true;
7659
7719
  },
7660
7720
 
7661
- /**
7662
- * selectChange
7663
- * @desc:常用语选择
7664
- * @author liufan
7665
- * @param {String} val 选中值
7666
- * @date 2022年5月25日
7721
+ /**
7722
+ * selectChange
7723
+ * @desc:常用语选择
7724
+ * @author liufan
7725
+ * @param {String} val 选中值
7726
+ * @date 2022年5月25日
7667
7727
  **/
7668
7728
  selectChange: function selectChange(val) {
7669
7729
  var _this2 = this;
7670
7730
 
7671
7731
  var that = this;
7672
7732
  util["a" /* default */].ajax({
7673
- url: api["A" /* findSysParam */],
7733
+ url: api["B" /* findSysParam */],
7674
7734
  params: { cpName: 'commonOpinionsSelectType' }
7675
7735
  }).then(function (res) {
7676
7736
  if (res.status == 'success') {
@@ -7682,12 +7742,12 @@ var _components;
7682
7742
  });
7683
7743
  },
7684
7744
 
7685
- /**
7686
- * del
7687
- * @desc:删除常用语
7688
- * @author liufan
7689
- * @param {Object} val 删除的数据
7690
- * @date 2022年5月25日
7745
+ /**
7746
+ * del
7747
+ * @desc:删除常用语
7748
+ * @author liufan
7749
+ * @param {Object} val 删除的数据
7750
+ * @date 2022年5月25日
7691
7751
  **/
7692
7752
  del: function del(val) {
7693
7753
  var _this3 = this;
@@ -7729,12 +7789,12 @@ var _components;
7729
7789
  }).catch(function (e) {});
7730
7790
  },
7731
7791
 
7732
- /**
7733
- * submit
7734
- * @desc:新增/编辑意见保存
7735
- * @author liufan
7736
- * @param {Object} val 保存数据
7737
- * @date 2022年5月25日
7792
+ /**
7793
+ * submit
7794
+ * @desc:新增/编辑意见保存
7795
+ * @author liufan
7796
+ * @param {Object} val 保存数据
7797
+ * @date 2022年5月25日
7738
7798
  **/
7739
7799
  submit: function submit(val) {
7740
7800
  var _this4 = this;
@@ -7748,7 +7808,7 @@ var _components;
7748
7808
  }
7749
7809
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
7750
7810
  util["a" /* default */].ajax({
7751
- url: data.id ? api["mc" /* updateCommonOpinion */] : api["xb" /* saveCommonOpinion */],
7811
+ url: data.id ? api["oc" /* updateCommonOpinion */] : api["zb" /* saveCommonOpinion */],
7752
7812
  data: info,
7753
7813
  header: { 'Content-Type': 'multipart/form-data' },
7754
7814
  method: 'post'
@@ -7789,8 +7849,8 @@ var _components;
7789
7849
 
7790
7850
  var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
7791
7851
  component_CommonOpinionsvue_type_script_lang_js_,
7792
- CommonOpinionsvue_type_template_id_feb3781a_render,
7793
- CommonOpinionsvue_type_template_id_feb3781a_staticRenderFns,
7852
+ CommonOpinionsvue_type_template_id_fdf49dec_render,
7853
+ CommonOpinionsvue_type_template_id_fdf49dec_staticRenderFns,
7794
7854
  false,
7795
7855
  null,
7796
7856
  null,
@@ -7799,8 +7859,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
7799
7859
  )
7800
7860
 
7801
7861
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
7802
- // 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=0567bde9&
7803
- var processFormvue_type_template_id_0567bde9_render = function () {
7862
+ // 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=d7f4c800&
7863
+ var processFormvue_type_template_id_d7f4c800_render = function () {
7804
7864
  var _vm = this
7805
7865
  var _h = _vm.$createElement
7806
7866
  var _c = _vm._self._c || _h
@@ -8410,11 +8470,11 @@ var processFormvue_type_template_id_0567bde9_render = function () {
8410
8470
  1
8411
8471
  )
8412
8472
  }
8413
- var processFormvue_type_template_id_0567bde9_staticRenderFns = []
8414
- processFormvue_type_template_id_0567bde9_render._withStripped = true
8473
+ var processFormvue_type_template_id_d7f4c800_staticRenderFns = []
8474
+ processFormvue_type_template_id_d7f4c800_render._withStripped = true
8415
8475
 
8416
8476
 
8417
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=0567bde9&
8477
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=d7f4c800&
8418
8478
 
8419
8479
  // 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&
8420
8480
  var selectUservue_type_template_id_615d0e78_render = function () {
@@ -8752,7 +8812,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8752
8812
  newNextUser: [],
8753
8813
  newOptions: [],
8754
8814
  newSelectUserList: [],
8755
- url: api["ab" /* handleInfo */],
8815
+ url: api["cb" /* handleInfo */],
8756
8816
  newCheckboxList: [],
8757
8817
  newPresetEdit: 0,
8758
8818
  newMultiple: false,
@@ -8869,7 +8929,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
8869
8929
  if (query !== '') {
8870
8930
  this.searchLoading = true;
8871
8931
  util["a" /* default */].ajax({
8872
- url: api["ab" /* handleInfo */],
8932
+ url: api["cb" /* handleInfo */],
8873
8933
  params: { searchKey: query, query: query, type: 'user' }
8874
8934
  }).then(function (res) {
8875
8935
  var status = res.status,
@@ -9284,7 +9344,7 @@ var CustomPresetvue_type_script_lang_js_components;
9284
9344
  nextNodeId: nodeId,
9285
9345
  businessId: this.id
9286
9346
  };
9287
- util["a" /* default */].ajax({ url: api["N" /* getNodeInfo */], params: params }).then(function (res) {
9347
+ util["a" /* default */].ajax({ url: api["O" /* getNodeInfo */], params: params }).then(function (res) {
9288
9348
  var status = res.status,
9289
9349
  message = res.message,
9290
9350
  _res$data = res.data,
@@ -9382,7 +9442,7 @@ var CustomPresetvue_type_script_lang_js_components;
9382
9442
 
9383
9443
  isNoStart && (this.newPresetList = []);
9384
9444
  var params = {
9385
- url: api["Q" /* getPresetCustomInfo */],
9445
+ url: api["S" /* getPresetCustomInfo */],
9386
9446
  data: {
9387
9447
  nodeId: nodeId,
9388
9448
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -9736,7 +9796,7 @@ var Presetvue_type_script_lang_js_components;
9736
9796
  nodeId = this.nodeId;
9737
9797
 
9738
9798
  var params = {
9739
- url: api["R" /* getPresetNodeInfo */],
9799
+ url: api["T" /* getPresetNodeInfo */],
9740
9800
  data: {
9741
9801
  nextNodeId: nextNodeId,
9742
9802
  processDefinitionId: processDefinitionId,
@@ -10213,6 +10273,10 @@ var processFormvue_type_script_lang_js_components;
10213
10273
  type: String,
10214
10274
  default: ''
10215
10275
  },
10276
+ simpleTips: {
10277
+ type: Boolean,
10278
+ default: true
10279
+ },
10216
10280
  formType: {
10217
10281
  type: String,
10218
10282
  default: 'freeStart'
@@ -10364,7 +10428,7 @@ var processFormvue_type_script_lang_js_components;
10364
10428
  if (mainConfig) {
10365
10429
  this.userModel = JSON.parse(mainConfig).userModel;
10366
10430
  } else {
10367
- util["a" /* default */].ajax({ url: api["jb" /* loginUserInfo */] }).then(function (res) {
10431
+ util["a" /* default */].ajax({ url: api["lb" /* loginUserInfo */] }).then(function (res) {
10368
10432
  var status = res.status,
10369
10433
  data = res.data;
10370
10434
 
@@ -10469,7 +10533,7 @@ var processFormvue_type_script_lang_js_components;
10469
10533
  var _this2 = this;
10470
10534
 
10471
10535
  util["a" /* default */].ajax({
10472
- url: api["x" /* findCodeValues */],
10536
+ url: api["y" /* findCodeValues */],
10473
10537
  params: {
10474
10538
  ccCode: 'notification_type',
10475
10539
  userId: util["a" /* default */].getStorage('userId')
@@ -10498,7 +10562,7 @@ var processFormvue_type_script_lang_js_components;
10498
10562
  nodeId: this.nextNode.nextNode,
10499
10563
  businessId: this.id
10500
10564
  };
10501
- util["a" /* default */].ajax({ url: api["O" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
10565
+ util["a" /* default */].ajax({ url: api["Q" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
10502
10566
  if (res.status === 'success') {
10503
10567
  _this3.nextNode.noticeInfo = res.message;
10504
10568
  }
@@ -10595,7 +10659,7 @@ var processFormvue_type_script_lang_js_components;
10595
10659
  params = newParm;
10596
10660
  }
10597
10661
  util["a" /* default */].ajax({
10598
- url: _this4.isFreeStartFlow ? api["C" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Eb" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["ub" /* register */],
10662
+ url: _this4.isFreeStartFlow ? api["D" /* freeStartFlowWithSubmitTask */] : _this4.formType == 'readTransfer' ? api["Gb" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["wb" /* register */],
10599
10663
  method: 'post',
10600
10664
  data: params
10601
10665
  }).then(function (res) {
@@ -10605,7 +10669,7 @@ var processFormvue_type_script_lang_js_components;
10605
10669
  _this4.loading = false;
10606
10670
  if (status === 'success' || res.rCode == 0) {
10607
10671
  _this4.quit(true);
10608
- _this4.$message.success('操作成功');
10672
+ _this4.simpleTips && _this4.$message.success('操作成功');
10609
10673
  } else {
10610
10674
  _this4.$message.error(message || '系统错误,请联系管理员!');
10611
10675
  }
@@ -10629,7 +10693,7 @@ var processFormvue_type_script_lang_js_components;
10629
10693
  businessId: this.id,
10630
10694
  userId: util["a" /* default */].getStorage('userId')
10631
10695
  };
10632
- util["a" /* default */].ajax({ url: api["N" /* getNodeInfo */], params: params }).then(function (res) {
10696
+ util["a" /* default */].ajax({ url: api["O" /* getNodeInfo */], params: params }).then(function (res) {
10633
10697
  var status = res.status,
10634
10698
  message = res.message,
10635
10699
  _res$data = res.data,
@@ -10717,7 +10781,7 @@ var processFormvue_type_script_lang_js_components;
10717
10781
  var _this6 = this;
10718
10782
 
10719
10783
  util["a" /* default */].ajax({
10720
- url: api["z" /* findSysCodes */]
10784
+ url: api["A" /* findSysCodes */]
10721
10785
  }).then(function (res) {
10722
10786
  var status = res.status,
10723
10787
  message = res.message;
@@ -10744,11 +10808,11 @@ var processFormvue_type_script_lang_js_components;
10744
10808
  });
10745
10809
  },
10746
10810
 
10747
- /**
10748
- * isMultiple
10749
- * @desc:是否多选
10750
- * @author liufan
10751
- * @date 2022年9月13日
10811
+ /**
10812
+ * isMultiple
10813
+ * @desc:是否多选
10814
+ * @author liufan
10815
+ * @date 2022年9月13日
10752
10816
  **/
10753
10817
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
10754
10818
  var multiple = false;
@@ -10795,7 +10859,7 @@ var processFormvue_type_script_lang_js_components;
10795
10859
  businessId: this.businessId
10796
10860
  };
10797
10861
  // 获取节点
10798
- util["a" /* default */].ajax({ url: api["Wb" /* toStartFlow */], params: params }).then(function (res) {
10862
+ util["a" /* default */].ajax({ url: api["Yb" /* toStartFlow */], params: params }).then(function (res) {
10799
10863
  //pc接口返回数据处理
10800
10864
  var status = res.status,
10801
10865
  message = res.message,
@@ -10901,8 +10965,8 @@ var processFormvue_type_script_lang_js_components;
10901
10965
 
10902
10966
  var processForm_component = Object(componentNormalizer["a" /* default */])(
10903
10967
  src_processFormvue_type_script_lang_js_,
10904
- processFormvue_type_template_id_0567bde9_render,
10905
- processFormvue_type_template_id_0567bde9_staticRenderFns,
10968
+ processFormvue_type_template_id_d7f4c800_render,
10969
+ processFormvue_type_template_id_d7f4c800_staticRenderFns,
10906
10970
  false,
10907
10971
  null,
10908
10972
  null,
@@ -10914,8 +10978,8 @@ var processForm_component = Object(componentNormalizer["a" /* default */])(
10914
10978
  // EXTERNAL MODULE: ./packages/flow/src/component/FileList.vue + 4 modules
10915
10979
  var FileList = __webpack_require__(17);
10916
10980
 
10917
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=798f665c&
10918
- var SendMsgvue_type_template_id_798f665c_render = function () {
10981
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=5cb986c6&
10982
+ var SendMsgvue_type_template_id_5cb986c6_render = function () {
10919
10983
  var _vm = this
10920
10984
  var _h = _vm.$createElement
10921
10985
  var _c = _vm._self._c || _h
@@ -11107,7 +11171,7 @@ var SendMsgvue_type_template_id_798f665c_render = function () {
11107
11171
  _c(
11108
11172
  "el-button",
11109
11173
  { attrs: { size: "small" }, on: { click: _vm.quit } },
11110
- [_vm._v("\n 取消\n ")]
11174
+ [_vm._v(" 取消 ")]
11111
11175
  ),
11112
11176
  ],
11113
11177
  1
@@ -11120,11 +11184,11 @@ var SendMsgvue_type_template_id_798f665c_render = function () {
11120
11184
  1
11121
11185
  )
11122
11186
  }
11123
- var SendMsgvue_type_template_id_798f665c_staticRenderFns = []
11124
- SendMsgvue_type_template_id_798f665c_render._withStripped = true
11187
+ var SendMsgvue_type_template_id_5cb986c6_staticRenderFns = []
11188
+ SendMsgvue_type_template_id_5cb986c6_render._withStripped = true
11125
11189
 
11126
11190
 
11127
- // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=798f665c&
11191
+ // CONCATENATED MODULE: ./packages/flow/src/component/SendMsg.vue?vue&type=template&id=5cb986c6&
11128
11192
 
11129
11193
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=script&lang=js&
11130
11194
  //
@@ -11218,6 +11282,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11218
11282
  //
11219
11283
  //
11220
11284
  //
11285
+ //
11221
11286
 
11222
11287
 
11223
11288
 
@@ -11246,6 +11311,10 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11246
11311
  default: function _default() {
11247
11312
  return [];
11248
11313
  }
11314
+ },
11315
+ simpleTips: {
11316
+ type: Boolean,
11317
+ default: true
11249
11318
  }
11250
11319
  },
11251
11320
  mounted: function mounted() {
@@ -11270,7 +11339,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11270
11339
  notificationType = _sendInfo.notificationType;
11271
11340
 
11272
11341
  var params = {
11273
- url: api["Db" /* sendMsg */],
11342
+ url: api["Fb" /* sendMsg */],
11274
11343
  headers: { Accept: 'application/json,text/plain' },
11275
11344
  method: 'post',
11276
11345
  data: {
@@ -11286,7 +11355,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11286
11355
 
11287
11356
  _this.loading = false;
11288
11357
  if (status === 'success') {
11289
- _this.$message.success('操作成功');
11358
+ _this.simpleTips && _this.$message.success('操作成功');
11290
11359
  _this.quit(true);
11291
11360
  } else {
11292
11361
  _this.$message.error(message || '系统错误,请联系管理员!');
@@ -11332,7 +11401,7 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11332
11401
 
11333
11402
  this.loading = true;
11334
11403
  util["a" /* default */].ajax({
11335
- url: api["Vb" /* toSendMsg */],
11404
+ url: api["Xb" /* toSendMsg */],
11336
11405
  params: { pendingId: this.$attrs.pendingId }
11337
11406
  }).then(function (res) {
11338
11407
  var status = res.status,
@@ -11376,8 +11445,8 @@ SendMsgvue_type_template_id_798f665c_render._withStripped = true
11376
11445
 
11377
11446
  var SendMsg_component = Object(componentNormalizer["a" /* default */])(
11378
11447
  component_SendMsgvue_type_script_lang_js_,
11379
- SendMsgvue_type_template_id_798f665c_render,
11380
- SendMsgvue_type_template_id_798f665c_staticRenderFns,
11448
+ SendMsgvue_type_template_id_5cb986c6_render,
11449
+ SendMsgvue_type_template_id_5cb986c6_staticRenderFns,
11381
11450
  false,
11382
11451
  null,
11383
11452
  null,
@@ -11785,8 +11854,8 @@ var TimeLimit_component = Object(componentNormalizer["a" /* default */])(
11785
11854
  )
11786
11855
 
11787
11856
  /* harmony default export */ var TimeLimit = (TimeLimit_component.exports);
11788
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=4710ec4e&
11789
- var processRejectvue_type_template_id_4710ec4e_render = function () {
11857
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=template&id=67bb0710&
11858
+ var processRejectvue_type_template_id_67bb0710_render = function () {
11790
11859
  var _vm = this
11791
11860
  var _h = _vm.$createElement
11792
11861
  var _c = _vm._self._c || _h
@@ -12007,11 +12076,11 @@ var processRejectvue_type_template_id_4710ec4e_render = function () {
12007
12076
  1
12008
12077
  )
12009
12078
  }
12010
- var processRejectvue_type_template_id_4710ec4e_staticRenderFns = []
12011
- processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12079
+ var processRejectvue_type_template_id_67bb0710_staticRenderFns = []
12080
+ processRejectvue_type_template_id_67bb0710_render._withStripped = true
12012
12081
 
12013
12082
 
12014
- // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=4710ec4e&
12083
+ // CONCATENATED MODULE: ./packages/flow/src/processReject.vue?vue&type=template&id=67bb0710&
12015
12084
 
12016
12085
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processReject.vue?vue&type=script&lang=js&
12017
12086
  //
@@ -12108,7 +12177,8 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12108
12177
  pendingId: { type: String, default: '' },
12109
12178
  newsInfo: { type: String, default: '' },
12110
12179
  showReject: { type: Boolean },
12111
- option: { type: String, default: '' }
12180
+ option: { type: String, default: '' },
12181
+ simpleTips: { type: Boolean, default: true }
12112
12182
  },
12113
12183
  data: function data() {
12114
12184
  return {
@@ -12153,7 +12223,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12153
12223
  var _this = this;
12154
12224
 
12155
12225
  util["a" /* default */].ajax({
12156
- url: api["x" /* findCodeValues */],
12226
+ url: api["y" /* findCodeValues */],
12157
12227
  params: {
12158
12228
  ccCode: 'notification_type',
12159
12229
  userId: util["a" /* default */].getStorage('userId')
@@ -12196,14 +12266,14 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12196
12266
  userId: util["a" /* default */].getStorage('userId'),
12197
12267
  nextNodeId: _this2.nextNode.nextNodeId
12198
12268
  };
12199
- util["a" /* default */].ajax({ url: api["Lb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
12269
+ util["a" /* default */].ajax({ url: api["Nb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
12200
12270
  var status = res.status,
12201
12271
  message = res.message;
12202
12272
 
12203
12273
  _this2.loading = false;
12204
12274
  if (status === 'success') {
12205
12275
  _this2.quit(true);
12206
- _this2.$message.success('操作成功');
12276
+ _this2.simpleTips && _this2.$message.success('操作成功');
12207
12277
  } else {
12208
12278
  _this2.$message.error(message || '系统错误,请联系管理员!');
12209
12279
  }
@@ -12227,7 +12297,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12227
12297
  var _this3 = this;
12228
12298
 
12229
12299
  util["a" /* default */].ajax({
12230
- url: api["z" /* findSysCodes */]
12300
+ url: api["A" /* findSysCodes */]
12231
12301
  }).then(function (res) {
12232
12302
  var status = res.status,
12233
12303
  message = res.message;
@@ -12260,7 +12330,7 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12260
12330
  isSinglePage: false,
12261
12331
  opinion: this.option
12262
12332
  };
12263
- util["a" /* default */].ajax({ url: api["ac" /* toTaskRejectHtml */], params: params }).then(function (res) {
12333
+ util["a" /* default */].ajax({ url: api["cc" /* toTaskRejectHtml */], params: params }).then(function (res) {
12264
12334
  var status = res.status,
12265
12335
  message = res.message,
12266
12336
  _res$data = res.data,
@@ -12316,8 +12386,8 @@ processRejectvue_type_template_id_4710ec4e_render._withStripped = true
12316
12386
 
12317
12387
  var processReject_component = Object(componentNormalizer["a" /* default */])(
12318
12388
  src_processRejectvue_type_script_lang_js_,
12319
- processRejectvue_type_template_id_4710ec4e_render,
12320
- processRejectvue_type_template_id_4710ec4e_staticRenderFns,
12389
+ processRejectvue_type_template_id_67bb0710_render,
12390
+ processRejectvue_type_template_id_67bb0710_staticRenderFns,
12321
12391
  false,
12322
12392
  null,
12323
12393
  null,
@@ -12326,8 +12396,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
12326
12396
  )
12327
12397
 
12328
12398
  /* harmony default export */ var processReject = (processReject_component.exports);
12329
- // 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=4cea7d04&
12330
- var startTaskReadvue_type_template_id_4cea7d04_render = function () {
12399
+ // 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=f3f6be4e&
12400
+ var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
12331
12401
  var _vm = this
12332
12402
  var _h = _vm.$createElement
12333
12403
  var _c = _vm._self._c || _h
@@ -12751,11 +12821,11 @@ var startTaskReadvue_type_template_id_4cea7d04_render = function () {
12751
12821
  1
12752
12822
  )
12753
12823
  }
12754
- var startTaskReadvue_type_template_id_4cea7d04_staticRenderFns = []
12755
- startTaskReadvue_type_template_id_4cea7d04_render._withStripped = true
12824
+ var startTaskReadvue_type_template_id_f3f6be4e_staticRenderFns = []
12825
+ startTaskReadvue_type_template_id_f3f6be4e_render._withStripped = true
12756
12826
 
12757
12827
 
12758
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=4cea7d04&
12828
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=f3f6be4e&
12759
12829
 
12760
12830
  // 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&
12761
12831
  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; };
@@ -12938,11 +13008,13 @@ var startTaskReadvue_type_script_lang_js_components;
12938
13008
  components: (startTaskReadvue_type_script_lang_js_components = {}, startTaskReadvue_type_script_lang_js_components[Option.name] = Option, startTaskReadvue_type_script_lang_js_components[selectUser.name] = selectUser, startTaskReadvue_type_script_lang_js_components),
12939
13009
  props: {
12940
13010
  pendingId: { type: String, default: '' },
13011
+ simpleTips: { type: Boolean, default: true },
12941
13012
  newsInfo: { type: String, default: '' },
12942
13013
  type: { type: String, default: '' },
12943
13014
  option: { type: String, default: '' },
12944
13015
  typeCode: { type: String, default: '' },
12945
13016
  resetAppId: { type: String, default: '' },
13017
+ param: { type: Object, default: function _default() {} },
12946
13018
  taskExamine: { type: Object, default: function _default() {} },
12947
13019
  readParams: {
12948
13020
  type: [Object, undefined],
@@ -13006,7 +13078,7 @@ var startTaskReadvue_type_script_lang_js_components;
13006
13078
  },
13007
13079
  mounted: function mounted() {
13008
13080
  this.newsNoice = this.newsInfo;
13009
- if (this.readParams) {
13081
+ if (this.readParams || this.typeCode == 'read') {
13010
13082
  this.getMessage();
13011
13083
  }
13012
13084
  this.getFind();
@@ -13020,10 +13092,19 @@ var startTaskReadvue_type_script_lang_js_components;
13020
13092
  getMessage: function getMessage() {
13021
13093
  var _this = this;
13022
13094
 
13023
- var params = {
13024
- appId: this.readParams.appId
13025
- };
13026
- util["a" /* default */].ajax({ url: api["O" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
13095
+ var params = {};
13096
+ if (this.typeCode == 'read') {
13097
+ params = {
13098
+ processDefinitionId: this.param.processDefinitionId,
13099
+ businessId: this.param.businessId,
13100
+ businessName: this.param.businessName,
13101
+ bCode: this.param.bCode,
13102
+ bName: this.param.bName
13103
+ };
13104
+ } else {
13105
+ params.appId = this.readParams.appId;
13106
+ }
13107
+ util["a" /* default */].ajax({ url: api["Q" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
13027
13108
  if (res.status === 'success') {
13028
13109
  _this.newsNoice = res.message;
13029
13110
  }
@@ -13042,7 +13123,7 @@ var startTaskReadvue_type_script_lang_js_components;
13042
13123
  taskExamine = this.taskExamine;
13043
13124
 
13044
13125
  var params = {
13045
- url: api["gc" /* toTaskTransferIndex */],
13126
+ url: api["ic" /* toTaskTransferIndex */],
13046
13127
  params: {
13047
13128
  opinion: opinion,
13048
13129
  pendingId: pendingId,
@@ -13167,12 +13248,12 @@ var startTaskReadvue_type_script_lang_js_components;
13167
13248
  var _this4 = this;
13168
13249
 
13169
13250
  var params = {
13170
- url: api["Xb" /* toStartTaskRead */],
13171
- params: { pendingId: this.pendingId, taskAction: this.type }
13251
+ url: api["Zb" /* toStartTaskRead */],
13252
+ params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
13172
13253
  };
13173
13254
  if (this.typeCode == 'read') {
13174
13255
  delete params.params.pendingId;
13175
- params.params.appid = this.resetAppId;
13256
+ // params.params.appid = this.resetAppId;
13176
13257
  }
13177
13258
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
13178
13259
  util["a" /* default */].ajax(params).then(function (res) {
@@ -13210,7 +13291,7 @@ var startTaskReadvue_type_script_lang_js_components;
13210
13291
  var _this6 = this;
13211
13292
 
13212
13293
  util["a" /* default */].ajax({
13213
- url: api["x" /* findCodeValues */],
13294
+ url: api["y" /* findCodeValues */],
13214
13295
  params: {
13215
13296
  ccCode: 'notification_type',
13216
13297
  userId: util["a" /* default */].getStorage('userId')
@@ -13256,7 +13337,7 @@ var startTaskReadvue_type_script_lang_js_components;
13256
13337
  type = this.type;
13257
13338
 
13258
13339
  var params = {
13259
- url: api["Pb" /* taskTransfer */],
13340
+ url: api["Rb" /* taskTransfer */],
13260
13341
  data: {
13261
13342
  choiceDeptId: choiceDeptId,
13262
13343
  choiceOrgId: choiceOrgId,
@@ -13276,7 +13357,7 @@ var startTaskReadvue_type_script_lang_js_components;
13276
13357
  status = res.status;
13277
13358
 
13278
13359
  if (status === 'success') {
13279
- _this7.$message.success('操作成功');
13360
+ _this7.simpleTips && _this7.$message.success('操作成功');
13280
13361
  _this7.quit(true);
13281
13362
  } else {
13282
13363
  _this7.$message.error(message || '系统错误,请联系管理员!');
@@ -13324,21 +13405,23 @@ var startTaskReadvue_type_script_lang_js_components;
13324
13405
  bCode: bCode,
13325
13406
  bName: bName,
13326
13407
  appId: appId,
13327
- businessId: businessId,
13408
+ businessId: businessId || _this8.param.businessId,
13328
13409
  choiceDeptId: choiceDeptId,
13329
13410
  choiceOrgId: choiceOrgId,
13330
13411
  businessName: businessName,
13331
13412
  processDefinitionId: processDefinitionId,
13332
- currentOrgProcessKey: processDefinitionId,
13413
+ currentOrgProcessKey: processDefinitionId || _this8.param.currentOrgProcessKey,
13333
13414
  pendingId: _this8.pendingId,
13334
13415
  opinion: _this8.option, // 审批意见
13335
13416
  userId: util["a" /* default */].getStorage('userId'),
13336
13417
  nextReadUserId: _this8.mixList.join('|'),
13337
- noticeType: noticeType,
13418
+ notificationType: noticeType,
13419
+ notificationMsg: _this8.newsNoice,
13338
13420
  taskAction: _this8.type
13339
13421
  // nextNodeId: this.form.nextNodeId
13340
13422
  });
13341
13423
  delete params.nextUser;
13424
+ delete params.noticeType;
13342
13425
  var _configInfo = _this8.configInfo,
13343
13426
  fyDoresult = _configInfo.fyDoresult,
13344
13427
  fyeh = _configInfo.fyeh,
@@ -13353,7 +13436,7 @@ var startTaskReadvue_type_script_lang_js_components;
13353
13436
  params = startTaskReadvue_type_script_lang_js_extends({}, params, _this8.readParams);
13354
13437
  }
13355
13438
  util["a" /* default */].ajax({
13356
- url: api["Jb" /* taskReadHtml */],
13439
+ url: api["Lb" /* taskReadHtml */],
13357
13440
  params: { taskAction: _this8.type },
13358
13441
  headers: {
13359
13442
  Accept: 'application/json,text/plain'
@@ -13366,7 +13449,7 @@ var startTaskReadvue_type_script_lang_js_components;
13366
13449
 
13367
13450
  _this8.loading = false;
13368
13451
  if (status === 'success') {
13369
- _this8.$message.success('操作成功');
13452
+ _this8.simpleTips && _this8.$message.success('操作成功');
13370
13453
  _this8.quit(true);
13371
13454
  } else {
13372
13455
  _this8.$message.error(message || '系统错误,请联系管理员!');
@@ -13392,7 +13475,7 @@ var startTaskReadvue_type_script_lang_js_components;
13392
13475
 
13393
13476
  this.loading = true;
13394
13477
  util["a" /* default */].ajax({
13395
- url: api["z" /* findSysCodes */]
13478
+ url: api["A" /* findSysCodes */]
13396
13479
  }).then(function (res) {
13397
13480
  var status = res.status,
13398
13481
  message = res.message,
@@ -13435,8 +13518,8 @@ var startTaskReadvue_type_script_lang_js_components;
13435
13518
 
13436
13519
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13437
13520
  src_startTaskReadvue_type_script_lang_js_,
13438
- startTaskReadvue_type_template_id_4cea7d04_render,
13439
- startTaskReadvue_type_template_id_4cea7d04_staticRenderFns,
13521
+ startTaskReadvue_type_template_id_f3f6be4e_render,
13522
+ startTaskReadvue_type_template_id_f3f6be4e_staticRenderFns,
13440
13523
  false,
13441
13524
  null,
13442
13525
  null,
@@ -13445,8 +13528,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13445
13528
  )
13446
13529
 
13447
13530
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
13448
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=6b258c7a&
13449
- var resetvue_type_template_id_6b258c7a_render = function () {
13531
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=7924ff92&
13532
+ var resetvue_type_template_id_7924ff92_render = function () {
13450
13533
  var _vm = this
13451
13534
  var _h = _vm.$createElement
13452
13535
  var _c = _vm._self._c || _h
@@ -13872,11 +13955,11 @@ var resetvue_type_template_id_6b258c7a_render = function () {
13872
13955
  1
13873
13956
  )
13874
13957
  }
13875
- var resetvue_type_template_id_6b258c7a_staticRenderFns = []
13876
- resetvue_type_template_id_6b258c7a_render._withStripped = true
13958
+ var resetvue_type_template_id_7924ff92_staticRenderFns = []
13959
+ resetvue_type_template_id_7924ff92_render._withStripped = true
13877
13960
 
13878
13961
 
13879
- // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=6b258c7a&
13962
+ // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=7924ff92&
13880
13963
 
13881
13964
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
13882
13965
  var resetvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -14229,7 +14312,7 @@ var resetvue_type_script_lang_js_components;
14229
14312
  if (mainConfig) {
14230
14313
  this.userModel = JSON.parse(mainConfig).userModel;
14231
14314
  } else {
14232
- util["a" /* default */].ajax({ url: api["jb" /* loginUserInfo */] }).then(function (res) {
14315
+ util["a" /* default */].ajax({ url: api["lb" /* loginUserInfo */] }).then(function (res) {
14233
14316
  var status = res.status,
14234
14317
  data = res.data;
14235
14318
 
@@ -14322,7 +14405,7 @@ var resetvue_type_script_lang_js_components;
14322
14405
  var _this2 = this;
14323
14406
 
14324
14407
  util["a" /* default */].ajax({
14325
- url: api["x" /* findCodeValues */],
14408
+ url: api["y" /* findCodeValues */],
14326
14409
  params: {
14327
14410
  ccCode: 'notification_type',
14328
14411
  userId: util["a" /* default */].getStorage('userId')
@@ -14352,7 +14435,7 @@ var resetvue_type_script_lang_js_components;
14352
14435
  nodeId: this.nextNode.nextNode,
14353
14436
  businessId: this.taskExamine.businessId
14354
14437
  };
14355
- util["a" /* default */].ajax({ url: api["O" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
14438
+ util["a" /* default */].ajax({ url: api["Q" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
14356
14439
  if (res.status === 'success') {
14357
14440
  _this3.nextNode.noticeInfo = res.message;
14358
14441
  }
@@ -14437,7 +14520,7 @@ var resetvue_type_script_lang_js_components;
14437
14520
  };
14438
14521
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
14439
14522
  util["a" /* default */].ajax({
14440
- url: _this4.type == 'reset' ? api["wb" /* resetProcess */] : api["Hb" /* taskContinuation */],
14523
+ url: _this4.type == 'reset' ? api["yb" /* resetProcess */] : api["Jb" /* taskContinuation */],
14441
14524
  method: 'post',
14442
14525
  data: params
14443
14526
  }).then(function (res) {
@@ -14471,7 +14554,7 @@ var resetvue_type_script_lang_js_components;
14471
14554
  businessId: this.taskExamine.businessId,
14472
14555
  pendingId: this.taskExamine.pendingId
14473
14556
  };
14474
- util["a" /* default */].ajax({ url: api["N" /* getNodeInfo */], params: params }).then(function (res) {
14557
+ util["a" /* default */].ajax({ url: api["O" /* getNodeInfo */], params: params }).then(function (res) {
14475
14558
  var status = res.status,
14476
14559
  message = res.message,
14477
14560
  _res$data = res.data,
@@ -14572,7 +14655,7 @@ var resetvue_type_script_lang_js_components;
14572
14655
  var _this6 = this;
14573
14656
 
14574
14657
  util["a" /* default */].ajax({
14575
- url: api["z" /* findSysCodes */]
14658
+ url: api["A" /* findSysCodes */]
14576
14659
  }).then(function (res) {
14577
14660
  var status = res.status,
14578
14661
  message = res.message;
@@ -14600,11 +14683,11 @@ var resetvue_type_script_lang_js_components;
14600
14683
  });
14601
14684
  },
14602
14685
 
14603
- /**
14604
- * isMultiple
14605
- * @desc:是否多选
14606
- * @author liufan
14607
- * @date 2022年9月13日
14686
+ /**
14687
+ * isMultiple
14688
+ * @desc:是否多选
14689
+ * @author liufan
14690
+ * @date 2022年9月13日
14608
14691
  **/
14609
14692
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14610
14693
  var multiple = false;
@@ -14641,7 +14724,7 @@ var resetvue_type_script_lang_js_components;
14641
14724
  var _this7 = this;
14642
14725
 
14643
14726
  var params = {
14644
- url: this.type == 'continuation' ? api["Zb" /* toTaskContinuationIndex */] : api["Ub" /* toResetProcessIndex */],
14727
+ url: this.type == 'continuation' ? api["bc" /* toTaskContinuationIndex */] : api["Wb" /* toResetProcessIndex */],
14645
14728
  params: resetvue_type_script_lang_js_extends({
14646
14729
  appId: this.appId
14647
14730
  }, this.flowParams)
@@ -14737,8 +14820,8 @@ var resetvue_type_script_lang_js_components;
14737
14820
 
14738
14821
  var reset_component = Object(componentNormalizer["a" /* default */])(
14739
14822
  src_resetvue_type_script_lang_js_,
14740
- resetvue_type_template_id_6b258c7a_render,
14741
- resetvue_type_template_id_6b258c7a_staticRenderFns,
14823
+ resetvue_type_template_id_7924ff92_render,
14824
+ resetvue_type_template_id_7924ff92_staticRenderFns,
14742
14825
  false,
14743
14826
  null,
14744
14827
  null,
@@ -14747,8 +14830,8 @@ var reset_component = Object(componentNormalizer["a" /* default */])(
14747
14830
  )
14748
14831
 
14749
14832
  /* harmony default export */ var src_reset = (reset_component.exports);
14750
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=51053046&
14751
- var taskUnionExaminevue_type_template_id_51053046_render = function () {
14833
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=21dd6a72&
14834
+ var taskUnionExaminevue_type_template_id_21dd6a72_render = function () {
14752
14835
  var _vm = this
14753
14836
  var _h = _vm.$createElement
14754
14837
  var _c = _vm._self._c || _h
@@ -14771,7 +14854,7 @@ var taskUnionExaminevue_type_template_id_51053046_render = function () {
14771
14854
  {
14772
14855
  ref: "infoList",
14773
14856
  staticClass: "demo-dynamic",
14774
- attrs: { model: _vm.infoList, "label-width": "100px" },
14857
+ attrs: { model: _vm.infoList, "label-width": "120px" },
14775
14858
  },
14776
14859
  [
14777
14860
  _vm.isSinglePage
@@ -14805,7 +14888,7 @@ var taskUnionExaminevue_type_template_id_51053046_render = function () {
14805
14888
  ? _vm.currentOrgName
14806
14889
  : "本单位"
14807
14890
  : _vm.type == "startDraf"
14808
- ? "呈送单位"
14891
+ ? "呈送单位/对象"
14809
14892
  : _vm.type === "taskReview"
14810
14893
  ? "复核人"
14811
14894
  : _vm.type === "twoOfficesDispatch"
@@ -14830,7 +14913,8 @@ var taskUnionExaminevue_type_template_id_51053046_render = function () {
14830
14913
  : _vm.type == "startDraf"
14831
14914
  ? ["enterprise", "employee"]
14832
14915
  : ["enterprise"],
14833
- params: _vm.params,
14916
+ params:
14917
+ _vm.type == "startDraf" ? _vm.otherParams : _vm.params,
14834
14918
  tabs: _vm.currentOrgTabsParam,
14835
14919
  disabled: _vm.disabled,
14836
14920
  onlyName: _vm.onlyName,
@@ -15001,11 +15085,11 @@ var taskUnionExaminevue_type_template_id_51053046_render = function () {
15001
15085
  1
15002
15086
  )
15003
15087
  }
15004
- var taskUnionExaminevue_type_template_id_51053046_staticRenderFns = []
15005
- taskUnionExaminevue_type_template_id_51053046_render._withStripped = true
15088
+ var taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns = []
15089
+ taskUnionExaminevue_type_template_id_21dd6a72_render._withStripped = true
15006
15090
 
15007
15091
 
15008
- // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=51053046&
15092
+ // CONCATENATED MODULE: ./packages/flow/src/component/taskUnionExamine.vue?vue&type=template&id=21dd6a72&
15009
15093
 
15010
15094
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/taskUnionExamine.vue?vue&type=script&lang=js&
15011
15095
  var taskUnionExaminevue_type_script_lang_js_components;
@@ -15151,7 +15235,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
15151
15235
  pendingId: { type: String, default: '' },
15152
15236
  type: { type: String, default: '' },
15153
15237
  defaultOpinion: { type: String, default: '' },
15238
+ oldOption: { type: String, default: '' },
15154
15239
  disabled: { type: Boolean, default: false },
15240
+ simpleTips: { type: Boolean, default: true },
15155
15241
  multiple: { type: Boolean, default: true }
15156
15242
  },
15157
15243
  inheritAttrs: false,
@@ -15194,6 +15280,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15194
15280
  mounted: function mounted() {
15195
15281
  this.loading = true;
15196
15282
  this.newMultiple = this.multiple;
15283
+ this.opinion = this.oldOption;
15197
15284
  this.getNodeType();
15198
15285
  if (this.type === 'taskReview') return this.getTaskReview();
15199
15286
  this.getInfo();
@@ -15219,7 +15306,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15219
15306
  pendingId = this.pendingId;
15220
15307
 
15221
15308
  var params = {
15222
- url: api["Mb" /* taskReview */],
15309
+ url: api["Ob" /* taskReview */],
15223
15310
  data: {
15224
15311
  nextUserId: nextOtherOrgObj.join(','),
15225
15312
  notificationType: noticeType.join(','),
@@ -15239,7 +15326,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15239
15326
 
15240
15327
  _this.loading = false;
15241
15328
  if (status === 'success') {
15242
- _this.$message.success('提交成功');
15329
+ _this.simpleTips && _this.$message.success('提交成功');
15243
15330
  _this.quit(true);
15244
15331
  } else {
15245
15332
  _this.$message.error(message || '系统错误,请联系管理员!');
@@ -15255,7 +15342,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15255
15342
  var _this2 = this;
15256
15343
 
15257
15344
  var params = {
15258
- url: api["bc" /* toTaskReview */],
15345
+ url: api["dc" /* toTaskReview */],
15259
15346
  params: { pendingId: this.pendingId }
15260
15347
  };
15261
15348
  util["a" /* default */].ajax(params).then(function (res) {
@@ -15268,7 +15355,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
15268
15355
  initiatorUser = _res$data.initiatorUser,
15269
15356
  taskExamine = _res$data.taskExamine;
15270
15357
 
15271
- _this2.opinion = taskExamine.opinion;
15358
+ if (taskExamine.opinion) {
15359
+ _this2.opinion = taskExamine.opinion;
15360
+ }
15272
15361
  _this2.infoList.nextOtherOrgObj.push(initiatorUser.userId);
15273
15362
  _this2.onlyName = initiatorUser.username;
15274
15363
  _this2.isSubFlow = taskExamine.isSubFlow;
@@ -15289,7 +15378,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15289
15378
  var _this3 = this;
15290
15379
 
15291
15380
  var params = {
15292
- url: this.type == 'takeAdvice' ? api["fc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["cc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["ic" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["jc" /* toTwoOfficesDispatch */] : api["hc" /* toTaskUnionExamine */],
15381
+ url: this.type == 'takeAdvice' ? api["hc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["ec" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["kc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["lc" /* toTwoOfficesDispatch */] : api["jc" /* toTaskUnionExamine */],
15293
15382
  params: { pendingId: this.pendingId },
15294
15383
  headers: { Accept: 'application/json,text/plain' }
15295
15384
  };
@@ -15329,6 +15418,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15329
15418
  _this3.params.filid = JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId;
15330
15419
  }
15331
15420
  }
15421
+
15332
15422
  if (res.data.customizedConfig.foreignOrgSelectorCustomized) {
15333
15423
  _this3.otherMix = res.data.customizedConfig.foreignOrgSelectorSelectMix == 'true';
15334
15424
  _this3.foreignOrgTabs = res.data.customizedConfig.foreignOrgSelectorItemList.split(',');
@@ -15342,7 +15432,9 @@ var taskUnionExaminevue_type_script_lang_js_components;
15342
15432
  _this3.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
15343
15433
  _this3.isSinglePage = taskExamine.isSinglePage;
15344
15434
  _this3.isSubFlow = taskExamine.isSubFlow;
15345
- _this3.opinion = taskExamine.opinion;
15435
+ if (taskExamine.opinion) {
15436
+ _this3.opinion = taskExamine.opinion;
15437
+ }
15346
15438
  _this3.choiceDeptId = choiceDeptId;
15347
15439
  _this3.choiceOrgId = choiceOrgId;
15348
15440
  if (_this3.type == 'takeAdvice' || _this3.type == 'startDraf') {
@@ -15410,7 +15502,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15410
15502
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
15411
15503
  // return this.$message.warning('暂未开放,敬请期待!');
15412
15504
  var param = {
15413
- url: this.type === 'startDraf' ? api["Nb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Rb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["lc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Ob" /* taskTakeAdvice */] : api["Qb" /* taskUnionExamine */],
15505
+ url: this.type === 'startDraf' ? api["Pb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Tb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["nc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Qb" /* taskTakeAdvice */] : api["Sb" /* taskUnionExamine */],
15414
15506
  data: {
15415
15507
  opinion: opinion,
15416
15508
  pendingId: pendingId,
@@ -15432,7 +15524,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15432
15524
 
15433
15525
  _this4.loading = false;
15434
15526
  if (status == 'success') {
15435
- _this4.$message.success('提交成功');
15527
+ _this4.simpleTips && _this4.$message.success('提交成功');
15436
15528
  _this4.quit(true);
15437
15529
  } else {
15438
15530
  _this4.$message.error(message || '系统错误,请联系管理员!');
@@ -15476,7 +15568,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15476
15568
  var _this5 = this;
15477
15569
 
15478
15570
  util["a" /* default */].ajax({
15479
- url: api["x" /* findCodeValues */],
15571
+ url: api["y" /* findCodeValues */],
15480
15572
  params: {
15481
15573
  ccCode: 'notification_type',
15482
15574
  userId: util["a" /* default */].getStorage('userId')
@@ -15504,7 +15596,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15504
15596
  var params = {
15505
15597
  pendingId: this.pendingId
15506
15598
  };
15507
- util["a" /* default */].ajax({ url: api["O" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15599
+ util["a" /* default */].ajax({ url: api["Q" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
15508
15600
  if (res.status === 'success') {
15509
15601
  _this6.infoList.noticeInfo = res.message;
15510
15602
  }
@@ -15520,7 +15612,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
15520
15612
  var _this7 = this;
15521
15613
 
15522
15614
  util["a" /* default */].ajax({
15523
- url: api["z" /* findSysCodes */]
15615
+ url: api["A" /* findSysCodes */]
15524
15616
  }).then(function (res) {
15525
15617
  var status = res.status,
15526
15618
  message = res.message;
@@ -15560,8 +15652,8 @@ var taskUnionExaminevue_type_script_lang_js_components;
15560
15652
 
15561
15653
  var taskUnionExamine_component = Object(componentNormalizer["a" /* default */])(
15562
15654
  component_taskUnionExaminevue_type_script_lang_js_,
15563
- taskUnionExaminevue_type_template_id_51053046_render,
15564
- taskUnionExaminevue_type_template_id_51053046_staticRenderFns,
15655
+ taskUnionExaminevue_type_template_id_21dd6a72_render,
15656
+ taskUnionExaminevue_type_template_id_21dd6a72_staticRenderFns,
15565
15657
  false,
15566
15658
  null,
15567
15659
  null,
@@ -18758,7 +18850,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18758
18850
  var _this = this;
18759
18851
 
18760
18852
  var params = {
18761
- url: api["E" /* getAdjunctFileInfos */],
18853
+ url: api["F" /* getAdjunctFileInfos */],
18762
18854
  params: { ownId: ownId, code: code }
18763
18855
  };
18764
18856
  util["a" /* default */].ajax(params).then(function (res) {
@@ -18846,7 +18938,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18846
18938
  taskAction: 'complete'
18847
18939
  };
18848
18940
  util["a" /* default */].ajax({
18849
- url: api["Jb" /* taskReadHtml */],
18941
+ url: api["Lb" /* taskReadHtml */],
18850
18942
  params: { taskAction: 'complete' },
18851
18943
  headers: {
18852
18944
  Accept: 'application/json,text/plain'
@@ -18878,7 +18970,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18878
18970
 
18879
18971
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
18880
18972
  util["a" /* default */].ajax({
18881
- url: api["Yb" /* toStartTaskReadIndex */],
18973
+ url: api["ac" /* toStartTaskReadIndex */],
18882
18974
  params: { pendingId: this.pendingId }
18883
18975
  }).then(function (res) {
18884
18976
  var status = res.status,
@@ -18914,7 +19006,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18914
19006
  if (mainConfig) {
18915
19007
  this.userModel = JSON.parse(mainConfig).userModel;
18916
19008
  } else {
18917
- util["a" /* default */].ajax({ url: api["jb" /* loginUserInfo */] }).then(function (res) {
19009
+ util["a" /* default */].ajax({ url: api["lb" /* loginUserInfo */] }).then(function (res) {
18918
19010
  var status = res.status,
18919
19011
  data = res.data;
18920
19012
 
@@ -18949,7 +19041,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18949
19041
  var _this5 = this;
18950
19042
 
18951
19043
  util["a" /* default */].ajax({
18952
- url: api["x" /* findCodeValues */],
19044
+ url: api["y" /* findCodeValues */],
18953
19045
  params: {
18954
19046
  ccCode: 'notification_type',
18955
19047
  userId: util["a" /* default */].getStorage('userId')
@@ -18968,11 +19060,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
18968
19060
  });
18969
19061
  },
18970
19062
 
18971
- /**
18972
- * saveInfo
18973
- * @desc:暂存
18974
- * @author liufan
18975
- * @date 2022年9月9日
19063
+ /**
19064
+ * saveInfo
19065
+ * @desc:暂存
19066
+ * @author liufan
19067
+ * @date 2022年9月9日
18976
19068
  **/
18977
19069
  saveInfo: function saveInfo(type, btn) {
18978
19070
  var _this6 = this;
@@ -19015,7 +19107,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19015
19107
  pendingId: this.pendingId
19016
19108
  };
19017
19109
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
19018
- util["a" /* default */].ajax({ url: api["Sb" /* tempSave */], params: params }).then(function (res) {
19110
+ util["a" /* default */].ajax({ url: api["Ub" /* tempSave */], params: params }).then(function (res) {
19019
19111
  var status = res.status,
19020
19112
  message = res.message;
19021
19113
 
@@ -19034,11 +19126,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19034
19126
  });
19035
19127
  },
19036
19128
 
19037
- /**
19038
- * rejectBtn
19039
- * @desc:点击驳回
19040
- * @author liufan
19041
- * @date 2022年5月25日
19129
+ /**
19130
+ * rejectBtn
19131
+ * @desc:点击驳回
19132
+ * @author liufan
19133
+ * @date 2022年5月25日
19042
19134
  **/
19043
19135
  rejectBtn: function rejectBtn() {
19044
19136
  var _this8 = this;
@@ -19056,11 +19148,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19056
19148
  }
19057
19149
  },
19058
19150
 
19059
- /**
19060
- * taskReadBtn
19061
- * @desc:点击分阅
19062
- * @author liufan
19063
- * @date 2022年5月25日
19151
+ /**
19152
+ * taskReadBtn
19153
+ * @desc:点击分阅
19154
+ * @author liufan
19155
+ * @date 2022年5月25日
19064
19156
  **/
19065
19157
  taskReadBtn: function taskReadBtn() {
19066
19158
  var _this9 = this;
@@ -19079,17 +19171,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19079
19171
  }
19080
19172
  },
19081
19173
 
19082
- /**
19083
- * getFind
19084
- * @desc:获取通知方式
19085
- * @author liufan
19086
- * @date 2022年5月25日
19174
+ /**
19175
+ * getFind
19176
+ * @desc:获取通知方式
19177
+ * @author liufan
19178
+ * @date 2022年5月25日
19087
19179
  **/
19088
19180
  getFind: function getFind() {
19089
19181
  var _this10 = this;
19090
19182
 
19091
19183
  util["a" /* default */].ajax({
19092
- url: api["z" /* findSysCodes */]
19184
+ url: api["A" /* findSysCodes */]
19093
19185
  }).then(function (res) {
19094
19186
  var status = res.status,
19095
19187
  message = res.message;
@@ -19121,7 +19213,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19121
19213
  nodeId = _endFlowInfo.nodeId;
19122
19214
 
19123
19215
  var param = {
19124
- url: api["J" /* getFreeStartFlowParams */],
19216
+ url: api["K" /* getFreeStartFlowParams */],
19125
19217
  params: {
19126
19218
  businessId: businessId,
19127
19219
  processDefinitionId: processDefinitionId,
@@ -19138,12 +19230,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19138
19230
  });
19139
19231
  },
19140
19232
 
19141
- /**
19142
- * endFlows
19143
- * @desc:直接办结
19144
- * @author liufan
19145
- * @param {Object} res 直接办结数据
19146
- * @date 2022年5月25日
19233
+ /**
19234
+ * endFlows
19235
+ * @desc:直接办结
19236
+ * @author liufan
19237
+ * @param {Object} res 直接办结数据
19238
+ * @date 2022年5月25日
19147
19239
  **/
19148
19240
  endFlows: function endFlows(res) {
19149
19241
  var _this12 = this;
@@ -19161,7 +19253,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19161
19253
 
19162
19254
  this.$confirm('确认' + res.value + '?').then(function () {
19163
19255
  var params = {
19164
- url: api["w" /* endFlowHtml */],
19256
+ url: api["x" /* endFlowHtml */],
19165
19257
  headers: { Accept: 'application/json,text/plain' },
19166
19258
  method: 'post',
19167
19259
  data: freeStartFlowvue_type_script_lang_js_extends({}, _this13.endFlowInfo, _this13.nextNode, {
@@ -19197,12 +19289,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19197
19289
  }).catch(function (e) {});
19198
19290
  },
19199
19291
 
19200
- /**
19201
- * goView
19202
- * @desc:更多流程按钮操作
19203
- * @author liufan
19204
- * @param {Object} res 当前点击操作按钮数据
19205
- * @date 2022年5月25日
19292
+ /**
19293
+ * goView
19294
+ * @desc:更多流程按钮操作
19295
+ * @author liufan
19296
+ * @param {Object} res 当前点击操作按钮数据
19297
+ * @date 2022年5月25日
19206
19298
  **/
19207
19299
  goView: function goView(res) {
19208
19300
  // 驳回并办结:rejectAndEndHtml
@@ -19287,11 +19379,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19287
19379
  // isCanStartSubFlow
19288
19380
  },
19289
19381
 
19290
- /**
19291
- * toTakeAdvice
19292
- * @desc:征求意见
19293
- * @author liufan
19294
- * @date 2022年9月29日
19382
+ /**
19383
+ * toTakeAdvice
19384
+ * @desc:征求意见
19385
+ * @author liufan
19386
+ * @date 2022年9月29日
19295
19387
  **/
19296
19388
  toTakeAdvice: function toTakeAdvice(res) {
19297
19389
  var _this14 = this;
@@ -19309,7 +19401,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19309
19401
  var _this15 = this;
19310
19402
 
19311
19403
  var params = {
19312
- url: api["hb" /* isCanStartSubFlow */],
19404
+ url: api["jb" /* isCanStartSubFlow */],
19313
19405
  data: {
19314
19406
  appId: this.taskExamineInfo.appId,
19315
19407
  inevitableNode: res.inevitableNode
@@ -19335,11 +19427,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19335
19427
  });
19336
19428
  },
19337
19429
 
19338
- /**
19339
- * toStartDraf
19340
- * @desc: 稿件递送、联合审核、复核
19341
- * @author liufan
19342
- * @date 2022年9月29日
19430
+ /**
19431
+ * toStartDraf
19432
+ * @desc: 稿件递送、联合审核、复核
19433
+ * @author liufan
19434
+ * @date 2022年9月29日
19343
19435
  **/
19344
19436
  toStartDraf: function toStartDraf(res) {
19345
19437
  var _this16 = this;
@@ -19353,11 +19445,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19353
19445
  }
19354
19446
  },
19355
19447
 
19356
- /**
19357
- * toSendMsg
19358
- * @desc:核稿通知
19359
- * @author liufan
19360
- * @date 2022年9月29日
19448
+ /**
19449
+ * toSendMsg
19450
+ * @desc:核稿通知
19451
+ * @author liufan
19452
+ * @date 2022年9月29日
19361
19453
  **/
19362
19454
  toSendMsg: function toSendMsg(res) {
19363
19455
  var _this17 = this;
@@ -19371,11 +19463,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19371
19463
  }
19372
19464
  },
19373
19465
 
19374
- /**
19375
- * toTaskReadAndEnd
19376
- * @desc:分阅并办结
19377
- * @author liufan
19378
- * @date 2022年9月29日
19466
+ /**
19467
+ * toTaskReadAndEnd
19468
+ * @desc:分阅并办结
19469
+ * @author liufan
19470
+ * @date 2022年9月29日
19379
19471
  **/
19380
19472
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
19381
19473
  var _this18 = this;
@@ -19393,11 +19485,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19393
19485
  }
19394
19486
  },
19395
19487
 
19396
- /**
19397
- * rejectAndEnd
19398
- * @desc:驳回并办结
19399
- * @author liufan
19400
- * @date 2022年9月29日
19488
+ /**
19489
+ * rejectAndEnd
19490
+ * @desc:驳回并办结
19491
+ * @author liufan
19492
+ * @date 2022年9月29日
19401
19493
  **/
19402
19494
  rejectAndEnd: function rejectAndEnd(res) {
19403
19495
  var _this19 = this;
@@ -19419,7 +19511,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19419
19511
  this.$confirm('确认' + res.value + '?').then(function () {
19420
19512
  // return this.$message.warning('请填写意见');
19421
19513
  var params = {
19422
- url: api["vb" /* rejectAndEnd */],
19514
+ url: api["xb" /* rejectAndEnd */],
19423
19515
  headers: { Accept: 'application/json,text/plain' },
19424
19516
  method: 'post',
19425
19517
  data: {
@@ -19452,11 +19544,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19452
19544
  });
19453
19545
  },
19454
19546
 
19455
- /**
19456
- * toTransfer
19457
- * @desc:转办
19458
- * @author liufan
19459
- * @date 2022年9月29日
19547
+ /**
19548
+ * toTransfer
19549
+ * @desc:转办
19550
+ * @author liufan
19551
+ * @date 2022年9月29日
19460
19552
  **/
19461
19553
  toTransfer: function toTransfer(res) {
19462
19554
  var _this21 = this;
@@ -19472,11 +19564,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19472
19564
  }
19473
19565
  },
19474
19566
 
19475
- /**
19476
- * getNodeInfo
19477
- * @desc:获取节点信息
19478
- * @author liufan
19479
- * @date 2022年5月25日
19567
+ /**
19568
+ * getNodeInfo
19569
+ * @desc:获取节点信息
19570
+ * @author liufan
19571
+ * @date 2022年5月25日
19480
19572
  **/
19481
19573
  getNodeInfo: function getNodeInfo() {
19482
19574
  var _this22 = this;
@@ -19489,7 +19581,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19489
19581
  pendingId: this.pendingId,
19490
19582
  businessId: this.businessIds
19491
19583
  };
19492
- util["a" /* default */].ajax({ url: api["N" /* getNodeInfo */], params: params }).then(function (res) {
19584
+ util["a" /* default */].ajax({ url: api["O" /* getNodeInfo */], params: params }).then(function (res) {
19493
19585
  var status = res.status,
19494
19586
  message = res.message,
19495
19587
  data = res.data;
@@ -19575,12 +19667,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19575
19667
  });
19576
19668
  },
19577
19669
 
19578
- /**
19579
- * selecNext
19580
- * @desc:下步节点变化时更新数据
19581
- * @author liufan
19582
- * @param {String} val 当前选中值
19583
- * @date 2022年5月25日
19670
+ /**
19671
+ * selecNext
19672
+ * @desc:下步节点变化时更新数据
19673
+ * @author liufan
19674
+ * @param {String} val 当前选中值
19675
+ * @date 2022年5月25日
19584
19676
  **/
19585
19677
  selecNext: function selecNext(val, type, isDef) {
19586
19678
  var _this23 = this;
@@ -19689,11 +19781,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19689
19781
  if (isDef !== true) this.getNodeInfo();
19690
19782
  },
19691
19783
 
19692
- /**
19693
- * isMultiple
19694
- * @desc:是否多选
19695
- * @author liufan
19696
- * @date 2022年9月13日
19784
+ /**
19785
+ * isMultiple
19786
+ * @desc:是否多选
19787
+ * @author liufan
19788
+ * @date 2022年9月13日
19697
19789
  **/
19698
19790
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
19699
19791
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -19725,11 +19817,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19725
19817
  }
19726
19818
  },
19727
19819
 
19728
- /**
19729
- * getHedInfo
19730
- * @desc:获取审核页面数据
19731
- * @author liufan
19732
- * @date 2022年5月25日
19820
+ /**
19821
+ * getHedInfo
19822
+ * @desc:获取审核页面数据
19823
+ * @author liufan
19824
+ * @date 2022年5月25日
19733
19825
  **/
19734
19826
  getHedInfo: function getHedInfo() {
19735
19827
  var _this24 = this;
@@ -19739,7 +19831,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19739
19831
  pendingId: this.pendingId,
19740
19832
  userId: util["a" /* default */].getStorage('userId')
19741
19833
  };
19742
- util["a" /* default */].ajax({ url: api["K" /* getHandleInfoHtml */], params: params }).then(function (res) {
19834
+ util["a" /* default */].ajax({ url: api["L" /* getHandleInfoHtml */], params: params }).then(function (res) {
19743
19835
  //pc返回数据
19744
19836
 
19745
19837
  _this24.loading.close();
@@ -19965,13 +20057,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19965
20057
  });
19966
20058
  },
19967
20059
 
19968
- /**
19969
- * closeProcess
19970
- * @desc:关闭弹窗
19971
- * @author liufan
19972
- * @param {boolean} val 当前是否办理流程
19973
- * @param {String} type 当前点击的弹窗类型
19974
- * @date 2022年5月25日
20060
+ /**
20061
+ * closeProcess
20062
+ * @desc:关闭弹窗
20063
+ * @author liufan
20064
+ * @param {boolean} val 当前是否办理流程
20065
+ * @param {String} type 当前点击的弹窗类型
20066
+ * @date 2022年5月25日
19975
20067
  **/
19976
20068
  closeProcess: function closeProcess(val, type, closeParent) {
19977
20069
  if (closeParent) {
@@ -19988,23 +20080,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19988
20080
  }
19989
20081
  },
19990
20082
 
19991
- /**
19992
- * selectChange
19993
- * @desc:常用语选择
19994
- * @author liufan
19995
- * @param {String} val 选中值
19996
- * @date 2022年5月25日
20083
+ /**
20084
+ * selectChange
20085
+ * @desc:常用语选择
20086
+ * @author liufan
20087
+ * @param {String} val 选中值
20088
+ * @date 2022年5月25日
19997
20089
  **/
19998
20090
  selectChange: function selectChange(val) {
19999
20091
  this.value = val;
20000
20092
  },
20001
20093
 
20002
- /**
20003
- * upDate
20004
- * @desc:修改常用语
20005
- * @author liufan
20006
- * @param {Object} val 修改值
20007
- * @date 2022年5月25日
20094
+ /**
20095
+ * upDate
20096
+ * @desc:修改常用语
20097
+ * @author liufan
20098
+ * @param {Object} val 修改值
20099
+ * @date 2022年5月25日
20008
20100
  **/
20009
20101
  upDate: function upDate(val) {
20010
20102
  this.FormData.id = val.id;
@@ -20012,11 +20104,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20012
20104
  },
20013
20105
 
20014
20106
 
20015
- /**
20016
- * getProcess
20017
- * @desc:获取选择流程
20018
- * @author liufan
20019
- * @date 2022年5月25日
20107
+ /**
20108
+ * getProcess
20109
+ * @desc:获取选择流程
20110
+ * @author liufan
20111
+ * @date 2022年5月25日
20020
20112
  **/
20021
20113
  getProcess: function getProcess() {
20022
20114
  var _this25 = this;
@@ -20031,7 +20123,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20031
20123
  // onlyFlag: true
20032
20124
  };
20033
20125
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20034
- util["a" /* default */].ajax({ url: api["S" /* getProcessDefList */], params: params }).then(function (res) {
20126
+ util["a" /* default */].ajax({ url: api["U" /* getProcessDefList */], params: params }).then(function (res) {
20035
20127
  var status = res.status,
20036
20128
  message = res.message,
20037
20129
  data = res.data;
@@ -20070,11 +20162,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20070
20162
  });
20071
20163
  },
20072
20164
 
20073
- /**
20074
- * getPendedhistoryList
20075
- * @desc:获取流程列表
20076
- * @author liufan
20077
- * @date 2022年5月25日
20165
+ /**
20166
+ * getPendedhistoryList
20167
+ * @desc:获取流程列表
20168
+ * @author liufan
20169
+ * @date 2022年5月25日
20078
20170
  **/
20079
20171
  getPendedhistoryList: function getPendedhistoryList() {
20080
20172
  var _this26 = this;
@@ -20084,7 +20176,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20084
20176
  userId: util["a" /* default */].getStorage('userId'),
20085
20177
  type: 2
20086
20178
  };
20087
- util["a" /* default */].ajax({ url: api["mb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
20179
+ util["a" /* default */].ajax({ url: api["ob" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
20088
20180
  var rCode = res.rCode,
20089
20181
  msg = res.msg,
20090
20182
  results = res.results;
@@ -20106,12 +20198,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20106
20198
  },
20107
20199
 
20108
20200
  // 提交流程
20109
- /**
20110
- * subProcess
20111
- * @desc:提交流程
20112
- * @author liufan
20113
- * @param {String} formName 当前form表单ref值
20114
- * @date 2022年5月25日
20201
+ /**
20202
+ * subProcess
20203
+ * @desc:提交流程
20204
+ * @author liufan
20205
+ * @param {String} formName 当前form表单ref值
20206
+ * @date 2022年5月25日
20115
20207
  **/
20116
20208
  subProcess: function subProcess(val) {
20117
20209
  var _this27 = this;
@@ -20280,7 +20372,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20280
20372
  params.isSubFlow = taskExamineInfo.isSubFlow;
20281
20373
  params.nodeId = taskExamineInfo.nodeId;
20282
20374
  params.needRetrialAuth = needRetrialAuth;
20283
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Ib" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
20375
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Kb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
20284
20376
  var status = res.status,
20285
20377
  message = res.message;
20286
20378
 
@@ -20371,8 +20463,8 @@ var freeStartFlow_component = Object(componentNormalizer["a" /* default */])(
20371
20463
  )
20372
20464
 
20373
20465
  /* harmony default export */ var freeStartFlow = (freeStartFlow_component.exports);
20374
- // 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=2b223e2a&
20375
- var supervisevue_type_template_id_2b223e2a_render = function () {
20466
+ // 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=b84cd288&
20467
+ var supervisevue_type_template_id_b84cd288_render = function () {
20376
20468
  var _vm = this
20377
20469
  var _h = _vm.$createElement
20378
20470
  var _c = _vm._self._c || _h
@@ -20464,9 +20556,7 @@ var supervisevue_type_template_id_2b223e2a_render = function () {
20464
20556
  { key: index, attrs: { label: item.cciValue } },
20465
20557
  [
20466
20558
  _vm._v(
20467
- "\n " +
20468
- _vm._s(item.shortName) +
20469
- "\n "
20559
+ "\n " + _vm._s(item.shortName) + "\n "
20470
20560
  ),
20471
20561
  ]
20472
20562
  )
@@ -20527,11 +20617,11 @@ var supervisevue_type_template_id_2b223e2a_render = function () {
20527
20617
  1
20528
20618
  )
20529
20619
  }
20530
- var supervisevue_type_template_id_2b223e2a_staticRenderFns = []
20531
- supervisevue_type_template_id_2b223e2a_render._withStripped = true
20620
+ var supervisevue_type_template_id_b84cd288_staticRenderFns = []
20621
+ supervisevue_type_template_id_b84cd288_render._withStripped = true
20532
20622
 
20533
20623
 
20534
- // CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=2b223e2a&
20624
+ // CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=b84cd288&
20535
20625
 
20536
20626
  // 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&
20537
20627
  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; };
@@ -20596,10 +20686,14 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20596
20686
  //
20597
20687
  //
20598
20688
  //
20689
+ //
20690
+ //
20691
+ //
20599
20692
 
20600
20693
 
20601
20694
 
20602
20695
  /* harmony default export */ var supervisevue_type_script_lang_js_ = ({
20696
+ name: 'supervise',
20603
20697
  props: {
20604
20698
  businessId: {
20605
20699
  type: String,
@@ -20637,11 +20731,12 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20637
20731
  pendingUserIds = _nextNode.pendingUserIds;
20638
20732
 
20639
20733
  var params = {
20640
- url: api["ec" /* toTaskSuperviseSub */],
20734
+ url: api["gc" /* toTaskSuperviseSub */],
20641
20735
  params: {
20642
20736
  userId: util["a" /* default */].getStorage('userId'),
20643
20737
  urgeUserIds: pendingUserIds,
20644
- notificationType: noticeType.join(','), notificationMessage: notifyMessage,
20738
+ notificationType: noticeType.join(','),
20739
+ notificationMessage: notifyMessage,
20645
20740
  businessId: this.businessId
20646
20741
  }
20647
20742
  };
@@ -20661,14 +20756,13 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20661
20756
 
20662
20757
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20663
20758
  util["a" /* default */].ajax({
20664
- url: api["dc" /* toTaskSupervise */],
20759
+ url: api["fc" /* toTaskSupervise */],
20665
20760
  params: {
20666
20761
  businessId: this.businessId,
20667
20762
  userId: util["a" /* default */].getStorage('userId')
20668
20763
  }
20669
20764
  }).then(function (res) {
20670
20765
  _this2.loading.close();
20671
- console.log(res);
20672
20766
  if (res.rCode == 0) {
20673
20767
  _this2.nextNode = supervisevue_type_script_lang_js_extends({}, _this2.nextNode, res.results);
20674
20768
  _this2.nextNode.noticeType = res.results.defaultNotificationType.split(',');
@@ -20695,8 +20789,8 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
20695
20789
 
20696
20790
  var supervise_component = Object(componentNormalizer["a" /* default */])(
20697
20791
  src_supervisevue_type_script_lang_js_,
20698
- supervisevue_type_template_id_2b223e2a_render,
20699
- supervisevue_type_template_id_2b223e2a_staticRenderFns,
20792
+ supervisevue_type_template_id_b84cd288_render,
20793
+ supervisevue_type_template_id_b84cd288_staticRenderFns,
20700
20794
  false,
20701
20795
  null,
20702
20796
  null,
@@ -20705,14 +20799,201 @@ var supervise_component = Object(componentNormalizer["a" /* default */])(
20705
20799
  )
20706
20800
 
20707
20801
  /* harmony default export */ var supervise = (supervise_component.exports);
20708
- // 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&
20709
-
20802
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=template&id=4f5020b6&
20803
+ var Circulatevue_type_template_id_4f5020b6_render = function () {
20804
+ var _vm = this
20805
+ var _h = _vm.$createElement
20806
+ var _c = _vm._self._c || _h
20807
+ return _c(
20808
+ "div",
20809
+ {
20810
+ directives: [
20811
+ {
20812
+ name: "loading",
20813
+ rawName: "v-loading",
20814
+ value: _vm.loading,
20815
+ expression: "loading",
20816
+ },
20817
+ ],
20818
+ staticClass: "es-flow-index task-union-examine",
20819
+ },
20820
+ [
20821
+ _c(
20822
+ "el-form",
20823
+ {
20824
+ ref: "infoList",
20825
+ attrs: { model: _vm.infoList, "label-width": "120px" },
20826
+ },
20827
+ [
20828
+ _vm.isHideCurrentOrg == 0
20829
+ ? _c(
20830
+ "el-form-item",
20831
+ { attrs: { prop: "nextCurrentOrgObj", label: "本单位" } },
20832
+ [
20833
+ _c("SelectUser", {
20834
+ attrs: {
20835
+ nextUser: _vm.infoList.nextCurrentOrgObj,
20836
+ multiple: _vm.newMultiple,
20837
+ mix: "",
20838
+ types: ["department", "employee"],
20839
+ params: _vm.params,
20840
+ },
20841
+ on: {
20842
+ change: function ($event) {
20843
+ _vm.changeSelectUser($event, "nextCurrentOrgObj")
20844
+ },
20845
+ },
20846
+ }),
20847
+ ],
20848
+ 1
20849
+ )
20850
+ : _vm._e(),
20851
+ _c(
20852
+ "el-form-item",
20853
+ { attrs: { prop: "nextOtherOrgObj", label: "外单位" } },
20854
+ [
20855
+ _c("SelectUser", {
20856
+ attrs: {
20857
+ nextUser: _vm.infoList.nextOtherOrgObj,
20858
+ multiple: _vm.newMultiple,
20859
+ mix: "",
20860
+ types: ["enterprise", "department"],
20861
+ params: _vm.otherParams,
20862
+ },
20863
+ on: {
20864
+ change: function ($event) {
20865
+ _vm.changeSelectUser($event, "nextOtherOrgObj")
20866
+ },
20867
+ },
20868
+ }),
20869
+ ],
20870
+ 1
20871
+ ),
20872
+ _c(
20873
+ "el-form-item",
20874
+ {
20875
+ attrs: {
20876
+ prop: "noticeType",
20877
+ label: "通知方式",
20878
+ rules: [
20879
+ {
20880
+ required: false,
20881
+ message: "请选择通知方式",
20882
+ trigger: "blur",
20883
+ },
20884
+ ],
20885
+ },
20886
+ },
20887
+ [
20888
+ _c(
20889
+ "el-checkbox-group",
20890
+ {
20891
+ staticStyle: { display: "contents" },
20892
+ model: {
20893
+ value: _vm.infoList.noticeType,
20894
+ callback: function ($$v) {
20895
+ _vm.$set(_vm.infoList, "noticeType", $$v)
20896
+ },
20897
+ expression: "infoList.noticeType",
20898
+ },
20899
+ },
20900
+ _vm._l(_vm.infoList.noticeList, function (item) {
20901
+ return _c(
20902
+ "el-checkbox",
20903
+ {
20904
+ key: item.cciValue,
20905
+ attrs: {
20906
+ label: item.cciValue,
20907
+ disabled: _vm.readOnlyNotificationType
20908
+ ? _vm.readOnlyNotificationType.indexOf(
20909
+ item.cciValue
20910
+ ) != -1
20911
+ : false,
20912
+ },
20913
+ },
20914
+ [
20915
+ _vm._v(
20916
+ "\n " + _vm._s(item.shortName) + "\n "
20917
+ ),
20918
+ ]
20919
+ )
20920
+ }),
20921
+ 1
20922
+ ),
20923
+ ],
20924
+ 1
20925
+ ),
20926
+ _c(
20927
+ "el-form-item",
20928
+ {
20929
+ directives: [
20930
+ {
20931
+ name: "show",
20932
+ rawName: "v-show",
20933
+ value: _vm.infoList.noticeType.length != 0,
20934
+ expression: "infoList.noticeType.length != 0",
20935
+ },
20936
+ ],
20937
+ attrs: { prop: "noticeInfo", label: "通知消息" },
20938
+ },
20939
+ [
20940
+ _c("es-input", {
20941
+ staticStyle: {
20942
+ "border-color": "#ccc",
20943
+ padding: "5px",
20944
+ "border-radius": "5px",
20945
+ "font-size": "13px",
20946
+ },
20947
+ attrs: {
20948
+ type: "textarea",
20949
+ readonly: _vm.notificationMessageReadOnly,
20950
+ },
20951
+ model: {
20952
+ value: _vm.infoList.noticeInfo,
20953
+ callback: function ($$v) {
20954
+ _vm.$set(_vm.infoList, "noticeInfo", $$v)
20955
+ },
20956
+ expression: "infoList.noticeInfo",
20957
+ },
20958
+ }),
20959
+ ],
20960
+ 1
20961
+ ),
20962
+ ],
20963
+ 1
20964
+ ),
20965
+ _c(
20966
+ "div",
20967
+ { staticStyle: { "text-align": "right" } },
20968
+ [
20969
+ _c(
20970
+ "el-button",
20971
+ {
20972
+ attrs: { type: "primary", size: "small" },
20973
+ on: { click: _vm.subMit },
20974
+ },
20975
+ [_vm._v(" 确定 ")]
20976
+ ),
20977
+ _c(
20978
+ "el-button",
20979
+ { attrs: { size: "small" }, on: { click: _vm.quit } },
20980
+ [_vm._v(" 取消 ")]
20981
+ ),
20982
+ ],
20983
+ 1
20984
+ ),
20985
+ ],
20986
+ 1
20987
+ )
20988
+ }
20989
+ var Circulatevue_type_template_id_4f5020b6_staticRenderFns = []
20990
+ Circulatevue_type_template_id_4f5020b6_render._withStripped = true
20710
20991
 
20711
- var mainvue_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; };
20712
20992
 
20713
- var mainvue_type_script_lang_js_components;
20993
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=4f5020b6&
20714
20994
 
20715
- function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; }
20995
+ // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=script&lang=js&
20996
+ var Circulatevue_type_script_lang_js_components;
20716
20997
 
20717
20998
  //
20718
20999
  //
@@ -20797,6 +21078,295 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
20797
21078
  //
20798
21079
  //
20799
21080
  //
21081
+
21082
+
21083
+
21084
+
21085
+
21086
+ /* harmony default export */ var Circulatevue_type_script_lang_js_ = ({
21087
+ name: 'Circulate',
21088
+ components: (Circulatevue_type_script_lang_js_components = {}, Circulatevue_type_script_lang_js_components[CommonOpinions.name] = CommonOpinions, Circulatevue_type_script_lang_js_components[selectUser.name] = selectUser, Circulatevue_type_script_lang_js_components),
21089
+ props: {
21090
+ pendingId: { type: String, default: '' },
21091
+ processDefinitionId: { type: String, default: '' },
21092
+ businessId: { type: String, default: '' },
21093
+ type: { type: String, default: '' },
21094
+ defaultOpinion: { type: String, default: '' },
21095
+ oldOption: { type: String, default: '' },
21096
+ disabled: { type: Boolean, default: false },
21097
+ simpleTips: { type: Boolean, default: true },
21098
+ multiple: { type: Boolean, default: true }
21099
+ },
21100
+ inheritAttrs: false,
21101
+ data: function data() {
21102
+ return {
21103
+ opinion: '', //办理意见
21104
+ readOnlyNotificationType: '',
21105
+ notificationMessageReadOnly: false,
21106
+ otherMix: false,
21107
+ currentMix: false,
21108
+ infoList: {
21109
+ nextOtherOrgObj: [],
21110
+ nextCurrentOrgObj: [],
21111
+ noticeType: [],
21112
+ noticeInfo: '',
21113
+ opinion: ''
21114
+ },
21115
+ onlyName: '',
21116
+ currentOrgTabs: [],
21117
+ foreignOrgTabs: [],
21118
+ currentOrgProcessKey: '',
21119
+ isSubFlow: true,
21120
+ choiceDeptId: '',
21121
+ choiceOrgId: '',
21122
+ isSinglePage: false,
21123
+ isChoiceOtherOrgDept: '',
21124
+ currentOrgName: '',
21125
+ otherOrgName: '',
21126
+ newMultiple: true,
21127
+ params: { filid: 'all' },
21128
+ isHideOtherOrg: '',
21129
+ isHideCurrentOrg: 0,
21130
+ isOpinionRequired: 0,
21131
+ otherParams: { filid: 'other' },
21132
+ loading: false
21133
+ };
21134
+ },
21135
+ mounted: function mounted() {
21136
+ this.loading = true;
21137
+ this.newMultiple = this.multiple;
21138
+ this.opinion = this.oldOption;
21139
+ this.getNodeType();
21140
+ // this.getFind();
21141
+ this.getMessage();
21142
+ },
21143
+
21144
+ methods: {
21145
+ isMultiple: function isMultiple(val) {
21146
+ if (val == 7 || val == 9 || val == 11) {
21147
+ this.newMultiple = false;
21148
+ }
21149
+ },
21150
+ subMit: function subMit() {
21151
+ var _this = this;
21152
+
21153
+ var _infoList = this.infoList,
21154
+ nextCurrentOrgObj = _infoList.nextCurrentOrgObj,
21155
+ nextOtherOrgObj = _infoList.nextOtherOrgObj,
21156
+ noticeType = _infoList.noticeType,
21157
+ noticeInfo = _infoList.noticeInfo,
21158
+ processDefinitionId = this.processDefinitionId,
21159
+ opinion = this.opinion,
21160
+ businessId = this.businessId;
21161
+
21162
+ if ((!nextCurrentOrgObj || nextCurrentOrgObj.length == 0) && (!nextOtherOrgObj || nextOtherOrgObj.length == 0)) {
21163
+ return this.$message.warning('请选择处理对象!');
21164
+ }
21165
+
21166
+ var param = {
21167
+ url: api["n" /* directStartTaskCircularRead */],
21168
+ data: {
21169
+ opinion: opinion,
21170
+ businessId: businessId,
21171
+ processDefinitionId: processDefinitionId,
21172
+ nextOtherOrgObj: Array.isArray(nextOtherOrgObj) ? nextOtherOrgObj.join(',') : nextOtherOrgObj,
21173
+ nextCurrentOrgObj: Array.isArray(nextCurrentOrgObj) ? nextCurrentOrgObj.join(',') : nextCurrentOrgObj,
21174
+ notificationMsg: noticeInfo,
21175
+ notificationType: noticeType.join(','),
21176
+ userId: JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.userId
21177
+ },
21178
+ headers: { Accept: 'application/json,text/plain' },
21179
+ method: 'POST'
21180
+ };
21181
+ this.loading = true;
21182
+ util["a" /* default */].ajax(param).then(function (res) {
21183
+ var message = res.message,
21184
+ status = res.status,
21185
+ rCode = res.rCode;
21186
+
21187
+ _this.loading = false;
21188
+ if (status == 'success' || rCode == 0) {
21189
+ _this.simpleTips && _this.$message.success('提交成功');
21190
+ _this.quit(true);
21191
+ } else {
21192
+ _this.$message.error(message || '系统错误,请联系管理员!');
21193
+ }
21194
+ }).catch(function (err) {
21195
+ _this.loading = false;
21196
+ if (err.message && err.message !== 'canceled') {
21197
+ _this.$message.error(err.message);
21198
+ }
21199
+ });
21200
+ },
21201
+ quit: function quit(val) {
21202
+ if (val === true) return this.$emit('cancel', val);
21203
+ this.$emit('cancel');
21204
+ },
21205
+ changeSelectUser: function changeSelectUser(val, type) {
21206
+ var nextUser = val.nextUser,
21207
+ options = val.options;
21208
+
21209
+ var newNextUser = [];
21210
+ var obj = {};
21211
+ options.map(function (item) {
21212
+ if (obj[item.stype]) {
21213
+ obj[item.stype].push(item.id);
21214
+ } else {
21215
+ obj[item.stype] = [item.id];
21216
+ }
21217
+ // if (newNextUser) {
21218
+ // newNextUser += `,${item.stype}-${item.id}`;
21219
+ // } else {
21220
+ // newNextUser = `${item.stype}-${item.id}`;
21221
+ // }
21222
+ });
21223
+ for (var key in obj) {
21224
+ newNextUser.push(key + '-' + obj[key].join(','));
21225
+ }
21226
+
21227
+ this.infoList[type] = newNextUser.join('|');
21228
+ },
21229
+ getNodeType: function getNodeType() {
21230
+ var _this2 = this;
21231
+
21232
+ util["a" /* default */].ajax({
21233
+ url: api["y" /* findCodeValues */],
21234
+ params: {
21235
+ ccCode: 'notification_type',
21236
+ userId: util["a" /* default */].getStorage('userId')
21237
+ }
21238
+ }).then(function (res) {
21239
+ var status = res.status,
21240
+ data = res.data;
21241
+
21242
+ _this2.loading = false;
21243
+ if (status === 'success') {
21244
+ _this2.infoList.noticeList = data;
21245
+ _this2.getFind();
21246
+ }
21247
+ }).catch(function (err) {
21248
+ _this2.loading = false;
21249
+ if (err.message && err.message !== 'canceled') {
21250
+ _this2.$message.error(err.message);
21251
+ }
21252
+ });
21253
+ },
21254
+
21255
+ //获取通知信息
21256
+ getMessage: function getMessage() {
21257
+ var _this3 = this;
21258
+
21259
+ var params = {
21260
+ pendingId: this.pendingId
21261
+ };
21262
+ util["a" /* default */].ajax({ url: api["Q" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
21263
+ if (res.status === 'success') {
21264
+ _this3.infoList.noticeInfo = res.message;
21265
+ }
21266
+ _this3.loading = false;
21267
+ }).catch(function (err) {
21268
+ _this3.loading = false;
21269
+ if (err.message && err.message !== 'canceled') {
21270
+ _this3.$message.error(err.message);
21271
+ }
21272
+ });
21273
+ },
21274
+ getFind: function getFind() {
21275
+ var _this4 = this;
21276
+
21277
+ util["a" /* default */].ajax({
21278
+ url: api["A" /* findSysCodes */]
21279
+ }).then(function (res) {
21280
+ var status = res.status,
21281
+ message = res.message;
21282
+
21283
+ if (status === 'success') {
21284
+ _this4.infoList.noticeType = message.split(',');
21285
+ var arr = [];
21286
+ _this4.infoList.noticeList.map(function (item) {
21287
+ _this4.infoList.noticeType.map(function (x) {
21288
+ if (x == item.cciValue) {
21289
+ arr.push(x);
21290
+ }
21291
+ });
21292
+ });
21293
+ _this4.infoList.noticeType = arr;
21294
+ } else {
21295
+ _this4.$message.error(message || '系统错误,请联系管理员!');
21296
+ }
21297
+ }).catch(function (err) {
21298
+ _this4.loading = false;
21299
+ if (err.message && err.message !== 'canceled') {
21300
+ _this4.$message.error(err.message);
21301
+ }
21302
+ });
21303
+ }
21304
+ }
21305
+ });
21306
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=script&lang=js&
21307
+ /* harmony default export */ var component_Circulatevue_type_script_lang_js_ = (Circulatevue_type_script_lang_js_);
21308
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue
21309
+
21310
+
21311
+
21312
+
21313
+
21314
+ /* normalize component */
21315
+
21316
+ var Circulate_component = Object(componentNormalizer["a" /* default */])(
21317
+ component_Circulatevue_type_script_lang_js_,
21318
+ Circulatevue_type_template_id_4f5020b6_render,
21319
+ Circulatevue_type_template_id_4f5020b6_staticRenderFns,
21320
+ false,
21321
+ null,
21322
+ null,
21323
+ null
21324
+
21325
+ )
21326
+
21327
+ /* harmony default export */ var Circulate = (Circulate_component.exports);
21328
+ // 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&
21329
+
21330
+
21331
+ var mainvue_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; };
21332
+
21333
+ var mainvue_type_script_lang_js_components;
21334
+
21335
+ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () { var gen = fn.apply(this, arguments); return new Promise(function (resolve, reject) { function step(key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { return Promise.resolve(value).then(function (value) { step("next", value); }, function (err) { step("throw", err); }); } } return step("next"); }); }; }
21336
+
21337
+ //
21338
+ //
21339
+ //
21340
+ //
21341
+ //
21342
+ //
21343
+ //
21344
+ //
21345
+ //
21346
+ //
21347
+ //
21348
+ //
21349
+ //
21350
+ //
21351
+ //
21352
+ //
21353
+ //
21354
+ //
21355
+ //
21356
+ //
21357
+ //
21358
+ //
21359
+ //
21360
+ //
21361
+ //
21362
+ //
21363
+ //
21364
+ //
21365
+ //
21366
+ //
21367
+ //
21368
+ //
21369
+ //
20800
21370
  //
20801
21371
  //
20802
21372
  //
@@ -21546,28 +22116,119 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21546
22116
  //
21547
22117
  //
21548
22118
  //
21549
- //
21550
- //
21551
- //
21552
- //
21553
- //
21554
- //
21555
- //
21556
- //
21557
- //
21558
- //
21559
- //
21560
- //
21561
- //
21562
- //
21563
- //
21564
- //
21565
- //
21566
- //
21567
- //
21568
- //
21569
- //
21570
- //
22119
+ //
22120
+ //
22121
+ //
22122
+ //
22123
+ //
22124
+ //
22125
+ //
22126
+ //
22127
+ //
22128
+ //
22129
+ //
22130
+ //
22131
+ //
22132
+ //
22133
+ //
22134
+ //
22135
+ //
22136
+ //
22137
+ //
22138
+ //
22139
+ //
22140
+ //
22141
+ //
22142
+ //
22143
+ //
22144
+ //
22145
+ //
22146
+ //
22147
+ //
22148
+ //
22149
+ //
22150
+ //
22151
+ //
22152
+ //
22153
+ //
22154
+ //
22155
+ //
22156
+ //
22157
+ //
22158
+ //
22159
+ //
22160
+ //
22161
+ //
22162
+ //
22163
+ //
22164
+ //
22165
+ //
22166
+ //
22167
+ //
22168
+ //
22169
+ //
22170
+ //
22171
+ //
22172
+ //
22173
+ //
22174
+ //
22175
+ //
22176
+ //
22177
+ //
22178
+ //
22179
+ //
22180
+ //
22181
+ //
22182
+ //
22183
+ //
22184
+ //
22185
+ //
22186
+ //
22187
+ //
22188
+ //
22189
+ //
22190
+ //
22191
+ //
22192
+ //
22193
+ //
22194
+ //
22195
+ //
22196
+ //
22197
+ //
22198
+ //
22199
+ //
22200
+ //
22201
+ //
22202
+ //
22203
+ //
22204
+ //
22205
+ //
22206
+ //
22207
+ //
22208
+ //
22209
+ //
22210
+ //
22211
+ //
22212
+ //
22213
+ //
22214
+ //
22215
+ //
22216
+ //
22217
+ //
22218
+ //
22219
+ //
22220
+ //
22221
+ //
22222
+ //
22223
+ //
22224
+ //
22225
+ //
22226
+ //
22227
+ //
22228
+ //
22229
+ //
22230
+
22231
+
21571
22232
 
21572
22233
 
21573
22234
 
@@ -21588,7 +22249,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21588
22249
  /* harmony default export */ var mainvue_type_script_lang_js_ = ({
21589
22250
  name: 'EsFlow',
21590
22251
  componentName: 'EsFlow',
21591
- 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),
22252
+ 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.circulate = Circulate, 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),
21592
22253
  props: {
21593
22254
  showShrink: { type: Boolean, default: true },
21594
22255
  isStartFlow: { type: Boolean, default: false },
@@ -21599,6 +22260,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21599
22260
  flowTypeCode: { type: String, default: '' },
21600
22261
  defaultProcessKey: { type: String, default: '' },
21601
22262
  hideBtn: { type: Boolean, default: false },
22263
+
21602
22264
  btnList: {
21603
22265
  type: Array,
21604
22266
  default: function _default() {
@@ -21636,6 +22298,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21636
22298
  return _ref = {
21637
22299
  styles: {},
21638
22300
  userModel: {},
22301
+ simpleTips: true,
21639
22302
  showFreeStartFlow: false, //自由发起流程弹窗
21640
22303
  freeStartFlowParams: {}, //自由发起流程参数
21641
22304
  freeStartFlowNextNode: undefined,
@@ -21728,6 +22391,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21728
22391
  isChooseNextNode: 1, //是否展示下步操作
21729
22392
  isHandleExplain: 0, //是否展示办理说明
21730
22393
  handleVisible: false,
22394
+ circulateVisible: false,
21731
22395
  defaultNextNode: '', //默认节点
21732
22396
  showFlowChart: false, // 展示流程图弹窗
21733
22397
  isReject: false, // 是否驳回
@@ -21744,7 +22408,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21744
22408
  value: '驳回',
21745
22409
  fun: undefined
21746
22410
  }
21747
- }, _ref['isLimitedTimeHandling'] = false, _ref.moreList = [], _ref.newsList = [], _ref.isSpecial = false, _ref.taskId = '', _ref.showNews = false, _ref.userInfo = '', _ref.objType = '', _ref.nodeDefaultSubmitOpinion = '', _ref.nodeDefaultRejectOpinion = '', _ref.choiceOrgId = '', _ref.choiceDeptId = '', _ref.pOrgId = '', _ref.isOpinionRequired = 0, _ref.nextUserSelectList = [], _ref.processObj = {}, _ref.pid = '123', _ref.isCanRemoveSign = false, _ref.isCanAddSign = false, _ref.AddSignUserList = [], _ref.RemoveSignUserList = [], _ref.operationList = [], _ref.userList = [], _ref.handleMode = '', _ref.countersignaturetypeCode = 0, _ref.presetEdit = 0, _ref.isShowNextUser = true, _ref.nextUserTypes = ['employee', 'persongroup'], _ref.nextUserTabs = {}, _ref.presetReadUserId = [], _ref.nextNode = {
22411
+ }, _ref['isLimitedTimeHandling'] = false, _ref.moreList = [], _ref.newsList = [], _ref.isSpecial = false, _ref.taskId = '', _ref.showNews = false, _ref.userInfo = '', _ref.objType = '', _ref.nodeDefaultSubmitOpinion = '', _ref.nodeDefaultRejectOpinion = '', _ref.choiceOrgId = '', _ref.choiceDeptId = '', _ref.pOrgId = '', _ref.isOpinionRequired = 0, _ref.nextUserSelectList = [], _ref.processObj = {}, _ref.pid = '123', _ref.isCanRemoveSign = false, _ref.isCanAddSign = false, _ref.AddSignUserList = [], _ref.RemoveSignUserList = [], _ref.operationList = [], _ref.userList = [], _ref.handleMode = '', _ref.countersignaturetypeCode = 0, _ref.presetEdit = 0, _ref.directCreateCircularReadWhenFlowStarted = false, _ref.isShowNextUser = true, _ref.nextUserTypes = ['employee', 'persongroup'], _ref.nextUserTabs = {}, _ref.presetReadUserId = [], _ref.nextNode = {
21748
22412
  nextNodeId: '', // 下步节点
21749
22413
  addSignMode: 'postAddSign',
21750
22414
  isAddSign: '', // 是否加签
@@ -21886,6 +22550,21 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21886
22550
  }
21887
22551
  },
21888
22552
  methods: {
22553
+ getNodeInfoForStartFlow: function getNodeInfoForStartFlow(processDefinitionId) {
22554
+ var _this = this;
22555
+
22556
+ var params = {
22557
+ url: api["P" /* getNodeInfoForStart */],
22558
+ params: { processDefinitionId: processDefinitionId }
22559
+ };
22560
+ util["a" /* default */].ajax(params).then(function (res) {
22561
+ if (res.status == 'success') {
22562
+ _this.isBanInputOpinion = res.data.nodeExtAttr.isBanInputOpinion;
22563
+ _this.directCreateCircularReadWhenFlowStarted = res.data.nodeExtAttr.directCreateCircularReadWhenFlowStarted == 1;
22564
+ _this.isOpinionRequired = res.data.nodeExtAttr.isOpinionRequired == 1;
22565
+ }
22566
+ });
22567
+ },
21889
22568
  changeCustomLimitTime: function changeCustomLimitTime(val) {
21890
22569
  if (!Number(val) || val.indexOf('.') != -1 || Number(val) < 0) {
21891
22570
  this.$message.warning('请输入正确的天数');
@@ -21917,19 +22596,21 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21917
22596
  this.handleVisible = true;
21918
22597
  },
21919
22598
  showMessage: function showMessage() {
21920
- var _this = this;
22599
+ var _this2 = this;
21921
22600
 
21922
22601
  this.showNews = !this.showNews;
21923
22602
  if (!this.showNews) return;
21924
22603
  this.$nextTick(function () {
21925
- _this.$refs.esContent.scrollTop += _this.$refs.messagebox.clientHeight;
22604
+ _this2.$refs.esContent.scrollTop += _this2.$refs.messagebox.clientHeight;
21926
22605
  });
21927
22606
  },
21928
22607
  freeStartFlowSuccess: function freeStartFlowSuccess() {
21929
22608
  this.showFreeStartFlow = false;
21930
- this.$emit('success');
22609
+ this.flowSuccess(true);
22610
+ // this.$emit('success');
21931
22611
  },
21932
22612
  handleChange: function handleChange(val) {
22613
+ this.getNodeInfoForStartFlow(val);
21933
22614
  this.$parent.$emit('flowChange', val);
21934
22615
  },
21935
22616
  getsubProcessColumns: function getsubProcessColumns() {
@@ -21994,10 +22675,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
21994
22675
 
21995
22676
  //获取附件
21996
22677
  getFile: function getFile(ownId, code) {
21997
- var _this2 = this;
22678
+ var _this3 = this;
21998
22679
 
21999
22680
  var params = {
22000
- url: api["E" /* getAdjunctFileInfos */],
22681
+ url: api["F" /* getAdjunctFileInfos */],
22001
22682
  params: { ownId: ownId, code: code }
22002
22683
  };
22003
22684
  util["a" /* default */].ajax(params).then(function (res) {
@@ -22006,13 +22687,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22006
22687
  msg = res.msg;
22007
22688
 
22008
22689
  if (rCode == 0) {
22009
- results && (_this2.fileNum = results.length);
22690
+ results && (_this3.fileNum = results.length);
22010
22691
  } else {
22011
- _this2.$message.error(msg || '系统错误,请联系管理员!');
22692
+ _this3.$message.error(msg || '系统错误,请联系管理员!');
22012
22693
  }
22013
22694
  }).catch(function (err) {
22014
22695
  if (err.message && err.message !== 'canceled') {
22015
- _this2.$message.error(err.message);
22696
+ _this3.$message.error(err.message);
22016
22697
  }
22017
22698
  });
22018
22699
  },
@@ -22059,7 +22740,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22059
22740
  }
22060
22741
  },
22061
22742
  taskRead: function taskRead() {
22062
- var _this3 = this;
22743
+ var _this4 = this;
22063
22744
 
22064
22745
  if (this.taskReadOpinionRequired == 'true' && !this.value) {
22065
22746
  if (!this.$refs.commonOpinions.validate()) return;
@@ -22069,8 +22750,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22069
22750
  cancelButtonText: '取消',
22070
22751
  type: 'warning'
22071
22752
  }).then(function () {
22072
- _this3.loading = util["a" /* default */].loading(_this3.$loading, '加载中...');
22073
- var _taskExamineInfo2 = _this3.taskExamineInfo,
22753
+ _this4.loading = util["a" /* default */].loading(_this4.$loading, '加载中...');
22754
+ var _taskExamineInfo2 = _this4.taskExamineInfo,
22074
22755
  businessId = _taskExamineInfo2.businessId,
22075
22756
  appId = _taskExamineInfo2.appId,
22076
22757
  processDefinitionId = _taskExamineInfo2.processDefinitionId,
@@ -22081,11 +22762,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22081
22762
  appId: appId,
22082
22763
  processDefinitionId: processDefinitionId,
22083
22764
  pendingId: pendingId,
22084
- opinion: _this3.value,
22765
+ opinion: _this4.value,
22085
22766
  taskAction: 'complete'
22086
22767
  };
22087
22768
  util["a" /* default */].ajax({
22088
- url: api["Jb" /* taskReadHtml */],
22769
+ url: api["Lb" /* taskReadHtml */],
22089
22770
  params: { taskAction: 'complete' },
22090
22771
  headers: {
22091
22772
  Accept: 'application/json,text/plain'
@@ -22096,42 +22777,43 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22096
22777
  var status = res.status,
22097
22778
  message = res.message;
22098
22779
 
22099
- _this3.loading.close();
22780
+ _this4.loading.close();
22100
22781
  if (status === 'success') {
22101
- _this3.$message.success('提交成功');
22102
- _this3.$emit('success');
22782
+ _this4.flowSuccess();
22783
+ // this.$message.success('提交成功');
22784
+ // this.$emit('success');
22103
22785
  } else {
22104
- _this3.$message.error(message || '系统错误,请联系管理员!');
22105
- _this3.$emit('error');
22786
+ _this4.$message.error(message || '系统错误,请联系管理员!');
22787
+ _this4.$emit('error');
22106
22788
  }
22107
22789
  }).catch(function (err) {
22108
- _this3.loading.close();
22790
+ _this4.loading.close();
22109
22791
  if (err.message && err.message !== 'canceled') {
22110
- _this3.$message.error(err.message);
22792
+ _this4.$message.error(err.message);
22111
22793
  }
22112
22794
  });
22113
22795
  }).catch(function () {});
22114
22796
  },
22115
22797
  validReadTransferHandle: function validReadTransferHandle(readTransferHandleBusinessId, readTransferHandleProcessKey) {
22116
- var _this4 = this;
22798
+ var _this5 = this;
22117
22799
 
22118
22800
  var params = {
22119
22801
  url: api["d" /* checkBusinessIdStartedReadTransferHandle */],
22120
22802
  params: { readTransferHandleBusinessId: readTransferHandleBusinessId, readTransferHandleProcessKey: readTransferHandleProcessKey }
22121
22803
  };
22122
22804
  util["a" /* default */].ajax(params).then(function (res) {
22123
- _this4.loading.close();
22805
+ _this5.loading.close();
22124
22806
  if (res.rCode == 0) {
22125
- _this4.readTransferHandleDisabled = !res.results.canReadTransferHandle;
22807
+ _this5.readTransferHandleDisabled = !res.results.canReadTransferHandle;
22126
22808
  }
22127
22809
  });
22128
22810
  },
22129
22811
  getTaskReadFlow: function getTaskReadFlow() {
22130
- var _this5 = this;
22812
+ var _this6 = this;
22131
22813
 
22132
22814
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22133
22815
  util["a" /* default */].ajax({
22134
- url: api["Yb" /* toStartTaskReadIndex */],
22816
+ url: api["ac" /* toStartTaskReadIndex */],
22135
22817
  params: { pendingId: this.pendingId }
22136
22818
  }).then(function (res) {
22137
22819
  var status = res.status,
@@ -22140,51 +22822,54 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22140
22822
  isCanFenyue = _res$data.isCanFenyue,
22141
22823
  taskExamine = _res$data.taskExamine,
22142
22824
  taskReadOpinionRequired = _res$data.taskReadOpinionRequired,
22143
- isCanReadTransferHandle = _res$data.isCanReadTransferHandle;
22825
+ isCanReadTransferHandle = _res$data.isCanReadTransferHandle,
22826
+ defaultNotificationMessage = _res$data.defaultNotificationMessage;
22144
22827
 
22145
22828
  if (status === 'success') {
22146
- _this5.taskExamineInfo = taskExamine;
22147
- _this5.taskReadOpinionRequired = taskReadOpinionRequired;
22148
- _this5.isCanReadTransferHandle = isCanReadTransferHandle;
22149
- _this5.isCanFenyue = isCanFenyue;
22150
- if (_this5.nodeName) {
22151
- _this5.NodeName = _this5.nodeName;
22829
+ _this6.taskExamineInfo = taskExamine;
22830
+ _this6.nodeName = _this6.nodename || taskExamine.nodeName || '分阅';
22831
+ _this6.taskReadOpinionRequired = taskReadOpinionRequired;
22832
+ _this6.nextNode.notificationMsg = defaultNotificationMessage;
22833
+ _this6.isCanReadTransferHandle = isCanReadTransferHandle;
22834
+ _this6.isCanFenyue = isCanFenyue;
22835
+ if (_this6.nodeName) {
22836
+ _this6.NodeName = _this6.nodeName;
22152
22837
  }
22153
- if (_this5.isCanReadTransferHandle) {
22154
- _this5.validReadTransferHandle(taskExamine.businessId, taskExamine.processDefinitionId);
22838
+ if (_this6.isCanReadTransferHandle) {
22839
+ _this6.validReadTransferHandle(taskExamine.businessId, taskExamine.processDefinitionId);
22155
22840
  }
22156
- _this5.getNodeType();
22841
+ _this6.getNodeType();
22157
22842
  } else {
22158
- _this5.$message.error(message || '系统错误,请联系管理员!');
22843
+ _this6.$message.error(message || '系统错误,请联系管理员!');
22159
22844
  }
22160
- _this5.loading.close();
22845
+ _this6.loading.close();
22161
22846
  }).catch(function (err) {
22162
- _this5.loading.close();
22847
+ _this6.loading.close();
22163
22848
  if (err.message && err.message !== 'canceled') {
22164
- _this5.$message.error(err.message);
22849
+ _this6.$message.error(err.message);
22165
22850
  }
22166
22851
  });
22167
22852
  },
22168
22853
  getUserInfo: function getUserInfo() {
22169
- var _this6 = this;
22854
+ var _this7 = this;
22170
22855
 
22171
22856
  var mainConfig = util["a" /* default */].getStorage('mainConfig');
22172
22857
  if (mainConfig) {
22173
22858
  this.userModel = JSON.parse(mainConfig).userModel;
22174
22859
  } else {
22175
- util["a" /* default */].ajax({ url: api["jb" /* loginUserInfo */] }).then(function (res) {
22860
+ util["a" /* default */].ajax({ url: api["lb" /* loginUserInfo */] }).then(function (res) {
22176
22861
  var status = res.status,
22177
22862
  data = res.data;
22178
22863
 
22179
22864
  if (status == 'success') {
22180
- _this6.userModel = data;
22865
+ _this7.userModel = data;
22181
22866
  } else {
22182
22867
  var msg = res.msg || '系统错误,请联系管理员!';
22183
- _this6.$message.error(msg);
22868
+ _this7.$message.error(msg);
22184
22869
  }
22185
22870
  }).catch(function (err) {
22186
22871
  if (err.message && err.message !== 'canceled') {
22187
- _this6.$message.error(err.message);
22872
+ _this7.$message.error(err.message);
22188
22873
  }
22189
22874
  });
22190
22875
  }
@@ -22204,10 +22889,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22204
22889
  }
22205
22890
  },
22206
22891
  getNodeType: function getNodeType() {
22207
- var _this7 = this;
22892
+ var _this8 = this;
22208
22893
 
22209
22894
  util["a" /* default */].ajax({
22210
- url: api["x" /* findCodeValues */],
22895
+ url: api["y" /* findCodeValues */],
22211
22896
  params: {
22212
22897
  ccCode: 'notification_type',
22213
22898
  userId: util["a" /* default */].getStorage('userId')
@@ -22217,33 +22902,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22217
22902
  data = res.data;
22218
22903
 
22219
22904
  if (status === 'success') {
22220
- _this7.newsList = data;
22905
+ _this8.newsList = data;
22221
22906
  }
22222
22907
  }).catch(function (err) {
22223
22908
  if (err.message && err.message !== 'canceled') {
22224
- _this7.$message.error(err.message);
22909
+ _this8.$message.error(err.message);
22225
22910
  }
22226
22911
  });
22227
22912
  },
22228
22913
 
22229
- /**
22230
- * saveInfo
22231
- * @desc:暂存
22232
- * @author liufan
22233
- * @date 2022年9月9日
22914
+ /**
22915
+ * saveInfo
22916
+ * @desc:暂存
22917
+ * @author liufan
22918
+ * @date 2022年9月9日
22234
22919
  **/
22235
22920
  saveInfo: function saveInfo(type, btn) {
22236
- var _this8 = this;
22921
+ var _this9 = this;
22237
22922
 
22238
22923
  if (this.isFlow) {
22239
22924
  if (!type) {
22240
22925
  if (btn && btn.before) {
22241
22926
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
22242
- _this8.$emit('save', _this8.businessIds);
22927
+ _this9.$emit('save', _this9.businessIds);
22243
22928
  }).catch(function (e) {});
22244
22929
  } else if (this.beforeSubmit != undefined) {
22245
22930
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 1).then(function (next) {
22246
- _this8.$emit('save', _this8.businessIds);
22931
+ _this9.$emit('save', _this9.businessIds);
22247
22932
  }).catch(function (e) {});
22248
22933
  } else {
22249
22934
  this.$emit('save', this.businessIds);
@@ -22252,13 +22937,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22252
22937
  } else {
22253
22938
  if (btn && btn.before && !type) {
22254
22939
  btn.before(Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
22255
- _this8.saveFlowInfo();
22940
+ _this9.saveFlowInfo();
22256
22941
  }).catch(function (e) {});
22257
22942
  } else if (this.beforeSubmit == undefined && !type) {
22258
22943
  this.subFun(this.saveFlowInfo);
22259
22944
  } else if (!type && this.beforeSubmit != undefined) {
22260
22945
  this.beforeSubmit(btn && Object.prototype.hasOwnProperty.call(btn, 'code') ? btn.code : 2).then(function (next) {
22261
- _this8.saveFlowInfo();
22946
+ _this9.saveFlowInfo();
22262
22947
  }).catch(function (e) {});
22263
22948
  } else {
22264
22949
  this.saveFlowInfo(type);
@@ -22266,40 +22951,40 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22266
22951
  }
22267
22952
  },
22268
22953
  saveFlowInfo: function saveFlowInfo(isSave) {
22269
- var _this9 = this;
22954
+ var _this10 = this;
22270
22955
 
22271
22956
  var params = {
22272
22957
  opinion: this.value,
22273
22958
  pendingId: this.pendingId
22274
22959
  };
22275
22960
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
22276
- util["a" /* default */].ajax({ url: api["Sb" /* tempSave */], params: params }).then(function (res) {
22961
+ util["a" /* default */].ajax({ url: api["Ub" /* tempSave */], params: params }).then(function (res) {
22277
22962
  var status = res.status,
22278
22963
  message = res.message;
22279
22964
 
22280
- if (!isSave) _this9.loading.close();
22965
+ if (!isSave) _this10.loading.close();
22281
22966
  if (status == 'success') {
22282
22967
  // this.$message.success('暂存成功');
22283
- !isSave && _this9.$emit('save', _this9.businessIds);
22968
+ !isSave && _this10.$emit('save', _this10.businessIds);
22284
22969
  } else {
22285
- _this9.$message.error(message || '系统错误,请联系管理员!');
22970
+ _this10.$message.error(message || '系统错误,请联系管理员!');
22286
22971
  }
22287
22972
  }).catch(function (err) {
22288
- if (!isSave) _this9.loading.close();
22973
+ if (!isSave) _this10.loading.close();
22289
22974
  if (err.message && err.message !== 'canceled') {
22290
- _this9.$message.error(err.message);
22975
+ _this10.$message.error(err.message);
22291
22976
  }
22292
22977
  });
22293
22978
  },
22294
22979
 
22295
- /**
22296
- * rejectBtn
22297
- * @desc:点击驳回
22298
- * @author liufan
22299
- * @date 2022年5月25日
22980
+ /**
22981
+ * rejectBtn
22982
+ * @desc:点击驳回
22983
+ * @author liufan
22984
+ * @date 2022年5月25日
22300
22985
  **/
22301
22986
  rejectBtn: function rejectBtn() {
22302
- var _this10 = this;
22987
+ var _this11 = this;
22303
22988
 
22304
22989
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
22305
22990
  if (!this.value) {
@@ -22307,28 +22992,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22307
22992
  }
22308
22993
  if (this.beforeSubmit != undefined) {
22309
22994
  this.beforeSubmit(0).then(function (next) {
22310
- _this10.showReject = true;
22995
+ _this11.showReject = true;
22311
22996
  }).catch(function (e) {});
22312
22997
  } else {
22313
22998
  this.showReject = true;
22314
22999
  }
22315
23000
  },
22316
23001
 
22317
- /**
22318
- * taskReadBtn
22319
- * @desc:点击分阅
22320
- * @author liufan
22321
- * @date 2022年5月25日
23002
+ /**
23003
+ * taskReadBtn
23004
+ * @desc:点击分阅
23005
+ * @author liufan
23006
+ * @date 2022年5月25日
22322
23007
  **/
22323
23008
  taskReadBtn: function taskReadBtn() {
22324
- var _this11 = this;
23009
+ var _this12 = this;
22325
23010
 
22326
23011
  // return this.$message.warning('暂未开放!敬请期待');
22327
23012
  if (this.beforeSubmit != undefined) {
22328
23013
  this.beforeSubmit().then(function (next) {
22329
- if (_this11.value === '') _this11.value = _this11.nodeDefaultRejectOpinion;
22330
- _this11.taskReadType = 'create';
22331
- _this11.showTaskRead = true;
23014
+ if (_this12.value === '') _this12.value = _this12.nodeDefaultRejectOpinion;
23015
+ _this12.taskReadType = 'create';
23016
+ _this12.showTaskRead = true;
22332
23017
  }).catch(function (e) {});
22333
23018
  } else {
22334
23019
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -22337,41 +23022,41 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22337
23022
  }
22338
23023
  },
22339
23024
 
22340
- /**
22341
- * getFind
22342
- * @desc:获取通知方式
22343
- * @author liufan
22344
- * @date 2022年5月25日
23025
+ /**
23026
+ * getFind
23027
+ * @desc:获取通知方式
23028
+ * @author liufan
23029
+ * @date 2022年5月25日
22345
23030
  **/
22346
23031
  getFind: function getFind() {
22347
- var _this12 = this;
23032
+ var _this13 = this;
22348
23033
 
22349
23034
  util["a" /* default */].ajax({
22350
- url: api["z" /* findSysCodes */]
23035
+ url: api["A" /* findSysCodes */]
22351
23036
  }).then(function (res) {
22352
23037
  var status = res.status,
22353
23038
  message = res.message;
22354
23039
 
22355
23040
  if (status === 'success') {
22356
- _this12.nextNode.notificationType = message.split(',');
23041
+ _this13.nextNode.notificationType = message.split(',');
22357
23042
  var arr = [];
22358
- _this12.newsList.map(function (item) {
22359
- _this12.nextNode.notificationType.map(function (x) {
23043
+ _this13.newsList.map(function (item) {
23044
+ _this13.nextNode.notificationType.map(function (x) {
22360
23045
  if (x == item.cciValue) {
22361
23046
  arr.push(x);
22362
23047
  }
22363
23048
  });
22364
23049
  });
22365
- _this12.nextNode.notificationType = arr;
23050
+ _this13.nextNode.notificationType = arr;
22366
23051
  }
22367
23052
  }).catch(function (err) {
22368
23053
  if (err.message && err.message !== 'canceled') {
22369
- _this12.$message.error(err.message);
23054
+ _this13.$message.error(err.message);
22370
23055
  }
22371
23056
  });
22372
23057
  },
22373
23058
  getFreeStartParams: function getFreeStartParams() {
22374
- var _this13 = this;
23059
+ var _this14 = this;
22375
23060
 
22376
23061
  var _endFlowInfo = this.endFlowInfo,
22377
23062
  businessId = _endFlowInfo.businessId,
@@ -22379,7 +23064,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22379
23064
  nodeId = _endFlowInfo.nodeId;
22380
23065
 
22381
23066
  var param = {
22382
- url: api["J" /* getFreeStartFlowParams */],
23067
+ url: api["K" /* getFreeStartFlowParams */],
22383
23068
  params: {
22384
23069
  businessId: businessId,
22385
23070
  processDefinitionId: processDefinitionId,
@@ -22389,89 +23074,90 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22389
23074
  };
22390
23075
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22391
23076
  util["a" /* default */].ajax(param).then(function (res) {
22392
- _this13.loading.close();
23077
+ _this14.loading.close();
22393
23078
  if (res.rCode == 0 || res.status == 'success') {
22394
- _this13.freeStartFlowParams = res.results;
22395
- if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this13.subProcess('同意。', res.results.useScene);
22396
- if (!_this13.freeValid) return;
22397
- if (res.results.startFlowIndexProcessKeys && res.results.startFlowIndexProcessKeys.length == 0 || !res.results.startFlowIndexProcessKeys) return _this13.$message.warning('未找到流程定义!');
23079
+ _this14.freeStartFlowParams = res.results;
23080
+ if (res.results.useScene === 'multiInsMidwayWithSubmitScene') _this14.subProcess('同意。', res.results.useScene);
23081
+ if (!_this14.freeValid) return;
23082
+ if (res.results.startFlowIndexProcessKeys && res.results.startFlowIndexProcessKeys.length == 0 || !res.results.startFlowIndexProcessKeys) return _this14.$message.warning('未找到流程定义!');
22398
23083
  if (res.results.startFlowIndexProcessKeys.length == 1) {
22399
- _this13.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
22400
- _this13.handleVisible = true;
23084
+ _this14.freeStartFlowNextNode = res.results.startFlowIndexProcessKeys[0];
23085
+ _this14.handleVisible = true;
22401
23086
  } else {
22402
- _this13.showFreeStartFlow = true;
23087
+ _this14.showFreeStartFlow = true;
22403
23088
  }
22404
23089
  } else {
22405
- _this13.$message.error(res.message || '系统错误,请联系管理员!');
23090
+ _this14.$message.error(res.message || '系统错误,请联系管理员!');
22406
23091
  }
22407
23092
  });
22408
23093
  },
22409
23094
 
22410
- /**
22411
- * endFlows
22412
- * @desc:直接办结
22413
- * @author liufan
22414
- * @param {Object} res 直接办结数据
22415
- * @date 2022年5月25日
23095
+ /**
23096
+ * endFlows
23097
+ * @desc:直接办结
23098
+ * @author liufan
23099
+ * @param {Object} res 直接办结数据
23100
+ * @date 2022年5月25日
22416
23101
  **/
22417
23102
  endFlows: function endFlows(res) {
22418
- var _this14 = this;
23103
+ var _this15 = this;
22419
23104
 
22420
23105
  if (this.beforeSubmit != undefined) {
22421
23106
  this.beforeSubmit().then(function (next) {
22422
- _this14.saveEndFlows(res);
23107
+ _this15.saveEndFlows(res);
22423
23108
  }).catch(function (e) {});
22424
23109
  } else {
22425
23110
  this.saveEndFlows(res);
22426
23111
  }
22427
23112
  },
22428
23113
  saveEndFlows: function saveEndFlows(res) {
22429
- var _this15 = this;
23114
+ var _this16 = this;
22430
23115
 
22431
23116
  this.$confirm('确认' + res.value + '?').then(function () {
22432
23117
  var params = {
22433
- url: api["w" /* endFlowHtml */],
23118
+ url: api["x" /* endFlowHtml */],
22434
23119
  headers: { Accept: 'application/json,text/plain' },
22435
23120
  method: 'post',
22436
- data: mainvue_type_script_lang_js_extends({}, _this15.endFlowInfo, _this15.nextNode, {
22437
- opinion: _this15.value,
23121
+ data: mainvue_type_script_lang_js_extends({}, _this16.endFlowInfo, _this16.nextNode, {
23122
+ opinion: _this16.value,
22438
23123
  userId: util["a" /* default */].getStorage('userId'),
22439
- nextUserId: _this15.multiple ? _this15.nextNode.nextUserId.join(',') : _this15.nextNode.nextUserId,
22440
- addSignUserId: _this15.nextNode.addSignUserId.join(','),
22441
- customPresetUserJson: JSON.stringify(_this15.presetList),
22442
- presetUserJson: JSON.stringify(_this15.presetUserJson),
22443
- removeSignUserId: _this15.nextNode.removeSignUserId.join(','),
22444
- notificationType: _this15.nextNode.notificationType.join(',')
23124
+ nextUserId: _this16.multiple ? _this16.nextNode.nextUserId.join(',') : _this16.nextNode.nextUserId,
23125
+ addSignUserId: _this16.nextNode.addSignUserId.join(','),
23126
+ customPresetUserJson: JSON.stringify(_this16.presetList),
23127
+ presetUserJson: JSON.stringify(_this16.presetUserJson),
23128
+ removeSignUserId: _this16.nextNode.removeSignUserId.join(','),
23129
+ notificationType: _this16.nextNode.notificationType.join(',')
22445
23130
  })
22446
23131
  };
22447
- _this15.loading = util["a" /* default */].loading(_this15.$loading, '加载中...');
23132
+ _this16.loading = util["a" /* default */].loading(_this16.$loading, '加载中...');
22448
23133
  util["a" /* default */].ajax(params).then(function (res) {
22449
23134
  var status = res.status,
22450
23135
  message = res.message;
22451
23136
 
22452
- _this15.loading.close();
23137
+ _this16.loading.close();
22453
23138
  if (status === 'success') {
22454
- _this15.$message.success('提交成功');
22455
- _this15.$emit('success');
23139
+ _this16.flowSuccess();
23140
+ // this.$message.success('提交成功');
23141
+ // this.$emit('success');
22456
23142
  } else {
22457
- _this15.$message.error(message || '系统错误,请联系管理员!');
22458
- _this15.$emit('error');
23143
+ _this16.$message.error(message || '系统错误,请联系管理员!');
23144
+ _this16.$emit('error');
22459
23145
  }
22460
23146
  }).catch(function (err) {
22461
- _this15.loading.close();
23147
+ _this16.loading.close();
22462
23148
  if (err.message && err.message !== 'canceled') {
22463
- _this15.$message.error(err.message);
23149
+ _this16.$message.error(err.message);
22464
23150
  }
22465
23151
  });
22466
23152
  }).catch(function (e) {});
22467
23153
  },
22468
23154
 
22469
- /**
22470
- * goView
22471
- * @desc:更多流程按钮操作
22472
- * @author liufan
22473
- * @param {Object} res 当前点击操作按钮数据
22474
- * @date 2022年5月25日
23155
+ /**
23156
+ * goView
23157
+ * @desc:更多流程按钮操作
23158
+ * @author liufan
23159
+ * @param {Object} res 当前点击操作按钮数据
23160
+ * @date 2022年5月25日
22475
23161
  **/
22476
23162
  goView: function goView(res) {
22477
23163
  // 驳回并办结:rejectAndEndHtml
@@ -22556,18 +23242,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22556
23242
  // isCanStartSubFlow
22557
23243
  },
22558
23244
 
22559
- /**
22560
- * toTakeAdvice
22561
- * @desc:征求意见
22562
- * @author liufan
22563
- * @date 2022年9月29日
23245
+ /**
23246
+ * toTakeAdvice
23247
+ * @desc:征求意见
23248
+ * @author liufan
23249
+ * @date 2022年9月29日
22564
23250
  **/
22565
23251
  toTakeAdvice: function toTakeAdvice(res) {
22566
- var _this16 = this;
23252
+ var _this17 = this;
22567
23253
 
22568
23254
  if (this.beforeSubmit != undefined) {
22569
23255
  this.beforeSubmit().then(function (next) {
22570
- _this16.saveToTakeAdvice(res);
23256
+ _this17.saveToTakeAdvice(res);
22571
23257
  }).catch(function (e) {});
22572
23258
  } else {
22573
23259
  this.saveToTakeAdvice(res);
@@ -22575,10 +23261,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22575
23261
  // return this.$message.warning('暂未开放!敬请期待');
22576
23262
  },
22577
23263
  saveToTakeAdvice: function saveToTakeAdvice(res) {
22578
- var _this17 = this;
23264
+ var _this18 = this;
22579
23265
 
22580
23266
  var params = {
22581
- url: api["hb" /* isCanStartSubFlow */],
23267
+ url: api["jb" /* isCanStartSubFlow */],
22582
23268
  data: {
22583
23269
  appId: this.taskExamineInfo.appId,
22584
23270
  inevitableNode: res.inevitableNode
@@ -22590,70 +23276,70 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22590
23276
  util["a" /* default */].ajax(params).then(function (res) {
22591
23277
  var message = res.message;
22592
23278
 
22593
- _this17.loading.close();
23279
+ _this18.loading.close();
22594
23280
  if (message == 'success') {
22595
- _this17.showTaskUnionExamine = true;
23281
+ _this18.showTaskUnionExamine = true;
22596
23282
  } else {
22597
- _this17.$message.error(message || '系统错误,请联系管理员!');
23283
+ _this18.$message.error(message || '系统错误,请联系管理员!');
22598
23284
  }
22599
23285
  }).catch(function (err) {
22600
- _this17.loading.close();
23286
+ _this18.loading.close();
22601
23287
  if (err.message && err.message !== 'canceled') {
22602
- _this17.$message.error(err.message);
23288
+ _this18.$message.error(err.message);
22603
23289
  }
22604
23290
  });
22605
23291
  },
22606
23292
 
22607
- /**
22608
- * toStartDraf
22609
- * @desc: 稿件递送、联合审核、复核
22610
- * @author liufan
22611
- * @date 2022年9月29日
23293
+ /**
23294
+ * toStartDraf
23295
+ * @desc: 稿件递送、联合审核、复核
23296
+ * @author liufan
23297
+ * @date 2022年9月29日
22612
23298
  **/
22613
23299
  toStartDraf: function toStartDraf(res) {
22614
- var _this18 = this;
23300
+ var _this19 = this;
22615
23301
 
22616
23302
  if (this.beforeSubmit != undefined) {
22617
23303
  this.beforeSubmit().then(function (next) {
22618
- _this18.showTaskUnionExamine = true;
23304
+ _this19.showTaskUnionExamine = true;
22619
23305
  }).catch(function (e) {});
22620
23306
  } else {
22621
23307
  this.showTaskUnionExamine = true;
22622
23308
  }
22623
23309
  },
22624
23310
 
22625
- /**
22626
- * toSendMsg
22627
- * @desc:核稿通知
22628
- * @author liufan
22629
- * @date 2022年9月29日
23311
+ /**
23312
+ * toSendMsg
23313
+ * @desc:核稿通知
23314
+ * @author liufan
23315
+ * @date 2022年9月29日
22630
23316
  **/
22631
23317
  toSendMsg: function toSendMsg(res) {
22632
- var _this19 = this;
23318
+ var _this20 = this;
22633
23319
 
22634
23320
  if (this.beforeSubmit != undefined) {
22635
23321
  this.beforeSubmit().then(function (next) {
22636
- _this19.showSendMsg = true;
23322
+ _this20.showSendMsg = true;
22637
23323
  }).catch(function (e) {});
22638
23324
  } else {
22639
23325
  this.showSendMsg = true;
22640
23326
  }
22641
23327
  },
22642
23328
 
22643
- /**
22644
- * toTaskReadAndEnd
22645
- * @desc:分阅并办结
22646
- * @author liufan
22647
- * @date 2022年9月29日
23329
+ /**
23330
+ * toTaskReadAndEnd
23331
+ * @desc:分阅并办结
23332
+ * @author liufan
23333
+ * @date 2022年9月29日
22648
23334
  **/
22649
23335
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
22650
- var _this20 = this;
23336
+ var _this21 = this;
22651
23337
 
22652
23338
  if (this.beforeSubmit != undefined) {
22653
23339
  this.beforeSubmit().then(function (next) {
22654
- if (_this20.value === '') _this20.value = _this20.nodeDefaultRejectOpinion;
22655
- _this20.taskReadType = 'taskReadAndEnd';
22656
- _this20.showTaskRead = true;
23340
+ if (_this21.value === '') _this21.value = _this21.nodeDefaultRejectOpinion;
23341
+ _this21.taskReadType = 'taskReadAndEnd';
23342
+ _this21.showTaskRead = true;
22657
23343
  }).catch(function (e) {});
22658
23344
  } else {
22659
23345
  if (this.value === '') this.value = this.nodeDefaultRejectOpinion;
@@ -22662,58 +23348,59 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22662
23348
  }
22663
23349
  },
22664
23350
 
22665
- /**
22666
- * rejectAndEnd
22667
- * @desc:驳回并办结
22668
- * @author liufan
22669
- * @date 2022年9月29日
23351
+ /**
23352
+ * rejectAndEnd
23353
+ * @desc:驳回并办结
23354
+ * @author liufan
23355
+ * @date 2022年9月29日
22670
23356
  **/
22671
23357
  rejectAndEnd: function rejectAndEnd(res) {
22672
- var _this21 = this;
23358
+ var _this22 = this;
22673
23359
 
22674
23360
  if (this.isOpinionRequired == 1 && (this.value == '' || !this.value)) {
22675
23361
  if (!this.$refs.commonOpinions.validate()) return;
22676
23362
  }
22677
23363
  if (this.beforeSubmit != undefined) {
22678
23364
  this.beforeSubmit().then(function (next) {
22679
- _this21.saveRejectAndEnd(res);
23365
+ _this22.saveRejectAndEnd(res);
22680
23366
  }).catch(function (e) {});
22681
23367
  } else {
22682
23368
  this.saveRejectAndEnd(res);
22683
23369
  }
22684
23370
  },
22685
23371
  saveRejectAndEnd: function saveRejectAndEnd(res) {
22686
- var _this22 = this;
23372
+ var _this23 = this;
22687
23373
 
22688
23374
  this.$confirm('确认' + res.value + '?').then(function () {
22689
23375
  // return this.$message.warning('请填写意见');
22690
23376
  var params = {
22691
- url: api["vb" /* rejectAndEnd */],
23377
+ url: api["xb" /* rejectAndEnd */],
22692
23378
  headers: { Accept: 'application/json,text/plain' },
22693
23379
  method: 'post',
22694
23380
  data: {
22695
- opinion: _this22.value,
22696
- pendingId: _this22.pendingId,
23381
+ opinion: _this23.value,
23382
+ pendingId: _this23.pendingId,
22697
23383
  isSinglePage: false
22698
23384
  }
22699
23385
  };
22700
- _this22.loading = util["a" /* default */].loading(_this22.$loading, '加载中...');
23386
+ _this23.loading = util["a" /* default */].loading(_this23.$loading, '加载中...');
22701
23387
  util["a" /* default */].ajax(params).then(function (res) {
22702
23388
  var status = res.status,
22703
23389
  message = res.message;
22704
23390
 
22705
- _this22.loading.close();
23391
+ _this23.loading.close();
22706
23392
  if (status === 'success') {
22707
- _this22.$message.success('提交成功');
22708
- _this22.$emit('success');
23393
+ _this23.flowSuccess();
23394
+ // this.$message.success('提交成功');
23395
+ // this.$emit('success');
22709
23396
  } else {
22710
- _this22.$message.error(message || '系统错误,请联系管理员!');
22711
- _this22.$emit('error');
23397
+ _this23.$message.error(message || '系统错误,请联系管理员!');
23398
+ _this23.$emit('error');
22712
23399
  }
22713
23400
  }).catch(function (err) {
22714
- _this22.loading.close();
23401
+ _this23.loading.close();
22715
23402
  if (err.message && err.message !== 'canceled') {
22716
- _this22.$message.error(err.message);
23403
+ _this23.$message.error(err.message);
22717
23404
  }
22718
23405
  });
22719
23406
  }).catch(function () {
@@ -22721,19 +23408,19 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22721
23408
  });
22722
23409
  },
22723
23410
 
22724
- /**
22725
- * toTransfer
22726
- * @desc:转办
22727
- * @author liufan
22728
- * @date 2022年9月29日
23411
+ /**
23412
+ * toTransfer
23413
+ * @desc:转办
23414
+ * @author liufan
23415
+ * @date 2022年9月29日
22729
23416
  **/
22730
23417
  toTransfer: function toTransfer(res) {
22731
- var _this23 = this;
23418
+ var _this24 = this;
22732
23419
 
22733
23420
  if (this.beforeSubmit != undefined) {
22734
23421
  this.beforeSubmit(0).then(function (next) {
22735
- _this23.taskReadType = 'transfer';
22736
- _this23.showTaskRead = true;
23422
+ _this24.taskReadType = 'transfer';
23423
+ _this24.showTaskRead = true;
22737
23424
  }).catch(function (e) {});
22738
23425
  } else {
22739
23426
  this.taskReadType = 'transfer';
@@ -22741,14 +23428,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22741
23428
  }
22742
23429
  },
22743
23430
 
22744
- /**
22745
- * getNodeInfo
22746
- * @desc:获取节点信息
22747
- * @author liufan
22748
- * @date 2022年5月25日
23431
+ /**
23432
+ * getNodeInfo
23433
+ * @desc:获取节点信息
23434
+ * @author liufan
23435
+ * @date 2022年5月25日
22749
23436
  **/
22750
23437
  getNodeInfo: function getNodeInfo() {
22751
- var _this24 = this;
23438
+ var _this25 = this;
22752
23439
 
22753
23440
  var params = {
22754
23441
  processDefinitionId: this.nodeInfo.nextNode,
@@ -22758,50 +23445,50 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22758
23445
  pendingId: this.pendingId,
22759
23446
  businessId: this.businessIds
22760
23447
  };
22761
- util["a" /* default */].ajax({ url: api["N" /* getNodeInfo */], params: params }).then(function (res) {
23448
+ util["a" /* default */].ajax({ url: api["O" /* getNodeInfo */], params: params }).then(function (res) {
22762
23449
  var status = res.status,
22763
23450
  message = res.message,
22764
23451
  data = res.data;
22765
23452
 
22766
- _this24.loading.close();
23453
+ _this25.loading.close();
22767
23454
  if (status === 'success') {
22768
- _this24.enableCustomLimitTimeSetting = data.nodeExtAttr.enableCustomLimitTimeSetting == 1;
22769
- data.otherOrgDisabledObjId && (_this24.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
22770
- data.currentOrgDisabledObjId && (_this24.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
23455
+ _this25.enableCustomLimitTimeSetting = data.nodeExtAttr.enableCustomLimitTimeSetting == 1;
23456
+ data.otherOrgDisabledObjId && (_this25.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
23457
+ data.currentOrgDisabledObjId && (_this25.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
22771
23458
  if (data != null) {
22772
23459
  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) {
22773
- _this24.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
23460
+ _this25.getIsShowNextUser(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22774
23461
  } else {
22775
- _this24.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this24.choiceOrgId, _this24.choiceDeptId, _this24.pOrgId);
23462
+ _this25.isMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType, _this25.choiceOrgId, _this25.choiceDeptId, _this25.pOrgId);
22776
23463
  }
22777
- _this24.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
22778
- _this24.isTaskread = data.nodeExtAttr.isTaskread;
22779
- _this24.isHandleExplain = data.nodeExtAttr.isHandleExplain;
22780
- _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22781
- _this24.nodeType = data.nodeExtAttr.nodeType;
23464
+ _this25.isReadMultiple(data.nodeExtAttr && data.nodeExtAttr.userSelectionType);
23465
+ _this25.isTaskread = data.nodeExtAttr.isTaskread;
23466
+ _this25.isHandleExplain = data.nodeExtAttr.isHandleExplain;
23467
+ _this25.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
23468
+ _this25.nodeType = data.nodeExtAttr.nodeType;
22782
23469
  //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
22783
- if (_this24.nodeType === 1 || _this24.nodeType === 2) {
22784
- _this24.isMainSubProcess === true ? _this24.isNodeShowProcess = true : _this24.isNodeShowProcess = false;
22785
- _this24.isMainSubProcess === true ? _this24.isMainSubProcess = true : _this24.isMainSubProcess = false;
22786
- _this24.isNextUser = false;
22787
- _this24.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
22788
- _this24.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
23470
+ if (_this25.nodeType === 1 || _this25.nodeType === 2) {
23471
+ _this25.isMainSubProcess === true ? _this25.isNodeShowProcess = true : _this25.isNodeShowProcess = false;
23472
+ _this25.isMainSubProcess === true ? _this25.isMainSubProcess = true : _this25.isMainSubProcess = false;
23473
+ _this25.isNextUser = false;
23474
+ _this25.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
23475
+ _this25.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
22789
23476
  } else {
22790
- _this24.isHideCurrentOrg = false;
22791
- _this24.isHideOtherOrg = false;
22792
- _this24.isNodeShowProcess = false;
22793
- _this24.isMainSubProcess = false;
22794
- _this24.isNextUser = _this24.nextNode.nextOperate != 9;
23477
+ _this25.isHideCurrentOrg = false;
23478
+ _this25.isHideOtherOrg = false;
23479
+ _this25.isNodeShowProcess = false;
23480
+ _this25.isMainSubProcess = false;
23481
+ _this25.isNextUser = _this25.nextNode.nextOperate != 9;
22795
23482
  // this.isMainSubProcess === true
22796
23483
  // ? (this.isMainSubProcess = true)
22797
23484
  // : (this.isMainSubProcess = false);
22798
23485
  }
22799
- _this24.multiple ? _this24.nextNode.nextUserId = [] : _this24.nextNode.nextUserId = '';
22800
- if (_this24.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
23486
+ _this25.multiple ? _this25.nextNode.nextUserId = [] : _this25.nextNode.nextUserId = '';
23487
+ if (_this25.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
22801
23488
  data.nextUserList.map(function (item) {
22802
23489
  if (item.userId && item.username) {
22803
- _this24.nextNode.nextUserId.push(item.userId);
22804
- _this24.selectUserList.push({
23490
+ _this25.nextNode.nextUserId.push(item.userId);
23491
+ _this25.selectUserList.push({
22805
23492
  showname: item.username,
22806
23493
  showid: item.userId
22807
23494
  });
@@ -22810,50 +23497,50 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22810
23497
  }
22811
23498
  data.nextUserList.map(function (item) {
22812
23499
  if (item.userId && item.username) {
22813
- _this24.options.push({
23500
+ _this25.options.push({
22814
23501
  showname: item.username,
22815
23502
  showid: item.userId
22816
23503
  });
22817
23504
  }
22818
23505
  });
22819
23506
  if (data.nodeExtAttr.presetEdit != 0) {
22820
- _this24.radioList = _this24.options;
23507
+ _this25.radioList = _this25.options;
22821
23508
  }
22822
- if (!_this24.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
22823
- _this24.nextNode.nextUserId = data.nextUserList[0].userId;
22824
- _this24.selectUserList.push({
23509
+ if (!_this25.multiple && data.nextUserList.length > 0 && data.nodeExtAttr.isDefSelectedObj == 1) {
23510
+ _this25.nextNode.nextUserId = data.nextUserList[0].userId;
23511
+ _this25.selectUserList.push({
22825
23512
  showname: data.nextUserList[0].username,
22826
23513
  showid: data.nextUserList[0].userId
22827
23514
  });
22828
23515
  }
22829
- _this24.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
22830
- _this24.isCustomUser = data.nodeExtAttr.isCustomUser;
22831
- _this24.presetEdit = data.nodeExtAttr.presetEdit;
22832
- _this24.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
22833
- _this24.handleMode = data.countersignaturetypeText;
22834
- data.globalNodeType === 'endEvent' ? _this24.endFlow = true : '';
23516
+ _this25.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
23517
+ _this25.isCustomUser = data.nodeExtAttr.isCustomUser;
23518
+ _this25.presetEdit = data.nodeExtAttr.presetEdit;
23519
+ _this25.countersignaturetypeCode = data.countersignaturetypeCode; //是否展示处理方式
23520
+ _this25.handleMode = data.countersignaturetypeText;
23521
+ data.globalNodeType === 'endEvent' ? _this25.endFlow = true : '';
22835
23522
  }
22836
- _this24.isCustomPreset && _this24.$refs.customPreset.getPresetFlowInfo(_this24.nextNode.nextNodeId, _this24.nodeInfo.nextNode, true);
23523
+ _this25.isCustomPreset && _this25.$refs.customPreset.getPresetFlowInfo(_this25.nextNode.nextNodeId, _this25.nodeInfo.nextNode, true);
22837
23524
  } else {
22838
- _this24.$message.error(message || '系统错误,请联系管理员!');
23525
+ _this25.$message.error(message || '系统错误,请联系管理员!');
22839
23526
  }
22840
23527
  }).catch(function (err) {
22841
- _this24.loading.close();
23528
+ _this25.loading.close();
22842
23529
  if (err.message && err.message !== 'canceled') {
22843
- _this24.$message.error(err.message);
23530
+ _this25.$message.error(err.message);
22844
23531
  }
22845
23532
  });
22846
23533
  },
22847
23534
 
22848
- /**
22849
- * selecNext
22850
- * @desc:下步节点变化时更新数据
22851
- * @author liufan
22852
- * @param {String} val 当前选中值
22853
- * @date 2022年5月25日
23535
+ /**
23536
+ * selecNext
23537
+ * @desc:下步节点变化时更新数据
23538
+ * @author liufan
23539
+ * @param {String} val 当前选中值
23540
+ * @date 2022年5月25日
22854
23541
  **/
22855
23542
  selecNext: function selecNext(val, type, isDef) {
22856
- var _this25 = this;
23543
+ var _this26 = this;
22857
23544
 
22858
23545
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22859
23546
  if (this.multiple) {
@@ -22882,19 +23569,18 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22882
23569
  this.nextNode.isSerialSubmit = 0;
22883
23570
  this.nodeInfos = [];
22884
23571
  this.operationList.forEach(function (item) {
22885
- console.log(item, val, 'aaa');
22886
23572
  if (item.key === val) {
22887
23573
  if (!item.taskNodeList) {
22888
- _this25.nodeInfos = [];
23574
+ _this26.nodeInfos = [];
22889
23575
  } else {
22890
- _this25.nodeInfos = item.taskNodeList;
23576
+ _this26.nodeInfos = item.taskNodeList;
22891
23577
  }
22892
23578
  return;
22893
23579
  }
22894
23580
  });
22895
23581
  if (this.defaultNextNode) {
22896
23582
  var defaultNode = this.nodeInfos.filter(function (item) {
22897
- return item.nodeId == _this25.defaultNextNode;
23583
+ return item.nodeId == _this26.defaultNextNode;
22898
23584
  });
22899
23585
  if (this.nodeInfos.length > 0 && defaultNode.length == 0) {
22900
23586
  this.nextNode.nextNodeId = this.nodeInfos[0].nodeId;
@@ -22957,14 +23643,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22957
23643
  } else {}
22958
23644
  }
22959
23645
 
22960
- if (isDef !== true) this.getNodeInfo();
23646
+ this.getNodeInfo();
22961
23647
  },
22962
23648
 
22963
- /**
22964
- * isMultiple
22965
- * @desc:是否多选
22966
- * @author liufan
22967
- * @date 2022年9月13日
23649
+ /**
23650
+ * isMultiple
23651
+ * @desc:是否多选
23652
+ * @author liufan
23653
+ * @date 2022年9月13日
22968
23654
  **/
22969
23655
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
22970
23656
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -22996,24 +23682,24 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22996
23682
  }
22997
23683
  },
22998
23684
 
22999
- /**
23000
- * getHedInfo
23001
- * @desc:获取审核页面数据
23002
- * @author liufan
23003
- * @date 2022年5月25日
23685
+ /**
23686
+ * getHedInfo
23687
+ * @desc:获取审核页面数据
23688
+ * @author liufan
23689
+ * @date 2022年5月25日
23004
23690
  **/
23005
23691
  getHedInfo: function getHedInfo() {
23006
- var _this26 = this;
23692
+ var _this27 = this;
23007
23693
 
23008
23694
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
23009
23695
  var params = {
23010
23696
  pendingId: this.pendingId,
23011
23697
  userId: util["a" /* default */].getStorage('userId')
23012
23698
  };
23013
- util["a" /* default */].ajax({ url: api["K" /* getHandleInfoHtml */], params: params }).then(function (res) {
23699
+ util["a" /* default */].ajax({ url: api["L" /* getHandleInfoHtml */], params: params }).then(function (res) {
23014
23700
  //pc返回数据
23015
23701
 
23016
- _this26.loading.close();
23702
+ _this27.loading.close();
23017
23703
  if (res.status === 'success') {
23018
23704
  var _res$data2 = res.data,
23019
23705
  nextNodeList = _res$data2.nextNodeList,
@@ -23043,210 +23729,216 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23043
23729
  canPresetRead = _res$data2.canPresetRead,
23044
23730
  isCdjxjTaskHandle = _res$data2.isCdjxjTaskHandle,
23045
23731
  taskButtonList = _res$data2.taskButtonList,
23732
+ simpleTips = _res$data2.simpleTips,
23046
23733
  isCanPreAddSign = _res$data2.isCanPreAddSign;
23047
23734
 
23048
- _this26.$emit('startTaskRead', res);
23049
- _this26.$emit('start-task-read', res);
23050
- _this26.circularReadParamsMap = circularReadParamsMap || {};
23051
- _this26.currentOrgName = currentOrgName;
23052
- _this26.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
23053
- _this26.readOnlyNotificationType = readOnlyNotificationType;
23054
- _this26.isSpecial = isSpecial;
23055
- _this26.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
23056
- _this26.otherOrgName = otherOrgName;
23057
- _this26.isCanPreAddSign = isCanPreAddSign;
23058
- _this26.endFlowInfo.choiceOrgId = choiceOrgId;
23059
- _this26.endFlowInfo.choiceDeptId = choiceDeptId;
23060
- _this26.endFlowInfo.pendingId = _this26.pendingId;
23061
- _this26.attachedCode = attachedCode;
23062
- _this26.endFlowInfo.pOrgId = pOrgId;
23063
- _this26.canPresetRead = canPresetRead;
23064
- _this26.isCdjxjTaskHandle = isCdjxjTaskHandle;
23065
- nextNodeCheckType && (_this26.nextNodeCheckType = nextNodeCheckType);
23066
- _this26.operationList = taskOperations || [];
23067
- _this26.customPresetHintMessage = customPresetHintMessage;
23735
+ if (simpleTips != undefined) {
23736
+ _this27.simpleTips = simpleTips;
23737
+ }
23738
+ _this27.$emit('startTaskRead', res);
23739
+ _this27.$emit('start-task-read', res);
23740
+ _this27.circularReadParamsMap = circularReadParamsMap || {};
23741
+ _this27.currentOrgName = currentOrgName;
23742
+ _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
23743
+ _this27.readOnlyNotificationType = readOnlyNotificationType;
23744
+ _this27.isSpecial = isSpecial;
23745
+ _this27.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
23746
+ _this27.otherOrgName = otherOrgName;
23747
+ _this27.isCanPreAddSign = isCanPreAddSign;
23748
+ _this27.endFlowInfo.choiceOrgId = choiceOrgId;
23749
+ _this27.endFlowInfo.choiceDeptId = choiceDeptId;
23750
+ _this27.endFlowInfo.pendingId = _this27.pendingId;
23751
+ _this27.attachedCode = attachedCode;
23752
+ _this27.endFlowInfo.pOrgId = pOrgId;
23753
+ _this27.canPresetRead = canPresetRead;
23754
+ _this27.isCdjxjTaskHandle = isCdjxjTaskHandle;
23755
+ nextNodeCheckType && (_this27.nextNodeCheckType = nextNodeCheckType);
23756
+ _this27.operationList = taskOperations || [];
23757
+ _this27.customPresetHintMessage = customPresetHintMessage;
23068
23758
  if (canPresetRead) {
23069
23759
  var ids = nodeInfoMap.nodeExtAttr.presetReadCandinateIds.split(',');
23070
23760
  var names = nodeInfoMap.nodeExtAttr.presetReadCandinateNames.split(',');
23071
23761
  ids.map(function (item, index) {
23072
- _this26.presetReadUserId.push({
23762
+ _this27.presetReadUserId.push({
23073
23763
  showid: item,
23074
23764
  showname: names[index]
23075
23765
  });
23076
- _this26.selectPresetUserList.push({
23766
+ _this27.selectPresetUserList.push({
23077
23767
  showid: item,
23078
23768
  showname: names[index]
23079
23769
  });
23080
- _this26.nextNode.presetReadUserId.push(item);
23770
+ _this27.nextNode.presetReadUserId.push(item);
23081
23771
  });
23082
23772
  }
23083
- if (!_this26.isFlow) _this26.getFile(_this26.pendingId, attachedCode);
23773
+ if (!_this27.isFlow) _this27.getFile(_this27.pendingId, attachedCode);
23084
23774
  if (nextNodeList && nextNodeList.length != 0) {
23085
- _this26.nextNodeList = nextNodeList;
23775
+ _this27.nextNodeList = nextNodeList;
23086
23776
  }
23087
- if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this26.removeUsers = canRemoveSignUserList;
23777
+ if (canRemoveSignUserList && canRemoveSignUserList.length != 0) _this27.removeUsers = canRemoveSignUserList;
23088
23778
  if (taskOperations && taskOperations.length != 0) {
23779
+ var isSelected = false;
23089
23780
  taskOperations.map(function (item) {
23090
- if (item.key === 9) _this26.isReject = true;
23781
+ if (item.key === 9) _this27.isReject = true;
23091
23782
  if (item.isSelected) {
23092
- _this26.nodeInfos = [];
23093
- _this26.nextNode.nextOperate = item.key;
23783
+ _this27.nodeInfos = [];
23784
+ _this27.nextNode.nextOperate = item.key;
23094
23785
  if (item.taskNodeList != null) {
23095
- _this26.nodeInfos = item.taskNodeList;
23096
- }
23097
- }
23098
- if (taskOperations.length > 0) {
23099
- _this26.nodeInfos = [];
23100
- _this26.nextNode.nextOperate = taskOperations[0].key;
23101
- if (taskOperations[0].taskNodeList != null) {
23102
- _this26.nodeInfos = taskOperations[0].taskNodeList;
23786
+ _this27.nodeInfos = item.taskNodeList;
23103
23787
  }
23788
+ isSelected = true;
23104
23789
  }
23105
23790
  });
23106
- _this26.selecNext(_this26.nextNode.nextOperate, true, true);
23791
+ if (taskOperations.length > 0 && !isSelected) {
23792
+ _this27.nodeInfos = [];
23793
+ _this27.nextNode.nextOperate = taskOperations[0].key;
23794
+ if (taskOperations[0].taskNodeList != null) {
23795
+ _this27.nodeInfos = taskOperations[0].taskNodeList;
23796
+ }
23797
+ }
23107
23798
  }
23108
23799
  if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
23109
- _this26.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
23800
+ _this27.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
23110
23801
  if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
23111
23802
  var notice = JSON.parse(nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList);
23112
23803
  notice.map(function (x) {
23113
- _this26.nodeFixedOpinionSelectList.push({ content: x });
23804
+ _this27.nodeFixedOpinionSelectList.push({ content: x });
23114
23805
  });
23115
23806
  }
23116
- _this26.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
23117
- _this26.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
23118
- _this26.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
23119
- _this26.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
23120
- _this26.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
23121
- _this26.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
23807
+ _this27.isCurrentNodeForbiddenChangeCandidate = nodeInfoMap.nodeExtAttr.isCurrentNodeForbiddenChangeCandidate;
23808
+ _this27.nodeDefaultSubmitOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultSubmitOpinion;
23809
+ _this27.isSubmitButtonShowAgreeAndDisagree = nodeInfoMap.nodeExtAttr.isSubmitButtonShowAgreeAndDisagree;
23810
+ _this27.isBanInputOpinion = nodeInfoMap.nodeExtAttr.isBanInputOpinion;
23811
+ _this27.nodeDefaultRejectOpinion = nodeInfoMap.nodeExtAttr.nodeDefaultRejectOpinion;
23812
+ _this27.isOpinionRequired = nodeInfoMap.nodeExtAttr.isOpinionRequired;
23122
23813
  // this.isChooseNextNode = nodeInfoMap.nodeExtAttr.isChooseNextNode;
23123
- _this26.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
23814
+ _this27.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
23124
23815
  if (nodeInfoMap.nodeExtAttr.defaultNextNode) {
23125
- var defaultNode = _this26.nodeInfos.filter(function (item) {
23816
+ var defaultNode = _this27.nodeInfos.filter(function (item) {
23126
23817
  return item.nodeId == nodeInfoMap.nodeExtAttr.defaultNextNode;
23127
23818
  });
23128
- if (_this26.nodeInfos.length > 0 && defaultNode.length == 0) {
23129
- _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
23819
+ if (_this27.nodeInfos.length > 0 && defaultNode.length == 0) {
23820
+ _this27.nextNode.nextNodeId = _this27.nodeInfos[0].nodeId;
23130
23821
  } else {
23131
- _this26.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
23822
+ _this27.nextNode.nextNodeId = nodeInfoMap.nodeExtAttr.defaultNextNode;
23132
23823
  }
23133
- } else if (_this26.nodeInfos.length > 0) {
23134
- _this26.nextNode.nextNodeId = _this26.nodeInfos[0].nodeId;
23824
+ } else if (_this27.nodeInfos.length > 0) {
23825
+ _this27.nextNode.nextNodeId = _this27.nodeInfos[0].nodeId;
23135
23826
  }
23136
- _this26.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
23827
+ _this27.isForceDisplayDefaultOptionForPrefix = nodeInfoMap.nodeExtAttr.isForceDisplayDefaultOptionForPrefix == 1;
23137
23828
  if (nodeInfoMap.nodeExtAttr.submitText) {
23138
- _this26.btnList.map(function (x) {
23829
+ _this27.btnList.map(function (x) {
23139
23830
  if (x.event === 'sub') {
23140
23831
  x.text = nodeInfoMap.nodeExtAttr.submitText;
23141
23832
  }
23142
23833
  });
23143
23834
  }
23144
23835
  }
23145
- _this26.choiceOrgId = choiceOrgId;
23146
- _this26.choiceDeptId = choiceDeptId;
23147
- _this26.pOrgId = pOrgId;
23836
+ _this27.choiceOrgId = choiceOrgId;
23837
+ _this27.choiceDeptId = choiceDeptId;
23838
+ _this27.pOrgId = pOrgId;
23148
23839
  if (res.data && res.data.isEndUserTask != undefined) {
23149
- _this26.isEndUserTask = res.data.isEndUserTask;
23840
+ _this27.isEndUserTask = res.data.isEndUserTask;
23150
23841
  }
23151
23842
  if (JSON.stringify(taskExamine) != '{}' && taskExamine) {
23152
- _this26.nodeInfo.nextNode = taskExamine.processDefinitionId;
23153
- _this26.NodeName = taskExamine.nodeName;
23154
- _this26.taskId = taskExamine.taskId;
23155
- _this26.businessIds = taskExamine.businessId;
23156
- _this26.appId = taskExamine.appId;
23157
- _this26.taskExamineInfo = taskExamine;
23158
- _this26.taskExamineInfo.choiceOrgId = choiceOrgId;
23159
- _this26.taskExamineInfo.choiceDeptId = choiceDeptId;
23160
- _this26.endFlowInfo.processType = taskExamine.processType;
23161
- _this26.endFlowInfo.isReturnSubmitter = taskExamine.isReturnSubmitter;
23162
- _this26.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
23163
- _this26.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
23164
- _this26.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
23165
- _this26.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
23166
- _this26.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
23167
- _this26.nextNode.isReadDealReply = taskExamine.isReadDealReply;
23168
- _this26.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
23169
- _this26.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
23170
- _this26.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
23171
- _this26.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
23172
- _this26.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
23173
- _this26.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
23174
- _this26.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
23175
- _this26.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
23176
- _this26.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
23177
- _this26.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
23178
- _this26.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
23179
- _this26.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
23843
+ _this27.nodeInfo.nextNode = taskExamine.processDefinitionId;
23844
+ _this27.NodeName = taskExamine.nodeName;
23845
+ _this27.taskId = taskExamine.taskId;
23846
+ _this27.businessIds = taskExamine.businessId;
23847
+ _this27.appId = taskExamine.appId;
23848
+ _this27.taskExamineInfo = taskExamine;
23849
+ _this27.taskExamineInfo.choiceOrgId = choiceOrgId;
23850
+ _this27.taskExamineInfo.choiceDeptId = choiceDeptId;
23851
+ _this27.endFlowInfo.processType = taskExamine.processType;
23852
+ // this.endFlowInfo.isReturnSubmitter =
23853
+ // taskExamine.isReturnSubmitter;
23854
+ // this.nextNode.isReturnSubmitter = taskExamine.isReturnSubmitter;
23855
+ // this.nextNode.isUndertakeReply = taskExamine.isUndertakeReply;
23856
+ // this.nextNode.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
23857
+ // this.nextNode.isUndertakeEnd = taskExamine.isUndertakeEnd;
23858
+ // this.nextNode.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
23859
+ // this.nextNode.isReadDealReply = taskExamine.isReadDealReply;
23860
+ // this.nextNode.isReadDealEnd = taskExamine.isReadDealEnd;
23861
+ // this.nextNode.isReturnRejectNode = taskExamine.isReturnRejectNode;
23862
+ // this.nextNode.isSerialSubmit = taskExamine.isSerialSubmit;
23863
+ _this27.endFlowInfo.isSubFlow = taskExamine.isSubFlow;
23864
+ _this27.endFlowInfo.isUndertakeReply = taskExamine.isUndertakeReply;
23865
+ _this27.endFlowInfo.isUndertakeEnd = taskExamine.isUndertakeEnd;
23866
+ _this27.endFlowInfo.isTakeAdviceEnd = taskExamine.isTakeAdviceEnd;
23867
+ _this27.endFlowInfo.isTakeAdviceReply = taskExamine.isTakeAdviceReply;
23868
+ _this27.endFlowInfo.isReadDealEnd = taskExamine.isReadDealEnd;
23869
+ _this27.endFlowInfo.isReadDealReply = taskExamine.isReadDealReply;
23870
+ _this27.endFlowInfo.isReturnRejectNode = taskExamine.isReturnRejectNode;
23871
+ _this27.endFlowInfo.isSerialSubmit = taskExamine.isSerialSubmit;
23180
23872
  // this.endFlowInfo.isReadDealReply =
23181
23873
  // taskExamine.isReadDealReplybusinessId;
23182
- _this26.endFlowInfo.appId = taskExamine.appId;
23183
- _this26.endFlowInfo.businessId = taskExamine.businessId;
23184
- _this26.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
23185
- _this26.endFlowInfo.nodeId = taskExamine.nodeId;
23874
+ _this27.endFlowInfo.appId = taskExamine.appId;
23875
+ _this27.endFlowInfo.businessId = taskExamine.businessId;
23876
+ _this27.endFlowInfo.processDefinitionId = taskExamine.processDefinitionId;
23877
+ _this27.endFlowInfo.nodeId = taskExamine.nodeId;
23186
23878
  }
23187
- if (_this26.nodeName) {
23188
- _this26.NodeName = _this26.nodeName;
23879
+ if (_this27.nodeName) {
23880
+ _this27.NodeName = _this27.nodeName;
23189
23881
  }
23190
- _this26.isCanAddSign = isCanAddSign;
23191
- _this26.processObj = res.data;
23192
- if (_this26.isCanAddSign) {
23193
- _this26.nextNode.isAddSign = '2';
23882
+ _this27.isCanAddSign = isCanAddSign;
23883
+ _this27.processObj = res.data;
23884
+ if (_this27.isCanAddSign) {
23885
+ _this27.nextNode.isAddSign = '2';
23194
23886
  }
23195
- _this26.isCanRemoveSign = isCanRemoveSign;
23196
- if (_this26.isCanRemoveSign) {
23197
- _this26.nextNode.isRemoveSign = '2';
23887
+ _this27.isCanRemoveSign = isCanRemoveSign;
23888
+ if (_this27.isCanRemoveSign) {
23889
+ _this27.nextNode.isRemoveSign = '2';
23198
23890
  }
23199
23891
 
23200
- if (!_this26.isOpinionRequired) {
23201
- _this26.isOpinionRequired = 0;
23892
+ if (!_this27.isOpinionRequired) {
23893
+ _this27.isOpinionRequired = 0;
23202
23894
  }
23203
23895
  // opinion && (this.value = opinion);
23204
- _this26.nextNode.notificationMsg = defaultNotificationMessage;
23205
- _this26.moreList = [];
23896
+ _this27.nextNode.notificationMsg = defaultNotificationMessage;
23897
+ _this27.moreList = [];
23206
23898
  if (taskButtonList && taskButtonList.length != 0) {
23207
23899
  taskButtonList.map(function (item) {
23208
23900
  if (item.fun === 'reject()') {
23209
- _this26.rejectObj = item;
23901
+ _this27.rejectObj = item;
23210
23902
  } else if (item.fun === 'toStartTaskRead()') {
23211
- _this26.pointsReadingObj = item;
23903
+ _this27.pointsReadingObj = item;
23212
23904
  } else {
23213
- _this26.moreList.push(item);
23905
+ _this27.moreList.push(item);
23214
23906
  }
23215
23907
  });
23216
23908
  }
23217
- _this26.isMainSubProcess = res.data.isMainSubProcess == 'true';
23218
- _this26.isCustomPreset = isCustomPreset;
23219
- _this26.isPreset = isPreset;
23220
- _this26.presetTaskNodeMap = presetTaskNodeMap;
23221
- _this26.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
23222
- _this26.getFind();
23223
-
23224
- _this26.getNodeInfo();
23225
- _this26.StartTaskReadKey++;
23909
+ _this27.isMainSubProcess = res.data.isMainSubProcess == 'true';
23910
+ _this27.isCustomPreset = isCustomPreset;
23911
+ _this27.isPreset = isPreset;
23912
+ _this27.presetTaskNodeMap = presetTaskNodeMap;
23913
+ _this27.presetTaskNodeKeyStr = presetTaskNodeKeyStr;
23914
+ _this27.getFind();
23915
+ _this27.selecNext(_this27.nextNode.nextOperate, true, true);
23916
+ // this.getNodeInfo();
23917
+ _this27.StartTaskReadKey++;
23226
23918
  } else {
23227
23919
  if (res.status === 'taskCompleted') {
23228
- _this26.$emit('shrink', true);
23229
- _this26.shrinkAbled = true;
23230
- _this26.$message.warning(res.message || '系统错误,请联系管理员!');
23920
+ _this27.$emit('shrink', true);
23921
+ _this27.shrinkAbled = true;
23922
+ _this27.$message.warning(res.message || '系统错误,请联系管理员!');
23231
23923
  } else {
23232
- _this26.$message.error(res.message || '系统错误,请联系管理员!');
23924
+ _this27.$message.error(res.message || '系统错误,请联系管理员!');
23233
23925
  }
23234
23926
  }
23235
23927
  }).catch(function (err) {
23236
- _this26.loading.close();
23928
+ _this27.loading.close();
23237
23929
  if (err.message && err.message !== 'canceled') {
23238
- _this26.$message.error(err.message);
23930
+ _this27.$message.error(err.message);
23239
23931
  }
23240
23932
  });
23241
23933
  },
23242
23934
 
23243
- /**
23244
- * closeProcess
23245
- * @desc:关闭弹窗
23246
- * @author liufan
23247
- * @param {boolean} val 当前是否办理流程
23248
- * @param {String} type 当前点击的弹窗类型
23249
- * @date 2022年5月25日
23935
+ /**
23936
+ * closeProcess
23937
+ * @desc:关闭弹窗
23938
+ * @author liufan
23939
+ * @param {boolean} val 当前是否办理流程
23940
+ * @param {String} type 当前点击的弹窗类型
23941
+ * @date 2022年5月25日
23250
23942
  **/
23251
23943
  closeProcess: function closeProcess(val, type, closeParent) {
23252
23944
  if (closeParent) {
@@ -23259,27 +23951,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23259
23951
  return;
23260
23952
  }
23261
23953
  if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
23262
- this.$emit('success');
23954
+ this.flowSuccess(true);
23955
+ // this.$emit('success');
23263
23956
  }
23264
23957
  },
23265
23958
 
23266
- /**
23267
- * selectChange
23268
- * @desc:常用语选择
23269
- * @author liufan
23270
- * @param {String} val 选中值
23271
- * @date 2022年5月25日
23959
+ /**
23960
+ * selectChange
23961
+ * @desc:常用语选择
23962
+ * @author liufan
23963
+ * @param {String} val 选中值
23964
+ * @date 2022年5月25日
23272
23965
  **/
23273
23966
  selectChange: function selectChange(val) {
23274
23967
  this.value = val;
23275
23968
  },
23276
23969
 
23277
- /**
23278
- * upDate
23279
- * @desc:修改常用语
23280
- * @author liufan
23281
- * @param {Object} val 修改值
23282
- * @date 2022年5月25日
23970
+ /**
23971
+ * upDate
23972
+ * @desc:修改常用语
23973
+ * @author liufan
23974
+ * @param {Object} val 修改值
23975
+ * @date 2022年5月25日
23283
23976
  **/
23284
23977
  upDate: function upDate(val) {
23285
23978
  this.FormData.id = val.id;
@@ -23287,14 +23980,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23287
23980
  },
23288
23981
 
23289
23982
 
23290
- /**
23291
- * getProcess
23292
- * @desc:获取选择流程
23293
- * @author liufan
23294
- * @date 2022年5月25日
23983
+ /**
23984
+ * getProcess
23985
+ * @desc:获取选择流程
23986
+ * @author liufan
23987
+ * @date 2022年5月25日
23295
23988
  **/
23296
23989
  getProcess: function getProcess(val) {
23297
- var _this27 = this;
23990
+ var _this28 = this;
23298
23991
 
23299
23992
  var params = mainvue_type_script_lang_js_extends({
23300
23993
  businessId: this.businessId,
@@ -23304,81 +23997,84 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23304
23997
  hideTempSave: true
23305
23998
  }, this.param);
23306
23999
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
23307
- util["a" /* default */].ajax({ url: api["S" /* getProcessDefList */], params: params }).then(function (res) {
24000
+ util["a" /* default */].ajax({ url: api["U" /* getProcessDefList */], params: params }).then(function (res) {
23308
24001
  var status = res.status,
23309
24002
  message = res.message,
23310
24003
  data = res.data;
23311
24004
 
23312
- _this27.loading.close();
24005
+ _this28.loading.close();
23313
24006
  if (status === 'success') {
23314
- _this27.isStartFlowChartView = data.isStartFlowChartView;
24007
+ if (data.simpleTips != undefined) {
24008
+ _this28.simpleTips = data.simpleTips;
24009
+ }
24010
+ _this28.isStartFlowChartView = data.isStartFlowChartView;
23315
24011
  if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
23316
- _this27.$message.error('流程不存在或未关联对应流程!');
24012
+ _this28.$message.error('流程不存在或未关联对应流程!');
23317
24013
  } else {
23318
- _this27.nodeInfo.option = data.definitionList;
23319
- _this27.nodeInfo.nextNode = data.definitionList.filter(function (item) {
23320
- return item.processDefKey == _this27.defaultProcessKey;
24014
+ _this28.nodeInfo.option = data.definitionList;
24015
+ _this28.nodeInfo.nextNode = data.definitionList.filter(function (item) {
24016
+ return item.processDefKey == _this28.defaultProcessKey;
23321
24017
  });
23322
- if (_this27.nodeInfo.nextNode.length) {
23323
- _this27.nodeInfo.nextNode = _this27.nodeInfo.nextNode[0].processDefId;
24018
+ if (_this28.nodeInfo.nextNode.length) {
24019
+ _this28.nodeInfo.nextNode = _this28.nodeInfo.nextNode[0].processDefId;
23324
24020
  } else {
23325
24021
  if (data.definitionList.length != 0) {
23326
- _this27.nodeInfo.nextNode = data.definitionList[0].processDefId;
24022
+ _this28.nodeInfo.nextNode = data.definitionList[0].processDefId;
23327
24023
  } else {
23328
- _this27.nodeInfo.nextNode = '';
24024
+ _this28.nodeInfo.nextNode = '';
23329
24025
  }
23330
24026
  }
23331
- if (_this27.nodeInfo.nextNode) {
23332
- _this27.handleChange(_this27.nodeInfo.nextNode);
24027
+ if (_this28.nodeInfo.nextNode) {
24028
+ _this28.handleChange(_this28.nodeInfo.nextNode);
23333
24029
  }
23334
24030
  }
23335
24031
  } else {
23336
- _this27.$message.error(message || '系统错误,请联系管理员!');
24032
+ _this28.$message.error(message || '系统错误,请联系管理员!');
23337
24033
  }
23338
24034
  }).catch(function (err) {
23339
- _this27.loading.close();
24035
+ _this28.loading.close();
23340
24036
  if (err.message && err.message !== 'canceled') {
23341
- _this27.$message.error(err.message);
24037
+ _this28.$message.error(err.message);
23342
24038
  }
23343
24039
  });
23344
24040
  },
23345
24041
 
23346
- /**
23347
- * getPendedhistoryList
23348
- * @desc:获取流程列表
23349
- * @author liufan
23350
- * @date 2022年5月25日
24042
+ /**
24043
+ * getPendedhistoryList
24044
+ * @desc:获取流程列表
24045
+ * @author liufan
24046
+ * @date 2022年5月25日
23351
24047
  **/
23352
24048
  getPendedhistoryList: function getPendedhistoryList() {
23353
- var _this28 = this;
24049
+ var _this29 = this;
23354
24050
 
23355
24051
  var params = {
23356
24052
  apprecordId: this.businessIds,
23357
24053
  userId: util["a" /* default */].getStorage('userId'),
23358
24054
  type: 2
23359
24055
  };
23360
- util["a" /* default */].ajax({ url: api["mb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
24056
+ util["a" /* default */].ajax({ url: api["ob" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
23361
24057
  var rCode = res.rCode,
23362
24058
  msg = res.msg,
23363
24059
  results = res.results;
23364
24060
 
23365
24061
  if (!rCode) {
23366
- _this28.nextNode.nextUserId = [];
23367
- _this28.showNews = false;
23368
- _this28.nextNode.notificationType = [];
23369
- _this28.pendingId = results[results.length - 1].attachId;
23370
- _this28.getHedInfo();
24062
+ _this29.nextNode.nextUserId = [];
24063
+ _this29.showNews = false;
24064
+ _this29.nextNode.notificationType = [];
24065
+ _this29.pendingId = results[results.length - 1].attachId;
24066
+ _this29.getHedInfo();
23371
24067
  } else {
23372
- _this28.$message.error(msg || '系统错误,请联系管理员!');
24068
+ _this29.$message.error(msg || '系统错误,请联系管理员!');
23373
24069
  }
23374
24070
  }).catch(function (err) {
23375
24071
  if (err.message && err.message !== 'canceled') {
23376
- _this28.$message.error(err.message);
24072
+ _this29.$message.error(err.message);
23377
24073
  }
23378
24074
  });
23379
24075
  },
23380
24076
  reqCircularRead: function reqCircularRead(type) {
23381
- var _this29 = this;
24077
+ var _this30 = this;
23382
24078
 
23383
24079
  var _that = this;
23384
24080
  var params = {
@@ -23392,7 +24088,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23392
24088
  };
23393
24089
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
23394
24090
  util["a" /* default */].ajax(params).then(function (res) {
23395
- _this29.loading.close();
24091
+ _this30.loading.close();
23396
24092
  if (res.rCode == 0) {
23397
24093
  if (res.results.alert) {
23398
24094
  _that.$confirm(res.results.message, {
@@ -23415,28 +24111,28 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23415
24111
  },
23416
24112
 
23417
24113
  // 提交流程
23418
- /**
23419
- * subProcess
23420
- * @desc:提交流程
23421
- * @author liufan
23422
- * @param {String} formName 当前form表单ref值
23423
- * @date 2022年5月25日
24114
+ /**
24115
+ * subProcess
24116
+ * @desc:提交流程
24117
+ * @author liufan
24118
+ * @param {String} formName 当前form表单ref值
24119
+ * @date 2022年5月25日
23424
24120
  **/
23425
24121
  subProcess: function subProcess(val, type) {
23426
- var _this30 = this;
24122
+ var _this31 = this;
23427
24123
 
23428
24124
  return this.$refs['nextNode'].validate(function (valid) {
23429
24125
  if (valid) {
23430
- if (_this30.isSubmitButtonShowAgreeAndDisagree == 1) {
23431
- _this30.value = _this30.value.replace(RegExp('不同意。', 'g'), '');
23432
- _this30.value = _this30.value.replace(RegExp('同意。', 'g'), '');
23433
- _this30.value = val + _this30.value;
24126
+ if (_this31.isSubmitButtonShowAgreeAndDisagree == 1) {
24127
+ _this31.value = _this31.value.replace(RegExp('不同意。', 'g'), '');
24128
+ _this31.value = _this31.value.replace(RegExp('同意。', 'g'), '');
24129
+ _this31.value = val + _this31.value;
23434
24130
  }
23435
- if (!_this30.validInfo()) {
23436
- _this30.freeValid = false;
24131
+ if (!_this31.validInfo()) {
24132
+ _this31.freeValid = false;
23437
24133
  return;
23438
24134
  } else {
23439
- _this30.freeValid = true;
24135
+ _this31.freeValid = true;
23440
24136
  }
23441
24137
  // if (
23442
24138
  // this.currentNodeIsCircularReadNode &&
@@ -23446,14 +24142,14 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23446
24142
  // return;
23447
24143
  // }
23448
24144
  if (type == 'multiInsMidwayWithSubmitScene') {
23449
- _this30.sendData(type);
24145
+ _this31.sendData(type);
23450
24146
  return;
23451
24147
  }
23452
- if (_this30.beforeSubmit == undefined) {
23453
- _this30.subFun(_this30.sendData);
24148
+ if (_this31.beforeSubmit == undefined) {
24149
+ _this31.subFun(_this31.sendData);
23454
24150
  } else {
23455
- _this30.beforeSubmit(1).then(function (next) {
23456
- _this30.sendData();
24151
+ _this31.beforeSubmit(1).then(function (next) {
24152
+ _this31.sendData();
23457
24153
  }).catch(function (e) {});
23458
24154
  }
23459
24155
  }
@@ -23486,19 +24182,37 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23486
24182
  this.$message.warning('请选择输入审批意见');
23487
24183
  return false;
23488
24184
  }
23489
- if (this.isHideCurrentOrg && !this.nextNode.nextCurrentOrgObjJson) {
23490
- this.$message.warning('\u8BF7\u9009\u62E9' + (this.currentOrgName || '本单位'));
23491
- return false;
23492
- }
24185
+ // if (this.isHideCurrentOrg && !this.nextNode.nextCurrentOrgObjJson) {
24186
+ // this.$message.warning(`请选择${this.currentOrgName || '本单位'}`);
24187
+ // return false;
24188
+ // }
23493
24189
 
23494
- if (this.currentNodeIsCircularReadNode && this.nextNode.nextCurrentOrgObj.length == 0 && this.nextNode.nextOtherOrgObj.length == 0) {
23495
- this.$message.warning('\u8BF7\u9009\u62E9\u5904\u7406\u5BF9\u8C61!');
24190
+ if ((this.currentNodeIsCircularReadNode || this.isHideOtherOrg && this.isHideCurrentOrg) && this.nextNode.nextCurrentOrgObj.length == 0 && this.nextNode.nextOtherOrgObj.length == 0) {
24191
+ this.$message.warning('\u8BF7\u9009\u62E9\u4E0B\u6B65\u529E\u7406\u5BF9\u8C61!');
23496
24192
  return false;
23497
24193
  }
23498
24194
  return true;
23499
24195
  },
24196
+ flowSuccess: function flowSuccess(hideMessage) {
24197
+ var _this32 = this;
24198
+
24199
+ if (!this.simpleTips) {
24200
+ this.$alert('提交成功', '', {
24201
+ confirmButtonText: '确定',
24202
+ type: 'success',
24203
+ callback: function callback(action) {
24204
+ _this32.$emit('success');
24205
+ }
24206
+ });
24207
+ } else {
24208
+ if (!hideMessage) {
24209
+ this.$message.success('提交成功');
24210
+ }
24211
+ this.$emit('success');
24212
+ }
24213
+ },
23500
24214
  sendData: function sendData(freetype) {
23501
- var _this31 = this;
24215
+ var _this33 = this;
23502
24216
 
23503
24217
  this.$refs['nextNode'].validate(function () {
23504
24218
  var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
@@ -23508,116 +24222,121 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23508
24222
  switch (_context.prev = _context.next) {
23509
24223
  case 0:
23510
24224
  if (!valid) {
23511
- _context.next = 50;
24225
+ _context.next = 51;
23512
24226
  break;
23513
24227
  }
23514
24228
 
23515
- if (!_this31.isFlow) {
23516
- _context.next = 3;
24229
+ if (!_this33.isFlow) {
24230
+ _context.next = 4;
23517
24231
  break;
23518
24232
  }
23519
24233
 
23520
- return _context.abrupt('return', _this31.handleVisible = true);
24234
+ if (_this33.directCreateCircularReadWhenFlowStarted) {
24235
+ _this33.circulateVisible = true;
24236
+ } else {
24237
+ _this33.handleVisible = true;
24238
+ }
24239
+ return _context.abrupt('return');
23521
24240
 
23522
- case 3:
24241
+ case 4:
23523
24242
  nextUserId = [];
23524
24243
 
23525
- if (_this31.multiple) {
23526
- _this31.nextNode.nextUserId && _this31.nextNode.nextUserId.map(function (item) {
24244
+ if (_this33.multiple) {
24245
+ _this33.nextNode.nextUserId && _this33.nextNode.nextUserId.map(function (item) {
23527
24246
  return nextUserId.push(item);
23528
24247
  });
23529
24248
  }
23530
24249
  addSignUserId = [];
23531
24250
 
23532
- if (_this31.isCanAddSign && _this31.nextNode.isAddSign == '1') {
23533
- _this31.nextNode.addSignUserId.map(function (item) {
24251
+ if (_this33.isCanAddSign && _this33.nextNode.isAddSign == '1') {
24252
+ _this33.nextNode.addSignUserId.map(function (item) {
23534
24253
  addSignUserId.push(item);
23535
24254
  });
23536
24255
  }
23537
24256
  removeSignUserId = [];
23538
24257
 
23539
- if (_this31.isCanRemoveSign && _this31.nextNode.isRemoveSign == '1') {
23540
- _this31.nextNode.removeSignUserId.map(function (item) {
24258
+ if (_this33.isCanRemoveSign && _this33.nextNode.isRemoveSign == '1') {
24259
+ _this33.nextNode.removeSignUserId.map(function (item) {
23541
24260
  removeSignUserId.push(item);
23542
24261
  });
23543
24262
  }
23544
24263
  str = '';
23545
24264
 
23546
- if (_this31.value) {
23547
- str = _this31.value.replace(/\s+/g, '');
24265
+ if (_this33.value) {
24266
+ str = _this33.value.replace(/\s+/g, '');
23548
24267
  }
23549
- if ((!_this31.value || str === '') && _this31.nodeDefaultSubmitOpinion) {
23550
- _this31.value = _this31.nodeDefaultSubmitOpinion;
24268
+ if ((!_this33.value || str === '') && _this33.nodeDefaultSubmitOpinion) {
24269
+ _this33.value = _this33.nodeDefaultSubmitOpinion;
23551
24270
  }
23552
- if (!_this31.isSpecial) {
23553
- delete _this31.nextNode.nextOperate;
23554
- delete _this31.nextNode.nextNodeId;
24271
+ if (!_this33.isSpecial) {
24272
+ delete _this33.nextNode.nextOperate;
24273
+ delete _this33.nextNode.nextNodeId;
23555
24274
  }
23556
- if (_this31.nextNode.nextOperate === 9) {
23557
- _this31.nextNode.isReturnRejectNode = 1;
23558
- _this31.nextNode.processDefinitionId = _this31.processObj.taskExamine.processDefinitionId;
24275
+ if (_this33.nextNode.nextOperate === 9) {
24276
+ _this33.nextNode.isReturnRejectNode = 1;
24277
+ _this33.nextNode.processDefinitionId = _this33.processObj.taskExamine.processDefinitionId;
23559
24278
  }
23560
- if (_this31.nextNode.nextOperate != 0 && _this31.nextNode.nextOperate != 1) {
23561
- delete _this31.nextNode.nextNodeId;
24279
+ if (_this33.nextNode.nextOperate != 0 && _this33.nextNode.nextOperate != 1) {
24280
+ delete _this33.nextNode.nextNodeId;
23562
24281
  }
23563
24282
 
23564
24283
  if (!(freetype != 'multiInsMidwayWithSubmitScene')) {
23565
- _context.next = 19;
24284
+ _context.next = 20;
23566
24285
  break;
23567
24286
  }
23568
24287
 
23569
- _context.next = 18;
23570
- return _this31.saveInfo('subMit');
23571
-
23572
- case 18:
23573
- _this31.loading = util["a" /* default */].loading(_this31.$loading, '加载中...');
24288
+ _context.next = 19;
24289
+ return _this33.saveInfo('subMit');
23574
24290
 
23575
24291
  case 19:
24292
+ _this33.loading = util["a" /* default */].loading(_this33.$loading, '加载中...');
24293
+
24294
+ case 20:
23576
24295
  notificationType = '';
23577
24296
 
23578
- notificationType = _this31.nextNode.notificationType.join(',');
24297
+ notificationType = _this33.nextNode.notificationType.join(',');
23579
24298
  addSignUserId = addSignUserId.join(',');
23580
24299
  removeSignUserId = removeSignUserId.join(',');
23581
- if (!_this31.isCanPreAddSign || _this31.nextNode.isAddSign != '1') {
23582
- delete _this31.nextNode.addSignMode;
24300
+ if (!_this33.isCanPreAddSign || _this33.nextNode.isAddSign != '1') {
24301
+ delete _this33.nextNode.addSignMode;
23583
24302
  }
23584
- params = mainvue_type_script_lang_js_extends({}, _this31.nextNode, {
23585
- pendingId: _this31.pendingId,
23586
- opinion: _this31.isForceDisplayDefaultOptionForPrefix && !_this31.value.startsWith(_this31.nodeDefaultSubmitOpinion) ? _this31.nodeDefaultSubmitOpinion + _this31.value : _this31.value,
24303
+ params = mainvue_type_script_lang_js_extends({}, _this33.nextNode, {
24304
+ pendingId: _this33.pendingId,
24305
+ opinion: _this33.isForceDisplayDefaultOptionForPrefix && !_this33.value.startsWith(_this33.nodeDefaultSubmitOpinion) ? _this33.nodeDefaultSubmitOpinion + _this33.value : _this33.value,
23587
24306
  userId: util["a" /* default */].getStorage('userId'),
23588
- nextUserId: _this31.multiple ? nextUserId.join(',') : _this31.nextNode.nextUserId,
24307
+ nextUserId: _this33.multiple ? nextUserId.join(',') : _this33.nextNode.nextUserId,
23589
24308
  addSignUserId: addSignUserId,
23590
- customPresetUserJson: JSON.stringify(_this31.presetList),
23591
- presetUserJson: JSON.stringify(_this31.presetUserJson),
24309
+ customPresetUserJson: JSON.stringify(_this33.presetList),
24310
+ presetUserJson: JSON.stringify(_this33.presetUserJson),
23592
24311
  removeSignUserId: removeSignUserId,
23593
- nextReadUserId: _this31.readMultiple ? _this31.mixReadList && _this31.mixReadList.join('|') : _this31.nextNode.nextReadUserId,
23594
- nextOrgId: !_this31.isShowNextUser ? _this31.multiple ? _this31.mixOrgIdList && _this31.mixOrgIdList.join('|') : _this31.nextNode.nextOrgId : '',
23595
- presetReadUserId: _this31.mixPresetList && _this31.mixPresetList.length > 0 ? _this31.mixPresetList.join('|') : _this31.nextNode.presetReadUserId.join(','),
24312
+ nextReadUserId: _this33.readMultiple ? _this33.mixReadList && _this33.mixReadList.join('|') : _this33.nextNode.nextReadUserId,
24313
+ nextOrgId: !_this33.isShowNextUser ? _this33.multiple ? _this33.mixOrgIdList && _this33.mixOrgIdList.join('|') : _this33.nextNode.nextOrgId : '',
24314
+ presetReadUserId: _this33.mixPresetList && _this33.mixPresetList.length > 0 ? _this33.mixPresetList.join('|') : _this33.nextNode.presetReadUserId.join(','),
23596
24315
  notificationType: notificationType
23597
24316
  });
23598
24317
 
23599
- if (_this31.activeNames != '1') delete params.customPresetUserJson;
23600
- if (_this31.nextNode.isRemoveSign != '1') {
24318
+ if (_this33.activeNames != '1') delete params.customPresetUserJson;
24319
+ if (_this33.nextNode.isRemoveSign != '1') {
23601
24320
  delete params.removeSignUserId;
23602
24321
  }
23603
- if (_this31.nextNode.isAddSign != '1') {
24322
+ if (_this33.nextNode.isAddSign != '1') {
23604
24323
  delete params.addSignUserId;
23605
24324
  }
23606
- if (!_this31.isSpecial) {
24325
+ if (!_this33.isSpecial) {
23607
24326
  delete params.nextUserId;
23608
24327
  }
23609
24328
 
23610
24329
  if (!(freetype === 'multiInsMidwayWithSubmitScene')) {
23611
- _context.next = 32;
24330
+ _context.next = 33;
23612
24331
  break;
23613
24332
  }
23614
24333
 
23615
- _this31.taskParams = params;
24334
+ _this33.taskParams = params;
23616
24335
  return _context.abrupt('return');
23617
24336
 
23618
- case 32:
23619
- _this31.loading = util["a" /* default */].loading(_this31.$loading, '提交中...');
23620
- isEndUserTask = _this31.isEndUserTask, choiceOrgId = _this31.choiceOrgId, choiceDeptId = _this31.choiceDeptId, pOrgId = _this31.pOrgId, taskExamineInfo = _this31.taskExamineInfo, currentNodeIsCircularReadNode = _this31.currentNodeIsCircularReadNode, needRetrialAuth = _this31.needRetrialAuth, circularReadParamsMap = _this31.circularReadParamsMap;
24337
+ case 33:
24338
+ _this33.loading = util["a" /* default */].loading(_this33.$loading, '提交中...');
24339
+ isEndUserTask = _this33.isEndUserTask, choiceOrgId = _this33.choiceOrgId, choiceDeptId = _this33.choiceDeptId, pOrgId = _this33.pOrgId, taskExamineInfo = _this33.taskExamineInfo, currentNodeIsCircularReadNode = _this33.currentNodeIsCircularReadNode, needRetrialAuth = _this33.needRetrialAuth, circularReadParamsMap = _this33.circularReadParamsMap;
23621
24340
 
23622
24341
  params.isEndUserTask = isEndUserTask;
23623
24342
  params.choiceOrgId = choiceOrgId;
@@ -23635,34 +24354,33 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23635
24354
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
23636
24355
  }
23637
24356
 
23638
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Ib" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
24357
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Kb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
23639
24358
  var status = res.status,
23640
24359
  message = res.message;
23641
24360
 
23642
- _this31.loading.close();
24361
+ _this33.loading.close();
23643
24362
  if (status === 'success') {
23644
- _this31.$message.success('提交成功');
23645
- _this31.$emit('success');
24363
+ _this33.flowSuccess();
23646
24364
  } else {
23647
- _this31.$message.error(message || '系统错误,请联系管理员!');
23648
- _this31.$emit('error');
24365
+ _this33.$message.error(message || '系统错误,请联系管理员!');
24366
+ _this33.$emit('error');
23649
24367
  }
23650
24368
  }).catch(function (err) {
23651
- _this31.loading.close();
24369
+ _this33.loading.close();
23652
24370
  if (err.message && err.message !== 'canceled') {
23653
- _this31.$message.error(err.message);
24371
+ _this33.$message.error(err.message);
23654
24372
  }
23655
24373
  }));
23656
24374
 
23657
- case 50:
24375
+ case 51:
23658
24376
  return _context.abrupt('return', false);
23659
24377
 
23660
- case 51:
24378
+ case 52:
23661
24379
  case 'end':
23662
24380
  return _context.stop();
23663
24381
  }
23664
24382
  }
23665
- }, _callee, _this31);
24383
+ }, _callee, _this33);
23666
24384
  }));
23667
24385
 
23668
24386
  return function (_x) {
@@ -23673,7 +24391,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23673
24391
 
23674
24392
  // 单位选择完回调
23675
24393
  disposeAppUnit: function disposeAppUnit(res, type) {
23676
- console.log(res, type, 'res');
23677
24394
  var label = type.substring(0, type.lastIndexOf('Select'));
23678
24395
  this.nextNode[label + 'Name'] = '';
23679
24396
  res.options && (this[type] = res.options);