eoss-ui 0.7.51 → 0.7.53

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 (322) hide show
  1. package/lib/button-group.js +290 -279
  2. package/lib/button.js +290 -280
  3. package/lib/calendar.js +2 -2
  4. package/lib/calogin.js +523 -512
  5. package/lib/card.js +2 -2
  6. package/lib/cascader.js +2 -2
  7. package/lib/checkbox-group.js +294 -283
  8. package/lib/clients.js +2 -2
  9. package/lib/config/api.js +3 -1
  10. package/lib/data-table-form.js +293 -282
  11. package/lib/data-table.js +292 -281
  12. package/lib/date-picker.js +290 -280
  13. package/lib/dialog.js +293 -282
  14. package/lib/enable-drag.js +2 -2
  15. package/lib/enterprise.js +2 -2
  16. package/lib/eoss-ui.common.js +5515 -5675
  17. package/lib/error-page.js +2 -2
  18. package/lib/flow-group.js +354 -362
  19. package/lib/flow-list.js +435 -412
  20. package/lib/flow.js +608 -599
  21. package/lib/form.js +295 -284
  22. package/lib/handle-user.js +384 -392
  23. package/lib/handler.js +290 -280
  24. package/lib/icon.js +291 -281
  25. package/lib/icons.js +5 -5
  26. package/lib/index.js +1 -1
  27. package/lib/input-number.js +290 -280
  28. package/lib/input.js +294 -284
  29. package/lib/label.js +2 -2
  30. package/lib/layout.js +4 -4
  31. package/lib/login.js +303 -292
  32. package/lib/main.js +466 -455
  33. package/lib/menu.js +4 -4
  34. package/lib/nav.js +292 -282
  35. package/lib/notify.js +74 -71
  36. package/lib/page.js +290 -280
  37. package/lib/pagination.js +290 -280
  38. package/lib/player.js +373 -385
  39. package/lib/qr-code.js +305 -295
  40. package/lib/radio-group.js +301 -291
  41. package/lib/retrial-auth.js +294 -284
  42. package/lib/select-ganged.js +292 -282
  43. package/lib/select.js +299 -289
  44. package/lib/selector-panel.js +295 -284
  45. package/lib/selector.js +292 -282
  46. package/lib/sizer.js +290 -280
  47. package/lib/steps.js +292 -282
  48. package/lib/switch.js +290 -280
  49. package/lib/table-form.js +297 -287
  50. package/lib/tabs-panel.js +2 -2
  51. package/lib/tabs.js +290 -280
  52. package/lib/theme-chalk/base.css +1 -1
  53. package/lib/theme-chalk/data-table.css +1 -1
  54. package/lib/theme-chalk/fonts/iconfont.ttf +0 -0
  55. package/lib/theme-chalk/fonts/iconfont.woff +0 -0
  56. package/lib/theme-chalk/icon.css +1 -1
  57. package/lib/theme-chalk/index.css +1 -1
  58. package/lib/theme-chalk/main.css +1 -1
  59. package/lib/theme-chalk/menu.css +1 -1
  60. package/lib/theme-chalk/simplicity.css +1 -1
  61. package/lib/theme-chalk/sizer.css +1 -1
  62. package/lib/theme-chalk/upload.css +1 -1
  63. package/lib/tips.js +292 -282
  64. package/lib/toolbar.js +2 -2
  65. package/lib/tree-group.js +290 -280
  66. package/lib/tree.js +292 -282
  67. package/lib/upload.js +304 -293
  68. package/lib/utils/util.js +8 -12
  69. package/lib/wujie.js +290 -280
  70. package/lib/wxlogin.js +290 -280
  71. package/package.json +160 -160
  72. package/packages/button/index.js +5 -5
  73. package/packages/button/src/main.vue +418 -418
  74. package/packages/button-group/index.js +5 -5
  75. package/packages/button-group/src/main.vue +346 -346
  76. package/packages/calendar/index.js +5 -5
  77. package/packages/calogin/index.js +5 -5
  78. package/packages/calogin/src/main.vue +412 -412
  79. package/packages/calogin/src/plugin.js +915 -915
  80. package/packages/card/index.js +5 -5
  81. package/packages/card/src/main.vue +156 -156
  82. package/packages/cascader/index.js +5 -5
  83. package/packages/cascader/src/main.vue +168 -168
  84. package/packages/checkbox-group/index.js +5 -5
  85. package/packages/checkbox-group/src/main.vue +333 -333
  86. package/packages/clients/index.js +5 -5
  87. package/packages/clients/src/main.vue +151 -151
  88. package/packages/data-table/index.js +5 -5
  89. package/packages/data-table/src/children.vue +39 -39
  90. package/packages/data-table/src/column.vue +992 -992
  91. package/packages/data-table/src/main.vue +1840 -1840
  92. package/packages/data-table/src/sizer.vue +195 -195
  93. package/packages/data-table-form/index.js +5 -5
  94. package/packages/data-table-form/src/checkbox.vue +101 -101
  95. package/packages/data-table-form/src/colgroup.vue +17 -17
  96. package/packages/data-table-form/src/main.vue +181 -181
  97. package/packages/data-table-form/src/radio.vue +65 -65
  98. package/packages/data-table-form/src/table.vue +233 -233
  99. package/packages/data-table-form/src/tbody.vue +336 -336
  100. package/packages/data-table-form/src/thead.vue +68 -68
  101. package/packages/date-picker/index.js +5 -5
  102. package/packages/date-picker/src/main.vue +236 -236
  103. package/packages/dialog/index.js +5 -5
  104. package/packages/enable-drag/index.js +5 -5
  105. package/packages/enterprise/index.js +5 -5
  106. package/packages/enterprise/src/main.vue +66 -66
  107. package/packages/error-page/index.js +5 -5
  108. package/packages/error-page/src/main.vue +44 -44
  109. package/packages/flow/index.js +5 -5
  110. package/packages/flow/src/component/Circulate.vue +413 -413
  111. package/packages/flow/src/component/CommonOpinions.vue +373 -373
  112. package/packages/flow/src/component/CustomPreset.vue +322 -322
  113. package/packages/flow/src/component/FileList.vue +97 -97
  114. package/packages/flow/src/component/FreeCirculation.vue +240 -240
  115. package/packages/flow/src/component/Preset.vue +255 -255
  116. package/packages/flow/src/component/SendMsg.vue +242 -242
  117. package/packages/flow/src/component/TimeLimit.vue +190 -190
  118. package/packages/flow/src/component/taskUnionExamine.vue +756 -756
  119. package/packages/flow/src/form.vue +121 -121
  120. package/packages/flow/src/freeStartFlow.vue +2846 -2846
  121. package/packages/flow/src/main.vue +3878 -3879
  122. package/packages/flow/src/processForm.vue +1365 -1365
  123. package/packages/flow/src/processReject.vue +309 -309
  124. package/packages/flow/src/reset.vue +942 -942
  125. package/packages/flow/src/startTaskRead.vue +692 -692
  126. package/packages/flow/src/supervise.vue +159 -159
  127. package/packages/flow/src/table.vue +58 -58
  128. package/packages/flow-group/index.js +5 -5
  129. package/packages/flow-group/src/main.vue +717 -717
  130. package/packages/flow-list/index.js +5 -5
  131. package/packages/flow-list/src/main.vue +1801 -1787
  132. package/packages/form/index.js +5 -5
  133. package/packages/form/src/main.vue +3901 -3901
  134. package/packages/form/src/table.vue +1512 -1512
  135. package/packages/handle-user/index.js +5 -5
  136. package/packages/handle-user/src/main.vue +137 -137
  137. package/packages/handler/index.js +5 -5
  138. package/packages/handler/src/main.vue +496 -496
  139. package/packages/icon/index.js +5 -5
  140. package/packages/icon/src/main.vue +104 -104
  141. package/packages/icons/index.js +5 -5
  142. package/packages/icons/src/icon.json +1 -1
  143. package/packages/icons/src/main.vue +81 -81
  144. package/packages/input/index.js +5 -5
  145. package/packages/input/src/main.vue +356 -356
  146. package/packages/input-number/index.js +5 -5
  147. package/packages/input-number/src/main.vue +106 -106
  148. package/packages/label/index.js +5 -5
  149. package/packages/label/src/main.vue +457 -457
  150. package/packages/layout/index.js +5 -5
  151. package/packages/layout/src/item.vue +152 -152
  152. package/packages/layout/src/main.vue +31 -31
  153. package/packages/login/index.js +5 -5
  154. package/packages/login/src/main.vue +2082 -2082
  155. package/packages/login/src/resetPassword.vue +557 -557
  156. package/packages/main/index.js +5 -5
  157. package/packages/main/src/default/message.vue +249 -249
  158. package/packages/main/src/default/notice.vue +157 -157
  159. package/packages/main/src/default/userinfo.vue +503 -503
  160. package/packages/main/src/public/online.vue +89 -89
  161. package/packages/main/src/public/search.vue +464 -464
  162. package/packages/main/src/public/settings.vue +227 -227
  163. package/packages/main/src/simplicity/apps.vue +388 -388
  164. package/packages/main/src/simplicity/avatar.vue +82 -82
  165. package/packages/main/src/simplicity/handler.vue +160 -160
  166. package/packages/main/src/simplicity/index.vue +2277 -2277
  167. package/packages/main/src/simplicity/lists.vue +84 -84
  168. package/packages/main/src/simplicity/menu-list.vue +135 -135
  169. package/packages/main/src/simplicity/message.vue +293 -293
  170. package/packages/main/src/simplicity/notice.vue +222 -222
  171. package/packages/main/src/simplicity/router-page.vue +45 -45
  172. package/packages/main/src/simplicity/sub-menu.vue +274 -274
  173. package/packages/main/src/simplicity/user.vue +259 -259
  174. package/packages/main/src/simplicity/userinfo.vue +401 -401
  175. package/packages/menu/index.js +5 -5
  176. package/packages/menu/src/main.vue +595 -595
  177. package/packages/nav/index.js +5 -5
  178. package/packages/nav/src/main.vue +351 -351
  179. package/packages/notify/index.js +5 -5
  180. package/packages/notify/src/main.vue +538 -538
  181. package/packages/page/index.js +5 -5
  182. package/packages/page/src/main.vue +167 -167
  183. package/packages/pagination/index.js +5 -5
  184. package/packages/pagination/src/main.vue +96 -96
  185. package/packages/player/index.js +5 -5
  186. package/packages/player/src/main.vue +194 -194
  187. package/packages/qr-code/index.js +5 -5
  188. package/packages/qr-code/src/main.vue +170 -170
  189. package/packages/radio-group/index.js +6 -6
  190. package/packages/radio-group/src/main.vue +319 -319
  191. package/packages/retrial-auth/index.js +5 -5
  192. package/packages/retrial-auth/src/main.vue +280 -280
  193. package/packages/select/index.js +5 -5
  194. package/packages/select/src/main.vue +782 -782
  195. package/packages/select-ganged/index.js +5 -5
  196. package/packages/select-ganged/src/main.vue +724 -724
  197. package/packages/selector/index.js +5 -5
  198. package/packages/selector/src/main.vue +761 -761
  199. package/packages/selector-panel/index.js +5 -5
  200. package/packages/selector-panel/src/main.vue +1027 -1027
  201. package/packages/selector-panel/src/selection.vue +170 -170
  202. package/packages/selector-panel/src/tree.vue +129 -129
  203. package/packages/sizer/index.js +5 -5
  204. package/packages/sizer/src/main.vue +254 -254
  205. package/packages/steps/index.js +5 -5
  206. package/packages/steps/src/main.vue +181 -181
  207. package/packages/switch/index.js +5 -5
  208. package/packages/switch/src/main.vue +170 -170
  209. package/packages/table-form/index.js +5 -5
  210. package/packages/tabs/index.js +5 -5
  211. package/packages/tabs/src/main.vue +788 -788
  212. package/packages/tabs-panel/index.js +5 -5
  213. package/packages/tabs-panel/src/main.vue +29 -29
  214. package/packages/theme-chalk/lib/base.css +1 -1
  215. package/packages/theme-chalk/lib/data-table.css +1 -1
  216. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  217. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  218. package/packages/theme-chalk/lib/icon.css +1 -1
  219. package/packages/theme-chalk/lib/index.css +1 -1
  220. package/packages/theme-chalk/lib/main.css +1 -1
  221. package/packages/theme-chalk/lib/menu.css +1 -1
  222. package/packages/theme-chalk/lib/simplicity.css +1 -1
  223. package/packages/theme-chalk/lib/sizer.css +1 -1
  224. package/packages/theme-chalk/lib/upload.css +1 -1
  225. package/packages/theme-chalk/src/base.scss +261 -261
  226. package/packages/theme-chalk/src/button-group.scss +176 -176
  227. package/packages/theme-chalk/src/button.scss +24 -24
  228. package/packages/theme-chalk/src/calendar.scss +113 -113
  229. package/packages/theme-chalk/src/card.scss +99 -99
  230. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  231. package/packages/theme-chalk/src/clients.scss +87 -87
  232. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  233. package/packages/theme-chalk/src/data-table.scss +297 -293
  234. package/packages/theme-chalk/src/date-picker.scss +7 -7
  235. package/packages/theme-chalk/src/dialog.scss +77 -77
  236. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  237. package/packages/theme-chalk/src/enterprise.scss +5 -5
  238. package/packages/theme-chalk/src/error-page.scss +18 -18
  239. package/packages/theme-chalk/src/flow-group.scss +110 -110
  240. package/packages/theme-chalk/src/flow-list.scss +39 -39
  241. package/packages/theme-chalk/src/flow.scss +351 -351
  242. package/packages/theme-chalk/src/fonts/iconfont.ttf +0 -0
  243. package/packages/theme-chalk/src/fonts/iconfont.woff +0 -0
  244. package/packages/theme-chalk/src/form.scss +501 -501
  245. package/packages/theme-chalk/src/handle-user.scss +40 -40
  246. package/packages/theme-chalk/src/handler.scss +148 -148
  247. package/packages/theme-chalk/src/icon.scss +1540 -1456
  248. package/packages/theme-chalk/src/icons.scss +99 -99
  249. package/packages/theme-chalk/src/input.scss +9 -9
  250. package/packages/theme-chalk/src/label.scss +24 -24
  251. package/packages/theme-chalk/src/layout.scss +46 -46
  252. package/packages/theme-chalk/src/login.scss +1006 -1006
  253. package/packages/theme-chalk/src/main.scss +663 -663
  254. package/packages/theme-chalk/src/menu.scss +224 -224
  255. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  256. package/packages/theme-chalk/src/nav.scss +111 -111
  257. package/packages/theme-chalk/src/page.scss +3 -3
  258. package/packages/theme-chalk/src/pagination.scss +29 -29
  259. package/packages/theme-chalk/src/player.scss +9 -9
  260. package/packages/theme-chalk/src/qr-code.scss +17 -17
  261. package/packages/theme-chalk/src/radio-group.scss +9 -9
  262. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  263. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  264. package/packages/theme-chalk/src/select.scss +8 -8
  265. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  266. package/packages/theme-chalk/src/selector.scss +114 -114
  267. package/packages/theme-chalk/src/simplicity.scss +1395 -1395
  268. package/packages/theme-chalk/src/sizer.scss +36 -36
  269. package/packages/theme-chalk/src/steps.scss +88 -88
  270. package/packages/theme-chalk/src/switch.scss +3 -3
  271. package/packages/theme-chalk/src/table-form.scss +1 -1
  272. package/packages/theme-chalk/src/tabs.scss +87 -87
  273. package/packages/theme-chalk/src/tips.scss +7 -7
  274. package/packages/theme-chalk/src/toolbar.scss +179 -179
  275. package/packages/theme-chalk/src/tree-group.scss +72 -72
  276. package/packages/theme-chalk/src/tree.scss +165 -165
  277. package/packages/theme-chalk/src/upload.scss +172 -172
  278. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  279. package/packages/tips/index.js +5 -5
  280. package/packages/tips/src/main.vue +141 -141
  281. package/packages/toolbar/index.js +5 -5
  282. package/packages/toolbar/src/main.vue +430 -430
  283. package/packages/tree/index.js +5 -5
  284. package/packages/tree-group/index.js +5 -5
  285. package/packages/upload/index.js +5 -5
  286. package/packages/upload/src/main.vue +1344 -1344
  287. package/packages/upload/src/picture.js +15 -15
  288. package/packages/wujie/index.js +5 -5
  289. package/packages/wujie/src/main.vue +145 -145
  290. package/packages/wxlogin/index.js +5 -5
  291. package/packages/wxlogin/src/main.vue +128 -128
  292. package/src/config/api.js +317 -315
  293. package/src/config/image.js +2 -2
  294. package/src/index.js +163 -163
  295. package/src/utils/bus.js +3 -3
  296. package/src/utils/date-util.js +312 -312
  297. package/src/utils/http.js +50 -50
  298. package/src/utils/rules.js +18 -18
  299. package/src/utils/store.js +21 -21
  300. package/src/utils/util.js +7 -10
  301. package/src/utils/webSocket.js +107 -107
  302. package/packages/.DS_Store +0 -0
  303. package/packages/calogin/.DS_Store +0 -0
  304. package/packages/date-picker/.DS_Store +0 -0
  305. package/packages/date-picker/src/.DS_Store +0 -0
  306. package/packages/dialog/.DS_Store +0 -0
  307. package/packages/flow/.DS_Store +0 -0
  308. package/packages/flow/src/.DS_Store +0 -0
  309. package/packages/flow-list/.DS_Store +0 -0
  310. package/packages/form/.DS_Store +0 -0
  311. package/packages/icon/.DS_Store +0 -0
  312. package/packages/login/.DS_Store +0 -0
  313. package/packages/main/.DS_Store +0 -0
  314. package/packages/main/src/.DS_Store +0 -0
  315. package/packages/menu/.DS_Store +0 -0
  316. package/packages/select/.DS_Store +0 -0
  317. package/packages/selector/.DS_Store +0 -0
  318. package/packages/selector-panel/.DS_Store +0 -0
  319. package/packages/theme-chalk/src/.DS_Store +0 -0
  320. package/packages/upload/.DS_Store +0 -0
  321. package/src/.DS_Store +0 -0
  322. package/src/utils/.DS_Store +0 -0
