eoss-ui 0.6.76 → 0.6.78

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 (289) hide show
  1. package/lib/button-group.js +30 -8
  2. package/lib/button.js +30 -8
  3. package/lib/calogin.js +263 -241
  4. package/lib/checkbox-group.js +30 -8
  5. package/lib/data-table-form.js +30 -8
  6. package/lib/data-table.js +30 -8
  7. package/lib/date-picker.js +30 -8
  8. package/lib/dialog.js +30 -8
  9. package/lib/eoss-ui.common.js +1699 -1212
  10. package/lib/flow-group.js +30 -8
  11. package/lib/flow-list.js +111 -89
  12. package/lib/flow.js +965 -515
  13. package/lib/form.js +50 -10
  14. package/lib/handle-user.js +30 -8
  15. package/lib/handler.js +30 -8
  16. package/lib/icon.js +30 -8
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +30 -8
  19. package/lib/input.js +30 -8
  20. package/lib/login.js +30 -8
  21. package/lib/main.js +373 -332
  22. package/lib/nav.js +30 -8
  23. package/lib/page.js +30 -8
  24. package/lib/pagination.js +30 -8
  25. package/lib/player.js +30 -8
  26. package/lib/qr-code.js +43 -21
  27. package/lib/radio-group.js +30 -8
  28. package/lib/retrial-auth.js +30 -8
  29. package/lib/select-ganged.js +30 -8
  30. package/lib/select.js +30 -8
  31. package/lib/selector-panel.js +30 -8
  32. package/lib/selector.js +30 -8
  33. package/lib/sizer.js +30 -8
  34. package/lib/steps.js +30 -8
  35. package/lib/switch.js +30 -8
  36. package/lib/table-form.js +30 -8
  37. package/lib/tabs.js +30 -8
  38. package/lib/theme-chalk/flow.css +1 -1
  39. package/lib/theme-chalk/form.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +30 -8
  42. package/lib/tree-group.js +30 -8
  43. package/lib/tree.js +30 -8
  44. package/lib/upload.js +30 -8
  45. package/lib/utils/util.js +26 -4
  46. package/lib/wujie.js +30 -8
  47. package/lib/wxlogin.js +30 -8
  48. package/package.json +160 -160
  49. package/packages/button/index.js +5 -5
  50. package/packages/button/src/main.vue +418 -418
  51. package/packages/button-group/index.js +5 -5
  52. package/packages/button-group/src/main.vue +298 -298
  53. package/packages/calendar/index.js +5 -5
  54. package/packages/calogin/index.js +5 -5
  55. package/packages/calogin/src/main.vue +412 -412
  56. package/packages/calogin/src/plugin.js +915 -915
  57. package/packages/card/index.js +5 -5
  58. package/packages/card/src/main.vue +156 -156
  59. package/packages/cascader/index.js +5 -5
  60. package/packages/cascader/src/main.vue +168 -168
  61. package/packages/checkbox-group/index.js +5 -5
  62. package/packages/checkbox-group/src/main.vue +333 -333
  63. package/packages/clients/index.js +5 -5
  64. package/packages/clients/src/main.vue +151 -151
  65. package/packages/data-table/index.js +5 -5
  66. package/packages/data-table/src/children.vue +39 -39
  67. package/packages/data-table/src/column.vue +989 -989
  68. package/packages/data-table/src/main.vue +1822 -1822
  69. package/packages/data-table/src/sizer.vue +195 -195
  70. package/packages/data-table-form/index.js +5 -5
  71. package/packages/data-table-form/src/checkbox.vue +101 -101
  72. package/packages/data-table-form/src/colgroup.vue +17 -17
  73. package/packages/data-table-form/src/main.vue +181 -181
  74. package/packages/data-table-form/src/radio.vue +65 -65
  75. package/packages/data-table-form/src/table.vue +233 -233
  76. package/packages/data-table-form/src/tbody.vue +336 -336
  77. package/packages/data-table-form/src/thead.vue +68 -68
  78. package/packages/date-picker/index.js +5 -5
  79. package/packages/date-picker/src/main.vue +236 -236
  80. package/packages/dialog/index.js +5 -5
  81. package/packages/enable-drag/index.js +5 -5
  82. package/packages/enterprise/index.js +5 -5
  83. package/packages/enterprise/src/main.vue +66 -66
  84. package/packages/error-page/index.js +5 -5
  85. package/packages/error-page/src/main.vue +44 -44
  86. package/packages/flow/index.js +5 -5
  87. package/packages/flow/src/component/Circulate.vue +370 -363
  88. package/packages/flow/src/component/CommonOpinions.vue +364 -346
  89. package/packages/flow/src/component/CustomPreset.vue +322 -322
  90. package/packages/flow/src/component/FileList.vue +99 -99
  91. package/packages/flow/src/component/Preset.vue +255 -255
  92. package/packages/flow/src/component/SendMsg.vue +241 -241
  93. package/packages/flow/src/component/TimeLimit.vue +190 -190
  94. package/packages/flow/src/component/taskUnionExamine.vue +627 -627
  95. package/packages/flow/src/form.vue +121 -121
  96. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  97. package/packages/flow/src/main.vue +3564 -3445
  98. package/packages/flow/src/processForm.vue +1177 -1096
  99. package/packages/flow/src/processReject.vue +294 -294
  100. package/packages/flow/src/reset.vue +906 -905
  101. package/packages/flow/src/startTaskRead.vue +677 -659
  102. package/packages/flow/src/supervise.vue +149 -149
  103. package/packages/flow/src/table.vue +58 -58
  104. package/packages/flow-group/index.js +5 -5
  105. package/packages/flow-group/src/main.vue +688 -688
  106. package/packages/flow-list/index.js +5 -5
  107. package/packages/flow-list/src/main.vue +1770 -1770
  108. package/packages/form/index.js +5 -5
  109. package/packages/form/src/main.vue +3797 -3796
  110. package/packages/form/src/table.vue +1502 -1502
  111. package/packages/handle-user/index.js +5 -5
  112. package/packages/handle-user/src/main.vue +138 -138
  113. package/packages/handler/index.js +5 -5
  114. package/packages/handler/src/main.vue +493 -493
  115. package/packages/icon/index.js +5 -5
  116. package/packages/icon/src/main.vue +101 -101
  117. package/packages/icons/index.js +5 -5
  118. package/packages/icons/src/main.vue +81 -81
  119. package/packages/input/index.js +5 -5
  120. package/packages/input/src/main.vue +356 -356
  121. package/packages/input-number/index.js +5 -5
  122. package/packages/input-number/src/main.vue +106 -106
  123. package/packages/label/index.js +5 -5
  124. package/packages/label/src/main.vue +457 -457
  125. package/packages/layout/index.js +5 -5
  126. package/packages/layout/src/item.vue +152 -152
  127. package/packages/layout/src/main.vue +31 -31
  128. package/packages/login/index.js +5 -5
  129. package/packages/login/src/main.vue +2001 -2001
  130. package/packages/login/src/resetPassword.vue +562 -562
  131. package/packages/main/index.js +5 -5
  132. package/packages/main/src/default/index.vue +6 -5
  133. package/packages/main/src/default/message.vue +249 -249
  134. package/packages/main/src/default/notice.vue +157 -157
  135. package/packages/main/src/default/userinfo.vue +503 -503
  136. package/packages/main/src/main.vue +107 -84
  137. package/packages/main/src/public/online.vue +89 -89
  138. package/packages/main/src/public/search.vue +458 -458
  139. package/packages/main/src/public/settings.vue +221 -221
  140. package/packages/main/src/simplicity/apps.vue +388 -388
  141. package/packages/main/src/simplicity/avatar.vue +82 -82
  142. package/packages/main/src/simplicity/handler.vue +259 -259
  143. package/packages/main/src/simplicity/index.vue +2102 -2099
  144. package/packages/main/src/simplicity/lists.vue +84 -84
  145. package/packages/main/src/simplicity/menu-list.vue +135 -135
  146. package/packages/main/src/simplicity/message.vue +259 -259
  147. package/packages/main/src/simplicity/notice.vue +190 -190
  148. package/packages/main/src/simplicity/router-page.vue +45 -45
  149. package/packages/main/src/simplicity/sub-menu.vue +264 -264
  150. package/packages/main/src/simplicity/user.vue +260 -260
  151. package/packages/main/src/simplicity/userinfo.vue +312 -312
  152. package/packages/menu/index.js +5 -5
  153. package/packages/menu/src/main.vue +584 -584
  154. package/packages/nav/index.js +5 -5
  155. package/packages/nav/src/main.vue +351 -351
  156. package/packages/notify/index.js +5 -5
  157. package/packages/notify/src/main.vue +538 -538
  158. package/packages/page/index.js +5 -5
  159. package/packages/page/src/main.vue +167 -167
  160. package/packages/pagination/index.js +5 -5
  161. package/packages/pagination/src/main.vue +96 -96
  162. package/packages/player/index.js +5 -5
  163. package/packages/player/src/main.vue +194 -194
  164. package/packages/qr-code/index.js +5 -5
  165. package/packages/qr-code/src/main.vue +170 -170
  166. package/packages/radio-group/index.js +6 -6
  167. package/packages/radio-group/src/main.vue +319 -319
  168. package/packages/retrial-auth/index.js +5 -5
  169. package/packages/retrial-auth/src/main.vue +280 -280
  170. package/packages/select/index.js +5 -5
  171. package/packages/select/src/main.vue +778 -778
  172. package/packages/select-ganged/index.js +5 -5
  173. package/packages/select-ganged/src/main.vue +724 -724
  174. package/packages/selector/index.js +5 -5
  175. package/packages/selector/src/main.vue +729 -729
  176. package/packages/selector-panel/index.js +5 -5
  177. package/packages/selector-panel/src/main.vue +1027 -1027
  178. package/packages/selector-panel/src/selection.vue +170 -170
  179. package/packages/selector-panel/src/tree.vue +129 -129
  180. package/packages/sizer/index.js +5 -5
  181. package/packages/sizer/src/main.vue +254 -254
  182. package/packages/steps/index.js +5 -5
  183. package/packages/steps/src/main.vue +181 -181
  184. package/packages/switch/index.js +5 -5
  185. package/packages/switch/src/main.vue +154 -154
  186. package/packages/table-form/index.js +5 -5
  187. package/packages/tabs/index.js +5 -5
  188. package/packages/tabs/src/main.vue +788 -788
  189. package/packages/tabs-panel/index.js +5 -5
  190. package/packages/tabs-panel/src/main.vue +29 -29
  191. package/packages/theme-chalk/lib/flow.css +1 -1
  192. package/packages/theme-chalk/lib/form.css +1 -1
  193. package/packages/theme-chalk/lib/index.css +1 -1
  194. package/packages/theme-chalk/src/base.scss +261 -261
  195. package/packages/theme-chalk/src/button-group.scss +176 -176
  196. package/packages/theme-chalk/src/button.scss +24 -24
  197. package/packages/theme-chalk/src/calendar.scss +113 -113
  198. package/packages/theme-chalk/src/card.scss +99 -99
  199. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  200. package/packages/theme-chalk/src/clients.scss +87 -87
  201. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  202. package/packages/theme-chalk/src/data-table.scss +293 -293
  203. package/packages/theme-chalk/src/date-picker.scss +7 -7
  204. package/packages/theme-chalk/src/dialog.scss +77 -77
  205. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  206. package/packages/theme-chalk/src/enterprise.scss +5 -5
  207. package/packages/theme-chalk/src/error-page.scss +18 -18
  208. package/packages/theme-chalk/src/flow-group.scss +110 -110
  209. package/packages/theme-chalk/src/flow-list.scss +39 -39
  210. package/packages/theme-chalk/src/flow.scss +348 -343
  211. package/packages/theme-chalk/src/form.scss +499 -496
  212. package/packages/theme-chalk/src/handle-user.scss +40 -40
  213. package/packages/theme-chalk/src/handler.scss +143 -143
  214. package/packages/theme-chalk/src/icon.scss +1792 -1792
  215. package/packages/theme-chalk/src/icons.scss +99 -99
  216. package/packages/theme-chalk/src/input.scss +9 -9
  217. package/packages/theme-chalk/src/label.scss +24 -24
  218. package/packages/theme-chalk/src/layout.scss +46 -46
  219. package/packages/theme-chalk/src/login.scss +984 -984
  220. package/packages/theme-chalk/src/main.scss +663 -663
  221. package/packages/theme-chalk/src/menu.scss +222 -222
  222. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  223. package/packages/theme-chalk/src/nav.scss +111 -111
  224. package/packages/theme-chalk/src/page.scss +3 -3
  225. package/packages/theme-chalk/src/pagination.scss +29 -29
  226. package/packages/theme-chalk/src/player.scss +9 -9
  227. package/packages/theme-chalk/src/qr-code.scss +17 -17
  228. package/packages/theme-chalk/src/radio-group.scss +9 -9
  229. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  230. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  231. package/packages/theme-chalk/src/select.scss +8 -8
  232. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  233. package/packages/theme-chalk/src/selector.scss +91 -91
  234. package/packages/theme-chalk/src/simplicity.scss +1355 -1355
  235. package/packages/theme-chalk/src/sizer.scss +36 -36
  236. package/packages/theme-chalk/src/steps.scss +88 -88
  237. package/packages/theme-chalk/src/switch.scss +3 -3
  238. package/packages/theme-chalk/src/table-form.scss +1 -1
  239. package/packages/theme-chalk/src/tabs.scss +87 -87
  240. package/packages/theme-chalk/src/tips.scss +7 -7
  241. package/packages/theme-chalk/src/toolbar.scss +179 -179
  242. package/packages/theme-chalk/src/tree-group.scss +72 -72
  243. package/packages/theme-chalk/src/tree.scss +165 -165
  244. package/packages/theme-chalk/src/upload.scss +172 -172
  245. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  246. package/packages/tips/index.js +5 -5
  247. package/packages/tips/src/main.vue +141 -141
  248. package/packages/toolbar/index.js +5 -5
  249. package/packages/toolbar/src/main.vue +430 -430
  250. package/packages/tree/index.js +5 -5
  251. package/packages/tree-group/index.js +5 -5
  252. package/packages/upload/index.js +5 -5
  253. package/packages/upload/src/main.vue +1348 -1348
  254. package/packages/upload/src/picture.js +15 -15
  255. package/packages/wujie/index.js +5 -5
  256. package/packages/wujie/src/main.vue +145 -145
  257. package/packages/wxlogin/index.js +5 -5
  258. package/packages/wxlogin/src/main.vue +128 -128
  259. package/src/config/api.js +294 -294
  260. package/src/config/image.js +2 -2
  261. package/src/index.js +163 -163
  262. package/src/utils/bus.js +3 -3
  263. package/src/utils/date-util.js +312 -312
  264. package/src/utils/http.js +50 -50
  265. package/src/utils/rules.js +18 -18
  266. package/src/utils/store.js +21 -21
  267. package/src/utils/util.js +39 -3
  268. package/src/utils/webSocket.js +107 -107
  269. package/packages/.DS_Store +0 -0
  270. package/packages/autocomplete/.DS_Store +0 -0
  271. package/packages/calogin/.DS_Store +0 -0
  272. package/packages/date-picker/.DS_Store +0 -0
  273. package/packages/date-picker/src/.DS_Store +0 -0
  274. package/packages/flow/.DS_Store +0 -0
  275. package/packages/flow-list/.DS_Store +0 -0
  276. package/packages/form/.DS_Store +0 -0
  277. package/packages/login/.DS_Store +0 -0
  278. package/packages/login/src/IcpItem.vue +0 -66
  279. package/packages/main/.DS_Store +0 -0
  280. package/packages/main/src/.DS_Store +0 -0
  281. package/packages/menu/.DS_Store +0 -0
  282. package/packages/scrollbar/.DS_Store +0 -0
  283. package/packages/select/.DS_Store +0 -0
  284. package/packages/selector/.DS_Store +0 -0
  285. package/packages/selector-panel/.DS_Store +0 -0
  286. package/packages/theme-chalk/src/.DS_Store +0 -0
  287. package/packages/upload/.DS_Store +0 -0
  288. package/src/.DS_Store +0 -0
  289. package/src/utils/.DS_Store +0 -0
package/lib/flow.js CHANGED
@@ -122,8 +122,8 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
122
122
  **/
123
123
 
124
124
  /* eslint-disable indent */
125
- var sm2 = __webpack_require__(13).sm2;
126
- var lodash = __webpack_require__(12);
125
+ var sm2 = __webpack_require__(12).sm2;
126
+ var lodash = __webpack_require__(13);
127
127
 
128
128
 
129
129
 
@@ -2365,7 +2365,7 @@ var isLogined = function () {
2365
2365
  cookie = _ref11.cookie,
2366
2366
  loginPage = _ref11.loginPage,
2367
2367
  redirect = _ref11.redirect;
2368
- var quit, pathname, path, token, loadingInstance;
2368
+ var quit, pathname, path, token, loadingInstance, referrerUrl;
2369
2369
  return babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.wrap(function _callee$(_context) {
2370
2370
  while (1) {
2371
2371
  switch (_context.prev = _context.next) {
@@ -2493,7 +2493,14 @@ var isLogined = function () {
2493
2493
  if (loginPage) {
2494
2494
  win.top.location.replace(loginPage);
2495
2495
  } else if (document.referrer) {
2496
- win.top.location.replace(document.referrer);
2496
+ var referrerUrl = new URL(document.referrer);
2497
+ if (referrerUrl.host !== win.top.location.host) {
2498
+ win.top.location.replace(document.referrer);
2499
+ } else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
2500
+ win.top.location.href = './login.html';
2501
+ } else {
2502
+ next('/login');
2503
+ }
2497
2504
  } else if (win.top.location.href.indexOf('main.html') > -1) {
2498
2505
  win.top.location.href = './login.html';
2499
2506
  } else {
@@ -2516,7 +2523,14 @@ var isLogined = function () {
2516
2523
  if (loginPage) {
2517
2524
  win.top.location.replace(loginPage);
2518
2525
  } else if (document.referrer) {
2519
- win.top.location.replace(document.referrer);
2526
+ var referrerUrl = new URL(document.referrer);
2527
+ if (referrerUrl.host !== win.top.location.host) {
2528
+ win.top.location.replace(document.referrer);
2529
+ } else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
2530
+ win.top.location.href = './login.html';
2531
+ } else {
2532
+ next('/login');
2533
+ }
2520
2534
  } else if (win.top.location.href.indexOf('main.html') > -1) {
2521
2535
  win.top.location.href = './login.html';
2522
2536
  } else {
@@ -2549,7 +2563,15 @@ var isLogined = function () {
2549
2563
  if (loginPage) {
2550
2564
  win.top.location.replace(loginPage);
2551
2565
  } else if (document.referrer) {
2552
- win.top.location.replace(document.referrer);
2566
+ referrerUrl = new URL(document.referrer);
2567
+
2568
+ if (referrerUrl.host !== win.top.location.host) {
2569
+ win.top.location.replace(document.referrer);
2570
+ } else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
2571
+ win.top.location.href = './login.html';
2572
+ } else {
2573
+ next('/login');
2574
+ }
2553
2575
  } else if (win.top.location.href.indexOf('main.html') > -1) {
2554
2576
  win.top.location.href = './login.html';
2555
2577
  } else {
@@ -4240,13 +4262,13 @@ module.exports = require("ua-parser-js");
4240
4262
  /* 12 */
4241
4263
  /***/ (function(module, exports) {
4242
4264
 
4243
- module.exports = require("lodash");
4265
+ module.exports = require("sm-crypto");
4244
4266
 
4245
4267
  /***/ }),
4246
4268
  /* 13 */
4247
4269
  /***/ (function(module, exports) {
4248
4270
 
4249
- module.exports = require("sm-crypto");
4271
+ module.exports = require("lodash");
4250
4272
 
4251
4273
  /***/ }),
4252
4274
  /* 14 */,
@@ -4447,7 +4469,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4447
4469
  // ESM COMPAT FLAG
4448
4470
  __webpack_require__.r(__webpack_exports__);
4449
4471
 
4450
- // 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=89ea98c6&
4472
+ // 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=1ebfbd3f&
4451
4473
  var render = function () {
4452
4474
  var _vm = this
4453
4475
  var _h = _vm.$createElement
@@ -4464,6 +4486,13 @@ var render = function () {
4464
4486
  _vm.showCirculate
4465
4487
  ? _c(
4466
4488
  "div",
4489
+ {
4490
+ staticStyle: {
4491
+ height: "100%",
4492
+ display: "flex",
4493
+ "flex-direction": "column",
4494
+ },
4495
+ },
4467
4496
  [
4468
4497
  _c("div", { staticClass: "es-flow-top" }, [
4469
4498
  _c(
@@ -4547,6 +4576,7 @@ var render = function () {
4547
4576
  attrs: {
4548
4577
  opinion: _vm.value,
4549
4578
  rows: _vm.rows,
4579
+ placeholder: _vm.pendingItemHandleDescription,
4550
4580
  required: _vm.isOpinionRequired == 1,
4551
4581
  isBanInputOpinion: _vm.isBanInputOpinion,
4552
4582
  nodeFixedOpinionSelectList:
@@ -4559,93 +4589,106 @@ var render = function () {
4559
4589
  },
4560
4590
  }),
4561
4591
  _c(
4562
- "el-form",
4592
+ "div",
4563
4593
  {
4564
- ref: "form",
4565
- attrs: {
4566
- model: _vm.circulateForm,
4567
- "label-width": "120px",
4568
- "label-position": _vm.formLabelPosition,
4569
- },
4594
+ class:
4595
+ "es-info " +
4596
+ (_vm.formLabelPosition == "left" ? "form-left" : ""),
4570
4597
  },
4571
4598
  [
4572
4599
  _c(
4573
- "el-form-item",
4600
+ "el-form",
4574
4601
  {
4575
- staticStyle: { "margin-top": "20px" },
4576
- attrs: { prop: "nextNodeId", label: "下步节点" },
4602
+ ref: "form",
4603
+ attrs: {
4604
+ model: _vm.circulateForm,
4605
+ "label-width": "120px",
4606
+ "label-position": _vm.formLabelPosition,
4607
+ },
4577
4608
  },
4578
4609
  [
4579
- _vm.nextNodeCheckType == "select"
4580
- ? _c(
4581
- "el-select",
4582
- {
4583
- staticStyle: { width: "100% !important" },
4584
- attrs: { placeholder: "请选择下步节点" },
4585
- model: {
4586
- value: _vm.circulateForm.nextNodeId,
4587
- callback: function ($$v) {
4588
- _vm.$set(
4589
- _vm.circulateForm,
4590
- "nextNodeId",
4591
- $$v
4592
- )
4610
+ _c(
4611
+ "el-form-item",
4612
+ {
4613
+ staticStyle: { "margin-top": "20px" },
4614
+ attrs: { prop: "nextNodeId", label: "下步节点" },
4615
+ },
4616
+ [
4617
+ _vm.nextNodeCheckType == "select"
4618
+ ? _c(
4619
+ "el-select",
4620
+ {
4621
+ staticStyle: { width: "100% !important" },
4622
+ attrs: { placeholder: "请选择下步节点" },
4623
+ model: {
4624
+ value: _vm.circulateForm.nextNodeId,
4625
+ callback: function ($$v) {
4626
+ _vm.$set(
4627
+ _vm.circulateForm,
4628
+ "nextNodeId",
4629
+ $$v
4630
+ )
4631
+ },
4632
+ expression: "circulateForm.nextNodeId",
4633
+ },
4593
4634
  },
4594
- expression: "circulateForm.nextNodeId",
4595
- },
4596
- },
4597
- [
4598
- _c("el-option", {
4599
- attrs: { label: "传阅", value: "111" },
4600
- }),
4601
- ],
4602
- 1
4603
- )
4604
- : _vm.nextNodeCheckType == "radio"
4605
- ? _c("es-radio-group", {
4606
- attrs: {
4607
- data: [{ nodeId: "111", nodeName: "传阅" }],
4608
- "value-key": "nodeId",
4609
- "label-key": "nodeName",
4610
- },
4611
- model: {
4612
- value: _vm.circulateForm.nextNodeId,
4613
- callback: function ($$v) {
4614
- _vm.$set(
4615
- _vm.circulateForm,
4616
- "nextNodeId",
4617
- $$v
4618
- )
4619
- },
4620
- expression: "circulateForm.nextNodeId",
4621
- },
4622
- })
4623
- : _vm._e(),
4635
+ [
4636
+ _c("el-option", {
4637
+ attrs: { label: "传阅", value: "111" },
4638
+ }),
4639
+ ],
4640
+ 1
4641
+ )
4642
+ : _vm.nextNodeCheckType == "radio"
4643
+ ? _c("es-radio-group", {
4644
+ attrs: {
4645
+ data: [
4646
+ { nodeId: "111", nodeName: "传阅" },
4647
+ ],
4648
+ "value-key": "nodeId",
4649
+ "label-key": "nodeName",
4650
+ },
4651
+ model: {
4652
+ value: _vm.circulateForm.nextNodeId,
4653
+ callback: function ($$v) {
4654
+ _vm.$set(
4655
+ _vm.circulateForm,
4656
+ "nextNodeId",
4657
+ $$v
4658
+ )
4659
+ },
4660
+ expression: "circulateForm.nextNodeId",
4661
+ },
4662
+ })
4663
+ : _vm._e(),
4664
+ ],
4665
+ 1
4666
+ ),
4624
4667
  ],
4625
4668
  1
4626
4669
  ),
4670
+ _c("circulate", {
4671
+ ref: "circulate",
4672
+ staticStyle: { "margin-top": "10px" },
4673
+ attrs: {
4674
+ businessId: _vm.businessIds,
4675
+ "label-position": _vm.formLabelPosition,
4676
+ selectorParams: _vm.params,
4677
+ "pending-id": _vm.pendingId,
4678
+ showBtn: false,
4679
+ processDefinitionId: _vm.nodeInfo.nextNode,
4680
+ simpleTips: _vm.simpleTips,
4681
+ oldOption: _vm.value,
4682
+ },
4683
+ on: {
4684
+ cancel: function ($event) {
4685
+ _vm.closeProcess($event, "circulateVisible")
4686
+ },
4687
+ },
4688
+ }),
4627
4689
  ],
4628
4690
  1
4629
4691
  ),
4630
- _c("circulate", {
4631
- ref: "circulate",
4632
- staticStyle: { "margin-top": "10px" },
4633
- attrs: {
4634
- businessId: _vm.businessIds,
4635
- "label-position": _vm.formLabelPosition,
4636
- selectorParams: _vm.params,
4637
- "pending-id": _vm.pendingId,
4638
- showBtn: false,
4639
- processDefinitionId: _vm.nodeInfo.nextNode,
4640
- simpleTips: _vm.simpleTips,
4641
- oldOption: _vm.value,
4642
- },
4643
- on: {
4644
- cancel: function ($event) {
4645
- _vm.closeProcess($event, "circulateVisible")
4646
- },
4647
- },
4648
- }),
4649
4692
  _c(
4650
4693
  "el-button",
4651
4694
  {
@@ -4672,6 +4715,7 @@ var render = function () {
4672
4715
  simpleTips: _vm.simpleTips,
4673
4716
  typeCode: "read",
4674
4717
  param: _vm.param,
4718
+ selectorConfig: _vm.selectorConfig,
4675
4719
  resetAppId: _vm.resetAppId,
4676
4720
  taskExamine: _vm.taskExamineInfo,
4677
4721
  "news-info": _vm.nextNode.notificationMsg,
@@ -4838,6 +4882,9 @@ var render = function () {
4838
4882
  attrs: {
4839
4883
  opinion: _vm.value,
4840
4884
  rows: _vm.rows,
4885
+ pendingItemHandleDescription:
4886
+ _vm.pendingItemHandleDescription,
4887
+ placeholder: _vm.pendingItemHandleDescription,
4841
4888
  required: _vm.isOpinionRequired == 1,
4842
4889
  isBanInputOpinion: _vm.isBanInputOpinion,
4843
4890
  nodeFixedOpinionSelectList:
@@ -4955,7 +5002,9 @@ var render = function () {
4955
5002
  },
4956
5003
  ],
4957
5004
  ref: "esContent",
4958
- staticClass: "es-info",
5005
+ class:
5006
+ "es-info " +
5007
+ (_vm.formLabelPosition == "left" ? "form-left" : ""),
4959
5008
  },
4960
5009
  [
4961
5010
  _c(
@@ -4965,7 +5014,10 @@ var render = function () {
4965
5014
  staticClass: "demo-dynamic",
4966
5015
  attrs: {
4967
5016
  model: _vm.isFlow ? _vm.nodeInfo : _vm.nextNode,
4968
- "label-width": "120px",
5017
+ "label-width":
5018
+ _vm.startFlowPageEmbeddedIntoStartFlowIndex
5019
+ ? "100px"
5020
+ : "120px",
4969
5021
  "label-position": _vm.formLabelPosition,
4970
5022
  },
4971
5023
  },
@@ -5031,7 +5083,9 @@ var render = function () {
5031
5083
  key: items.id,
5032
5084
  attrs: {
5033
5085
  label: items.name,
5034
- disabled: items.disabled,
5086
+ disabled:
5087
+ _vm.flowListDisabled ||
5088
+ items.disabled,
5035
5089
  value: items.processDefId,
5036
5090
  },
5037
5091
  })
@@ -6091,6 +6145,50 @@ var render = function () {
6091
6145
  1
6092
6146
  )
6093
6147
  : _vm._e(),
6148
+ _vm.currentNodeEnableItemHandleDescription &&
6149
+ !_vm.isReject &&
6150
+ _vm.nodeInfos.length != 0 &&
6151
+ _vm.isShowNode &&
6152
+ _vm.isNextUser
6153
+ ? _c(
6154
+ "el-form-item",
6155
+ {
6156
+ attrs: {
6157
+ prop: "handleExplain",
6158
+ label: "下步说明",
6159
+ },
6160
+ },
6161
+ [
6162
+ _c("el-input", {
6163
+ attrs: {
6164
+ placeholder:
6165
+ "请输入下步说明",
6166
+ type: "textarea",
6167
+ autosize: {
6168
+ minRows: 2,
6169
+ },
6170
+ },
6171
+ model: {
6172
+ value:
6173
+ _vm.nextNode
6174
+ .nextItemHandleDescription,
6175
+ callback: function (
6176
+ $$v
6177
+ ) {
6178
+ _vm.$set(
6179
+ _vm.nextNode,
6180
+ "nextItemHandleDescription",
6181
+ $$v
6182
+ )
6183
+ },
6184
+ expression:
6185
+ "nextNode.nextItemHandleDescription",
6186
+ },
6187
+ }),
6188
+ ],
6189
+ 1
6190
+ )
6191
+ : _vm._e(),
6094
6192
  ],
6095
6193
  1
6096
6194
  ),
@@ -6155,6 +6253,68 @@ var render = function () {
6155
6253
  ],
6156
6254
  1
6157
6255
  ),
6256
+ _vm.isFlow &&
6257
+ _vm.nodeInfo.nextNode &&
6258
+ _vm.startFlowPageEmbeddedIntoStartFlowIndex &&
6259
+ !_vm.directCreateCircularReadWhenFlowStarted
6260
+ ? _c("ProcessForm", {
6261
+ ref: "processFormIndex",
6262
+ attrs: {
6263
+ id:
6264
+ _vm.freeStartFlowParams.startFlowBusinessId ||
6265
+ _vm.businessIds,
6266
+ simpleTips: _vm.simpleTips,
6267
+ "is-free-start-flow":
6268
+ _vm.freeStartFlowParams.useScene ===
6269
+ "multiInsMidwayWithSubmitScene",
6270
+ "label-position": _vm.formLabelPosition,
6271
+ showBtn: false,
6272
+ "copy-history":
6273
+ _vm.freeStartFlowParams.pendedHistoryHandle,
6274
+ "process-definition-id":
6275
+ _vm.freeStartFlowNextNode ||
6276
+ _vm.nodeInfo.nextNode,
6277
+ opinion: _vm.value,
6278
+ taskExamineParam:
6279
+ _vm.freeStartFlowParams
6280
+ .newFlowStartNodeItemName,
6281
+ taskParams: _vm.taskParams,
6282
+ formType: _vm.processFormType,
6283
+ },
6284
+ on: {
6285
+ cancel: function ($event) {
6286
+ _vm.closeProcess(
6287
+ $event,
6288
+ "handleVisible",
6289
+ _vm.closeParent
6290
+ )
6291
+ },
6292
+ },
6293
+ })
6294
+ : _vm.isFlow &&
6295
+ _vm.nodeInfo.nextNode &&
6296
+ _vm.startFlowPageEmbeddedIntoStartFlowIndex &&
6297
+ _vm.directCreateCircularReadWhenFlowStarted
6298
+ ? _c("circulate", {
6299
+ ref: "flowCirculate",
6300
+ attrs: {
6301
+ "label-position": _vm.formLabelPosition,
6302
+ businessId: _vm.businessId,
6303
+ startFlowPageEmbeddedIntoStartFlowIndex:
6304
+ _vm.startFlowPageEmbeddedIntoStartFlowIndex,
6305
+ processDefinitionId: _vm.nodeInfo.nextNode,
6306
+ simpleTips: _vm.simpleTips,
6307
+ showBtn: false,
6308
+ selectorParams: _vm.params,
6309
+ oldOption: _vm.value,
6310
+ },
6311
+ on: {
6312
+ cancel: function ($event) {
6313
+ _vm.closeProcess($event, "circulateVisible")
6314
+ },
6315
+ },
6316
+ })
6317
+ : _vm._e(),
6158
6318
  !_vm.isFlow && _vm.isSpecial
6159
6319
  ? _c(
6160
6320
  "div",
@@ -6936,6 +7096,7 @@ var render = function () {
6936
7096
  "pending-id": _vm.pendingId,
6937
7097
  opinion: _vm.value,
6938
7098
  type: _vm.taskReadType,
7099
+ selectorConfig: _vm.selectorConfig,
6939
7100
  simpleTips: _vm.simpleTips,
6940
7101
  taskExamine: _vm.taskExamineInfo,
6941
7102
  "news-info": _vm.nextNode.notificationMsg,
@@ -7124,14 +7285,14 @@ var staticRenderFns = []
7124
7285
  render._withStripped = true
7125
7286
 
7126
7287
 
7127
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=89ea98c6&
7288
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=1ebfbd3f&
7128
7289
 
7129
7290
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
7130
7291
  var regenerator_ = __webpack_require__(4);
7131
7292
  var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator_);
7132
7293
 
7133
- // 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&
7134
- var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
7294
+ // 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=19364a89&
7295
+ var CommonOpinionsvue_type_template_id_19364a89_render = function () {
7135
7296
  var _vm = this
7136
7297
  var _h = _vm.$createElement
7137
7298
  var _c = _vm._self._c || _h
@@ -7154,23 +7315,44 @@ var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
7154
7315
  "el-form-item",
7155
7316
  { attrs: { label: "", prop: "value" } },
7156
7317
  [
7157
- _c("el-input", {
7158
- attrs: {
7159
- disabled: _vm.isBanInputOpinion == "1" || _vm.disabled,
7160
- type: "textarea",
7161
- clear: "inp",
7162
- placeholder: "请输入意见",
7163
- rows: _vm.rows,
7164
- },
7165
- on: { change: _vm.changeOpinion },
7166
- model: {
7167
- value: _vm.form.value,
7168
- callback: function ($$v) {
7169
- _vm.$set(_vm.form, "value", $$v)
7318
+ _c(
7319
+ "el-tooltip",
7320
+ {
7321
+ attrs: {
7322
+ disabled:
7323
+ _vm.tooltipDisabled || !_vm.pendingItemHandleDescription,
7324
+ placement: "top",
7170
7325
  },
7171
- expression: "form.value",
7172
7326
  },
7173
- }),
7327
+ [
7328
+ _c("div", { attrs: { slot: "content" }, slot: "content" }, [
7329
+ _vm._v(_vm._s(_vm.pendingItemHandleDescription)),
7330
+ ]),
7331
+ _c("el-input", {
7332
+ attrs: {
7333
+ disabled: _vm.isBanInputOpinion == "1" || _vm.disabled,
7334
+ type: "textarea",
7335
+ clear: "inp",
7336
+ placeholder:
7337
+ _vm.pendingItemHandleDescription || "请输入意见",
7338
+ rows: _vm.rows,
7339
+ },
7340
+ on: {
7341
+ change: _vm.changeOpinion,
7342
+ blur: _vm.handleBlur,
7343
+ focus: _vm.handleFocus,
7344
+ },
7345
+ model: {
7346
+ value: _vm.form.value,
7347
+ callback: function ($$v) {
7348
+ _vm.$set(_vm.form, "value", $$v)
7349
+ },
7350
+ expression: "form.value",
7351
+ },
7352
+ }),
7353
+ ],
7354
+ 1
7355
+ ),
7174
7356
  ],
7175
7357
  1
7176
7358
  ),
@@ -7321,11 +7503,11 @@ var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
7321
7503
  1
7322
7504
  )
7323
7505
  }
7324
- var CommonOpinionsvue_type_template_id_fdf49dec_staticRenderFns = []
7325
- CommonOpinionsvue_type_template_id_fdf49dec_render._withStripped = true
7506
+ var CommonOpinionsvue_type_template_id_19364a89_staticRenderFns = []
7507
+ CommonOpinionsvue_type_template_id_19364a89_render._withStripped = true
7326
7508
 
7327
7509
 
7328
- // CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=fdf49dec&
7510
+ // CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=19364a89&
7329
7511
 
7330
7512
  // EXTERNAL MODULE: ./src/config/api.js
7331
7513
  var api = __webpack_require__(1);
@@ -7864,6 +8046,11 @@ var _components;
7864
8046
  //
7865
8047
  //
7866
8048
  //
8049
+ //
8050
+ //
8051
+ //
8052
+ //
8053
+ //
7867
8054
 
7868
8055
 
7869
8056
 
@@ -7875,6 +8062,7 @@ var _components;
7875
8062
  data: function data() {
7876
8063
  return {
7877
8064
  value: '',
8065
+ tooltipDisabled: false,
7878
8066
  form: {
7879
8067
  value: ''
7880
8068
  },
@@ -7902,6 +8090,10 @@ var _components;
7902
8090
  type: String,
7903
8091
  default: ''
7904
8092
  },
8093
+ pendingItemHandleDescription: {
8094
+ type: String,
8095
+ default: ''
8096
+ },
7905
8097
  nodeFixedOpinionSelectList: {
7906
8098
  type: Array,
7907
8099
  default: function _default() {
@@ -7930,6 +8122,14 @@ var _components;
7930
8122
  }
7931
8123
  },
7932
8124
  methods: {
8125
+ handleBlur: function handleBlur() {
8126
+ this.$emit('blur', this.form.value);
8127
+ this.tooltipDisabled = false;
8128
+ },
8129
+ handleFocus: function handleFocus() {
8130
+ this.$emit('focus', this.form.value);
8131
+ this.tooltipDisabled = true;
8132
+ },
7933
8133
  validate: function validate() {
7934
8134
  var validSate = true;
7935
8135
  this.$refs.ruleForm.validate(function (valid) {
@@ -7942,21 +8142,21 @@ var _components;
7942
8142
  return validSate;
7943
8143
  },
7944
8144
 
7945
- /**
7946
- * changeOpinion
7947
- * @desc:监听意见变化
7948
- * @author liufan
7949
- * @date 2022年10月28日
8145
+ /**
8146
+ * changeOpinion
8147
+ * @desc:监听意见变化
8148
+ * @author liufan
8149
+ * @date 2022年10月28日
7950
8150
  **/
7951
8151
  changeOpinion: function changeOpinion() {
7952
8152
  this.$emit('change', this.form.value);
7953
8153
  },
7954
8154
 
7955
- /**
7956
- * getCommonOpion
7957
- * @desc:获取意见
7958
- * @author liufan
7959
- * @date 2022年5月25日
8155
+ /**
8156
+ * getCommonOpion
8157
+ * @desc:获取意见
8158
+ * @author liufan
8159
+ * @date 2022年5月25日
7960
8160
  **/
7961
8161
  getCommonOpion: function getCommonOpion() {
7962
8162
  var _this = this;
@@ -7985,24 +8185,24 @@ var _components;
7985
8185
  });
7986
8186
  },
7987
8187
 
7988
- /**
7989
- * upDate
7990
- * @desc:修改常用语
7991
- * @author liufan
7992
- * @param {Object} val 修改值
7993
- * @date 2022年5月25日
8188
+ /**
8189
+ * upDate
8190
+ * @desc:修改常用语
8191
+ * @author liufan
8192
+ * @param {Object} val 修改值
8193
+ * @date 2022年5月25日
7994
8194
  **/
7995
8195
  upDate: function upDate(val) {
7996
8196
  this.FormData.id = val.id;
7997
8197
  this.addVisible = true;
7998
8198
  },
7999
8199
 
8000
- /**
8001
- * selectChange
8002
- * @desc:常用语选择
8003
- * @author liufan
8004
- * @param {String} val 选中值
8005
- * @date 2022年5月25日
8200
+ /**
8201
+ * selectChange
8202
+ * @desc:常用语选择
8203
+ * @author liufan
8204
+ * @param {String} val 选中值
8205
+ * @date 2022年5月25日
8006
8206
  **/
8007
8207
  selectChange: function selectChange(val) {
8008
8208
  var _this2 = this;
@@ -8021,12 +8221,12 @@ var _components;
8021
8221
  });
8022
8222
  },
8023
8223
 
8024
- /**
8025
- * del
8026
- * @desc:删除常用语
8027
- * @author liufan
8028
- * @param {Object} val 删除的数据
8029
- * @date 2022年5月25日
8224
+ /**
8225
+ * del
8226
+ * @desc:删除常用语
8227
+ * @author liufan
8228
+ * @param {Object} val 删除的数据
8229
+ * @date 2022年5月25日
8030
8230
  **/
8031
8231
  del: function del(val) {
8032
8232
  var _this3 = this;
@@ -8068,12 +8268,12 @@ var _components;
8068
8268
  }).catch(function (e) {});
8069
8269
  },
8070
8270
 
8071
- /**
8072
- * submit
8073
- * @desc:新增/编辑意见保存
8074
- * @author liufan
8075
- * @param {Object} val 保存数据
8076
- * @date 2022年5月25日
8271
+ /**
8272
+ * submit
8273
+ * @desc:新增/编辑意见保存
8274
+ * @author liufan
8275
+ * @param {Object} val 保存数据
8276
+ * @date 2022年5月25日
8077
8277
  **/
8078
8278
  submit: function submit(val) {
8079
8279
  var _this4 = this;
@@ -8128,8 +8328,8 @@ var _components;
8128
8328
 
8129
8329
  var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
8130
8330
  component_CommonOpinionsvue_type_script_lang_js_,
8131
- CommonOpinionsvue_type_template_id_fdf49dec_render,
8132
- CommonOpinionsvue_type_template_id_fdf49dec_staticRenderFns,
8331
+ CommonOpinionsvue_type_template_id_19364a89_render,
8332
+ CommonOpinionsvue_type_template_id_19364a89_staticRenderFns,
8133
8333
  false,
8134
8334
  null,
8135
8335
  null,
@@ -8138,8 +8338,8 @@ var CommonOpinions_component = Object(componentNormalizer["a" /* default */])(
8138
8338
  )
8139
8339
 
8140
8340
  /* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
8141
- // 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=39873a24&
8142
- var processFormvue_type_template_id_39873a24_render = function () {
8341
+ // 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=972ab99a&
8342
+ var processFormvue_type_template_id_972ab99a_render = function () {
8143
8343
  var _vm = this
8144
8344
  var _h = _vm.$createElement
8145
8345
  var _c = _vm._self._c || _h
@@ -8170,18 +8370,17 @@ var processFormvue_type_template_id_39873a24_render = function () {
8170
8370
  attrs: {
8171
8371
  model: _vm.nextNode,
8172
8372
  "label-width": "100px",
8173
- "label-position": "left",
8373
+ "label-position": _vm.labelPosition,
8174
8374
  },
8175
8375
  },
8176
8376
  [
8177
8377
  _c(
8178
8378
  "div",
8179
8379
  {
8180
- staticStyle: {
8181
- height: "430px",
8182
- "overflow-y": "auto",
8183
- "margin-bottom": "10px",
8184
- },
8380
+ style:
8381
+ "height:" +
8382
+ (_vm.showBtn ? "430px" : "auto") +
8383
+ "; overflow-y: auto; margin-bottom: 10px",
8185
8384
  },
8186
8385
  [
8187
8386
  _c(
@@ -8264,27 +8463,49 @@ var processFormvue_type_template_id_39873a24_render = function () {
8264
8463
  },
8265
8464
  },
8266
8465
  [
8267
- _c(
8268
- "el-select",
8269
- {
8270
- attrs: { placeholder: "请选择下步操作" },
8271
- on: { change: _vm.selecNext },
8272
- model: {
8273
- value: _vm.nextNode.nextOperate,
8274
- callback: function ($$v) {
8275
- _vm.$set(_vm.nextNode, "nextOperate", $$v)
8466
+ _vm.nextOperateCheckType == "select"
8467
+ ? _c(
8468
+ "el-select",
8469
+ {
8470
+ attrs: { placeholder: "请选择下步操作" },
8471
+ on: { change: _vm.selecNext },
8472
+ model: {
8473
+ value: _vm.nextNode.nextOperate,
8474
+ callback: function ($$v) {
8475
+ _vm.$set(_vm.nextNode, "nextOperate", $$v)
8476
+ },
8477
+ expression: "nextNode.nextOperate",
8478
+ },
8479
+ },
8480
+ _vm._l(_vm.operationList, function (items) {
8481
+ return _c("el-option", {
8482
+ key: items.key,
8483
+ attrs: { label: items.value, value: items.key },
8484
+ })
8485
+ }),
8486
+ 1
8487
+ )
8488
+ : _vm.nextOperateCheckType == "radio"
8489
+ ? _c("es-radio-group", {
8490
+ attrs: {
8491
+ data: _vm.operationList,
8492
+ "value-key": "key",
8493
+ "label-key": "value",
8494
+ },
8495
+ on: {
8496
+ change: function ($event) {
8497
+ _vm.selecNext($event, true)
8498
+ },
8499
+ },
8500
+ model: {
8501
+ value: _vm.nextNode.nextOperate,
8502
+ callback: function ($$v) {
8503
+ _vm.$set(_vm.nextNode, "nextOperate", $$v)
8504
+ },
8505
+ expression: "nextNode.nextOperate",
8276
8506
  },
8277
- expression: "nextNode.nextOperate",
8278
- },
8279
- },
8280
- _vm._l(_vm.operationList, function (items) {
8281
- return _c("el-option", {
8282
- key: items.key,
8283
- attrs: { label: items.value, value: items.key },
8284
8507
  })
8285
- }),
8286
- 1
8287
- ),
8508
+ : _vm._e(),
8288
8509
  ],
8289
8510
  1
8290
8511
  )
@@ -8337,6 +8558,7 @@ var processFormvue_type_template_id_39873a24_render = function () {
8337
8558
  "value-key": "nodeId",
8338
8559
  "label-key": "nodeName",
8339
8560
  },
8561
+ on: { change: _vm.changeSel },
8340
8562
  model: {
8341
8563
  value: _vm.nextNode.nextNode,
8342
8564
  callback: function ($$v) {
@@ -8716,32 +8938,46 @@ var processFormvue_type_template_id_39873a24_render = function () {
8716
8938
  ],
8717
8939
  1
8718
8940
  ),
8719
- _c("el-form-item", { staticStyle: { "margin-bottom": "0px" } }, [
8720
- _c(
8721
- "div",
8722
- { staticStyle: { "text-align": "right" } },
8723
- [
8724
- _c(
8725
- "el-button",
8726
- {
8727
- attrs: { type: "primary", size: "small" },
8728
- on: {
8729
- click: function ($event) {
8730
- _vm.subProcess("nextNode")
8941
+ _c(
8942
+ "el-form-item",
8943
+ {
8944
+ directives: [
8945
+ {
8946
+ name: "show",
8947
+ rawName: "v-show",
8948
+ value: _vm.showBtn,
8949
+ expression: "showBtn",
8950
+ },
8951
+ ],
8952
+ staticStyle: { "margin-bottom": "0px" },
8953
+ },
8954
+ [
8955
+ _c(
8956
+ "div",
8957
+ { staticStyle: { "text-align": "right" } },
8958
+ [
8959
+ _c(
8960
+ "el-button",
8961
+ {
8962
+ attrs: { type: "primary", size: "small" },
8963
+ on: {
8964
+ click: function ($event) {
8965
+ _vm.subProcess("nextNode")
8966
+ },
8731
8967
  },
8732
8968
  },
8733
- },
8734
- [_vm._v("\n 确认\n ")]
8735
- ),
8736
- _c(
8737
- "el-button",
8738
- { attrs: { size: "small" }, on: { click: _vm.quit } },
8739
- [_vm._v(" 取消 ")]
8740
- ),
8741
- ],
8742
- 1
8743
- ),
8744
- ]),
8969
+ [_vm._v("\n 确认\n ")]
8970
+ ),
8971
+ _c(
8972
+ "el-button",
8973
+ { attrs: { size: "small" }, on: { click: _vm.quit } },
8974
+ [_vm._v(" 取消 ")]
8975
+ ),
8976
+ ],
8977
+ 1
8978
+ ),
8979
+ ]
8980
+ ),
8745
8981
  ],
8746
8982
  1
8747
8983
  ),
@@ -8749,11 +8985,11 @@ var processFormvue_type_template_id_39873a24_render = function () {
8749
8985
  1
8750
8986
  )
8751
8987
  }
8752
- var processFormvue_type_template_id_39873a24_staticRenderFns = []
8753
- processFormvue_type_template_id_39873a24_render._withStripped = true
8988
+ var processFormvue_type_template_id_972ab99a_staticRenderFns = []
8989
+ processFormvue_type_template_id_972ab99a_render._withStripped = true
8754
8990
 
8755
8991
 
8756
- // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=39873a24&
8992
+ // CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=972ab99a&
8757
8993
 
8758
8994
  // 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=49031d93&
8759
8995
  var selectUservue_type_template_id_49031d93_render = function () {
@@ -10539,6 +10775,16 @@ var processFormvue_type_script_lang_js_components;
10539
10775
  //
10540
10776
  //
10541
10777
  //
10778
+ //
10779
+ //
10780
+ //
10781
+ //
10782
+ //
10783
+ //
10784
+ //
10785
+ //
10786
+ //
10787
+ //
10542
10788
 
10543
10789
 
10544
10790
 
@@ -10586,17 +10832,24 @@ var processFormvue_type_script_lang_js_components;
10586
10832
  taskExamineParam: {
10587
10833
  type: String,
10588
10834
  default: ''
10589
- }
10835
+ },
10836
+ labelPosition: {
10837
+ type: String,
10838
+ default: 'left'
10839
+ },
10840
+ showBtn: { type: Boolean, default: true }
10590
10841
  },
10591
10842
  data: function data() {
10592
10843
  return {
10593
10844
  loading: false,
10594
10845
  isCustomUser: 0,
10846
+ allLoading: null,
10595
10847
  selectUser: false,
10596
10848
  multiple: false,
10597
10849
  readMultiple: true,
10598
10850
  customPresetHintMessage: '', //流程预设标题
10599
10851
  nextNodeCheckType: 'select',
10852
+ nextOperateCheckType: 'select',
10600
10853
  notificationMessageReadOnly: false,
10601
10854
  readOnlyNotificationType: '',
10602
10855
  show: true,
@@ -10679,7 +10932,19 @@ var processFormvue_type_script_lang_js_components;
10679
10932
 
10680
10933
  watch: {
10681
10934
  processDefinitionId: function processDefinitionId(val) {
10935
+ Object.assign(this.$data, this.$options.data());
10936
+ this.getUserInfo();
10937
+ this.getNodeType();
10682
10938
  this.getStartFlow(val);
10939
+ if (this.copyHistory) {
10940
+ this.nextNode.newOpinion = this.opinion;
10941
+ } else if (this.formType != 'readTransfer') {
10942
+ this.newOpinion = this.opinion;
10943
+ }
10944
+ // this.getStartFlow(val);
10945
+ },
10946
+ opinion: function opinion(val) {
10947
+ this.newOpinion = this.opinion;
10683
10948
  }
10684
10949
  },
10685
10950
  computed: {
@@ -10804,7 +11069,11 @@ var processFormvue_type_script_lang_js_components;
10804
11069
  this.options = [];
10805
11070
  this.selectUserList = [];
10806
11071
  this.radioList = [];
10807
- this.loading = true;
11072
+ if (this.showBtn) {
11073
+ this.loading = true;
11074
+ } else {
11075
+ this.allLoading = util["a" /* default */].loading(this.$loading, '加载中...');
11076
+ }
10808
11077
  this.nextNode.nodeInfo = this.operationList[val].list;
10809
11078
  if (this.nextNode.nodeInfo.length > 0) {
10810
11079
  this.nextNode.nextNode = this.defaultNextNode || this.nextNode.nodeInfo[0].nodeId;
@@ -10836,7 +11105,11 @@ var processFormvue_type_script_lang_js_components;
10836
11105
  _this2.nextNode.noticeList = data;
10837
11106
  }
10838
11107
  }).catch(function (err) {
10839
- _this2.loading = false;
11108
+ if (_this2.showBtn) {
11109
+ _this2.loading = false;
11110
+ } else {
11111
+ _this2.allLoading.close();
11112
+ }
10840
11113
  if (err.message && err.message !== 'canceled') {
10841
11114
  _this2.$message.error(err.message);
10842
11115
  }
@@ -10857,7 +11130,11 @@ var processFormvue_type_script_lang_js_components;
10857
11130
  _this3.nextNode.noticeInfo = res.message;
10858
11131
  }
10859
11132
  }).catch(function (err) {
10860
- _this3.loading = false;
11133
+ if (_this3.showBtn) {
11134
+ _this3.loading = false;
11135
+ } else {
11136
+ _this3.allLoading.close();
11137
+ }
10861
11138
  if (err.message && err.message !== 'canceled') {
10862
11139
  _this3.$message.error(err.message);
10863
11140
  }
@@ -10897,7 +11174,11 @@ var processFormvue_type_script_lang_js_components;
10897
11174
  return _this4.$message.warning('请选择办理对象');
10898
11175
  }
10899
11176
  }
10900
- _this4.loading = true;
11177
+ if (_this4.showBtn) {
11178
+ _this4.loading = true;
11179
+ } else {
11180
+ _this4.allLoading = util["a" /* default */].loading(_this4.$loading, '加载中...');
11181
+ }
10901
11182
  var newNextUser = [];
10902
11183
  if (_this4.multiple) {
10903
11184
  nextUser && nextUser.map(function (item) {
@@ -10931,7 +11212,9 @@ var processFormvue_type_script_lang_js_components;
10931
11212
  newParm.copyHistory = _this4.copyHistory === 'needCopyPendedHistory';
10932
11213
  newParm.startFlowParamJson = params;
10933
11214
  newParm.startFlowParamJson.businessId = _this4.id; //this.id
10934
- newParm.startFlowParamJson.taskExamineParam = { startFlowFirstNodeName: _this4.taskExamineParam };
11215
+ newParm.startFlowParamJson.taskExamineParam = {
11216
+ startFlowFirstNodeName: _this4.taskExamineParam
11217
+ };
10935
11218
  newParm.startFlowParamJson = JSON.stringify(newParm.startFlowParamJson);
10936
11219
  for (var key in _this4.taskParams) {
10937
11220
  if (Array.isArray(_this4.taskParams[key])) {
@@ -10957,7 +11240,11 @@ var processFormvue_type_script_lang_js_components;
10957
11240
  var status = res.status,
10958
11241
  message = res.message;
10959
11242
 
10960
- _this4.loading = false;
11243
+ if (_this4.showBtn) {
11244
+ _this4.loading = false;
11245
+ } else {
11246
+ _this4.allLoading.close();
11247
+ }
10961
11248
  if (status === 'success' || res.rCode == 0) {
10962
11249
  _this4.quit(true);
10963
11250
  _this4.simpleTips && _this4.$message.success('操作成功');
@@ -10965,7 +11252,11 @@ var processFormvue_type_script_lang_js_components;
10965
11252
  _this4.$message.error(message || '系统错误,请联系管理员!');
10966
11253
  }
10967
11254
  }).catch(function (err) {
10968
- _this4.loading = false;
11255
+ if (_this4.showBtn) {
11256
+ _this4.loading = false;
11257
+ } else {
11258
+ _this4.allLoading.close();
11259
+ }
10969
11260
  if (err.message && err.message !== 'canceled') {
10970
11261
  _this4.$message.error(err.message);
10971
11262
  }
@@ -10993,7 +11284,11 @@ var processFormvue_type_script_lang_js_components;
10993
11284
  countersignaturetypeText = _res$data.countersignaturetypeText,
10994
11285
  countersignaturetypeCode = _res$data.countersignaturetypeCode;
10995
11286
 
10996
- _this5.loading = false;
11287
+ if (_this5.showBtn) {
11288
+ _this5.loading = false;
11289
+ } else {
11290
+ _this5.allLoading.close();
11291
+ }
10997
11292
  if (status === 'success') {
10998
11293
  _this5.nextNode.userInfo = nextUserList;
10999
11294
  _this5.countersignaturetypeCode = countersignaturetypeCode;
@@ -11048,7 +11343,11 @@ var processFormvue_type_script_lang_js_components;
11048
11343
  }
11049
11344
  nodeId && _this5.$refs.selectUser[index].changeInfo();
11050
11345
  }).catch(function (err) {
11051
- _this5.loading = false;
11346
+ if (_this5.showBtn) {
11347
+ _this5.loading = false;
11348
+ } else {
11349
+ _this5.allLoading.close();
11350
+ }
11052
11351
  if (err.message && err.message !== 'canceled') {
11053
11352
  _this5.$message.error(err.message);
11054
11353
  }
@@ -11059,7 +11358,11 @@ var processFormvue_type_script_lang_js_components;
11059
11358
  this.options = [];
11060
11359
  this.selectUserList = [];
11061
11360
  this.radioList = [];
11062
- this.loading = true;
11361
+ if (this.showBtn) {
11362
+ this.loading = true;
11363
+ } else {
11364
+ this.allLoading = util["a" /* default */].loading(this.$loading, '加载中...');
11365
+ }
11063
11366
  this.getNodeInfos();
11064
11367
  },
11065
11368
 
@@ -11092,18 +11395,22 @@ var processFormvue_type_script_lang_js_components;
11092
11395
  _this6.$message.error(message || '系统错误,请联系管理员!');
11093
11396
  }
11094
11397
  }).catch(function (err) {
11095
- _this6.loading = false;
11398
+ if (_this6.showBtn) {
11399
+ _this6.loading = false;
11400
+ } else {
11401
+ _this6.allLoading.close();
11402
+ }
11096
11403
  if (err.message && err.message !== 'canceled') {
11097
11404
  _this6.$message.error(err.message);
11098
11405
  }
11099
11406
  });
11100
11407
  },
11101
11408
 
11102
- /**
11103
- * isMultiple
11104
- * @desc:是否多选
11105
- * @author liufan
11106
- * @date 2022年9月13日
11409
+ /**
11410
+ * isMultiple
11411
+ * @desc:是否多选
11412
+ * @author liufan
11413
+ * @date 2022年9月13日
11107
11414
  **/
11108
11415
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
11109
11416
  var multiple = false;
@@ -11142,7 +11449,11 @@ var processFormvue_type_script_lang_js_components;
11142
11449
  if (!processId) {
11143
11450
  return false;
11144
11451
  }
11145
- this.loading = true;
11452
+ if (this.showBtn) {
11453
+ this.loading = true;
11454
+ } else {
11455
+ this.allLoading = util["a" /* default */].loading(this.$loading, '加载中...');
11456
+ }
11146
11457
  this.businessId = this.id;
11147
11458
  var params = {
11148
11459
  processDefinitionId: processId, // processId || this.processDefinitionId,
@@ -11165,6 +11476,7 @@ var processFormvue_type_script_lang_js_components;
11165
11476
  _this7.quit();
11166
11477
  });
11167
11478
  data.nextNodeCheckType && (_this7.nextNodeCheckType = data.nextNodeCheckType);
11479
+ data.nextOperateCheckType && (_this7.nextOperateCheckType = data.nextOperateCheckType);
11168
11480
  _this7.customPresetHintMessage = data.customPresetHintMessage;
11169
11481
  _this7.readOnlyNotificationType = data.readOnlyNotificationType;
11170
11482
  _this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
@@ -11236,7 +11548,11 @@ var processFormvue_type_script_lang_js_components;
11236
11548
  _this7.$message.error(message || '系统错误,请联系管理员!');
11237
11549
  }
11238
11550
  }).catch(function (err) {
11239
- _this7.loading = false;
11551
+ if (_this7.showBtn) {
11552
+ _this7.loading = false;
11553
+ } else {
11554
+ _this7.allLoading.close();
11555
+ }
11240
11556
  if (err.message && err.message !== 'canceled') {
11241
11557
  _this7.$message.error(err.message);
11242
11558
  }
@@ -11256,8 +11572,8 @@ var processFormvue_type_script_lang_js_components;
11256
11572
 
11257
11573
  var processForm_component = Object(componentNormalizer["a" /* default */])(
11258
11574
  src_processFormvue_type_script_lang_js_,
11259
- processFormvue_type_template_id_39873a24_render,
11260
- processFormvue_type_template_id_39873a24_staticRenderFns,
11575
+ processFormvue_type_template_id_972ab99a_render,
11576
+ processFormvue_type_template_id_972ab99a_staticRenderFns,
11261
11577
  false,
11262
11578
  null,
11263
11579
  null,
@@ -12687,8 +13003,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
12687
13003
  )
12688
13004
 
12689
13005
  /* harmony default export */ var processReject = (processReject_component.exports);
12690
- // 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&
12691
- var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
13006
+ // 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=6faa6bf1&
13007
+ var startTaskReadvue_type_template_id_6faa6bf1_render = function () {
12692
13008
  var _vm = this
12693
13009
  var _h = _vm.$createElement
12694
13010
  var _c = _vm._self._c || _h
@@ -12787,16 +13103,18 @@ var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
12787
13103
  multiple: _vm.type != "transfer" ? _vm.multiple : false,
12788
13104
  mix: _vm.type != "transfer",
12789
13105
  selectUserList: _vm.selectUserList,
12790
- types:
12791
- _vm.type == "transfer"
12792
- ? ["employee", "persongroup"]
12793
- : [
12794
- "employee",
12795
- "enterprise",
12796
- "department",
12797
- "persongroup",
12798
- ],
13106
+ types: _vm.selectorTabs
13107
+ ? _vm.selectorTabs
13108
+ : _vm.type == "transfer"
13109
+ ? ["employee", "persongroup"]
13110
+ : [
13111
+ "employee",
13112
+ "enterprise",
13113
+ "department",
13114
+ "persongroup",
13115
+ ],
12799
13116
  tabs: _vm.tabs,
13117
+ params: _vm.selectorParams,
12800
13118
  where: { type: "user" },
12801
13119
  },
12802
13120
  on: {
@@ -13112,11 +13430,11 @@ var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
13112
13430
  1
13113
13431
  )
13114
13432
  }
13115
- var startTaskReadvue_type_template_id_f3f6be4e_staticRenderFns = []
13116
- startTaskReadvue_type_template_id_f3f6be4e_render._withStripped = true
13433
+ var startTaskReadvue_type_template_id_6faa6bf1_staticRenderFns = []
13434
+ startTaskReadvue_type_template_id_6faa6bf1_render._withStripped = true
13117
13435
 
13118
13436
 
13119
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=f3f6be4e&
13437
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=6faa6bf1&
13120
13438
 
13121
13439
  // 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&
13122
13440
  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; };
@@ -13290,6 +13608,9 @@ var startTaskReadvue_type_script_lang_js_components;
13290
13608
  //
13291
13609
  //
13292
13610
  //
13611
+ //
13612
+ //
13613
+ //
13293
13614
 
13294
13615
 
13295
13616
 
@@ -13305,6 +13626,7 @@ var startTaskReadvue_type_script_lang_js_components;
13305
13626
  option: { type: String, default: '' },
13306
13627
  typeCode: { type: String, default: '' },
13307
13628
  resetAppId: { type: String, default: '' },
13629
+ selectorConfig: { type: [Object, undefined], default: undefined },
13308
13630
  param: { type: Object, default: function _default() {} },
13309
13631
  taskExamine: { type: Object, default: function _default() {} },
13310
13632
  readParams: {
@@ -13318,6 +13640,8 @@ var startTaskReadvue_type_script_lang_js_components;
13318
13640
  newsNoice: '',
13319
13641
  readOnlyNotificationType: '',
13320
13642
  notificationMessageReadOnly: false,
13643
+ selectorTabs: null,
13644
+ selectorParams: null,
13321
13645
  nextNode: {
13322
13646
  nextUser: [],
13323
13647
  userInfo: [],
@@ -13376,9 +13700,17 @@ var startTaskReadvue_type_script_lang_js_components;
13376
13700
  if (util["a" /* default */].getStorage('mainConfig')) {
13377
13701
  this.orgId = JSON.parse(util["a" /* default */].getStorage('mainConfig')).userModel.orgId;
13378
13702
  }
13703
+ if (this.selectorConfig) {
13704
+ this.getSelectorConfig();
13705
+ }
13379
13706
  },
13380
13707
 
13381
13708
  methods: {
13709
+ getSelectorConfig: function getSelectorConfig() {
13710
+ this.selectorTabs = this.selectorConfig.type.split(',');
13711
+ this.selectorParams = this.selectorConfig.params;
13712
+ },
13713
+
13382
13714
  //获取通知信息
13383
13715
  getMessage: function getMessage() {
13384
13716
  var _this = this;
@@ -13540,7 +13872,10 @@ var startTaskReadvue_type_script_lang_js_components;
13540
13872
 
13541
13873
  var params = {
13542
13874
  url: api["bc" /* toStartTaskRead */],
13543
- params: startTaskReadvue_type_script_lang_js_extends({ pendingId: this.pendingId, taskAction: this.type }, this.param)
13875
+ params: startTaskReadvue_type_script_lang_js_extends({
13876
+ pendingId: this.pendingId,
13877
+ taskAction: this.type
13878
+ }, this.param)
13544
13879
  };
13545
13880
  if (this.typeCode == 'read') {
13546
13881
  delete params.params.pendingId;
@@ -13809,8 +14144,8 @@ var startTaskReadvue_type_script_lang_js_components;
13809
14144
 
13810
14145
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13811
14146
  src_startTaskReadvue_type_script_lang_js_,
13812
- startTaskReadvue_type_template_id_f3f6be4e_render,
13813
- startTaskReadvue_type_template_id_f3f6be4e_staticRenderFns,
14147
+ startTaskReadvue_type_template_id_6faa6bf1_render,
14148
+ startTaskReadvue_type_template_id_6faa6bf1_staticRenderFns,
13814
14149
  false,
13815
14150
  null,
13816
14151
  null,
@@ -13819,8 +14154,8 @@ var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
13819
14154
  )
13820
14155
 
13821
14156
  /* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
13822
- // 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=5d246dae&
13823
- var resetvue_type_template_id_5d246dae_render = function () {
14157
+ // 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=803e1634&
14158
+ var resetvue_type_template_id_803e1634_render = function () {
13824
14159
  var _vm = this
13825
14160
  var _h = _vm.$createElement
13826
14161
  var _c = _vm._self._c || _h
@@ -14246,11 +14581,11 @@ var resetvue_type_template_id_5d246dae_render = function () {
14246
14581
  1
14247
14582
  )
14248
14583
  }
14249
- var resetvue_type_template_id_5d246dae_staticRenderFns = []
14250
- resetvue_type_template_id_5d246dae_render._withStripped = true
14584
+ var resetvue_type_template_id_803e1634_staticRenderFns = []
14585
+ resetvue_type_template_id_803e1634_render._withStripped = true
14251
14586
 
14252
14587
 
14253
- // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=5d246dae&
14588
+ // CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=803e1634&
14254
14589
 
14255
14590
  // 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&
14256
14591
  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; };
@@ -14799,6 +15134,7 @@ var resetvue_type_script_lang_js_components;
14799
15134
  processDefinitionId: _this4.processDefinitionId,
14800
15135
  nextUserId: _this4.multiple ? newNextUser.join(',') : nextUser,
14801
15136
  nextNodeId: nextNode,
15137
+ appId: _this4.appId,
14802
15138
  nextOperate: nextOperate,
14803
15139
  businessId: _this4.taskExamine.businessId,
14804
15140
  pendingId: _this4.taskExamine.pendingId,
@@ -14978,11 +15314,11 @@ var resetvue_type_script_lang_js_components;
14978
15314
  });
14979
15315
  },
14980
15316
 
14981
- /**
14982
- * isMultiple
14983
- * @desc:是否多选
14984
- * @author liufan
14985
- * @date 2022年9月13日
15317
+ /**
15318
+ * isMultiple
15319
+ * @desc:是否多选
15320
+ * @author liufan
15321
+ * @date 2022年9月13日
14986
15322
  **/
14987
15323
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
14988
15324
  var multiple = false;
@@ -15115,8 +15451,8 @@ var resetvue_type_script_lang_js_components;
15115
15451
 
15116
15452
  var reset_component = Object(componentNormalizer["a" /* default */])(
15117
15453
  src_resetvue_type_script_lang_js_,
15118
- resetvue_type_template_id_5d246dae_render,
15119
- resetvue_type_template_id_5d246dae_staticRenderFns,
15454
+ resetvue_type_template_id_803e1634_render,
15455
+ resetvue_type_template_id_803e1634_staticRenderFns,
15120
15456
  false,
15121
15457
  null,
15122
15458
  null,
@@ -19364,11 +19700,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19364
19700
  });
19365
19701
  },
19366
19702
 
19367
- /**
19368
- * saveInfo
19369
- * @desc:暂存
19370
- * @author liufan
19371
- * @date 2022年9月9日
19703
+ /**
19704
+ * saveInfo
19705
+ * @desc:暂存
19706
+ * @author liufan
19707
+ * @date 2022年9月9日
19372
19708
  **/
19373
19709
  saveInfo: function saveInfo(type, btn) {
19374
19710
  var _this6 = this;
@@ -19430,11 +19766,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19430
19766
  });
19431
19767
  },
19432
19768
 
19433
- /**
19434
- * rejectBtn
19435
- * @desc:点击驳回
19436
- * @author liufan
19437
- * @date 2022年5月25日
19769
+ /**
19770
+ * rejectBtn
19771
+ * @desc:点击驳回
19772
+ * @author liufan
19773
+ * @date 2022年5月25日
19438
19774
  **/
19439
19775
  rejectBtn: function rejectBtn() {
19440
19776
  var _this8 = this;
@@ -19452,11 +19788,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19452
19788
  }
19453
19789
  },
19454
19790
 
19455
- /**
19456
- * taskReadBtn
19457
- * @desc:点击分阅
19458
- * @author liufan
19459
- * @date 2022年5月25日
19791
+ /**
19792
+ * taskReadBtn
19793
+ * @desc:点击分阅
19794
+ * @author liufan
19795
+ * @date 2022年5月25日
19460
19796
  **/
19461
19797
  taskReadBtn: function taskReadBtn() {
19462
19798
  var _this9 = this;
@@ -19475,11 +19811,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19475
19811
  }
19476
19812
  },
19477
19813
 
19478
- /**
19479
- * getFind
19480
- * @desc:获取通知方式
19481
- * @author liufan
19482
- * @date 2022年5月25日
19814
+ /**
19815
+ * getFind
19816
+ * @desc:获取通知方式
19817
+ * @author liufan
19818
+ * @date 2022年5月25日
19483
19819
  **/
19484
19820
  getFind: function getFind() {
19485
19821
  var _this10 = this;
@@ -19534,12 +19870,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19534
19870
  });
19535
19871
  },
19536
19872
 
19537
- /**
19538
- * endFlows
19539
- * @desc:直接办结
19540
- * @author liufan
19541
- * @param {Object} res 直接办结数据
19542
- * @date 2022年5月25日
19873
+ /**
19874
+ * endFlows
19875
+ * @desc:直接办结
19876
+ * @author liufan
19877
+ * @param {Object} res 直接办结数据
19878
+ * @date 2022年5月25日
19543
19879
  **/
19544
19880
  endFlows: function endFlows(res) {
19545
19881
  var _this12 = this;
@@ -19593,12 +19929,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19593
19929
  }).catch(function (e) {});
19594
19930
  },
19595
19931
 
19596
- /**
19597
- * goView
19598
- * @desc:更多流程按钮操作
19599
- * @author liufan
19600
- * @param {Object} res 当前点击操作按钮数据
19601
- * @date 2022年5月25日
19932
+ /**
19933
+ * goView
19934
+ * @desc:更多流程按钮操作
19935
+ * @author liufan
19936
+ * @param {Object} res 当前点击操作按钮数据
19937
+ * @date 2022年5月25日
19602
19938
  **/
19603
19939
  goView: function goView(res) {
19604
19940
  // 驳回并办结:rejectAndEndHtml
@@ -19683,11 +20019,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19683
20019
  // isCanStartSubFlow
19684
20020
  },
19685
20021
 
19686
- /**
19687
- * toTakeAdvice
19688
- * @desc:征求意见
19689
- * @author liufan
19690
- * @date 2022年9月29日
20022
+ /**
20023
+ * toTakeAdvice
20024
+ * @desc:征求意见
20025
+ * @author liufan
20026
+ * @date 2022年9月29日
19691
20027
  **/
19692
20028
  toTakeAdvice: function toTakeAdvice(res) {
19693
20029
  var _this14 = this;
@@ -19731,11 +20067,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19731
20067
  });