package/lib/flow.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 30);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 29);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -90,20 +90,174 @@ module.exports =
90
90
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
91
91
 
92
92
  "use strict";
93
- /* harmony import */ var babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4);
94
- /* harmony import */ var babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0__);
95
- /* harmony import */ var _config_api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
96
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(6);
97
- /* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_2__);
98
- /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5);
99
- /* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_3__);
100
- /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7);
101
- /* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(json_bigint__WEBPACK_IMPORTED_MODULE_4__);
102
- /* harmony import */ var _webSocket__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(8);
103
- /* harmony import */ var ua_parser_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(11);
104
- /* harmony import */ var ua_parser_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(ua_parser_js__WEBPACK_IMPORTED_MODULE_6__);
105
- /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(2);
106
- /* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_7__);
93
+
94
+ // EXTERNAL MODULE: external "babel-runtime/regenerator"
95
+ var regenerator_ = __webpack_require__(4);
96
+ var regenerator_default = /*#__PURE__*/__webpack_require__.n(regenerator_);
97
+
98
+ // EXTERNAL MODULE: ./src/config/api.js
99
+ var api = __webpack_require__(1);
100
+
101
+ // EXTERNAL MODULE: external "axios"
102
+ var external_axios_ = __webpack_require__(6);
103
+ var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
104
+
105
+ // EXTERNAL MODULE: external "qs"
106
+ var external_qs_ = __webpack_require__(5);
107
+ var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
108
+
109
+ // EXTERNAL MODULE: external "json-bigint"
110
+ var external_json_bigint_ = __webpack_require__(7);
111
+ var external_json_bigint_default = /*#__PURE__*/__webpack_require__.n(external_json_bigint_);
112
+
113
+ // EXTERNAL MODULE: external "sockjs-client"
114
+ var external_sockjs_client_ = __webpack_require__(8);
115
+ var external_sockjs_client_default = /*#__PURE__*/__webpack_require__.n(external_sockjs_client_);
116
+
117
+ // EXTERNAL MODULE: external "stompjs"
118
+ var external_stompjs_ = __webpack_require__(9);
119
+ var external_stompjs_default = /*#__PURE__*/__webpack_require__.n(external_stompjs_);
120
+
121
+ // CONCATENATED MODULE: ./src/utils/webSocket.js
122
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
123
+
124
+
125
+
126
+
127
+ var webSocket_WebSocket = function () {
128
+ // 构造函数
129
+ function WebSocket() {
130
+ _classCallCheck(this, WebSocket);
131
+
132
+ this.host = sessionStorage.getItem('wshost') || '';
133
+ this.tryTimes = 1; // 重连次数
134
+ this.callback = null; // 回调函数
135
+ this.client = null; // stomp对象
136
+ this.reconTimeout = null; // 重连延时器
137
+ this.debug = true; // 调试
138
+ this.interval = 20; // 重连间隔时间
139
+ this.vm = null;
140
+ this.nextDate = 0;
141
+ this.connects = 1;
142
+ this.recon = false;
143
+ this.sendTimeout = null;
144
+ this.socket = null;
145
+ this.subscription = null;
146
+ }
147
+
148
+ /** socket连接 */
149
+
150
+
151
+ WebSocket.prototype.connect = function connect() {
152
+ var _this = this;
153
+
154
+ if (!this.client) {
155
+ // 连接SockJS
156
+ this.socket = new external_sockjs_client_default.a(this.host + this.url, { timeout: 60000 });
157
+ this.client = external_stompjs_default.a.over(this.socket);
158
+ }
159
+
160
+ // 日志不打印
161
+ if (!this.debug) {
162
+ this.client.debug = function () {};
163
+ }
164
+
165
+ // 向服务器发起websocket连接
166
+ this.client.connect({}, function () {
167
+ _this.recon = true;
168
+ // tryTimes定义重置
169
+ _this.connects = 1;
170
+ // 订阅消息
171
+ _this.subscribe();
172
+ }, function (error) {
173
+ _this.unsubscribe();
174
+ _this.client = null;
175
+ var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
176
+ if (_this.connects > 5 && diffSecond < _this.interval) {
177
+ _this.error && _this.error(error);
178
+ } else {
179
+ _this.reconTimeout = setTimeout(function () {
180
+ _this.connect();
181
+ _this.connects++;
182
+ }, 5000);
183
+ }
184
+ });
185
+ }; // 清除订阅
186
+
187
+
188
+ WebSocket.prototype.unsubscribe = function unsubscribe() {
189
+ if (this.subscription) {
190
+ this.subscription.unsubscribe();
191
+ this.subscription = null;
192
+ }
193
+ };
194
+ /** 订阅服务端 */
195
+
196
+
197
+ WebSocket.prototype.subscribe = function subscribe() {
198
+ var _this2 = this;
199
+
200
+ // 订阅服务端提供的某个topic
201
+ this.subscription = this.client.subscribe(this.take, function (response) {
202
+ if (response && (_this2.callback || _this2.success)) {
203
+ var callback = _this2.callback || _this2.success;
204
+ callback(JSON.parse(response.body));
205
+ }
206
+ });
207
+ };
208
+
209
+ /** 赋值、初始化socket */
210
+
211
+
212
+ WebSocket.prototype.init = function init(option, vm) {
213
+ for (var i in option) {
214
+ this[i] = option[i];
215
+ }
216
+ this.vm = vm;
217
+ // 初始化连接
218
+ this.connect();
219
+ };
220
+
221
+ /** 发送消息 */
222
+
223
+
224
+ WebSocket.prototype.send = function send(data) {
225
+ var _this3 = this;
226
+
227
+ if (this.recon) {
228
+ clearTimeout(this.sendTimeout);
229
+ this.client.send(this.take, {}, typeof data === 'string' ? data : JSON.stringify(data));
230
+ } else {
231
+ this.sendTimeout = setTimeout(function () {
232
+ _this3.send(data);
233
+ }, 1000);
234
+ }
235
+ };
236
+
237
+ /** 销毁 */
238
+
239
+
240
+ WebSocket.prototype.destroy = function destroy() {
241
+ // 断开连接,清除定时器
242
+ this.unsubscribe();
243
+ if (this.client) {
244
+ this.client.disconnect();
245
+ };
246
+ this.reconTimeout && clearTimeout(this.reconTimeout);
247
+ this.sendTimeout && clearTimeout(this.sendTimeout);
248
+ };
249
+
250
+ return WebSocket;
251
+ }();
252
+
253
+ /* harmony default export */ var webSocket = (webSocket_WebSocket);
254
+ // EXTERNAL MODULE: external "ua-parser-js"
255
+ var external_ua_parser_js_ = __webpack_require__(10);
256
+
257
+ // EXTERNAL MODULE: external "eoss-element"
258
+ var external_eoss_element_ = __webpack_require__(2);
259
+
260
+ // CONCATENATED MODULE: ./src/utils/util.js
107
261
 
108
262
 
109
263
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
@@ -122,8 +276,8 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
122
276
  **/
123
277
 
124
278
  /* eslint-disable indent */
125
- var sm2 = __webpack_require__(12).sm2;
126
- var lodash = __webpack_require__(13);
279
+ var sm2 = __webpack_require__(11).sm2;
280
+ var lodash = __webpack_require__(12);
127
281
 
128
282
 
129
283
 
@@ -133,7 +287,7 @@ var lodash = __webpack_require__(13);
133
287
 
134
288
  var win = window.__WUJIE_RAW_WINDOW__ ? window.__WUJIE_RAW_WINDOW__ : window;
135
289
  var isIE = /MSIE|Trident/.test(navigator.userAgent);
136
- var parser = new ua_parser_js__WEBPACK_IMPORTED_MODULE_6__["UAParser"]();
290
+ var parser = new external_ua_parser_js_["UAParser"]();
137
291
  var $hueStep = 2;
138
292
  var $saturationStep1 = 0.16;
139
293
  var $saturationStep2 = 0.05;
@@ -141,12 +295,12 @@ var $brightnessStep1 = 0.05;
141
295
  var $brightnessStep2 = 0.15;
142
296
  var $lightColorCount = 5;
143
297
  var $darkColorCount = 4;
144
- var publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
298
+ var util_publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
145
299
  var loginMsg = void 0;
146
300
  var initAuth = void 0;
147
301
  var $_http = void 0;
148
302
 