19732
20068
  },
19733
20069
 
19734
- /**
19735
- * toStartDraf
19736
- * @desc: 稿件递送、联合审核、复核
19737
- * @author liufan
19738
- * @date 2022年9月29日
20070
+ /**
20071
+ * toStartDraf
20072
+ * @desc: 稿件递送、联合审核、复核
20073
+ * @author liufan
20074
+ * @date 2022年9月29日
19739
20075
  **/
19740
20076
  toStartDraf: function toStartDraf(res) {
19741
20077
  var _this16 = this;
@@ -19749,11 +20085,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19749
20085
  }
19750
20086
  },
19751
20087
 
19752
- /**
19753
- * toSendMsg
19754
- * @desc:核稿通知
19755
- * @author liufan
19756
- * @date 2022年9月29日
20088
+ /**
20089
+ * toSendMsg
20090
+ * @desc:核稿通知
20091
+ * @author liufan
20092
+ * @date 2022年9月29日
19757
20093
  **/
19758
20094
  toSendMsg: function toSendMsg(res) {
19759
20095
  var _this17 = this;
@@ -19767,11 +20103,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19767
20103
  }
19768
20104
  },
19769
20105
 
19770
- /**
19771
- * toTaskReadAndEnd
19772
- * @desc:分阅并办结
19773
- * @author liufan
19774
- * @date 2022年9月29日
20106
+ /**
20107
+ * toTaskReadAndEnd
20108
+ * @desc:分阅并办结
20109
+ * @author liufan
20110
+ * @date 2022年9月29日
19775
20111
  **/
19776
20112
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
19777
20113
  var _this18 = this;
@@ -19789,11 +20125,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19789
20125
  }
19790
20126
  },
19791
20127
 
19792
- /**
19793
- * rejectAndEnd
19794
- * @desc:驳回并办结
19795
- * @author liufan
19796
- * @date 2022年9月29日
20128
+ /**
20129
+ * rejectAndEnd
20130
+ * @desc:驳回并办结
20131
+ * @author liufan
20132
+ * @date 2022年9月29日
19797
20133
  **/
19798
20134
  rejectAndEnd: function rejectAndEnd(res) {
19799
20135
  var _this19 = this;
@@ -19848,11 +20184,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19848
20184
  });
19849
20185
  },
19850
20186
 
19851
- /**
19852
- * toTransfer
19853
- * @desc:转办
19854
- * @author liufan
19855
- * @date 2022年9月29日
20187
+ /**
20188
+ * toTransfer
20189
+ * @desc:转办
20190
+ * @author liufan
20191
+ * @date 2022年9月29日
19856
20192
  **/
19857
20193
  toTransfer: function toTransfer(res) {
19858
20194
  var _this21 = this;
@@ -19868,11 +20204,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19868
20204
  }
19869
20205
  },
19870
20206
 
19871
- /**
19872
- * getNodeInfo
19873
- * @desc:获取节点信息
19874
- * @author liufan
19875
- * @date 2022年5月25日
20207
+ /**
20208
+ * getNodeInfo
20209
+ * @desc:获取节点信息
20210
+ * @author liufan
20211
+ * @date 2022年5月25日
19876
20212
  **/