149
- var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_4___default()({ storeAsString: true });
303
+ var JSONbigToString = external_json_bigint_default()({ storeAsString: true });
150
304
 
151
305
 
152
306
  /**
@@ -181,7 +335,7 @@ var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_4___default()({ store
181
335
  // pendingRequest.delete(requestKey);
182
336
  // }
183
337
  // }
184
- var ajax = function ajax(_ref) {
338
+ var util_ajax = function ajax(_ref) {
185
339
  var headers = _ref.headers,
186
340
  method = _ref.method,
187
341
  url = _ref.url,
@@ -221,7 +375,7 @@ var ajax = function ajax(_ref) {
221
375
  var http = $_http;
222
376
  if (!http) {
223
377
  var baseURL = host === true ? getStorage('host') : host === false ? '' : host;
224
- http = axios__WEBPACK_IMPORTED_MODULE_2___default.a.create({
378
+ http = external_axios_default.a.create({
225
379
  baseURL: baseURL,
226
380
  timeout: 99000,
227
381
  transformResponse: [function (data) {
@@ -259,7 +413,7 @@ var ajax = function ajax(_ref) {
259
413
  });
260
414
  }
261
415
  if (response.status === 200) {
262
- responses(response.data);
416
+ util_responses(response.data);
263
417
  // eslint-disable-next-line no-undef
264
418
  return Promise.resolve(JSON.parse(JSON.stringify(response.data)));
265
419
  }
@@ -388,7 +542,7 @@ var ajax = function ajax(_ref) {
388
542
  }
389
543
  }
390
544
  if (method === 'post' && format) {
391
- data = qs__WEBPACK_IMPORTED_MODULE_3___default.a.stringify(data, formatConfig);
545
+ data = external_qs_default.a.stringify(data, formatConfig);
392
546
  if (!header['content-type'] && !header['Content-Type']) {
393
547
  header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
394
548
  }
@@ -461,7 +615,7 @@ var ajaxStream = function ajaxStream(_ref2) {
461
615
  var done = false;
462
616
  var finishThink = false;
463
617
  var hasThink = false;
464
- ajax(_extends({
618
+ util_ajax(_extends({
465
619
  timeout: 990000,
466
620
  format: false,
467
621
  method: method,
@@ -932,6 +1086,7 @@ var delUrlParam = function delUrlParam(_ref4) {
932
1086
  }
933
1087
  var src = url ? decodeURI(url) : decodeURI(pUrl);
934
1088
  var param = getParams({ url: src });
1089
+
935
1090
  if (param && key.length) {
936
1091
  if (Array.isArray(key)) {
937
1092
  key.forEach(function (item) {
@@ -945,26 +1100,21 @@ var delUrlParam = function delUrlParam(_ref4) {
945
1100
  src = src.replace(reg, '');
946
1101
  }
947
1102
  }
948
- if (Object.keys(param).length === key.length) {
949
- src = src.replace('?', '');
950
- }
951
1103
  });
952
1104
  } else {
953
1105
  if (param.hasOwnProperty(key)) {
954
1106
  var reg = key + '=' + param[key];
955
- if (Object.keys(param).length > 1) {
956
- if (src.indexOf(reg + '&') > -1) {
957
- src = src.replace(reg + '&', '');
958
- }
959
- if (src.indexOf('&' + reg) > -1) {
960
- src = src.replace('&' + reg, '');
961
- }
1107
+ if (src.indexOf(reg + '&') > -1) {
1108
+ src = src.replace(reg + '&', '');
1109
+ } else if (src.indexOf('&' + reg) > -1) {
1110
+ src = src.replace('&' + reg, '');
962
1111
  } else {
963
- src = src.replace('?' + reg, '');
1112
+ src = src.replace(reg, '');
964
1113
  }
965
1114
  }
966
1115
  }
967
1116
  }
1117
+ src.endsWith('?') && (src = src.replace('?', ''));
968
1118
  return src;
969
1119
  };
970
1120
 
@@ -1005,8 +1155,8 @@ var downloadFile = function downloadFile(fileUrl) {
1005
1155
  * @param {string} [data] - 被加密的字符串
1006
1156
  **/
1007
1157
  var esEncode = function esEncode(value) {
1008
- var kleng = publicKey.length;
1009
- var kstr = publicKey.split('');
1158
+ var kleng = util_publicKey.length;
1159
+ var kstr = util_publicKey.split('');
1010
1160
  var result = '';
1011
1161
  var cat = void 0;
1012
1162
  var cat1 = void 0;
@@ -1033,7 +1183,7 @@ var esEncode = function esEncode(value) {
1033
1183
  * @param {string} [key] - 私钥
1034
1184
  **/
1035
1185
  var esDecode = function esDecode(value) {
1036
- var kleng = publicKey.length;
1186
+ var kleng = util_publicKey.length;
1037
1187
  var result = void 0;
1038
1188
  var cat1 = void 0;
1039
1189
  var cat2 = void 0;
@@ -1043,11 +1193,11 @@ var esDecode = function esDecode(value) {
1043
1193
  arr = new Array(Math.floor(value.length / 3));
1044
1194
  result = arr.length;
1045
1195
  for (var i = 0; i < result; i++) {
1046
- cat1 = publicKey.indexOf(value.charAt(num));
1196
+ cat1 = util_publicKey.indexOf(value.charAt(num));
1047
1197
  num++;
1048
- cat2 = publicKey.indexOf(value.charAt(num));
1198
+ cat2 = util_publicKey.indexOf(value.charAt(num));
1049
1199
  num++;
1050
- cat3 = publicKey.indexOf(value.charAt(num));
1200
+ cat3 = util_publicKey.indexOf(value.charAt(num));
1051
1201
  num++;
1052
1202
  arr[i] = cat1 * kleng * kleng + cat2 * kleng + cat3;
1053
1203
  }
@@ -1548,8 +1698,8 @@ var getLightness = function getLightness($v, $i, $isLight) {
1548
1698
  * @date 2022年5月7日
1549
1699
  * @param {function} callback - 回调函数
1550
1700
  **/
1551
- var getMainConfig = function getMainConfig(callback) {
1552
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "sb"] }).then(function (res) {
1701
+ var util_getMainConfig = function getMainConfig(callback) {
1702
+ util_ajax({ url: api["sb" /* mainConfig */] }).then(function (res) {
1553
1703
  if (res && res.rCode === 0) {
1554
1704
  callback(res.results);
1555
1705
  }
@@ -2251,7 +2401,7 @@ var isFunction = function isFunction(obj) {
2251
2401
  * @param {boolean} [redirect] - 是否重定向(用于新脚手架)
2252
2402
  **/
2253
2403
  var isLogined = function () {
2254
- var _ref10 = _asyncToGenerator( /*#__PURE__*/babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.mark(function _callee(_ref11) {
2404
+ var _ref10 = _asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(_ref11) {
2255
2405
  var to = _ref11.to,
2256
2406
  from = _ref11.from,
2257
2407
  next = _ref11.next,
@@ -2261,7 +2411,7 @@ var isLogined = function () {
2261
2411
  loginPage = _ref11.loginPage,
2262
2412
  redirect = _ref11.redirect;
2263
2413
  var quit, pathname, path, token, loadingInstance, referrerUrl;
2264
- return babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.wrap(function _callee$(_context) {
2414
+ return regenerator_default.a.wrap(function _callee$(_context) {
2265
2415
  while (1) {
2266
2416
  switch (_context.prev = _context.next) {
2267
2417
  case 0:
@@ -2275,7 +2425,7 @@ var isLogined = function () {
2275
2425
  break;
2276
2426
  }
2277
2427
 
2278
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "rb"] }).then(function (res) {
2428
+ util_ajax({ method: 'post', url: api["rb" /* logout */] }).then(function (res) {
2279
2429
  if (res.rCode === 0) {
2280
2430
  removeStorage();
2281
2431
  }
@@ -2326,11 +2476,11 @@ var isLogined = function () {
2326
2476
  break;
2327
2477
  }
2328
2478
 
2329
- loadingInstance = eoss_element__WEBPACK_IMPORTED_MODULE_7__["Loading"].service({ text: '页面加载中', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.65)' });
2479
+ loadingInstance = external_eoss_element_["Loading"].service({ text: '页面加载中', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.65)' });
2330
2480
  _context.next = 17;
2331
- return ajax({
2481
+ return util_ajax({
2332
2482
  method: 'post',
2333
- url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* authCenter */ "b"],
2483
+ url: api["b" /* authCenter */],
2334
2484
  data: to.query
2335
2485
  }).then(function (res) {
2336
2486
  if (res.rCode === 0) {
@@ -2380,7 +2530,7 @@ var isLogined = function () {
2380
2530
  }
2381
2531
  break;
2382
2532
  case 4:
2383
- eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"].alert(results.msg ? results.msg : '账号未绑定,账号密码登录后自动绑定!', '提示', {
2533
+ external_eoss_element_["MessageBox"].alert(results.msg ? results.msg : '账号未绑定,账号密码登录后自动绑定!', '提示', {
2384
2534
  confirmButtonText: '确定',
2385
2535
  type: 'error',
2386
2536
  callback: function callback() {
@@ -2411,7 +2561,7 @@ var isLogined = function () {
2411
2561
  default:
2412
2562
  }
2413
2563
  } else {
2414
- eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"].alert(res.msg, '提示', {
2564
+ external_eoss_element_["MessageBox"].alert(res.msg, '提示', {
2415
2565
  confirmButtonText: '确定',
2416
2566
  type: 'error',
2417
2567
  callback: function callback() {
@@ -2595,9 +2745,9 @@ var loadJs = function loadJs(_ref13) {
2595
2745
  * @date 2022年5月7日
2596
2746
  * @param {String} [text] - 显示的文本内容
2597
2747
  **/
2598
- var loading = function loading($loading, res) {
2748
+ var util_loading = function loading($loading, res) {
2599
2749
  if (!$loading) {
2600
- $loading = eoss_element__WEBPACK_IMPORTED_MODULE_7__["Loading"].service;
2750
+ $loading = external_eoss_element_["Loading"].service;
2601
2751
  }
2602
2752
  if (isObject(res)) {
2603
2753
  var config = extend({}, {
@@ -2751,7 +2901,7 @@ var replenish = function replenish(_ref15) {
2751
2901
  * @date 2022年5月7日
2752
2902
  * @param {object} [data] - 数字或字符串型数字
2753
2903
  **/
2754
- var responses = function responses(data) {
2904
+ var util_responses = function responses(data) {
2755
2905
  if (data.rCode === 64 || data.rCode === 65 || data.rCode === 67 || data.rCode === 69) {
2756
2906
  removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump', 'showLaunch']);
2757
2907
  var href = '';
@@ -2766,7 +2916,7 @@ var responses = function responses(data) {
2766
2916
  clearTimeout(loginMsg);
2767
2917
  loginMsg = setTimeout(function () {
2768
2918
  sessionStorage.setItem('remind', 1);
2769
- eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"].confirm(data.rCode === 69 ? '该账号在其他地方已登陆!' : '登录已过期,请重新登录!', '提示', data.rCode === 69 ? {
2919
+ external_eoss_element_["MessageBox"].confirm(data.rCode === 69 ? '该账号在其他地方已登陆!' : '登录已过期,请重新登录!', '提示', data.rCode === 69 ? {
2770
2920
  confirmButtonText: '确定',
2771
2921
  closeOnClickModal: false,
2772
2922
  type: 'warning'
@@ -2817,7 +2967,7 @@ var responses = function responses(data) {
2817
2967
  } else if (data.rCode === 61) {
2818
2968
  clearTimeout(initAuth);
2819
2969
  initAuth = setTimeout(function () {
2820
- Object(eoss_element__WEBPACK_IMPORTED_MODULE_7__["MessageBox"])({
2970
+ Object(external_eoss_element_["MessageBox"])({
2821
2971
  title: '请进行二次鉴权',
2822
2972
  closeOnClickModal: false,
2823
2973
  closeOnPressEscape: false,
@@ -3024,8 +3174,8 @@ var setFavicon = function setFavicon(url) {
3024
3174
  * @param {Function} [success] - 调试
3025
3175
  * @param {Function} [error] - 重连间隔时间
3026
3176
  **/
3027
- function socket(option, vm) {
3028
- var socket = new _webSocket__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"]();
3177
+ function util_socket(option, vm) {
3178
+ var socket = new webSocket();
3029
3179
  socket.init(option, vm);
3030
3180
  return socket;
3031
3181
  }
@@ -3215,7 +3365,7 @@ var toFunction = function toFunction(str) {
3215
3365
  return fn;
3216
3366
  } else {
3217
3367
  // eslint-disable-next-line no-eval
3218
- return eval(str);
3368
+ return String.fromCharCode.apply(null, str);
3219
3369
  }
3220
3370
  };
3221
3371
 
@@ -3633,8 +3783,8 @@ var winTopOpen = function winTopOpen(config) {
3633
3783
  }
3634
3784
  };
3635
3785
 
3636
- /* harmony default export */ __webpack_exports__["a"] = ({
3637
- ajax: ajax,
3786
+ /* harmony default export */ var util = __webpack_exports__["a"] = ({
3787
+ ajax: util_ajax,
3638
3788
  ajaxStream: ajaxStream,
3639
3789
  arrUnique: arrUnique,
3640
3790
  average: average,
@@ -3664,7 +3814,7 @@ var winTopOpen = function winTopOpen(config) {
3664
3814
  getMyWinTop: getMyWinTop,
3665
3815
  getWeekNumber: getWeekNumber,
3666
3816
  getLength: getLength,
3667
- getMainConfig: getMainConfig,
3817
+ getMainConfig: util_getMainConfig,
3668
3818
  getMinute: getMinute,
3669
3819
  getMonth: getMonth,
3670
3820
  getObjectType: getObjectType,
@@ -3693,7 +3843,7 @@ var winTopOpen = function winTopOpen(config) {
3693
3843
  isObjectEqual: isObjectEqual,
3694
3844
  jointUrl: jointUrl,
3695
3845
  loadJs: loadJs,
3696
- loading: loading,
3846
+ loading: util_loading,
3697
3847
  lowerCase: lowerCase,
3698
3848
  mixColor: mixColor,
3699
3849
  overbrim: overbrim,
@@ -3702,7 +3852,7 @@ var winTopOpen = function winTopOpen(config) {
3702
3852
  receiveMessage: receiveMessage,
3703
3853
  removeStorage: removeStorage,
3704
3854
  replenish: replenish,
3705
- responses: responses,
3855
+ responses: util_responses,
3706
3856
  rgbToHsv: rgbToHsv,
3707
3857
  rmbToCapital: rmbToCapital,
3708
3858
  sendMessage: sendMessage,
@@ -3710,7 +3860,7 @@ var winTopOpen = function winTopOpen(config) {
3710
3860
  setFavicon: setFavicon,
3711
3861
  setScale: setScale,
3712
3862
  setStorage: setStorage,
3713
- socket: socket,
3863
+ socket: util_socket,
3714
3864
  startWith: startWith,
3715
3865
  sum: sum,
3716
3866
  takeLeft: takeLeft,
@@ -3740,14 +3890,14 @@ var winTopOpen = function winTopOpen(config) {
3740
3890
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
3741
3891
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return logout; });
3742
3892
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initLogin; });
3743
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return switchUserTo; });
3893
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return switchUserTo; });
3744
3894
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3745
3895
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getLoginCode; });
3746
3896
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
3747
3897
  /* unused harmony export updateCode */
3748
3898
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getModifyPassCode; });
3749
3899
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3750
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return loginModifyPassword; });
3900
+ /* unused harmony export loginModifyPasswomodifyrd */
3751
3901
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3752
3902
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return initModifyPassword; });
3753
3903
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
@@ -3755,15 +3905,15 @@ var winTopOpen = function winTopOpen(config) {
3755
3905
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
3756
3906
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return initRetrialAuth; });
3757
3907
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getRetrialAuthCode; });
3758
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return scanCodeRetrialAuth; });
3908
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return scanCodeRetrialAuth; });
3759
3909
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3760
3910
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
3761
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return userOnline; });
3911
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return userOnline; });
3762
3912
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getUserAppWithTag; });
3763
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return recordUserApp; });
3913
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return recordUserApp; });
3764
3914
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return mainConfig; });
3765
3915
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return initUserSet; });
3766
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return updateUserInfo; });
3916
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return updateUserInfo; });
3767
3917
  /* unused harmony export getUserImgUrl */
3768
3918
  /* unused harmony export getDoorIndex */
3769
3919
  /* unused harmony export refreshOnlineUsers */
@@ -3772,22 +3922,22 @@ var winTopOpen = function winTopOpen(config) {
3772
3922
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getComplexApplications; });
3773
3923
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getComplexApplicationsNew; });
3774
3924
  /* unused harmony export getUserCustomInfo */
3775
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return updateUserCustomInfo; });
3776
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return sysMsgPage; });
3925
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return updateUserCustomInfo; });
3926
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return sysMsgPage; });
3777
3927
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return ignoreSysMsg; });
3778
3928
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return ignoreAllSysMsg; });
3779
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return searchType; });
3929
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return searchType; });
3780
3930
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getSysParam; });
3781
3931
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getAdjunctProperties; });
3782
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return uploads; });
3783
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return uploadOnlyOne; });
3932
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return uploads; });
3933
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return uploadOnlyOne; });
3784
3934
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getAdjunctFileInfos; });
3785
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return uploadSort; });
3935
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return uploadSort; });
3786
3936
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
3787
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return uploadDownloads; });
3788
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return previewAdjunct; });
3789
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return previewAdjunct2; });
3790
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return previewAdjunctOffice; });
3937
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return uploadDownloads; });
3938
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return previewAdjunct; });
3939
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return previewAdjunct2; });
3940
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return previewAdjunctOffice; });
3791
3941
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3792
3942
  /* unused harmony export upload_updateClassify */