19877
20213
  getNodeInfo: function getNodeInfo() {
19878
20214
  var _this22 = this;
@@ -19971,12 +20307,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
19971
20307
  });
19972
20308
  },
19973
20309
 
19974
- /**
19975
- * selecNext
19976
- * @desc:下步节点变化时更新数据
19977
- * @author liufan
19978
- * @param {String} val 当前选中值
19979
- * @date 2022年5月25日
20310
+ /**
20311
+ * selecNext
20312
+ * @desc:下步节点变化时更新数据
20313
+ * @author liufan
20314
+ * @param {String} val 当前选中值
20315
+ * @date 2022年5月25日
19980
20316
  **/
19981
20317
  selecNext: function selecNext(val, type, isDef) {
19982
20318
  var _this23 = this;
@@ -20085,11 +20421,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20085
20421
  if (isDef !== true) this.getNodeInfo();
20086
20422
  },
20087
20423
 
20088
- /**
20089
- * isMultiple
20090
- * @desc:是否多选
20091
- * @author liufan
20092
- * @date 2022年9月13日
20424
+ /**
20425
+ * isMultiple
20426
+ * @desc:是否多选
20427
+ * @author liufan
20428
+ * @date 2022年9月13日
20093
20429
  **/
20094
20430
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
20095
20431
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -20121,11 +20457,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20121
20457
  }
20122
20458
  },
20123
20459
 
20124
- /**
20125
- * getHedInfo
20126
- * @desc:获取审核页面数据
20127
- * @author liufan
20128
- * @date 2022年5月25日
20460
+ /**
20461
+ * getHedInfo
20462
+ * @desc:获取审核页面数据
20463
+ * @author liufan
20464
+ * @date 2022年5月25日
20129
20465
  **/
20130
20466
  getHedInfo: function getHedInfo() {
20131
20467
  var _this24 = this;
@@ -20361,13 +20697,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20361
20697
  });
20362
20698
  },
20363
20699
 
20364
- /**
20365
- * closeProcess
20366
- * @desc:关闭弹窗
20367
- * @author liufan
20368
- * @param {boolean} val 当前是否办理流程
20369
- * @param {String} type 当前点击的弹窗类型
20370
- * @date 2022年5月25日
20700
+ /**
20701
+ * closeProcess
20702
+ * @desc:关闭弹窗
20703
+ * @author liufan
20704
+ * @param {boolean} val 当前是否办理流程
20705
+ * @param {String} type 当前点击的弹窗类型
20706
+ * @date 2022年5月25日
20371
20707
  **/
20372
20708
  closeProcess: function closeProcess(val, type, closeParent) {
20373
20709
  if (closeParent) {
@@ -20384,23 +20720,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20384
20720
  }
20385
20721
  },
20386
20722
 
20387
- /**
20388
- * selectChange
20389
- * @desc:常用语选择
20390
- * @author liufan
20391
- * @param {String} val 选中值
20392
- * @date 2022年5月25日
20723
+ /**
20724
+ * selectChange
20725
+ * @desc:常用语选择
20726
+ * @author liufan
20727
+ * @param {String} val 选中值
20728
+ * @date 2022年5月25日
20393
20729
  **/
20394
20730
  selectChange: function selectChange(val) {
20395
20731
  this.value = val;
20396
20732
  },
20397
20733
 
20398
- /**
20399
- * upDate
20400
- * @desc:修改常用语
20401
- * @author liufan
20402
- * @param {Object} val 修改值
20403
- * @date 2022年5月25日
20734
+ /**
20735
+ * upDate
20736
+ * @desc:修改常用语
20737
+ * @author liufan
20738
+ * @param {Object} val 修改值
20739
+ * @date 2022年5月25日
20404
20740
  **/
20405
20741
  upDate: function upDate(val) {
20406
20742
  this.FormData.id = val.id;
@@ -20408,11 +20744,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20408
20744
  },
20409
20745
 
20410
20746
 
20411
- /**
20412
- * getProcess
20413
- * @desc:获取选择流程
20414
- * @author liufan
20415
- * @date 2022年5月25日
20747
+ /**
20748
+ * getProcess
20749
+ * @desc:获取选择流程
20750
+ * @author liufan
20751
+ * @date 2022年5月25日
20416
20752
  **/
20417
20753
  getProcess: function getProcess() {
20418
20754
  var _this25 = this;
@@ -20466,11 +20802,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20466
20802
  });
20467
20803
  },
20468
20804
 
20469
- /**
20470
- * getPendedhistoryList
20471
- * @desc:获取流程列表
20472
- * @author liufan
20473
- * @date 2022年5月25日
20805
+ /**
20806
+ * getPendedhistoryList
20807
+ * @desc:获取流程列表
20808
+ * @author liufan
20809
+ * @date 2022年5月25日
20474
20810
  **/
20475
20811
  getPendedhistoryList: function getPendedhistoryList() {
20476
20812
  var _this26 = this;
@@ -20502,12 +20838,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20502
20838
  },
20503
20839
 
20504
20840
  // 提交流程
20505
- /**
20506
- * subProcess
20507
- * @desc:提交流程
20508
- * @author liufan
20509
- * @param {String} formName 当前form表单ref值
20510
- * @date 2022年5月25日
20841
+ /**
20842
+ * subProcess
20843
+ * @desc:提交流程
20844
+ * @author liufan
20845
+ * @param {String} formName 当前form表单ref值
20846
+ * @date 2022年5月25日
20511
20847
  **/
20512
20848
  subProcess: function subProcess(val) {
20513
20849
  var _this27 = this;
@@ -21103,8 +21439,8 @@ var supervise_component = Object(componentNormalizer["a" /* default */])(
21103
21439
  )
21104
21440
 
21105
21441
  /* harmony default export */ var supervise = (supervise_component.exports);
21106
- // 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=e4a9ba50&
21107
- var Circulatevue_type_template_id_e4a9ba50_render = function () {
21442
+ // 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=43730f28&
21443
+ var Circulatevue_type_template_id_43730f28_render = function () {
21108
21444
  var _vm = this
21109
21445
  var _h = _vm.$createElement
21110
21446
  var _c = _vm._self._c || _h
@@ -21128,7 +21464,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
21128
21464
  ref: "infoList",
21129
21465
  attrs: {
21130
21466
  model: _vm.infoList,
21131
- "label-width": "120px",
21467
+ "label-width": "100px",
21132
21468
  "label-position": _vm.labelPosition,
21133
21469
  },
21134
21470
  },
@@ -21143,7 +21479,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
21143
21479
  nextUser: _vm.infoList.nextCurrentOrgObj,
21144
21480
  multiple: _vm.newMultiple,
21145
21481
  mix: "",
21146
- types: ["department", "employee"],
21482
+ types: ["employee", "persongroup"],
21147
21483
  params: _vm.params,
21148
21484
  },
21149
21485
  on: {
@@ -21165,7 +21501,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
21165
21501
  nextUser: _vm.infoList.nextOtherOrgObj,
21166
21502
  multiple: _vm.newMultiple,
21167
21503
  mix: "",
21168
- types: ["enterprise", "department"],
21504
+ types: ["enterprise", "filgroup"],
21169
21505
  params: _vm.otherParams,
21170
21506
  },
21171
21507
  on: {
@@ -21296,11 +21632,11 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
21296
21632
  1
21297
21633
  )
21298
21634
  }
21299
- var Circulatevue_type_template_id_e4a9ba50_staticRenderFns = []
21300
- Circulatevue_type_template_id_e4a9ba50_render._withStripped = true
21635
+ var Circulatevue_type_template_id_43730f28_staticRenderFns = []
21636
+ Circulatevue_type_template_id_43730f28_render._withStripped = true
21301
21637
 
21302
21638
 
21303
- // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=e4a9ba50&
21639
+ // CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=43730f28&
21304
21640
 
21305
21641
  // 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&
21306
21642
  var Circulatevue_type_script_lang_js_components;