3793
3943
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3802,13 +3952,13 @@ var winTopOpen = function winTopOpen(config) {
3802
3952
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return gethelpdoc; });
3803
3953
  /* unused harmony export getCurrentuser */
3804
3954
  /* unused harmony export mainDetail */
3805
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toStartFlow; });
3806
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return tempSave; });
3955
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toStartFlow; });
3956
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return tempSave; });
3807
3957
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3808
3958
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3809
3959
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
3810
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return saveCommonOpinion; });
3811
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return updateCommonOpinion; });
3960
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return saveCommonOpinion; });
3961
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return updateCommonOpinion; });
3812
3962
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3813
3963
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getProcessDefList; });
3814
3964
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNodeInfo; });
@@ -3817,74 +3967,75 @@ var winTopOpen = function winTopOpen(config) {
3817
3967
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
3818
3968
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getNotificationMsg; });
3819
3969
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getHandleInfoHtml; });
3820
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskHandleHtml; });
3970
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskHandleHtml; });
3821
3971
  /* unused harmony export getView */
3822
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return register; });
3823
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pendedhistoryList; });
3824
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskRejectHtml; });
3825
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskRejectHtml; });
3826
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toStartTaskRead; });
3827
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toStartTaskReadIndex; });
3828
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReadHtml; });
3829
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return rejectAndEnd; });
3830
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toSendMsg; });
3831
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sendMsg; });
3972
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return register; });
3973
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return pendedhistoryList; });
3974
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskRejectHtml; });
3975
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskRejectHtml; });
3976
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toStartTaskRead; });
3977
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toStartTaskReadIndex; });
3978
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskReadHtml; });
3979
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return rejectAndEnd; });
3980
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toSendMsg; });
3981
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return sendMsg; });
3832
3982
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
3833
3983
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return handleInfo; });
3834
3984
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return loginUserInfo; });
3835
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return wss; });
3836
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return topic; });
3985
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return wss; });
3986
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return topic; });
3837
3987
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getPresetCustomInfo; });
3838
3988
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getPresetNodeInfo; });
3839
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return toTaskTransferIndex; });
3840
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return taskTransfer; });
3841
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toPresetInfoListIndex; });
3989
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return toTaskTransferIndex; });
3990
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return taskTransfer; });
3991
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toPresetInfoListIndex; });
3842
3992
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3843
3993
  /* unused harmony export historyListJson */
3844
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return pendedhistoryListJson; });
3845
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return pressListJson; });
3994
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return pendedhistoryListJson; });
3995
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return pressListJson; });
3846
3996
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3997
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return modifyFlow; });
3847
3998
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return isCanStartSubFlow; });
3848
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return toTaskUnionExamine; });
3849
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return taskUnionExamine; });
3850
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTaskTakeAdvice; });
3851
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskTakeAdvice; });
3852
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskStartDraft; });
3853
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskSupervise; });
3854
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskSuperviseSub; });
3855
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskStartDraft; });
3856
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskReview; });
3857
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskReview; });
3858
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return toTaskUnionSeal; });
3859
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return taskUnionSeal; });
3860
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toTwoOfficesDispatch; });
3861
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return twoOfficesDispatch; });
3862
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toResetProcessIndex; });
3863
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return resetProcess; });
3864
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskContinuationIndex; });
3865
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskContinuation; });
3999
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return toTaskUnionExamine; });
4000
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return taskUnionExamine; });
4001
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return toTaskTakeAdvice; });
4002
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return taskTakeAdvice; });
4003
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskStartDraft; });
4004
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskSupervise; });
4005
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTaskSuperviseSub; });
4006
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskStartDraft; });
4007
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskReview; });
4008
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskReview; });
4009
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toTaskUnionSeal; });
4010
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return taskUnionSeal; });
4011
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toTwoOfficesDispatch; });
4012
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return twoOfficesDispatch; });
4013
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toResetProcessIndex; });
4014
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return resetProcess; });
4015
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskContinuationIndex; });
4016
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskContinuation; });
3866
4017
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getFreeStartFlowParams; });
3867
4018
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return freeStartFlowWithSubmitTask; });
3868
4019
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3869
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return pendedhistoryListWithCircularReadJson; });
4020
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return pendedhistoryListWithCircularReadJson; });
3870
4021
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return fyListJson; });
3871
4022
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3872
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskReadWithDraw; });
3873
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
4023
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskReadWithDraw; });
4024
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3874
4025
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3875
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sendList; });
3876
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sendInfo; });
4026
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sendList; });
4027
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return sendInfo; });
3877
4028
  /* unused harmony export sendSave */
3878
4029
  /* unused harmony export sendUpdate */
3879
4030
  /* unused harmony export sendDelete */
3880
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendBatch; });
4031
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return sendBatch; });
3881
4032
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
3882
4033
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
3883
4034
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
3884
4035
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getNodeInfoForStart; });
3885
4036
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlow; });
3886
4037
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getUrgencyLevelChangedNotificationType; });
3887
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toFreeTaskCircularRead; });
4038
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toFreeTaskCircularRead; });
3888
4039
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return freeTaskCircularRead; });
3889
4040
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3890
4041
  // 登录
@@ -3900,7 +4051,7 @@ var doCodeLogin = '/sso2/signIn/auth/doCodeLogin'; // 短信、邮箱验证码
3900
4051
  var updateCode = '/sso2/signIn/assembly/getSmsModifyPassVerificationCode'; // 获取短信验证码(修改密码)
3901
4052
  var getModifyPassCode = '/sso2/signIn/assembly/getModifyPassCode'; // 获取修改密码的短信、邮箱验证码
3902
4053
  var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置密码
3903
- var loginModifyPassword = '/sso2/signIn/auth/loginModifyPassword'; // 原始密码重置密码
4054
+ var loginModifyPasswomodifyrd = '/sso2/signIn/auth/loginModifyPassword'; // 原始密码重置密码
3904
4055
  var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
3905
4056
  var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
3906
4057
  var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
@@ -4073,6 +4224,8 @@ var pendedhistoryListJson = flowPendingPrefix + '/pendedhistoryManager/pendedhis
4073
4224
  var pressListJson = flowPendingPrefix + '/wfUrgeRecord/listJson.dhtml';
4074
4225
  // 删除流程列表节点
4075
4226
  var deleteFlow = flowPendingPrefix + '/pendedhistoryManager/delete.dhtml';
4227
+ // 修改流程列表意见
4228
+ var modifyFlow = flowPendingPrefix + '/pendedhistoryManager/modify.dhtml';
4076
4229
  // 是否允许启动子流程(必经节点)
4077
4230
  var isCanStartSubFlow = flowPendingPrefix + '/task/taskHandle/isCanStartSubFlow.dhtml';
4078
4231
  // 联合审核
@@ -4289,182 +4442,40 @@ module.exports = require("json-bigint");
4289
4442
 
4290
4443
  /***/ }),
4291
4444
  /* 8 */