@@ -21412,7 +21748,8 @@ var Circulatevue_type_script_lang_js_components;
21412
21748
  labelPosition: {
21413
21749
  type: String,
21414
21750
  default: 'left'
21415
- }
21751
+ },
21752
+ startFlowPageEmbeddedIntoStartFlowIndex: { type: Boolean, default: false }
21416
21753
  },
21417
21754
  inheritAttrs: false,
21418
21755
  data: function data() {
@@ -21507,7 +21844,7 @@ var Circulatevue_type_script_lang_js_components;
21507
21844
  }
21508
21845
 
21509
21846
  var param = {
21510
- url: this.showBtn ? api["n" /* directStartTaskCircularRead */] : api["x" /* endFlowAndStartTaskCircularRead */],
21847
+ url: this.showBtn || this.startFlowPageEmbeddedIntoStartFlowIndex ? api["n" /* directStartTaskCircularRead */] : api["x" /* endFlowAndStartTaskCircularRead */],
21511
21848
  data: {
21512
21849
  opinion: opinion,
21513
21850
  businessId: businessId,
@@ -21521,10 +21858,12 @@ var Circulatevue_type_script_lang_js_components;
21521
21858
  headers: { Accept: 'application/json,text/plain' },
21522
21859
  method: 'POST'
21523
21860
  };
21524
- if (!this.showBtn) {
21861
+ if (!this.showBtn && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
21525
21862
  param.data.pendingId = this.pendingId;
21526
21863
  delete param.data.processDefinitionId;
21527
21864
  this.subLoading = util["a" /* default */].loading(this.$loading, '加载中...');
21865
+ } else if (this.startFlowPageEmbeddedIntoStartFlowIndex) {
21866
+ this.subLoading = util["a" /* default */].loading(this.$loading, '加载中...');
21528
21867
  } else {
21529
21868
  this.loading = true;
21530
21869
  }
@@ -21533,7 +21872,7 @@ var Circulatevue_type_script_lang_js_components;
21533
21872
  status = res.status,
21534
21873
  rCode = res.rCode;
21535
21874
 
21536
- if (!_this.showBtn) {
21875
+ if (!_this.showBtn || _this.startFlowPageEmbeddedIntoStartFlowIndex) {
21537
21876
  _this.subLoading.close();
21538
21877
  } else {
21539
21878
  _this.loading = false;
@@ -21545,7 +21884,11 @@ var Circulatevue_type_script_lang_js_components;
21545
21884
  _this.$message.error(message || '系统错误,请联系管理员!');
21546
21885
  }
21547
21886
  }).catch(function (err) {
21548
- _this.loading = false;
21887
+ if (!_this.showBtn || _this.startFlowPageEmbeddedIntoStartFlowIndex) {
21888
+ _this.subLoading.close();
21889
+ } else {
21890
+ _this.loading = false;
21891
+ }
21549
21892
  if (err.message && err.message !== 'canceled') {
21550
21893
  _this.$message.error(err.message);
21551
21894
  }
@@ -21668,8 +22011,8 @@ var Circulatevue_type_script_lang_js_components;
21668
22011
 
21669
22012
  var Circulate_component = Object(componentNormalizer["a" /* default */])(
21670
22013
  component_Circulatevue_type_script_lang_js_,
21671
- Circulatevue_type_template_id_e4a9ba50_render,
21672
- Circulatevue_type_template_id_e4a9ba50_staticRenderFns,
22014
+ Circulatevue_type_template_id_43730f28_render,
22015
+ Circulatevue_type_template_id_43730f28_staticRenderFns,
21673
22016
  false,
21674
22017
  null,
21675
22018
  null,
@@ -22674,6 +23017,81 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22674
23017
  //
22675
23018
  //
22676
23019
  //
23020
+ //
23021
+ //
23022
+ //
23023
+ //
23024
+ //
23025
+ //
23026
+ //
23027
+ //
23028
+ //
23029
+ //
23030
+ //
23031
+ //
23032
+ //
23033
+ //
23034
+ //
23035
+ //
23036
+ //
23037
+ //
23038
+ //
23039
+ //
23040
+ //
23041
+ //
23042
+ //
23043
+ //
23044
+ //
23045
+ //
23046
+ //
23047
+ //
23048
+ //
23049
+ //
23050
+ //
23051
+ //
23052
+ //
23053
+ //
23054
+ //
23055
+ //
23056
+ //
23057
+ //
23058
+ //
23059
+ //
23060
+ //
23061
+ //
23062
+ //
23063
+ //
23064
+ //
23065
+ //
23066
+ //
23067
+ //
23068
+ //
23069
+ //
23070
+ //
23071
+ //
23072
+ //
23073
+ //
23074
+ //
23075
+ //
23076
+ //
23077
+ //
23078
+ //
23079
+ //
23080
+ //
23081
+ //
23082
+ //
23083
+ //
23084
+ //
23085
+ //
23086
+ //
23087
+ //
23088
+ //
23089
+ //
23090
+ //
23091
+ //
23092
+ //
23093
+ //
23094
+ //
22677
23095
 
22678
23096
 
22679
23097
 
@@ -22703,6 +23121,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22703
23121
  pendingId: { type: String, default: '' },
22704
23122
  nodeName: { type: String, default: '' },
22705
23123
  typeCode: { type: String, default: '' },
23124
+ selectorConfig: { type: [Object, undefined], default: undefined },
22706
23125
  flowTypeCode: { type: String, default: '' },
22707
23126
  defaultProcessKey: { type: String, default: '' },
22708
23127
  hideBtn: { type: Boolean, default: false },
@@ -22711,6 +23130,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22711
23130
  type: String,
22712
23131
  default: 'left'
22713
23132
  },
23133
+ flowListDisabled: {
23134
+ type: Boolean,
23135
+ default: false
23136
+ },
22714
23137
  btnList: {
22715
23138
  type: Array,
22716
23139
  default: function _default() {
@@ -22752,6 +23175,9 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22752
23175
  return _ref = {
22753
23176
  styles: {},
22754
23177
  optionsKey: 0,
23178
+ currentNodeEnableItemHandleDescription: false,
23179
+ startFlowPageEmbeddedIntoStartFlowIndex: false,
23180
+ pendingItemHandleDescription: '',
22755
23181
  currentOrgSelectorParams: { filid: '' },
22756
23182
  currentOrgSelectorTabs: ['employee', 'persongroup'],
22757
23183
  foreignOrgSelectorTabs: ['enterprise', 'filgroupobj'],
@@ -22888,6 +23314,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
22888
23314
  nextReadUserId: [], //分阅用户
22889
23315
  presetReadUserId: [], //自动分阅
22890
23316
  handleExplain: '', //办理意见
23317
+ nextItemHandleDescription: '', //下步说明
22891
23318
  notificationType: [], // 通知方式
22892
23319
  isLimitedTime: '2', // 是否限时办理
22893
23320
  mainSubId: ''
@@ -23044,15 +23471,15 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23044
23471
  _this.isBanInputOpinion = res.data.nodeExtAttr.isBanInputOpinion;
23045
23472
  _this.directCreateCircularReadWhenFlowStarted = res.data.nodeExtAttr.directCreateCircularReadWhenFlowStarted == 1;
23046
23473
 
23047
- if (_this.directCreateCircularReadWhenFlowStarted) {
23048
- _this.nodeInfo.option.map(function (item) {
23049
- item.disabled = item.processDefId != processDefinitionId;
23050
- });
23051
- } else {
23052
- _this.nodeInfo.option.map(function (item) {
23053
- item.disabled = false;
23054
- });
23055
- }
23474
+ // if (this.directCreateCircularReadWhenFlowStarted) {
23475
+ // this.nodeInfo.option.map((item) => {
23476
+ // item.disabled = item.processDefId != processDefinitionId;
23477
+ // });
23478
+ // } else {
23479
+ // this.nodeInfo.option.map((item) => {
23480
+ // item.disabled = false;
23481
+ // });
23482
+ // }
23056
23483
  _this.optionsKey++;
23057
23484
  _this.isOpinionRequired = res.data.nodeExtAttr.isOpinionRequired == 1;
23058
23485
  }
@@ -23292,7 +23719,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23292
23719
 
23293
23720
  var params = {
23294
23721
  url: api["d" /* checkBusinessIdStartedReadTransferHandle */],
23295
- params: { readTransferHandleBusinessId: readTransferHandleBusinessId, readTransferHandleProcessKey: readTransferHandleProcessKey }
23722
+ params: {
23723
+ readTransferHandleBusinessId: readTransferHandleBusinessId,
23724
+ readTransferHandleProcessKey: readTransferHandleProcessKey,
23725
+ pendingId: this.pendingId
23726
+ }
23296
23727
  };
23297
23728
  util["a" /* default */].ajax(params).then(function (res) {
23298
23729
  _this5.loading.close();
@@ -23404,11 +23835,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23404
23835
  });
23405
23836
  },
23406
23837
 
23407
- /**
23408
- * saveInfo
23409
- * @desc:暂存
23410
- * @author liufan
23411
- * @date 2022年9月9日
23838
+ /**
23839
+ * saveInfo
23840
+ * @desc:暂存
23841
+ * @author liufan
23842
+ * @date 2022年9月9日
23412
23843
  **/
23413
23844
  saveInfo: function saveInfo(type, btn) {
23414
23845
  var _this9 = this;
@@ -23470,11 +23901,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23470
23901
  });
23471
23902
  },
23472
23903
 
23473
- /**
23474
- * rejectBtn
23475
- * @desc:点击驳回
23476
- * @author liufan
23477
- * @date 2022年5月25日
23904
+ /**
23905
+ * rejectBtn
23906
+ * @desc:点击驳回
23907
+ * @author liufan
23908
+ * @date 2022年5月25日
23478
23909
  **/
23479
23910
  rejectBtn: function rejectBtn() {
23480
23911
  var _this11 = this;
@@ -23492,11 +23923,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23492
23923
  }
23493
23924
  },
23494
23925
 
23495
- /**
23496
- * taskReadBtn
23497
- * @desc:点击分阅
23498
- * @author liufan
23499
- * @date 2022年5月25日
23926
+ /**
23927
+ * taskReadBtn
23928
+ * @desc:点击分阅
23929
+ * @author liufan
23930
+ * @date 2022年5月25日
23500
23931
  **/
23501
23932
  taskReadBtn: function taskReadBtn() {
23502
23933
  var _this12 = this;
@@ -23515,11 +23946,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23515
23946
  }
23516
23947
  },
23517
23948
 
23518
- /**
23519
- * getFind
23520
- * @desc:获取通知方式
23521
- * @author liufan
23522
- * @date 2022年5月25日
23949
+ /**
23950
+ * getFind
23951
+ * @desc:获取通知方式
23952
+ * @author liufan
23953
+ * @date 2022年5月25日
23523
23954
  **/
23524
23955
  getFind: function getFind() {
23525
23956
  var _this13 = this;
@@ -23585,12 +24016,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23585
24016
  });
23586
24017
  },
23587
24018
 
23588
- /**
23589
- * endFlows
23590
- * @desc:直接办结
23591
- * @author liufan
23592
- * @param {Object} res 直接办结数据
23593
- * @date 2022年5月25日
24019
+ /**
24020
+ * endFlows
24021
+ * @desc:直接办结
24022
+ * @author liufan
24023
+ * @param {Object} res 直接办结数据
24024
+ * @date 2022年5月25日
23594
24025
  **/
23595
24026
  endFlows: function endFlows(res) {
23596
24027
  var _this15 = this;
@@ -23645,12 +24076,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23645
24076
  }).catch(function (e) {});
23646
24077
  },
23647
24078
 
23648
- /**
23649
- * goView
23650
- * @desc:更多流程按钮操作
23651
- * @author liufan
23652
- * @param {Object} res 当前点击操作按钮数据
23653
- * @date 2022年5月25日
24079
+ /**
24080
+ * goView
24081
+ * @desc:更多流程按钮操作
24082
+ * @author liufan
24083
+ * @param {Object} res 当前点击操作按钮数据
24084
+ * @date 2022年5月25日
23654
24085
  **/
23655
24086
  goView: function goView(res) {
23656
24087
  // 驳回并办结:rejectAndEndHtml
@@ -23735,11 +24166,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23735
24166
  // isCanStartSubFlow
23736
24167
  },
23737
24168
 
23738
- /**
23739
- * toTakeAdvice
23740
- * @desc:征求意见
23741
- * @author liufan
23742
- * @date 2022年9月29日
24169
+ /**
24170
+ * toTakeAdvice
24171
+ * @desc:征求意见
24172
+ * @author liufan
24173
+ * @date 2022年9月29日
23743
24174
  **/
23744
24175
  toTakeAdvice: function toTakeAdvice(res) {
23745
24176
  var _this17 = this;
@@ -23783,11 +24214,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23783
24214
  });
23784
24215
  },
23785
24216
 
23786
- /**
23787
- * toStartDraf
23788
- * @desc: 稿件递送、联合审核、复核
23789
- * @author liufan
23790
- * @date 2022年9月29日
24217
+ /**
24218
+ * toStartDraf
24219
+ * @desc: 稿件递送、联合审核、复核
24220
+ * @author liufan
24221
+ * @date 2022年9月29日
23791
24222
  **/
23792
24223
  toStartDraf: function toStartDraf(res) {
23793
24224
  var _this19 = this;
@@ -23801,11 +24232,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23801
24232
  }
23802
24233
  },
23803
24234
 
23804
- /**
23805
- * toSendMsg
23806
- * @desc:核稿通知
23807
- * @author liufan
23808
- * @date 2022年9月29日
24235
+ /**
24236
+ * toSendMsg
24237
+ * @desc:核稿通知
24238
+ * @author liufan
24239
+ * @date 2022年9月29日
23809
24240
  **/
23810
24241
  toSendMsg: function toSendMsg(res) {
23811
24242
  var _this20 = this;
@@ -23819,11 +24250,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23819
24250
  }
23820
24251
  },
23821
24252
 
23822
- /**
23823
- * toTaskReadAndEnd
23824
- * @desc:分阅并办结
23825
- * @author liufan
23826
- * @date 2022年9月29日
24253
+ /**
24254
+ * toTaskReadAndEnd
24255
+ * @desc:分阅并办结
24256
+ * @author liufan
24257
+ * @date 2022年9月29日
23827
24258
  **/
23828
24259
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
23829
24260
  var _this21 = this;
@@ -23841,11 +24272,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23841
24272
  }
23842
24273
  },
23843
24274
 
23844
- /**
23845
- * rejectAndEnd
23846
- * @desc:驳回并办结
23847
- * @author liufan
23848
- * @date 2022年9月29日
24275
+ /**
24276
+ * rejectAndEnd
24277
+ * @desc:驳回并办结
24278
+ * @author liufan
24279
+ * @date 2022年9月29日
23849
24280
  **/
23850
24281
  rejectAndEnd: function rejectAndEnd(res) {
23851
24282
  var _this22 = this;
@@ -23901,11 +24332,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23901
24332
  });
23902
24333
  },
23903
24334
 
23904
- /**
23905
- * toTransfer
23906
- * @desc:转办
23907
- * @author liufan
23908
- * @date 2022年9月29日
24335
+ /**
24336
+ * toTransfer
24337
+ * @desc:转办
24338
+ * @author liufan
24339
+ * @date 2022年9月29日
23909
24340
  **/
23910
24341
  toTransfer: function toTransfer(res) {
23911
24342
  var _this24 = this;
@@ -23921,11 +24352,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23921
24352
  }
23922
24353
  },
23923
24354
 
23924
- /**
23925
- * getNodeInfo
23926
- * @desc:获取节点信息
23927
- * @author liufan
23928
- * @date 2022年5月25日
24355
+ /**
24356
+ * getNodeInfo
24357
+ * @desc:获取节点信息
24358
+ * @author liufan
24359
+ * @date 2022年5月25日
23929
24360
  **/
23930
24361
  getNodeInfo: function getNodeInfo() {
23931
24362
  var _this25 = this;
@@ -23945,6 +24376,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
23945
24376
 
23946
24377
  _this25.loading.close();
23947
24378
  if (status === 'success') {
24379
+ _this25.currentNodeEnableItemHandleDescription = data.nodeExtAttr.currentNodeEnableItemHandleDescription == 1;
23948
24380
  _this25.enableCustomLimitTimeSetting = data.nodeExtAttr.enableCustomLimitTimeSetting == 1;
23949
24381
  data.otherOrgDisabledObjId && (_this25.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
23950
24382
  data.currentOrgDisabledObjId && (_this25.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
@@ -24028,12 +24460,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24028
24460
  });
24029
24461
  },
24030
24462
 
24031
- /**
24032
- * selecNext
24033
- * @desc:下步节点变化时更新数据
24034
- * @author liufan
24035
- * @param {String} val 当前选中值
24036
- * @date 2022年5月25日
24463
+ /**
24464
+ * selecNext
24465
+ * @desc:下步节点变化时更新数据
24466
+ * @author liufan
24467
+ * @param {String} val 当前选中值
24468
+ * @date 2022年5月25日
24037
24469
  **/
24038
24470
  selecNext: function selecNext(val, type, isDef) {
24039
24471
  var _this26 = this;
@@ -24143,11 +24575,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24143
24575
  this.getNodeInfo();
24144
24576
  },
24145
24577
 
24146
- /**
24147
- * isMultiple
24148
- * @desc:是否多选
24149
- * @author liufan
24150
- * @date 2022年9月13日
24578
+ /**
24579
+ * isMultiple
24580
+ * @desc:是否多选
24581
+ * @author liufan
24582
+ * @date 2022年9月13日
24151
24583
  **/
24152
24584
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
24153
24585
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -24179,11 +24611,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24179
24611
  }
24180
24612
  },
24181
24613
 
24182
- /**
24183
- * getHedInfo
24184
- * @desc:获取审核页面数据
24185
- * @author liufan
24186
- * @date 2022年5月25日
24614
+ /**
24615
+ * getHedInfo
24616
+ * @desc:获取审核页面数据
24617
+ * @author liufan
24618
+ * @date 2022年5月25日
24187
24619
  **/
24188
24620
  getHedInfo: function getHedInfo() {
24189
24621
  var _this27 = this;
@@ -24214,6 +24646,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24214
24646
  nextNodeCheckType = _res$data2.nextNodeCheckType,
24215
24647
  pOrgId = _res$data2.pOrgId,
24216
24648
  currentOrgName = _res$data2.currentOrgName,
24649
+ pendingItemHandleDescription = _res$data2.pendingItemHandleDescription,
24217
24650
  currentOrgSelectorParams = _res$data2.currentOrgSelectorParams,
24218
24651
  otherOrgName = _res$data2.otherOrgName,
24219
24652
  taskExamine = _res$data2.taskExamine,
@@ -24236,18 +24669,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24236
24669
  }
24237
24670
  _this27.$emit('startTaskRead', res);
24238
24671
  _this27.$emit('start-task-read', res);
24672
+ _this27.pendingItemHandleDescription = pendingItemHandleDescription;
24239
24673
  if (currentOrgSelectorParams.enableCurrentOrgConfig == 'true') {
24240
24674
  _this27.currentOrgSelectorTabs = currentOrgSelectorParams.currentOrgType.split(',');
24241
24675
  var currentOrgparams = currentOrgSelectorParams.currentOrgRange.split(',');
24242
24676
  _this27.currentOrgSelectorTabs.map(function (x, i) {
24243
- _this27.currentOrgSelectorParams[x] = { filid: currentOrgparams[i] == 'my' ? choiceOrgId : param[i] };
24677
+ _this27.currentOrgSelectorParams[x] = {
24678
+ filid: currentOrgparams[i] == 'my' ? choiceOrgId : param[i]
24679
+ };
24244
24680
  });
24245
24681
  }
24246
24682
  if (currentOrgSelectorParams.enableForeignOrgConfig == 'true') {
24247
24683
  _this27.foreignOrgSelectorTabs = currentOrgSelectorParams.foreignOrgType.split(',');
24248
24684
  var foreignOrgparams = currentOrgSelectorParams.foreignOrgRange.split(',');
24249
24685
  _this27.foreignOrgSelectorTabs.map(function (x, i) {
24250
- _this27.foreignOrgSelectorParams[x] = { filid: foreignOrgparams[i] == 'my' ? choiceOrgId : foreignOrgparams[i] };
24686
+ _this27.foreignOrgSelectorParams[x] = {
24687
+ filid: foreignOrgparams[i] == 'my' ? choiceOrgId : foreignOrgparams[i]
24688
+ };
24251
24689
  });
24252
24690
  }
24253
24691
  _this27.circularReadParamsMap = circularReadParamsMap || {};
@@ -24257,6 +24695,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24257
24695
  _this27.currentOrgName = currentOrgName;
24258
24696
  _this27.nextOperateCheckType = nextOperateCheckType;
24259
24697
  _this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
24698
+
24260
24699
  _this27.readOnlyNotificationType = readOnlyNotificationType;
24261
24700
  _this27.isSpecial = isSpecial;
24262
24701
  _this27.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
@@ -24449,13 +24888,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24449
24888
  });
24450
24889
  },
24451
24890
 
24452
- /**
24453
- * closeProcess
24454
- * @desc:关闭弹窗
24455
- * @author liufan
24456
- * @param {boolean} val 当前是否办理流程
24457
- * @param {String} type 当前点击的弹窗类型
24458
- * @date 2022年5月25日
24891
+ /**
24892
+ * closeProcess
24893
+ * @desc:关闭弹窗
24894
+ * @author liufan
24895
+ * @param {boolean} val 当前是否办理流程
24896
+ * @param {String} type 当前点击的弹窗类型
24897
+ * @date 2022年5月25日
24459
24898
  **/
24460
24899
  closeProcess: function closeProcess(val, type, closeParent) {
24461
24900
  if (closeParent) {
@@ -24475,23 +24914,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24475
24914
  }
24476
24915
  },
24477
24916
 
24478
- /**
24479
- * selectChange
24480
- * @desc:常用语选择
24481
- * @author liufan
24482
- * @param {String} val 选中值
24483
- * @date 2022年5月25日
24917
+ /**
24918
+ * selectChange
24919
+ * @desc:常用语选择
24920
+ * @author liufan
24921
+ * @param {String} val 选中值
24922
+ * @date 2022年5月25日
24484
24923
  **/
24485
24924
  selectChange: function selectChange(val) {
24486
24925
  this.value = val;
24487
24926
  },
24488
24927
 
24489
- /**
24490
- * upDate
24491
- * @desc:修改常用语
24492
- * @author liufan
24493
- * @param {Object} val 修改值
24494
- * @date 2022年5月25日
24928
+ /**
24929
+ * upDate
24930
+ * @desc:修改常用语
24931
+ * @author liufan
24932
+ * @param {Object} val 修改值
24933
+ * @date 2022年5月25日
24495
24934
  **/
24496
24935
  upDate: function upDate(val) {
24497
24936
  this.FormData.id = val.id;
@@ -24499,11 +24938,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24499
24938
  },
24500
24939
 
24501
24940
 
24502
- /**
24503
- * getProcess
24504
- * @desc:获取选择流程
24505
- * @author liufan
24506
- * @date 2022年5月25日
24941
+ /**
24942
+ * getProcess
24943
+ * @desc:获取选择流程
24944
+ * @author liufan
24945
+ * @date 2022年5月25日
24507
24946
  **/
24508
24947
  getProcess: function getProcess(val) {
24509
24948
  var _this28 = this;
@@ -24530,6 +24969,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24530
24969
  if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
24531
24970
  _this28.$message.error('流程不存在或未关联对应流程!');
24532
24971
  } else {
24972
+ _this28.startFlowPageEmbeddedIntoStartFlowIndex = data.startFlowPageEmbeddedIntoStartFlowIndex;
24533
24973
  _this28.nodeInfo.option = data.definitionList;
24534
24974
  _this28.nodeInfo.nextNode = data.definitionList.filter(function (item) {
24535
24975
  return item.processDefKey == _this28.defaultProcessKey;
@@ -24558,11 +24998,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24558
24998
  });
24559
24999
  },
24560
25000
 
24561
- /**
24562
- * getPendedhistoryList
24563
- * @desc:获取流程列表
24564
- * @author liufan
24565
- * @date 2022年5月25日
25001
+ /**
25002
+ * getPendedhistoryList
25003
+ * @desc:获取流程列表
25004
+ * @author liufan
25005
+ * @date 2022年5月25日
24566
25006
  **/
24567
25007
  getPendedhistoryList: function getPendedhistoryList() {
24568
25008
  var _this29 = this;
@@ -24630,16 +25070,24 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24630
25070
  },
24631
25071
 
24632
25072
  // 提交流程
24633
- /**
24634
- * subProcess
24635
- * @desc:提交流程
24636
- * @author liufan
24637
- * @param {String} formName 当前form表单ref值
24638
- * @date 2022年5月25日
25073
+ /**
25074
+ * subProcess
25075
+ * @desc:提交流程
25076
+ * @author liufan
25077
+ * @param {String} formName 当前form表单ref值
25078
+ * @date 2022年5月25日
24639
25079
  **/
24640
25080
  subProcess: function subProcess(val, type) {
24641
25081
  var _this31 = this;
24642
25082
 
25083
+ if (this.isFlow && this.nodeInfo.nextNode && this.startFlowPageEmbeddedIntoStartFlowIndex) {
25084
+ if (this.directCreateCircularReadWhenFlowStarted) {
25085
+ this.$refs.flowCirculate.subMit();
25086
+ } else {
25087
+ this.$refs.processFormIndex.subProcess('nextNode');
25088
+ }
25089
+ return;
25090
+ }
24643
25091
  return this.$refs['nextNode'].validate(function (valid) {
24644
25092
  if (valid) {
24645
25093
  if (_this31.isSubmitButtonShowAgreeAndDisagree == 1) {
@@ -24735,13 +25183,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24735
25183
 
24736
25184
  this.$refs['nextNode'].validate(function () {
24737
25185
  var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
24738
- var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap;
25186
+ var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap, currentNodeEnableItemHandleDescription;
24739
25187
  return regenerator_default.a.wrap(function _callee$(_context) {
24740
25188
  while (1) {
24741
25189
  switch (_context.prev = _context.next) {
24742
25190
  case 0:
24743
25191
  if (!valid) {
24744
- _context.next = 51;
25192
+ _context.next = 52;
24745
25193
  break;
24746
25194
  }
24747
25195
 
@@ -24855,7 +25303,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24855
25303
 
24856
25304
  case 33:
24857
25305
  _this33.loading = util["a" /* default */].loading(_this33.$loading, '提交中...');
24858
- isEndUserTask = _this33.isEndUserTask, choiceOrgId = _this33.choiceOrgId, choiceDeptId = _this33.choiceDeptId, pOrgId = _this33.pOrgId, taskExamineInfo = _this33.taskExamineInfo, currentNodeIsCircularReadNode = _this33.currentNodeIsCircularReadNode, needRetrialAuth = _this33.needRetrialAuth, circularReadParamsMap = _this33.circularReadParamsMap;
25306
+ isEndUserTask = _this33.isEndUserTask, choiceOrgId = _this33.choiceOrgId, choiceDeptId = _this33.choiceDeptId, pOrgId = _this33.pOrgId, taskExamineInfo = _this33.taskExamineInfo, currentNodeIsCircularReadNode = _this33.currentNodeIsCircularReadNode, needRetrialAuth = _this33.needRetrialAuth, circularReadParamsMap = _this33.circularReadParamsMap, currentNodeEnableItemHandleDescription = _this33.currentNodeEnableItemHandleDescription;
24859
25307
 
24860
25308
  params.isEndUserTask = isEndUserTask;
24861
25309
  params.choiceOrgId = choiceOrgId;
@@ -24872,7 +25320,9 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24872
25320
  if (currentNodeIsCircularReadNode) {
24873
25321
  params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
24874
25322
  }
24875
-
25323
+ if (!currentNodeEnableItemHandleDescription) {
25324
+ delete params.nextItemHandleDescription;
25325
+ }
24876
25326
  return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
24877
25327
  var status = res.status,
24878
25328
  message = res.message;
@@ -24891,10 +25341,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24891
25341
  }
24892
25342
  }));
24893
25343
 
24894
- case 51:
25344
+ case 52:
24895
25345
  return _context.abrupt('return', false);
24896
25346
 
24897
- case 52:
25347
+ case 53:
24898
25348
  case 'end':
24899
25349
  return _context.stop();
24900
25350
  }