4292
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
4293
-
4294
- "use strict";
4295
- /* harmony import */ var sockjs_client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9);
4296
- /* harmony import */ var sockjs_client__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(sockjs_client__WEBPACK_IMPORTED_MODULE_0__);
4297
- /* harmony import */ var stompjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(10);
4298
- /* harmony import */ var stompjs__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(stompjs__WEBPACK_IMPORTED_MODULE_1__);
4299
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
4300
-
4301
-
4302
-
4303
-
4304
- var WebSocket = function () {
4305
- // 构造函数
4306
- function WebSocket() {
4307
- _classCallCheck(this, WebSocket);
4308
-
4309
- this.host = sessionStorage.getItem('wshost') || '';
4310
- this.tryTimes = 1; // 重连次数
4311
- this.callback = null; // 回调函数
4312
- this.client = null; // stomp对象
4313
- this.reconTimeout = null; // 重连延时器
4314
- this.debug = true; // 调试
4315
- this.interval = 20; // 重连间隔时间
4316
- this.vm = null;
4317
- this.nextDate = 0;
4318
- this.connects = 1;
4319
- this.recon = false;
4320
- this.sendTimeout = null;
4321
- this.socket = null;
4322
- this.subscription = null;
4323
- }
4324
-
4325
- /** socket连接 */
4326
-
4327
-
4328
- WebSocket.prototype.connect = function connect() {
4329
- var _this = this;
4330
-
4331
- if (!this.client) {
4332
- // 连接SockJS
4333
- this.socket = new sockjs_client__WEBPACK_IMPORTED_MODULE_0___default.a(this.host + this.url, { timeout: 60000 });
4334
- this.client = stompjs__WEBPACK_IMPORTED_MODULE_1___default.a.over(this.socket);
4335
- }
4336
-
4337
- // 日志不打印
4338
- if (!this.debug) {
4339
- this.client.debug = function () {};
4340
- }
4341
-
4342
- // 向服务器发起websocket连接
4343
- this.client.connect({}, function () {
4344
- _this.recon = true;
4345
- // tryTimes定义重置
4346
- _this.connects = 1;
4347
- // 订阅消息
4348
- _this.subscribe();
4349
- }, function (error) {
4350
- _this.unsubscribe();
4351
- _this.client = null;
4352
- var diffSecond = parseInt((new Date() - _this.nextDate) / 1000, 10);
4353
- if (_this.connects > 5 && diffSecond < _this.interval) {
4354
- _this.error && _this.error(error);
4355
- } else {
4356
- _this.reconTimeout = setTimeout(function () {
4357
- _this.connect();
4358
- _this.connects++;
4359
- }, 5000);
4360
- }
4361
- });
4362
- }; // 清除订阅
4363
-
4364
-
4365
- WebSocket.prototype.unsubscribe = function unsubscribe() {
4366
- if (this.subscription) {
4367
- this.subscription.unsubscribe();
4368
- this.subscription = null;
4369
- }
4370
- };
4371
- /** 订阅服务端 */
4372
-
4373
-
4374
- WebSocket.prototype.subscribe = function subscribe() {
4375
- var _this2 = this;
4376
-
4377
- // 订阅服务端提供的某个topic
4378
- this.subscription = this.client.subscribe(this.take, function (response) {
4379
- if (response && (_this2.callback || _this2.success)) {
4380
- var callback = _this2.callback || _this2.success;
4381
- callback(JSON.parse(response.body));
4382
- }
4383
- });
4384
- };
4385
-
4386
- /** 赋值、初始化socket */
4387
-
4388
-
4389
- WebSocket.prototype.init = function init(option, vm) {
4390
- for (var i in option) {
4391
- this[i] = option[i];
4392
- }
4393
- this.vm = vm;
4394
- // 初始化连接
4395
- this.connect();
4396
- };
4397
-
4398
- /** 发送消息 */
4399
-
4400
-
4401
- WebSocket.prototype.send = function send(data) {
4402
- var _this3 = this;
4403
-
4404
- if (this.recon) {
4405
- clearTimeout(this.sendTimeout);
4406
- this.client.send(this.take, {}, typeof data === 'string' ? data : JSON.stringify(data));
4407
- } else {
4408
- this.sendTimeout = setTimeout(function () {
4409
- _this3.send(data);
4410
- }, 1000);
4411
- }
4412
- };
4413
-
4414
- /** 销毁 */
4415
-
4416
-
4417
- WebSocket.prototype.destroy = function destroy() {
4418
- // 断开连接,清除定时器
4419
- this.unsubscribe();
4420
- if (this.client) {
4421
- this.client.disconnect();
4422
- };
4423
- this.reconTimeout && clearTimeout(this.reconTimeout);
4424
- this.sendTimeout && clearTimeout(this.sendTimeout);
4425
- };
4426
-
4427
- return WebSocket;
4428
- }();
4429
-
4430
- /* harmony default export */ __webpack_exports__["a"] = (WebSocket);
4431
-
4432
- /***/ }),
4433
- /* 9 */
4434
4445
  /***/ (function(module, exports) {
4435
4446
 
4436
4447
  module.exports = require("sockjs-client");
4437
4448
 
4438
4449
  /***/ }),
4439
- /* 10 */
4450
+ /* 9 */
4440
4451
  /***/ (function(module, exports) {
4441
4452
 
4442
4453
  module.exports = require("stompjs");
4443
4454
 
4444
4455
  /***/ }),
4445
- /* 11 */
4456
+ /* 10 */
4446
4457
  /***/ (function(module, exports) {
4447
4458
 
4448
4459
  module.exports = require("ua-parser-js");
4449
4460
 
4450
4461
  /***/ }),
4451
- /* 12 */
4462
+ /* 11 */
4452
4463
  /***/ (function(module, exports) {
4453
4464
 
4454
4465
  module.exports = require("sm-crypto");
4455
4466
 
4456
4467
  /***/ }),
4457
- /* 13 */
4468
+ /* 12 */
4458
4469
  /***/ (function(module, exports) {
4459
4470
 
4460
4471
  module.exports = require("lodash");
4461
4472
 
4462
4473
  /***/ }),
4474
+ /* 13 */,
4463
4475
  /* 14 */,
4464
4476
  /* 15 */,
4465
4477
  /* 16 */,
4466
- /* 17 */,
4467
- /* 18 */
4478
+ /* 17 */
4468
4479
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
4469
4480
 
4470
4481
  "use strict";
@@ -4512,7 +4523,7 @@ render._withStripped = true
4512
4523
  // EXTERNAL MODULE: ./src/config/api.js
4513
4524
  var api = __webpack_require__(1);
4514
4525
 
4515
- // EXTERNAL MODULE: ./src/utils/util.js
4526
+ // EXTERNAL MODULE: ./src/utils/util.js + 1 modules
4516
4527
  var util = __webpack_require__(0);
4517
4528
 
4518
4529
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/FileList.vue?vue&type=script&lang=js&
@@ -4638,6 +4649,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4638
4649
  /* harmony default export */ var FileList = __webpack_exports__["a"] = (component.exports);
4639
4650
 
4640
4651
  /***/ }),
4652
+ /* 18 */,
4641
4653
  /* 19 */,
4642
4654
  /* 20 */,
4643
4655
  /* 21 */,
@@ -4648,15 +4660,14 @@ var component = Object(componentNormalizer["a" /* default */])(
4648
4660
  /* 26 */,
4649
4661
  /* 27 */,
4650
4662
  /* 28 */,
4651
- /* 29 */,
4652
- /* 30 */
4663
+ /* 29 */
4653
4664
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
4654
4665
 
4655
4666
  "use strict";
4656
4667
  // ESM COMPAT FLAG
4657
4668
  __webpack_require__.r(__webpack_exports__);
4658
4669
 
4659
- // 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=be73c766&
4670
+ // 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=21f2c2ec&
4660
4671
  var render = function () {
4661
4672
  var _vm = this
4662
4673
  var _h = _vm.$createElement
@@ -7404,7 +7415,6 @@ var render = function () {
7404
7415
  staticClass: "flow-dialog",
7405
7416
  attrs: {
7406
7417
  "append-to-body": "",
7407
- height: "auto",
7408
7418
  title: "意见附件",
7409
7419
  "close-on-click-modal": false,
7410
7420
  visible: _vm.showFileList,
@@ -7573,7 +7583,7 @@ var staticRenderFns = []
7573
7583
  render._withStripped = true
7574
7584
 
7575
7585
 
7576
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=be73c766&
7586
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=21f2c2ec&
7577
7587
 
7578
7588
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
7579
7589
  var regenerator_ = __webpack_require__(4);
@@ -8080,7 +8090,7 @@ formvue_type_template_id_55fae080_render._withStripped = true
8080
8090
 
8081
8091
  // CONCATENATED MODULE: ./packages/flow/src/form.vue?vue&type=template&id=55fae080&
8082
8092
 
8083
- // EXTERNAL MODULE: ./src/utils/util.js
8093
+ // EXTERNAL MODULE: ./src/utils/util.js + 1 modules
8084
8094
  var util = __webpack_require__(0);
8085
8095
 
8086
8096
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/form.vue?vue&type=script&lang=js&
@@ -8433,21 +8443,21 @@ var _components;
8433
8443
  return validSate;
8434
8444
  },
8435
8445
 
8436
- /**
8437
- * changeOpinion
8438
- * @desc:监听意见变化
8439
- * @author liufan
8440
- * @date 2022年10月28日
8446
+ /**
8447
+ * changeOpinion
8448
+ * @desc:监听意见变化
8449
+ * @author liufan
8450
+ * @date 2022年10月28日
8441
8451
  **/
8442
8452
  changeOpinion: function changeOpinion() {
8443
8453
  this.$emit('change', this.form.value);
8444
8454
  },
8445
8455
 
8446
- /**
8447
- * getCommonOpion
8448
- * @desc:获取意见
8449
- * @author liufan
8450
- * @date 2022年5月25日
8456
+ /**
8457
+ * getCommonOpion
8458
+ * @desc:获取意见
8459
+ * @author liufan
8460
+ * @date 2022年5月25日
8451
8461
  **/
8452
8462
  getCommonOpion: function getCommonOpion() {
8453
8463
  var _this = this;
@@ -8476,24 +8486,24 @@ var _components;
8476
8486
  });
8477
8487
  },
8478
8488
 
8479
- /**
8480
- * upDate
8481
- * @desc:修改常用语
8482
- * @author liufan
8483
- * @param {Object} val 修改值
8484
- * @date 2022年5月25日
8489
+ /**
8490
+ * upDate
8491
+ * @desc:修改常用语
8492
+ * @author liufan
8493
+ * @param {Object} val 修改值
8494
+ * @date 2022年5月25日
8485
8495
  **/
8486
8496
  upDate: function upDate(val) {
8487
8497
  this.FormData.id = val.id;
8488
8498
  this.addVisible = true;
8489
8499
  },
8490
8500
 
8491
- /**
8492
- * selectChange
8493
- * @desc:常用语选择
8494
- * @author liufan
8495
- * @param {String} val 选中值
8496
- * @date 2022年5月25日
8501
+ /**
8502
+ * selectChange
8503
+ * @desc:常用语选择
8504
+ * @author liufan
8505
+ * @param {String} val 选中值
8506
+ * @date 2022年5月25日
8497
8507
  **/
8498
8508
  selectChange: function selectChange(val) {
8499
8509
  var _this2 = this;
@@ -8512,12 +8522,12 @@ var _components;
8512
8522
  });
8513
8523
  },
8514
8524
 
8515
- /**
8516
- * del
8517
- * @desc:删除常用语
8518
- * @author liufan
8519
- * @param {Object} val 删除的数据
8520
- * @date 2022年5月25日
8525
+ /**
8526
+ * del
8527
+ * @desc:删除常用语
8528
+ * @author liufan
8529
+ * @param {Object} val 删除的数据
8530
+ * @date 2022年5月25日
8521
8531
  **/
8522
8532
  del: function del(val) {
8523
8533
  var _this3 = this;
@@ -8559,12 +8569,12 @@ var _components;
8559
8569
  }).catch(function (e) {});
8560
8570
  },
8561
8571
 
8562
- /**
8563
- * submit
8564
- * @desc:新增/编辑意见保存
8565
- * @author liufan
8566
- * @param {Object} val 保存数据
8567
- * @date 2022年5月25日
8572
+ /**
8573
+ * submit
8574
+ * @desc:新增/编辑意见保存
8575
+ * @author liufan
8576
+ * @param {Object} val 保存数据
8577
+ * @date 2022年5月25日
8568
8578
  **/
8569
8579
  submit: function submit(val) {
8570
8580
  var _this4 = this;
@@ -8578,7 +8588,7 @@ var _components;
8578
8588
  }
8579
8589
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
8580
8590
  util["a" /* default */].ajax({
8581
- url: data.id ? api["uc" /* updateCommonOpinion */] : api["Eb" /* saveCommonOpinion */],
8591
+ url: data.id ? api["vc" /* updateCommonOpinion */] : api["Fb" /* saveCommonOpinion */],
8582
8592
  data: info,
8583
8593
  header: { 'Content-Type': 'multipart/form-data' },
8584
8594
  method: 'post'
@@ -11856,7 +11866,7 @@ var processFormvue_type_script_lang_js_components;
11856
11866
  delete params.businessId;
11857
11867
  }
11858
11868
  util["a" /* default */].ajax({
11859
- url: _this5.isFreeStartFlow ? api["F" /* freeStartFlowWithSubmitTask */] : _this5.formType == 'readTransfer' ? api["Lb" /* startReadTransferHandleFlowWithTaskReadEnd */] : _this5.copyHistory ? api["E" /* freeStartFlow */] : api["Bb" /* register */],
11869
+ url: _this5.isFreeStartFlow ? api["F" /* freeStartFlowWithSubmitTask */] : _this5.formType == 'readTransfer' ? api["Mb" /* startReadTransferHandleFlowWithTaskReadEnd */] : _this5.copyHistory ? api["E" /* freeStartFlow */] : api["Cb" /* register */],
11860
11870
  method: 'post',
11861
11871
  data: params
11862
11872
  }).then(function (res) {
@@ -12030,11 +12040,11 @@ var processFormvue_type_script_lang_js_components;
12030
12040
  });
12031
12041
  },
12032
12042
 
12033
- /**
12034
- * isMultiple
12035
- * @desc:是否多选
12036
- * @author liufan
12037
- * @date 2022年9月13日
12043
+ /**
12044
+ * isMultiple
12045
+ * @desc:是否多选
12046
+ * @author liufan
12047
+ * @date 2022年9月13日
12038
12048
  **/
12039
12049
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
12040
12050
  var multiple = false;
@@ -12085,7 +12095,7 @@ var processFormvue_type_script_lang_js_components;
12085
12095
  businessId: this.businessId
12086
12096
  };
12087
12097
  // 获取节点
12088
- util["a" /* default */].ajax({ url: api["ec" /* toStartFlow */], params: params }).then(function (res) {
12098
+ util["a" /* default */].ajax({ url: api["fc" /* toStartFlow */], params: params }).then(function (res) {
12089
12099
  //pc接口返回数据处理
12090
12100
  var status = res.status,
12091
12101
  message = res.message,
@@ -12207,7 +12217,7 @@ var processForm_component = Object(componentNormalizer["a" /* default */])(
12207
12217
 
12208
12218
  /* harmony default export */ var processForm = (processForm_component.exports);
12209
12219
  // EXTERNAL MODULE: ./packages/flow/src/component/FileList.vue + 4 modules
12210
- var FileList = __webpack_require__(18);
12220
+ var FileList = __webpack_require__(17);
12211
12221
 
12212
12222
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/SendMsg.vue?vue&type=template&id=511ef65e&
12213
12223
  var SendMsgvue_type_template_id_511ef65e_render = function () {
@@ -12579,7 +12589,7 @@ SendMsgvue_type_template_id_511ef65e_render._withStripped = true
12579
12589
  notificationType = _sendInfo.notificationType;
12580
12590
 
12581
12591
  var params = {
12582
- url: api["Kb" /* sendMsg */],
12592
+ url: api["Lb" /* sendMsg */],
12583
12593
  headers: { Accept: 'application/json,text/plain' },
12584
12594
  method: 'post',
12585
12595
  data: {
@@ -12641,7 +12651,7 @@ SendMsgvue_type_template_id_511ef65e_render._withStripped = true
12641
12651
 
12642
12652
  this.loading = true;
12643
12653
  util["a" /* default */].ajax({
12644
- url: api["dc" /* toSendMsg */],
12654
+ url: api["ec" /* toSendMsg */],
12645
12655
  params: { pendingId: this.$attrs.pendingId }
12646
12656
  }).then(function (res) {
12647
12657
  var status = res.status,
@@ -13533,7 +13543,7 @@ processRejectvue_type_template_id_65914be1_render._withStripped = true
13533
13543
  userId: util["a" /* default */].getStorage('userId'),
13534
13544
  nextNodeId: _this2.nextNode.nextNodeId
13535
13545
  };
13536
- util["a" /* default */].ajax({ url: api["Sb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
13546
+ util["a" /* default */].ajax({ url: api["Tb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
13537
13547
  var status = res.status,
13538
13548
  message = res.message;
13539
13549
 
@@ -13598,7 +13608,7 @@ processRejectvue_type_template_id_65914be1_render._withStripped = true
13598
13608
  isSinglePage: false,
13599
13609
  opinion: this.option
13600
13610
  };
13601
- util["a" /* default */].ajax({ url: api["ic" /* toTaskRejectHtml */], params: params }).then(function (res) {
13611
+ util["a" /* default */].ajax({ url: api["jc" /* toTaskRejectHtml */], params: params }).then(function (res) {
13602
13612
  _this4.loading = false;
13603
13613
  if (res.status === 'success') {
13604
13614
  var _res$data = res.data,
@@ -14407,7 +14417,7 @@ var startTaskReadvue_type_script_lang_js_components;
14407
14417
  taskExamine = this.taskExamine;
14408
14418
 
14409
14419
  var params = {
14410
- url: api["oc" /* toTaskTransferIndex */],
14420
+ url: api["pc" /* toTaskTransferIndex */],
14411
14421
  params: {
14412
14422
  opinion: opinion,
14413
14423
  pendingId: pendingId,
@@ -14533,7 +14543,7 @@ var startTaskReadvue_type_script_lang_js_components;
14533
14543
  var _this4 = this;
14534
14544
 
14535
14545
  var params = {
14536
- url: api["fc" /* toStartTaskRead */],
14546
+ url: api["gc" /* toStartTaskRead */],
14537
14547
  params: startTaskReadvue_type_script_lang_js_extends({
14538
14548
  pendingId: this.pendingId,
14539
14549
  taskAction: this.type
@@ -14629,7 +14639,7 @@ var startTaskReadvue_type_script_lang_js_components;
14629
14639
  type = this.type;
14630
14640
 
14631
14641
  var params = {
14632
- url: api["Wb" /* taskTransfer */],
14642
+ url: api["Xb" /* taskTransfer */],
14633
14643
  data: {
14634
14644
  choiceDeptId: choiceDeptId,
14635
14645
  choiceOrgId: choiceOrgId,
@@ -14732,7 +14742,7 @@ var startTaskReadvue_type_script_lang_js_components;
14732
14742
  }
14733
14743
  delete _this8.configInfo.taskExamine.taskExamineParam;
14734
14744
  util["a" /* default */].ajax({
14735
- url: api["Qb" /* taskReadHtml */],
14745
+ url: api["Rb" /* taskReadHtml */],
14736
14746
  params: { taskAction: _this8.type },
14737
14747
  headers: {
14738
14748
  Accept: 'application/json,text/plain'
@@ -15912,7 +15922,7 @@ var resetvue_type_script_lang_js_components;
15912
15922
  }
15913
15923
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
15914
15924
  util["a" /* default */].ajax({
15915
- url: _this4.type == 'reset' ? api["Db" /* resetProcess */] : api["Ob" /* taskContinuation */],
15925
+ url: _this4.type == 'reset' ? api["Eb" /* resetProcess */] : api["Pb" /* taskContinuation */],
15916
15926
  method: 'post',
15917
15927
  data: params
15918
15928
  }).then(function (res) {
@@ -16079,11 +16089,11 @@ var resetvue_type_script_lang_js_components;
16079
16089
  });
16080
16090
  },
16081
16091
 
16082
- /**
16083
- * isMultiple
16084
- * @desc:是否多选
16085
- * @author liufan
16086
- * @date 2022年9月13日
16092
+ /**
16093
+ * isMultiple
16094
+ * @desc:是否多选
16095
+ * @author liufan
16096
+ * @date 2022年9月13日
16087
16097
  **/
16088
16098
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
16089
16099
  var multiple = false;
@@ -16120,7 +16130,7 @@ var resetvue_type_script_lang_js_components;
16120
16130
  var _this7 = this;
16121
16131
 
16122
16132
  var params = {
16123
- url: this.type == 'continuation' ? api["hc" /* toTaskContinuationIndex */] : api["cc" /* toResetProcessIndex */],
16133
+ url: this.type == 'continuation' ? api["ic" /* toTaskContinuationIndex */] : api["dc" /* toResetProcessIndex */],
16124
16134
  params: resetvue_type_script_lang_js_extends({
16125
16135
  appId: this.appId
16126
16136
  }, this.flowParams)
@@ -16853,7 +16863,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
16853
16863
  pendingId = this.pendingId;
16854
16864
 
16855
16865
  var params = {
16856
- url: api["Tb" /* taskReview */],
16866
+ url: api["Ub" /* taskReview */],
16857
16867
  data: {
16858
16868
  nextUserId: nextOtherOrgObj.join(','),
16859
16869
  notificationType: noticeType.join(','),
@@ -16889,7 +16899,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
16889
16899
  var _this2 = this;
16890
16900
 
16891
16901
  var params = {
16892
- url: api["jc" /* toTaskReview */],
16902
+ url: api["kc" /* toTaskReview */],
16893
16903
  params: { pendingId: this.pendingId }
16894
16904
  };
16895
16905
  util["a" /* default */].ajax(params).then(function (res) {
@@ -16925,7 +16935,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
16925
16935
  var _this3 = this;
16926
16936
 
16927
16937
  var params = {
16928
- url: this.type == 'takeAdvice' ? api["nc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["kc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["qc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["rc" /* toTwoOfficesDispatch */] : api["pc" /* toTaskUnionExamine */],
16938
+ url: this.type == 'takeAdvice' ? api["oc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["lc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["rc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["sc" /* toTwoOfficesDispatch */] : api["qc" /* toTaskUnionExamine */],
16929
16939
  params: { pendingId: this.pendingId },
16930
16940
  headers: { Accept: 'application/json,text/plain' }
16931
16941
  };
@@ -17075,7 +17085,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
17075
17085
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
17076
17086
  // return this.$message.warning('暂未开放,敬请期待!');
17077
17087
  var param = {
17078
- url: this.type === 'startDraf' ? api["Ub" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Yb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["tc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Vb" /* taskTakeAdvice */] : api["Xb" /* taskUnionExamine */],
17088
+ url: this.type === 'startDraf' ? api["Vb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Zb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["uc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Wb" /* taskTakeAdvice */] : api["Yb" /* taskUnionExamine */],
17079
17089
  data: {
17080
17090
  opinion: opinion,
17081
17091
  pendingId: pendingId,
@@ -20532,7 +20542,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20532
20542
  taskAction: 'complete'
20533
20543
  };
20534
20544
  util["a" /* default */].ajax({
20535
- url: api["Qb" /* taskReadHtml */],
20545
+ url: api["Rb" /* taskReadHtml */],
20536
20546
  params: { taskAction: 'complete' },
20537
20547
  headers: {
20538
20548
  Accept: 'application/json,text/plain'
@@ -20564,7 +20574,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20564
20574
 
20565
20575
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
20566
20576
  util["a" /* default */].ajax({
20567
- url: api["gc" /* toStartTaskReadIndex */],
20577
+ url: api["hc" /* toStartTaskReadIndex */],
20568
20578
  params: { pendingId: this.pendingId }
20569
20579
  }).then(function (res) {
20570
20580
  var status = res.status,
@@ -20655,11 +20665,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20655
20665
  });
20656
20666
  },
20657
20667
 
20658
- /**
20659
- * saveInfo
20660
- * @desc:暂存
20661
- * @author liufan
20662
- * @date 2022年9月9日
20668
+ /**
20669
+ * saveInfo
20670
+ * @desc:暂存
20671
+ * @author liufan
20672
+ * @date 2022年9月9日
20663
20673
  **/
20664
20674
  saveInfo: function saveInfo(type, btn) {
20665
20675
  var _this6 = this;
@@ -20702,7 +20712,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20702
20712
  pendingId: this.pendingId
20703
20713
  };
20704
20714
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
20705
- util["a" /* default */].ajax({ url: api["Zb" /* tempSave */], params: params }).then(function (res) {
20715
+ util["a" /* default */].ajax({ url: api["ac" /* tempSave */], params: params }).then(function (res) {
20706
20716
  var status = res.status,
20707
20717
  message = res.message;
20708
20718
 
@@ -20721,11 +20731,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20721
20731
  });
20722
20732
  },
20723
20733
 
20724
- /**
20725
- * rejectBtn
20726
- * @desc:点击驳回
20727
- * @author liufan
20728
- * @date 2022年5月25日
20734
+ /**
20735
+ * rejectBtn
20736
+ * @desc:点击驳回
20737
+ * @author liufan
20738
+ * @date 2022年5月25日
20729
20739
  **/
20730
20740
  rejectBtn: function rejectBtn() {
20731
20741
  var _this8 = this;
@@ -20743,11 +20753,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20743
20753
  }
20744
20754
  },
20745
20755
 
20746
- /**
20747
- * taskReadBtn
20748
- * @desc:点击分阅
20749
- * @author liufan
20750
- * @date 2022年5月25日
20756
+ /**
20757
+ * taskReadBtn
20758
+ * @desc:点击分阅
20759
+ * @author liufan
20760
+ * @date 2022年5月25日
20751
20761
  **/
20752
20762
  taskReadBtn: function taskReadBtn() {
20753
20763
  var _this9 = this;
@@ -20766,11 +20776,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20766
20776
  }
20767
20777
  },
20768
20778
 
20769
- /**
20770
- * getFind
20771
- * @desc:获取通知方式
20772
- * @author liufan
20773
- * @date 2022年5月25日
20779
+ /**
20780
+ * getFind
20781
+ * @desc:获取通知方式
20782
+ * @author liufan
20783
+ * @date 2022年5月25日
20774
20784
  **/
20775
20785
  getFind: function getFind() {
20776
20786
  var _this10 = this;
@@ -20825,12 +20835,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20825
20835
  });
20826
20836
  },
20827
20837
 
20828
- /**
20829
- * endFlows
20830
- * @desc:直接办结
20831
- * @author liufan
20832
- * @param {Object} res 直接办结数据
20833
- * @date 2022年5月25日
20838
+ /**
20839
+ * endFlows
20840
+ * @desc:直接办结
20841
+ * @author liufan
20842
+ * @param {Object} res 直接办结数据
20843
+ * @date 2022年5月25日
20834
20844
  **/
20835
20845
  endFlows: function endFlows(res) {
20836
20846
  var _this12 = this;
@@ -20884,12 +20894,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20884
20894
  }).catch(function (e) {});
20885
20895
  },
20886
20896
 
20887
- /**
20888
- * goView
20889
- * @desc:更多流程按钮操作
20890
- * @author liufan
20891
- * @param {Object} res 当前点击操作按钮数据
20892
- * @date 2022年5月25日
20897
+ /**
20898
+ * goView
20899
+ * @desc:更多流程按钮操作
20900
+ * @author liufan
20901
+ * @param {Object} res 当前点击操作按钮数据
20902
+ * @date 2022年5月25日
20893
20903
  **/
20894
20904
  goView: function goView(res) {
20895
20905
  // 驳回并办结:rejectAndEndHtml
@@ -20974,11 +20984,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
20974
20984
  // isCanStartSubFlow
20975
20985
  },
20976
20986
 
20977
- /**
20978
- * toTakeAdvice
20979
- * @desc:征求意见
20980
- * @author liufan
20981
- * @date 2022年9月29日
20987
+ /**
20988
+ * toTakeAdvice
20989
+ * @desc:征求意见
20990
+ * @author liufan
20991
+ * @date 2022年9月29日
20982
20992
  **/
20983
20993
  toTakeAdvice: function toTakeAdvice(res) {
20984
20994
  var _this14 = this;
@@ -21022,11 +21032,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21022
21032
  });
21023
21033
  },
21024
21034
 
21025
- /**
21026
- * toStartDraf
21027
- * @desc: 稿件递送、联合审核、复核
21028
- * @author liufan
21029
- * @date 2022年9月29日
21035
+ /**
21036
+ * toStartDraf
21037
+ * @desc: 稿件递送、联合审核、复核
21038
+ * @author liufan
21039
+ * @date 2022年9月29日
21030
21040
  **/
21031
21041
  toStartDraf: function toStartDraf(res) {
21032
21042
  var _this16 = this;
@@ -21040,11 +21050,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21040
21050
  }
21041
21051
  },
21042
21052
 
21043
- /**
21044
- * toSendMsg
21045
- * @desc:核稿通知
21046
- * @author liufan
21047
- * @date 2022年9月29日
21053
+ /**
21054
+ * toSendMsg
21055
+ * @desc:核稿通知
21056
+ * @author liufan
21057
+ * @date 2022年9月29日
21048
21058
  **/
21049
21059
  toSendMsg: function toSendMsg(res) {
21050
21060
  var _this17 = this;
@@ -21058,11 +21068,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21058
21068
  }
21059
21069
  },
21060
21070
 
21061
- /**
21062
- * toTaskReadAndEnd
21063
- * @desc:分阅并办结
21064
- * @author liufan
21065
- * @date 2022年9月29日
21071
+ /**
21072
+ * toTaskReadAndEnd
21073
+ * @desc:分阅并办结
21074
+ * @author liufan
21075
+ * @date 2022年9月29日
21066
21076
  **/
21067
21077
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
21068
21078
  var _this18 = this;
@@ -21080,11 +21090,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21080
21090
  }
21081
21091
  },
21082
21092
 
21083
- /**
21084
- * rejectAndEnd
21085
- * @desc:驳回并办结
21086
- * @author liufan
21087
- * @date 2022年9月29日
21093
+ /**
21094
+ * rejectAndEnd
21095
+ * @desc:驳回并办结
21096
+ * @author liufan
21097
+ * @date 2022年9月29日
21088
21098
  **/
21089
21099
  rejectAndEnd: function rejectAndEnd(res) {
21090
21100
  var _this19 = this;
@@ -21106,7 +21116,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21106
21116
  this.$confirm('确认' + res.value + '?').then(function () {
21107
21117
  // return this.$message.warning('请填写意见');
21108
21118
  var params = {
21109
- url: api["Cb" /* rejectAndEnd */],
21119
+ url: api["Db" /* rejectAndEnd */],
21110
21120
  headers: { Accept: 'application/json,text/plain' },
21111
21121
  method: 'post',
21112
21122
  data: {
@@ -21139,11 +21149,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21139
21149
  });
21140
21150
  },
21141
21151
 
21142
- /**
21143
- * toTransfer
21144
- * @desc:转办
21145
- * @author liufan
21146
- * @date 2022年9月29日
21152
+ /**
21153
+ * toTransfer
21154
+ * @desc:转办
21155
+ * @author liufan
21156
+ * @date 2022年9月29日
21147
21157
  **/
21148
21158
  toTransfer: function toTransfer(res) {
21149
21159
  var _this21 = this;
@@ -21159,11 +21169,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21159
21169
  }
21160
21170
  },
21161
21171
 
21162
- /**
21163
- * getNodeInfo
21164
- * @desc:获取节点信息
21165
- * @author liufan
21166
- * @date 2022年5月25日
21172
+ /**
21173
+ * getNodeInfo
21174
+ * @desc:获取节点信息
21175
+ * @author liufan
21176
+ * @date 2022年5月25日
21167
21177
  **/
21168
21178
  getNodeInfo: function getNodeInfo() {
21169
21179
  var _this22 = this;
@@ -21262,12 +21272,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21262
21272
  });
21263
21273
  },
21264
21274
 
21265
- /**
21266
- * selecNext
21267
- * @desc:下步节点变化时更新数据
21268
- * @author liufan
21269
- * @param {String} val 当前选中值
21270
- * @date 2022年5月25日
21275
+ /**
21276
+ * selecNext
21277
+ * @desc:下步节点变化时更新数据
21278
+ * @author liufan
21279
+ * @param {String} val 当前选中值
21280
+ * @date 2022年5月25日
21271
21281
  **/
21272
21282
  selecNext: function selecNext(val, type, isDef) {
21273
21283
  var _this23 = this;
@@ -21376,11 +21386,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21376
21386
  if (isDef !== true) this.getNodeInfo();
21377
21387
  },
21378
21388
 
21379
- /**
21380
- * isMultiple
21381
- * @desc:是否多选
21382
- * @author liufan
21383
- * @date 2022年9月13日
21389
+ /**
21390
+ * isMultiple
21391
+ * @desc:是否多选
21392
+ * @author liufan
21393
+ * @date 2022年9月13日
21384
21394
  **/
21385
21395
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
21386
21396
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -21412,11 +21422,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21412
21422
  }
21413
21423
  },
21414
21424
 
21415
- /**
21416
- * getHedInfo
21417
- * @desc:获取审核页面数据
21418
- * @author liufan
21419
- * @date 2022年5月25日
21425
+ /**
21426
+ * getHedInfo
21427
+ * @desc:获取审核页面数据
21428
+ * @author liufan
21429
+ * @date 2022年5月25日
21420
21430
  **/
21421
21431
  getHedInfo: function getHedInfo() {
21422
21432
  var _this24 = this;
@@ -21652,13 +21662,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21652
21662
  });
21653
21663
  },
21654
21664
 
21655
- /**
21656
- * closeProcess
21657
- * @desc:关闭弹窗
21658
- * @author liufan
21659
- * @param {boolean} val 当前是否办理流程
21660
- * @param {String} type 当前点击的弹窗类型
21661
- * @date 2022年5月25日
21665
+ /**
21666
+ * closeProcess
21667
+ * @desc:关闭弹窗
21668
+ * @author liufan
21669
+ * @param {boolean} val 当前是否办理流程
21670
+ * @param {String} type 当前点击的弹窗类型
21671
+ * @date 2022年5月25日
21662
21672
  **/
21663
21673
  closeProcess: function closeProcess(val, type, closeParent) {
21664
21674
  if (closeParent) {
@@ -21675,23 +21685,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21675
21685
  }
21676
21686
  },
21677
21687
 
21678
- /**
21679
- * selectChange
21680
- * @desc:常用语选择
21681
- * @author liufan
21682
- * @param {String} val 选中值
21683
- * @date 2022年5月25日
21688
+ /**
21689
+ * selectChange
21690
+ * @desc:常用语选择
21691
+ * @author liufan
21692
+ * @param {String} val 选中值
21693
+ * @date 2022年5月25日
21684
21694
  **/
21685
21695
  selectChange: function selectChange(val) {
21686
21696
  this.value = val;
21687
21697
  },
21688
21698
 
21689
- /**
21690
- * upDate
21691
- * @desc:修改常用语
21692
- * @author liufan
21693
- * @param {Object} val 修改值
21694
- * @date 2022年5月25日
21699
+ /**
21700
+ * upDate
21701
+ * @desc:修改常用语
21702
+ * @author liufan
21703
+ * @param {Object} val 修改值
21704
+ * @date 2022年5月25日
21695
21705
  **/
21696
21706
  upDate: function upDate(val) {
21697
21707
  this.FormData.id = val.id;
@@ -21699,11 +21709,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21699
21709
  },
21700
21710
 
21701
21711
 
21702
- /**
21703
- * getProcess
21704
- * @desc:获取选择流程
21705
- * @author liufan
21706
- * @date 2022年5月25日
21712
+ /**
21713
+ * getProcess
21714
+ * @desc:获取选择流程
21715
+ * @author liufan
21716
+ * @date 2022年5月25日
21707
21717
  **/
21708
21718
  getProcess: function getProcess() {
21709
21719
  var _this25 = this;
@@ -21757,11 +21767,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21757
21767
  });
21758
21768
  },
21759
21769
 
21760
- /**
21761
- * getPendedhistoryList
21762
- * @desc:获取流程列表
21763
- * @author liufan
21764
- * @date 2022年5月25日
21770
+ /**
21771
+ * getPendedhistoryList
21772
+ * @desc:获取流程列表
21773
+ * @author liufan
21774
+ * @date 2022年5月25日
21765
21775
  **/
21766
21776
  getPendedhistoryList: function getPendedhistoryList() {
21767
21777
  var _this26 = this;
@@ -21771,7 +21781,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21771
21781
  userId: util["a" /* default */].getStorage('userId'),
21772
21782
  type: 2
21773
21783
  };
21774
- util["a" /* default */].ajax({ url: api["tb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
21784
+ util["a" /* default */].ajax({ url: api["ub" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
21775
21785
  var rCode = res.rCode,
21776
21786
  msg = res.msg,
21777
21787
  results = res.results;
@@ -21793,12 +21803,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21793
21803
  },
21794
21804
 
21795
21805
  // 提交流程
21796
- /**
21797
- * subProcess
21798
- * @desc:提交流程
21799
- * @author liufan
21800
- * @param {String} formName 当前form表单ref值
21801
- * @date 2022年5月25日
21806
+ /**
21807
+ * subProcess
21808
+ * @desc:提交流程
21809
+ * @author liufan
21810
+ * @param {String} formName 当前form表单ref值
21811
+ * @date 2022年5月25日
21802
21812
  **/
21803
21813
  subProcess: function subProcess(val) {
21804
21814
  var _this27 = this;
@@ -21967,7 +21977,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
21967
21977
  params.isSubFlow = taskExamineInfo.isSubFlow;
21968
21978
  params.nodeId = taskExamineInfo.nodeId;
21969
21979
  params.needRetrialAuth = needRetrialAuth;
21970
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Pb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
21980
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Qb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
21971
21981
  var status = res.status,
21972
21982
  message = res.message;
21973
21983
 
@@ -22347,7 +22357,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
22347
22357
  pendingUserIds = _nextNode.pendingUserIds;
22348
22358
 
22349
22359
  var params = {
22350
- url: api["mc" /* toTaskSuperviseSub */],
22360
+ url: api["nc" /* toTaskSuperviseSub */],
22351
22361
  params: {
22352
22362
  userId: util["a" /* default */].getStorage('userId'),
22353
22363
  urgeUserIds: pendingUserIds,
@@ -22373,7 +22383,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
22373
22383
 
22374
22384
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
22375
22385
  util["a" /* default */].ajax({
22376
- url: api["lc" /* toTaskSupervise */],
22386
+ url: api["mc" /* toTaskSupervise */],
22377
22387
  params: {
22378
22388
  businessId: this.businessId,
22379
22389
  appId: this.appId,
@@ -23280,7 +23290,7 @@ FreeCirculationvue_type_template_id_5d1bcb0e_render._withStripped = true
23280
23290
  var _this2 = this;
23281
23291
 
23282
23292
  var param = {
23283
- url: api["ac" /* toFreeTaskCircularRead */],
23293
+ url: api["bc" /* toFreeTaskCircularRead */],
23284
23294
  params: { appId: this.appId || this.params.appId }
23285
23295
  };
23286
23296
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
@@ -24532,7 +24542,6 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
24532
24542
  //
24533
24543
  //
24534
24544
  //
24535
- //
24536
24545
 
24537
24546
 
24538
24547
 
@@ -25241,7 +25250,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25241
25250
  taskAction: 'complete'
25242
25251
  };
25243
25252
  util["a" /* default */].ajax({
25244
- url: api["Qb" /* taskReadHtml */],
25253
+ url: api["Rb" /* taskReadHtml */],
25245
25254
  params: { taskAction: 'complete' },
25246
25255
  headers: {
25247
25256
  Accept: 'application/json,text/plain'
@@ -25292,7 +25301,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25292
25301
 
25293
25302
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
25294
25303
  util["a" /* default */].ajax({
25295
- url: api["gc" /* toStartTaskReadIndex */],
25304
+ url: api["hc" /* toStartTaskReadIndex */],
25296
25305
  params: { pendingId: this.pendingId }
25297
25306
  }).then(function (res) {
25298
25307
  var status = res.status,
@@ -25392,11 +25401,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25392
25401
  });
25393
25402
  },
25394
25403
 
25395
- /**
25396
- * saveInfo
25397
- * @desc:暂存
25398
- * @author liufan
25399
- * @date 2022年9月9日
25404
+ /**
25405
+ * saveInfo
25406
+ * @desc:暂存
25407
+ * @author liufan
25408
+ * @date 2022年9月9日
25400
25409
  **/
25401
25410
  saveInfo: function saveInfo(type, btn) {
25402
25411
  var _this11 = this;
@@ -25439,7 +25448,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25439
25448
  pendingId: this.pendingId
25440
25449
  };
25441
25450
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
25442
- util["a" /* default */].ajax({ url: api["Zb" /* tempSave */], data: params, method: 'post' }).then(function (res) {
25451
+ util["a" /* default */].ajax({ url: api["ac" /* tempSave */], data: params, method: 'post' }).then(function (res) {
25443
25452
  var status = res.status,
25444
25453
  message = res.message;
25445
25454
 
@@ -25458,11 +25467,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25458
25467
  });
25459
25468
  },
25460
25469
 
25461
- /**
25462
- * rejectBtn
25463
- * @desc:点击驳回
25464
- * @author liufan
25465
- * @date 2022年5月25日
25470
+ /**
25471
+ * rejectBtn
25472
+ * @desc:点击驳回
25473
+ * @author liufan
25474
+ * @date 2022年5月25日
25466
25475
  **/
25467
25476
  rejectBtn: function rejectBtn() {
25468
25477
  var _this13 = this;
@@ -25480,11 +25489,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25480
25489
  }
25481
25490
  },
25482
25491
 
25483
- /**
25484
- * taskReadBtn
25485
- * @desc:点击分阅
25486
- * @author liufan
25487
- * @date 2022年5月25日
25492
+ /**
25493
+ * taskReadBtn
25494
+ * @desc:点击分阅
25495
+ * @author liufan
25496
+ * @date 2022年5月25日
25488
25497
  **/
25489
25498
  taskReadBtn: function taskReadBtn() {
25490
25499
  var _this14 = this;
@@ -25503,11 +25512,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25503
25512
  }
25504
25513
  },
25505
25514
 
25506
- /**
25507
- * getFind
25508
- * @desc:获取通知方式
25509
- * @author liufan
25510
- * @date 2022年5月25日
25515
+ /**
25516
+ * getFind
25517
+ * @desc:获取通知方式
25518
+ * @author liufan
25519
+ * @date 2022年5月25日
25511
25520
  **/
25512
25521
  getFind: function getFind() {
25513
25522
  var _this15 = this;
@@ -25573,12 +25582,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25573
25582
  });
25574
25583
  },
25575
25584
 
25576
- /**
25577
- * endFlows
25578
- * @desc:直接办结
25579
- * @author liufan
25580
- * @param {Object} res 直接办结数据
25581
- * @date 2022年5月25日
25585
+ /**
25586
+ * endFlows
25587
+ * @desc:直接办结
25588
+ * @author liufan
25589
+ * @param {Object} res 直接办结数据
25590
+ * @date 2022年5月25日
25582
25591
  **/
25583
25592
  endFlows: function endFlows(res) {
25584
25593
  var _this17 = this;
@@ -25633,12 +25642,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25633
25642
  }).catch(function (e) {});
25634
25643
  },
25635
25644
 
25636
- /**
25637
- * goView
25638
- * @desc:更多流程按钮操作
25639
- * @author liufan
25640
- * @param {Object} res 当前点击操作按钮数据
25641
- * @date 2022年5月25日
25645
+ /**
25646
+ * goView
25647
+ * @desc:更多流程按钮操作
25648
+ * @author liufan
25649
+ * @param {Object} res 当前点击操作按钮数据
25650
+ * @date 2022年5月25日
25642
25651
  **/
25643
25652
  goView: function goView(res) {
25644
25653
  // 驳回并办结:rejectAndEndHtml
@@ -25725,11 +25734,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25725
25734
  // isCanStartSubFlow
25726
25735
  },
25727
25736
 
25728
- /**
25729
- * toTakeAdvice
25730
- * @desc:征求意见
25731
- * @author liufan
25732
- * @date 2022年9月29日
25737
+ /**
25738
+ * toTakeAdvice
25739
+ * @desc:征求意见
25740
+ * @author liufan
25741
+ * @date 2022年9月29日
25733
25742
  **/
25734
25743
  toTakeAdvice: function toTakeAdvice(res) {
25735
25744
  var _this19 = this;
@@ -25773,11 +25782,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25773
25782
  });
25774
25783
  },
25775
25784
 
25776
- /**
25777
- * toStartDraf
25778
- * @desc: 稿件递送、联合审核、复核
25779
- * @author liufan
25780
- * @date 2022年9月29日
25785
+ /**
25786
+ * toStartDraf
25787
+ * @desc: 稿件递送、联合审核、复核
25788
+ * @author liufan
25789
+ * @date 2022年9月29日
25781
25790
  **/
25782
25791
  toStartDraf: function toStartDraf(res) {
25783
25792
  var _this21 = this;
@@ -25791,11 +25800,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25791
25800
  }
25792
25801
  },
25793
25802
 
25794
- /**
25795
- * toSendMsg
25796
- * @desc:核稿通知
25797
- * @author liufan
25798
- * @date 2022年9月29日
25803
+ /**
25804
+ * toSendMsg
25805
+ * @desc:核稿通知
25806
+ * @author liufan
25807
+ * @date 2022年9月29日
25799
25808
  **/
25800
25809
  toSendMsg: function toSendMsg(res) {
25801
25810
  var _this22 = this;
@@ -25809,11 +25818,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25809
25818
  }
25810
25819
  },
25811
25820
 
25812
- /**
25813
- * toTaskReadAndEnd
25814
- * @desc:分阅并办结
25815
- * @author liufan
25816
- * @date 2022年9月29日
25821
+ /**
25822
+ * toTaskReadAndEnd
25823
+ * @desc:分阅并办结
25824
+ * @author liufan
25825
+ * @date 2022年9月29日
25817
25826
  **/
25818
25827
  toTaskReadAndEnd: function toTaskReadAndEnd(res) {
25819
25828
  var _this23 = this;
@@ -25831,11 +25840,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25831
25840
  }
25832
25841
  },
25833
25842
 
25834
- /**
25835
- * rejectAndEnd
25836
- * @desc:驳回并办结
25837
- * @author liufan
25838
- * @date 2022年9月29日
25843
+ /**
25844
+ * rejectAndEnd
25845
+ * @desc:驳回并办结
25846
+ * @author liufan
25847
+ * @date 2022年9月29日
25839
25848
  **/
25840
25849
  rejectAndEnd: function rejectAndEnd(res) {
25841
25850
  var _this24 = this;
@@ -25857,7 +25866,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25857
25866
  this.$confirm('确认' + res.value + '?').then(function () {
25858
25867
  // return this.$message.warning('请填写意见');
25859
25868
  var params = {
25860
- url: api["Cb" /* rejectAndEnd */],
25869
+ url: api["Db" /* rejectAndEnd */],
25861
25870
  headers: { Accept: 'application/json,text/plain' },
25862
25871
  method: 'post',
25863
25872
  data: {
@@ -25891,11 +25900,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25891
25900
  });
25892
25901
  },
25893
25902
 
25894
- /**
25895
- * toTransfer
25896
- * @desc:转办
25897
- * @author liufan
25898
- * @date 2022年9月29日
25903
+ /**
25904
+ * toTransfer
25905
+ * @desc:转办
25906
+ * @author liufan
25907
+ * @date 2022年9月29日
25899
25908
  **/
25900
25909
  toTransfer: function toTransfer(res) {
25901
25910
  var _this26 = this;
@@ -25914,11 +25923,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
25914
25923
  this.nextNode.customLimitTime = val;
25915
25924
  },
25916
25925
 
25917
- /**
25918
- * getNodeInfo
25919
- * @desc:获取节点信息
25920
- * @author liufan
25921
- * @date 2022年5月25日
25926
+ /**
25927
+ * getNodeInfo
25928
+ * @desc:获取节点信息
25929
+ * @author liufan
25930
+ * @date 2022年5月25日
25922
25931
  **/
25923
25932
  getNodeInfo: function getNodeInfo() {
25924
25933
  var _this27 = this;
@@ -26025,12 +26034,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26025
26034
  });
26026
26035
  },
26027
26036
 
26028
- /**
26029
- * selecNext
26030
- * @desc:下步节点变化时更新数据
26031
- * @author liufan
26032
- * @param {String} val 当前选中值
26033
- * @date 2022年5月25日
26037
+ /**
26038
+ * selecNext
26039
+ * @desc:下步节点变化时更新数据
26040
+ * @author liufan
26041
+ * @param {String} val 当前选中值
26042
+ * @date 2022年5月25日
26034
26043
  **/
26035
26044
  selecNext: function selecNext(val, type, isDef) {
26036
26045
  var _this28 = this;
@@ -26162,11 +26171,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26162
26171
  this.getNodeInfo();
26163
26172
  },
26164
26173
 
26165
- /**
26166
- * isMultiple
26167
- * @desc:是否多选
26168
- * @author liufan
26169
- * @date 2022年9月13日
26174
+ /**
26175
+ * isMultiple
26176
+ * @desc:是否多选
26177
+ * @author liufan
26178
+ * @date 2022年9月13日
26170
26179
  **/
26171
26180
  isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
26172
26181
  if (val == 2 || val == 4 || val == 6 || val == 16) {
@@ -26198,11 +26207,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26198
26207
  }
26199
26208
  },
26200
26209
 
26201
- /**
26202
- * getHedInfo
26203
- * @desc:获取审核页面数据
26204
- * @author liufan
26205
- * @date 2022年5月25日
26210
+ /**
26211
+ * getHedInfo
26212
+ * @desc:获取审核页面数据
26213
+ * @author liufan
26214
+ * @date 2022年5月25日
26206
26215
  **/
26207
26216
  getHedInfo: function getHedInfo() {
26208
26217
  var _this29 = this;
@@ -26506,13 +26515,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26506
26515
  });
26507
26516
  },
26508
26517
 
26509
- /**
26510
- * closeProcess
26511
- * @desc:关闭弹窗
26512
- * @author liufan
26513
- * @param {boolean} val 当前是否办理流程
26514
- * @param {String} type 当前点击的弹窗类型
26515
- * @date 2022年5月25日
26518
+ /**
26519
+ * closeProcess
26520
+ * @desc:关闭弹窗
26521
+ * @author liufan
26522
+ * @param {boolean} val 当前是否办理流程
26523
+ * @param {String} type 当前点击的弹窗类型
26524
+ * @date 2022年5月25日
26516
26525
  **/
26517
26526
  closeProcess: function closeProcess(val, type, closeParent) {
26518
26527
  if (this.closeParent && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
@@ -26532,23 +26541,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26532
26541
  }
26533
26542
  },
26534
26543
 
26535
- /**
26536
- * selectChange
26537
- * @desc:常用语选择
26538
- * @author liufan
26539
- * @param {String} val 选中值
26540
- * @date 2022年5月25日
26544
+ /**
26545
+ * selectChange
26546
+ * @desc:常用语选择
26547
+ * @author liufan
26548
+ * @param {String} val 选中值
26549
+ * @date 2022年5月25日
26541
26550
  **/
26542
26551
  selectChange: function selectChange(val) {
26543
26552
  this.value = val;
26544
26553
  },
26545
26554
 
26546
- /**
26547
- * upDate
26548
- * @desc:修改常用语
26549
- * @author liufan
26550
- * @param {Object} val 修改值
26551
- * @date 2022年5月25日
26555
+ /**
26556
+ * upDate
26557
+ * @desc:修改常用语
26558
+ * @author liufan
26559
+ * @param {Object} val 修改值
26560
+ * @date 2022年5月25日
26552
26561
  **/
26553
26562
  upDate: function upDate(val) {
26554
26563
  this.FormData.id = val.id;
@@ -26556,11 +26565,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26556
26565
  },
26557
26566
 
26558
26567
 
26559
- /**
26560
- * getProcess
26561
- * @desc:获取选择流程
26562
- * @author liufan
26563
- * @date 2022年5月25日
26568
+ /**
26569
+ * getProcess
26570
+ * @desc:获取选择流程
26571
+ * @author liufan
26572
+ * @date 2022年5月25日
26564
26573
  **/
26565
26574
  getProcess: function getProcess(val) {
26566
26575
  var _this30 = this;
@@ -26620,11 +26629,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26620
26629
  });
26621
26630
  },
26622
26631
 
26623
- /**
26624
- * getPendedhistoryList
26625
- * @desc:获取流程列表
26626
- * @author liufan
26627
- * @date 2022年5月25日
26632
+ /**
26633
+ * getPendedhistoryList
26634
+ * @desc:获取流程列表
26635
+ * @author liufan
26636
+ * @date 2022年5月25日
26628
26637
  **/
26629
26638
  getPendedhistoryList: function getPendedhistoryList() {
26630
26639
  var _this31 = this;
@@ -26634,7 +26643,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26634
26643
  userId: util["a" /* default */].getStorage('userId'),
26635
26644
  type: 2
26636
26645
  };
26637
- util["a" /* default */].ajax({ url: api["tb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
26646
+ util["a" /* default */].ajax({ url: api["ub" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
26638
26647
  var rCode = res.rCode,
26639
26648
  msg = res.msg,
26640
26649
  results = res.results;
@@ -26692,12 +26701,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26692
26701
  },
26693
26702
 
26694
26703
  // 提交流程
26695
- /**
26696
- * subProcess
26697
- * @desc:提交流程
26698
- * @author liufan
26699
- * @param {String} formName 当前form表单ref值
26700
- * @date 2022年5月25日
26704
+ /**
26705
+ * subProcess
26706
+ * @desc:提交流程
26707
+ * @author liufan
26708
+ * @param {String} formName 当前form表单ref值
26709
+ * @date 2022年5月25日
26701
26710
  **/
26702
26711
  subProcess: function subProcess(val, type) {
26703
26712
  var _this33 = this;
@@ -26970,7 +26979,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
26970
26979
  if (!currentNodeEnableItemHandleDescription) {
26971
26980
  delete params.nextItemHandleDescription;
26972
26981
  }
26973
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Pb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
26982
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Qb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
26974
26983
  var status = res.status,
26975
26984
  message = res.message;
26976
26985