eoss-ui 0.6.45 → 0.6.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. package/lib/button-group.js +136 -116
  2. package/lib/button.js +136 -116
  3. package/lib/checkbox-group.js +138 -118
  4. package/lib/config/api.js +14 -1
  5. package/lib/data-table-form.js +138 -118
  6. package/lib/data-table.js +141 -121
  7. package/lib/date-picker.js +136 -116
  8. package/lib/dialog.js +136 -116
  9. package/lib/enable-drag.js +4 -13
  10. package/lib/eoss-ui.common.js +2394 -1397
  11. package/lib/flow-group.js +136 -116
  12. package/lib/flow-list.js +467 -271
  13. package/lib/flow.js +1502 -870
  14. package/lib/form.js +159 -148
  15. package/lib/handle-user.js +137 -117
  16. package/lib/handler.js +161 -125
  17. package/lib/icon.js +137 -117
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +136 -116
  20. package/lib/input.js +136 -116
  21. package/lib/login.js +150 -130
  22. package/lib/main.js +499 -309
  23. package/lib/nav.js +136 -116
  24. package/lib/notify.js +139 -119
  25. package/lib/page.js +136 -116
  26. package/lib/pagination.js +136 -116
  27. package/lib/player.js +136 -116
  28. package/lib/qr-code.js +149 -129
  29. package/lib/radio-group.js +138 -118
  30. package/lib/retrial-auth.js +140 -120
  31. package/lib/select-ganged.js +138 -118
  32. package/lib/select.js +138 -118
  33. package/lib/selector-panel.js +154 -134
  34. package/lib/selector.js +137 -117
  35. package/lib/sizer.js +138 -118
  36. package/lib/steps.js +136 -116
  37. package/lib/switch.js +136 -116
  38. package/lib/table-form.js +161 -121
  39. package/lib/tabs.js +136 -116
  40. package/lib/theme-chalk/flow.css +1 -1
  41. package/lib/theme-chalk/index.css +1 -1
  42. package/lib/tips.js +137 -117
  43. package/lib/tree-group.js +136 -116
  44. package/lib/tree.js +137 -117
  45. package/lib/upload.js +155 -134
  46. package/lib/wujie.js +136 -116
  47. package/lib/wxlogin.js +136 -116
  48. package/package.json +159 -159
  49. package/packages/button/index.js +5 -5
  50. package/packages/button/src/main.vue +418 -418
  51. package/packages/button-group/index.js +5 -5
  52. package/packages/button-group/src/main.vue +298 -298
  53. package/packages/calendar/index.js +5 -5
  54. package/packages/card/index.js +5 -5
  55. package/packages/card/src/main.vue +156 -156
  56. package/packages/cascader/index.js +5 -5
  57. package/packages/cascader/src/main.vue +168 -168
  58. package/packages/checkbox-group/index.js +5 -5
  59. package/packages/checkbox-group/src/main.vue +333 -333
  60. package/packages/clients/index.js +5 -5
  61. package/packages/clients/src/main.vue +144 -144
  62. package/packages/data-table/index.js +5 -5
  63. package/packages/data-table/src/children.vue +39 -39
  64. package/packages/data-table/src/column.vue +989 -989
  65. package/packages/data-table/src/main.vue +1822 -1822
  66. package/packages/data-table/src/sizer.vue +195 -195
  67. package/packages/data-table-form/index.js +5 -5
  68. package/packages/data-table-form/src/checkbox.vue +101 -101
  69. package/packages/data-table-form/src/colgroup.vue +17 -17
  70. package/packages/data-table-form/src/main.vue +181 -181
  71. package/packages/data-table-form/src/radio.vue +65 -65
  72. package/packages/data-table-form/src/table.vue +233 -233
  73. package/packages/data-table-form/src/tbody.vue +336 -336
  74. package/packages/data-table-form/src/thead.vue +68 -68
  75. package/packages/date-picker/index.js +5 -5
  76. package/packages/date-picker/src/main.vue +236 -236
  77. package/packages/dialog/index.js +5 -5
  78. package/packages/enable-drag/index.js +5 -5
  79. package/packages/enable-drag/src/main.vue +1 -8
  80. package/packages/enterprise/index.js +5 -5
  81. package/packages/enterprise/src/main.vue +66 -66
  82. package/packages/error-page/index.js +5 -5
  83. package/packages/error-page/src/main.vue +44 -44
  84. package/packages/flow/index.js +5 -5
  85. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  86. package/packages/flow/src/component/CustomPreset.vue +322 -322
  87. package/packages/flow/src/component/FileList.vue +99 -99
  88. package/packages/flow/src/component/Preset.vue +255 -255
  89. package/packages/flow/src/component/SendMsg.vue +229 -229
  90. package/packages/flow/src/component/TimeLimit.vue +190 -190
  91. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  92. package/packages/flow/src/form.vue +121 -121
  93. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  94. package/packages/flow/src/main.vue +3100 -2952
  95. package/packages/flow/src/processForm.vue +1031 -1018
  96. package/packages/flow/src/processReject.vue +293 -293
  97. package/packages/flow/src/reset.vue +899 -899
  98. package/packages/flow/src/startTaskRead.vue +597 -596
  99. package/packages/flow/src/supervise.vue +138 -0
  100. package/packages/flow/src/table.vue +58 -58
  101. package/packages/flow-group/index.js +5 -5
  102. package/packages/flow-group/src/main.vue +688 -688
  103. package/packages/flow-list/index.js +5 -5
  104. package/packages/flow-list/src/main.vue +1411 -1183
  105. package/packages/form/index.js +5 -5
  106. package/packages/form/src/main.vue +3583 -3584
  107. package/packages/form/src/table.vue +1426 -1420
  108. package/packages/handle-user/index.js +5 -5
  109. package/packages/handle-user/src/main.vue +138 -138
  110. package/packages/handler/index.js +5 -5
  111. package/packages/handler/src/main.vue +491 -474
  112. package/packages/icon/index.js +5 -5
  113. package/packages/icon/src/main.vue +101 -101
  114. package/packages/icons/index.js +5 -5
  115. package/packages/icons/src/main.vue +81 -81
  116. package/packages/input/index.js +5 -5
  117. package/packages/input/src/main.vue +356 -356
  118. package/packages/input-number/index.js +5 -5
  119. package/packages/input-number/src/main.vue +106 -106
  120. package/packages/label/index.js +5 -5
  121. package/packages/label/src/main.vue +457 -457
  122. package/packages/layout/index.js +5 -5
  123. package/packages/layout/src/item.vue +152 -152
  124. package/packages/layout/src/main.vue +31 -31
  125. package/packages/login/index.js +5 -5
  126. package/packages/login/src/main.vue +1935 -1935
  127. package/packages/login/src/resetPassword.vue +562 -562
  128. package/packages/main/index.js +5 -5
  129. package/packages/main/src/default/index.vue +231 -67
  130. package/packages/main/src/default/message.vue +249 -249
  131. package/packages/main/src/default/notice.vue +157 -157
  132. package/packages/main/src/default/userinfo.vue +505 -505
  133. package/packages/main/src/public/online.vue +89 -89
  134. package/packages/main/src/public/search.vue +461 -461
  135. package/packages/main/src/public/settings.vue +221 -221
  136. package/packages/main/src/simplicity/apps.vue +388 -388
  137. package/packages/main/src/simplicity/avatar.vue +82 -82
  138. package/packages/main/src/simplicity/handler.vue +259 -259
  139. package/packages/main/src/simplicity/index.vue +2049 -2044
  140. package/packages/main/src/simplicity/lists.vue +84 -84
  141. package/packages/main/src/simplicity/menu-list.vue +128 -128
  142. package/packages/main/src/simplicity/message.vue +259 -259
  143. package/packages/main/src/simplicity/notice.vue +190 -190
  144. package/packages/main/src/simplicity/router-page.vue +45 -45
  145. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  146. package/packages/main/src/simplicity/user.vue +257 -257
  147. package/packages/main/src/simplicity/userinfo.vue +312 -312
  148. package/packages/menu/index.js +5 -5
  149. package/packages/menu/src/main.vue +536 -536
  150. package/packages/nav/index.js +5 -5
  151. package/packages/nav/src/main.vue +351 -351
  152. package/packages/notify/index.js +5 -5
  153. package/packages/notify/src/main.vue +538 -538
  154. package/packages/page/index.js +5 -5
  155. package/packages/page/src/main.vue +167 -167
  156. package/packages/pagination/index.js +5 -5
  157. package/packages/pagination/src/main.vue +96 -96
  158. package/packages/player/index.js +5 -5
  159. package/packages/player/src/main.vue +194 -194
  160. package/packages/qr-code/index.js +5 -5
  161. package/packages/qr-code/src/main.vue +170 -170
  162. package/packages/radio-group/index.js +6 -6
  163. package/packages/radio-group/src/main.vue +319 -319
  164. package/packages/retrial-auth/index.js +5 -5
  165. package/packages/retrial-auth/src/main.vue +280 -280
  166. package/packages/select/index.js +5 -5
  167. package/packages/select/src/main.vue +775 -775
  168. package/packages/select-ganged/index.js +5 -5
  169. package/packages/select-ganged/src/main.vue +724 -724
  170. package/packages/selector/index.js +5 -5
  171. package/packages/selector/src/main.vue +689 -689
  172. package/packages/selector-panel/index.js +5 -5
  173. package/packages/selector-panel/src/main.vue +1027 -1027
  174. package/packages/selector-panel/src/selection.vue +177 -177
  175. package/packages/selector-panel/src/tree.vue +129 -129
  176. package/packages/sizer/index.js +5 -5
  177. package/packages/sizer/src/main.vue +254 -254
  178. package/packages/steps/index.js +5 -5
  179. package/packages/steps/src/main.vue +181 -181
  180. package/packages/switch/index.js +5 -5
  181. package/packages/switch/src/main.vue +154 -154
  182. package/packages/table-form/index.js +5 -5
  183. package/packages/tabs/index.js +5 -5
  184. package/packages/tabs/src/main.vue +788 -788
  185. package/packages/tabs-panel/index.js +5 -5
  186. package/packages/tabs-panel/src/main.vue +29 -29
  187. package/packages/theme-chalk/lib/flow.css +1 -1
  188. package/packages/theme-chalk/lib/index.css +1 -1
  189. package/packages/theme-chalk/src/base.scss +260 -260
  190. package/packages/theme-chalk/src/button-group.scss +175 -175
  191. package/packages/theme-chalk/src/button.scss +24 -24
  192. package/packages/theme-chalk/src/calendar.scss +113 -113
  193. package/packages/theme-chalk/src/card.scss +99 -99
  194. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  195. package/packages/theme-chalk/src/clients.scss +87 -87
  196. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  197. package/packages/theme-chalk/src/data-table.scss +293 -293
  198. package/packages/theme-chalk/src/date-picker.scss +7 -7
  199. package/packages/theme-chalk/src/dialog.scss +77 -77
  200. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  201. package/packages/theme-chalk/src/enterprise.scss +5 -5
  202. package/packages/theme-chalk/src/error-page.scss +18 -18
  203. package/packages/theme-chalk/src/flow-group.scss +110 -110
  204. package/packages/theme-chalk/src/flow-list.scss +36 -36
  205. package/packages/theme-chalk/src/flow.scss +325 -318
  206. package/packages/theme-chalk/src/form.scss +496 -496
  207. package/packages/theme-chalk/src/handle-user.scss +40 -40
  208. package/packages/theme-chalk/src/handler.scss +143 -143
  209. package/packages/theme-chalk/src/icon.scss +1789 -1789
  210. package/packages/theme-chalk/src/icons.scss +99 -99
  211. package/packages/theme-chalk/src/input.scss +9 -9
  212. package/packages/theme-chalk/src/label.scss +24 -24
  213. package/packages/theme-chalk/src/layout.scss +46 -46
  214. package/packages/theme-chalk/src/login.scss +969 -969
  215. package/packages/theme-chalk/src/main.scss +656 -656
  216. package/packages/theme-chalk/src/menu.scss +222 -222
  217. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  218. package/packages/theme-chalk/src/nav.scss +111 -111
  219. package/packages/theme-chalk/src/page.scss +3 -3
  220. package/packages/theme-chalk/src/pagination.scss +29 -29
  221. package/packages/theme-chalk/src/player.scss +9 -9
  222. package/packages/theme-chalk/src/qr-code.scss +17 -17
  223. package/packages/theme-chalk/src/radio-group.scss +9 -9
  224. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  225. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  226. package/packages/theme-chalk/src/select.scss +8 -8
  227. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  228. package/packages/theme-chalk/src/selector.scss +91 -91
  229. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  230. package/packages/theme-chalk/src/sizer.scss +36 -36
  231. package/packages/theme-chalk/src/steps.scss +88 -88
  232. package/packages/theme-chalk/src/switch.scss +3 -3
  233. package/packages/theme-chalk/src/table-form.scss +1 -1
  234. package/packages/theme-chalk/src/tabs.scss +87 -87
  235. package/packages/theme-chalk/src/tips.scss +7 -7
  236. package/packages/theme-chalk/src/toolbar.scss +179 -179
  237. package/packages/theme-chalk/src/tree-group.scss +72 -72
  238. package/packages/theme-chalk/src/tree.scss +165 -165
  239. package/packages/theme-chalk/src/upload.scss +167 -167
  240. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  241. package/packages/tips/index.js +5 -5
  242. package/packages/tips/src/main.vue +141 -141
  243. package/packages/toolbar/index.js +5 -5
  244. package/packages/toolbar/src/main.vue +430 -430
  245. package/packages/tree/index.js +5 -5
  246. package/packages/tree-group/index.js +5 -5
  247. package/packages/upload/index.js +5 -5
  248. package/packages/upload/src/main.vue +1335 -1334
  249. package/packages/upload/src/picture.js +15 -15
  250. package/packages/wujie/index.js +5 -5
  251. package/packages/wujie/src/main.vue +145 -145
  252. package/packages/wxlogin/index.js +5 -5
  253. package/packages/wxlogin/src/main.vue +128 -128
  254. package/src/config/api.js +281 -248
  255. package/src/config/image.js +2 -2
  256. package/src/index.js +160 -160
  257. package/src/utils/bus.js +3 -3
  258. package/src/utils/date-util.js +312 -312
  259. package/src/utils/http.js +50 -50
  260. package/src/utils/rules.js +18 -18
  261. package/src/utils/store.js +21 -21
  262. package/src/utils/webSocket.js +107 -107
  263. package/packages/.DS_Store +0 -0
  264. package/packages/data-table/.DS_Store +0 -0
  265. package/packages/data-table-form/.DS_Store +0 -0
  266. package/packages/error-page/.DS_Store +0 -0
  267. package/packages/flow/.DS_Store +0 -0
  268. package/packages/form/.DS_Store +0 -0
  269. package/packages/login/.DS_Store +0 -0
  270. package/packages/main/.DS_Store +0 -0
  271. package/packages/main/src/.DS_Store +0 -0
  272. package/packages/selector/.DS_Store +0 -0
  273. package/packages/selector-panel/.DS_Store +0 -0
  274. package/packages/sizer/.DS_Store +0 -0
  275. package/packages/tabs/.DS_Store +0 -0
  276. package/packages/theme-chalk/src/.DS_Store +0 -0
  277. package/packages/upload/.DS_Store +0 -0
  278. package/src/.DS_Store +0 -0
package/lib/flow-list.js CHANGED
@@ -1612,7 +1612,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1612
1612
  * @param {function} callback - 回调函数
1613
1613
  **/
1614
1614
  var getMainConfig = function getMainConfig(callback) {
1615
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "hb"] }).then(function (res) {
1615
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "kb"] }).then(function (res) {
1616
1616
  if (res && res.rCode === 0) {
1617
1617
  callback(res.results);
1618
1618
  }
@@ -2359,7 +2359,7 @@ var isLogined = function isLogined(_ref10) {
2359
2359
  }
2360
2360
  var quit = getParams('quit') || getParams('logout');
2361
2361
  if (quit) {
2362
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "gb"] }).then(function (res) {
2362
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "jb"] }).then(function (res) {
2363
2363
  if (res.rCode === 0) {
2364
2364
  removeStorage();
2365
2365
  }
@@ -3479,140 +3479,147 @@ var watermark = function watermark(option) {
3479
3479
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3480
3480
 
3481
3481
  "use strict";
3482
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3483
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3484
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3485
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return logout; });
3486
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initLogin; });
3487
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return switchUserTo; });
3482
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doCaLogin; });
3483
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doUserLogin; });
3484
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doQrLogin; });
3485
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return logout; });
3486
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initLogin; });
3487
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return switchUserTo; });
3488
3488
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3489
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getLoginCode; });
3490
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3489
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getLoginCode; });
3490
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCodeLogin; });
3491
3491
  /* unused harmony export updateCode */
3492
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getModifyPassCode; });
3493
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3494
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return loginModifyPassword; });
3492
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getModifyPassCode; });
3493
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
3494
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return loginModifyPassword; });
3495
3495
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3496
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initModifyPassword; });
3497
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3498
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getTwoFactorLoginCode; });
3499
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3500
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return initRetrialAuth; });
3501
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getRetrialAuthCode; });
3502
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return scanCodeRetrialAuth; });
3503
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3504
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3505
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return userOnline; });
3506
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getUserAppWithTag; });
3507
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return recordUserApp; });
3508
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return mainConfig; });
3509
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initUserSet; });
3510
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return updateUserInfo; });
3496
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return initModifyPassword; });
3497
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doWechatQrLogin; });
3498
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getTwoFactorLoginCode; });
3499
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doTwoFactorLogin; });
3500
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return initRetrialAuth; });
3501
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getRetrialAuthCode; });
3502
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return scanCodeRetrialAuth; });
3503
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
3504
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doAssistanceQrLogin; });
3505
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return userOnline; });
3506
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getUserAppWithTag; });
3507
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return recordUserApp; });
3508
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return mainConfig; });
3509
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return initUserSet; });
3510
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return updateUserInfo; });
3511
3511
  /* unused harmony export getUserImgUrl */
3512
3512
  /* unused harmony export getDoorIndex */
3513
3513
  /* unused harmony export refreshOnlineUsers */
3514
3514
  /* unused harmony export getQuickMenuIds */
3515
3515
  /* unused harmony export getApplicationIdArray */
3516
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplications; });
3517
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getComplexApplicationsNew; });
3516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getComplexApplications; });
3517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getComplexApplicationsNew; });
3518
3518
  /* unused harmony export getUserCustomInfo */
3519
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return updateUserCustomInfo; });
3520
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sysMsgPage; });
3521
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return ignoreSysMsg; });
3522
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return ignoreAllSysMsg; });
3523
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return searchType; });
3524
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getAdjunctProperties; });
3525
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return uploads; });
3526
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return uploadOnlyOne; });
3527
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctFileInfos; });
3528
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return uploadSort; });
3529
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3530
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return uploadDownloads; });
3531
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct; });
3532
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunct2; });
3533
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return previewAdjunctOffice; });
3534
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3519
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return updateUserCustomInfo; });
3520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sysMsgPage; });
3521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return ignoreSysMsg; });
3522
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return ignoreAllSysMsg; });
3523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return searchType; });
3524
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getAdjunctProperties; });
3525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return uploads; });
3526
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return uploadOnlyOne; });
3527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getAdjunctFileInfos; });
3528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return uploadSort; });
3529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return downloadByAdjunctId; });
3530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return uploadDownloads; });
3531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return previewAdjunct; });
3532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return previewAdjunct2; });
3533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return previewAdjunctOffice; });
3534
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
3535
3535
  /* unused harmony export upload_updateClassify */
3536
3536
  /* unused harmony export getDeleteAdjunctFileInfos */
3537
3537
  /* unused harmony export getPictureBase64 */
3538
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getSelectorOrgTree; });
3539
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getSelectorOrgDetail; });
3540
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getOrgMainTree; });
3541
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectOrgsubids; });
3542
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3543
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getDictList; });
3538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getSelectorOrgTree; });
3539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getSelectorOrgDetail; });
3540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getOrgMainTree; });
3541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getSelectOrgsubids; });
3542
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return findSysCode; });
3543
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getDictList; });
3544
3544
  /* unused harmony export findUserBaseInfo */
3545
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return gethelpdoc; });
3545
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return gethelpdoc; });
3546
3546
  /* unused harmony export getCurrentuser */
3547
3547
  /* unused harmony export mainDetail */
3548
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toStartFlow; });
3549
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return tempSave; });
3550
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toStartFlow; });
3549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return tempSave; });
3550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
3551
3551
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3552
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3553
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return saveCommonOpinion; });
3554
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return updateCommonOpinion; });
3555
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3556
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getProcessDefList; });
3557
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getNodeInfo; });
3558
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3559
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3560
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3561
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getNotificationMsg; });
3562
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getHandleInfoHtml; });
3563
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskHandleHtml; });
3552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return editCommonOpion; });
3553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return saveCommonOpinion; });
3554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return updateCommonOpinion; });
3555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
3556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getProcessDefList; });
3557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getNodeInfo; });
3558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findCodeValues; });
3559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysParam; });
3560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return findSysCodes; });
3561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getNotificationMsg; });
3562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getHandleInfoHtml; });
3563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskHandleHtml; });
3564
3564
  /* unused harmony export getView */
3565
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return register; });
3566
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pendedhistoryList; });
3567
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskRejectHtml; });
3568
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskRejectHtml; });
3569
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toStartTaskRead; });
3570
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toStartTaskReadIndex; });
3571
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskReadHtml; });
3572
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return rejectAndEnd; });
3573
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toSendMsg; });
3574
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return sendMsg; });
3575
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3576
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return handleInfo; });
3577
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return loginUserInfo; });
3578
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return wss; });
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return topic; });
3580
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getPresetCustomInfo; });
3581
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getPresetNodeInfo; });
3582
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskTransferIndex; });
3583
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskTransfer; });
3584
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toPresetInfoListIndex; });
3585
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return register; });
3566
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return pendedhistoryList; });
3567
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskRejectHtml; });
3568
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskRejectHtml; });
3569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toStartTaskRead; });
3570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toStartTaskReadIndex; });
3571
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskReadHtml; });
3572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return rejectAndEnd; });
3573
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toSendMsg; });
3574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return sendMsg; });
3575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return endFlowHtml; });
3576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return handleInfo; });
3577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return loginUserInfo; });
3578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return wss; });
3579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return topic; });
3580
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getPresetCustomInfo; });
3581
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getPresetNodeInfo; });
3582
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskTransferIndex; });
3583
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskTransfer; });
3584
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toPresetInfoListIndex; });
3585
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
3586
3586
  /* unused harmony export historyListJson */
3587
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return pendedhistoryListJson; });
3588
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return pressListJson; });
3589
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3590
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return isCanStartSubFlow; });
3591
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskUnionExamine; });
3592
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskUnionExamine; });
3593
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toTaskTakeAdvice; });
3594
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskTakeAdvice; });
3595
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toTaskStartDraft; });
3596
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskUnionSeal; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTwoOfficesDispatch; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return twoOfficesDispatch; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskContinuation; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getFreeStartFlowParams; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return freeStartFlowWithSubmitTask; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sendList; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sendInfo; });
3587
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return pendedhistoryListJson; });
3588
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return pressListJson; });
3589
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
3590
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return isCanStartSubFlow; });
3591
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskUnionExamine; });
3592
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskUnionExamine; });
3593
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskTakeAdvice; });
3594
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskTakeAdvice; });
3595
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskStartDraft; });
3596
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskSupervise; });
3597
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTaskSuperviseSub; });
3598
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskStartDraft; });
3599
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskReview; });
3600
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskReview; });
3601
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskUnionSeal; });
3602
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskUnionSeal; });
3603
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTwoOfficesDispatch; });
3604
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return twoOfficesDispatch; });
3605
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toResetProcessIndex; });
3606
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return resetProcess; });
3607
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskContinuationIndex; });
3608
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskContinuation; });
3609
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getFreeStartFlowParams; });
3610
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return freeStartFlowWithSubmitTask; });
3611
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
3612
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return pendedhistoryListWithCircularReadJson; });
3613
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
3614
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
3615
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
3616
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return sendList; });
3617
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sendInfo; });
3611
3618
  /* unused harmony export sendSave */
3612
3619
  /* unused harmony export sendUpdate */
3613
3620
  /* unused harmony export sendDelete */
3614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendBatch; });
3615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3621
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return sendBatch; });
3622
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return formContents; });
3616
3623
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3617
3624
  // 登录
3618
3625
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3809,7 +3816,10 @@ var toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
3809
3816
  var taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
3810
3817
  // 稿件递送
3811
3818
  var toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
3812
-
3819
+ // 获取督办页面信息
3820
+ var toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
3821
+ // 督办提交
3822
+ var toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
3813
3823
  // 稿件递送提交接口
3814
3824
  // export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
3815
3825
  var taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
@@ -3837,6 +3847,16 @@ var taskContinuation = '/bpm/task/taskHandle/taskContinuation.dhtml';
3837
3847
  var getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
3838
3848
  // 自由发起流程提交
3839
3849
  var freeStartFlowWithSubmitTask = '/bpm/bpmBackend/freeStartFlowWithSubmitTask';
3850
+ // 传阅新流程发起外单位数据校验
3851
+ var checkForeignOrgStartedCircularRead = '/bpm/bpmBackend/checkForeignOrgStartedCircularRead';
3852
+ // 获取传阅列表
3853
+ var pendedhistoryListWithCircularReadJson = '/bpm/pendedhistoryManager/pendedhistoryListWithCircularReadJson';
3854
+ // 传阅列表撤回
3855
+ var circularReadWithdraw = '/bpm/bpmBackend/circularReadWithdraw';
3856
+ // 阅转办提交流程
3857
+ var startReadTransferHandleFlowWithTaskReadEnd = '/bpm/bpmBackend/startReadTransferHandleFlowWithTaskReadEnd';
3858
+ // 阅转办校验接口
3859
+ var checkBusinessIdStartedReadTransferHandle = '/bpm/bpmBackend/checkBusinessIdStartedReadTransferHandle';
3840
3860
  // notifySend 消息发送
3841
3861
  var sendList = '/notify2/notifySendRecord/listJson';
3842
3862
  var sendInfo = '/notify2/notifySendRecord/info';
@@ -3993,7 +4013,7 @@ var util = __webpack_require__(0);
3993
4013
 
3994
4014
  var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
3995
4015
  var params = {
3996
- url: api["g" /* delAdjunct */],
4016
+ url: api["j" /* delAdjunct */],
3997
4017
  params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
3998
4018
  };
3999
4019
  util["a" /* default */].ajax(params).then(function (res) {
@@ -4169,8 +4189,8 @@ module.exports = require("qs");
4169
4189
  // ESM COMPAT FLAG
4170
4190
  __webpack_require__.r(__webpack_exports__);
4171
4191
 
4172
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=81c447bc&
4173
- var mainvue_type_template_id_81c447bc_render = function () {
4192
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow-list/src/main.vue?vue&type=template&id=6c84bda0&
4193
+ var mainvue_type_template_id_6c84bda0_render = function () {
4174
4194
  var _vm = this
4175
4195
  var _h = _vm.$createElement
4176
4196
  var _c = _vm._self._c || _h
@@ -4367,10 +4387,10 @@ var mainvue_type_template_id_81c447bc_render = function () {
4367
4387
  )
4368
4388
  }
4369
4389
  var staticRenderFns = []
4370
- mainvue_type_template_id_81c447bc_render._withStripped = true
4390
+ mainvue_type_template_id_6c84bda0_render._withStripped = true
4371
4391
 
4372
4392
 
4373
- // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=81c447bc&
4393
+ // CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=6c84bda0&
4374
4394
 
4375
4395
  // EXTERNAL MODULE: ./src/config/api.js
4376
4396
  var api = __webpack_require__(1);
@@ -4515,6 +4535,10 @@ var _components;
4515
4535
  return {};
4516
4536
  }
4517
4537
  },
4538
+ type: {
4539
+ type: String,
4540
+ default: ''
4541
+ },
4518
4542
  display: Boolean
4519
4543
  },
4520
4544
  inheritAttrs: false,
@@ -4522,6 +4546,8 @@ var _components;
4522
4546
  return {
4523
4547
  pressLoading: false,
4524
4548
  pressTableList: [],
4549
+ circularData: [],
4550
+ hasCircularReadWithdrawAuthority: false,
4525
4551
  currentPage: 1,
4526
4552
  pageSize: 20,
4527
4553
  currentUserHasPresetInfoAuth: false,
@@ -4666,6 +4692,10 @@ var _components;
4666
4692
  splitReading: [{
4667
4693
  type: 'text',
4668
4694
  contents: (this.taskReadName ? this.taskReadName : '非流程') + '列表'
4695
+ }],
4696
+ circular: [{
4697
+ type: 'text',
4698
+ contents: '传阅列表'
4669
4699
  }]
4670
4700
  };
4671
4701
  },
@@ -4677,6 +4707,8 @@ var _components;
4677
4707
  };
4678
4708
  },
4679
4709
  theads: function theads() {
4710
+ var _this2 = this;
4711
+
4680
4712
  var _that = this;
4681
4713
  return {
4682
4714
  flow: [{
@@ -4731,7 +4763,10 @@ var _components;
4731
4763
  key: 'blyj',
4732
4764
  render: function render(h, params) {
4733
4765
  if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
4734
- return h('img', { attrs: { src: params.row.doresult }, style: { width: '100px', height: '100px' } });
4766
+ return h('img', {
4767
+ attrs: { src: params.row.doresult },
4768
+ style: { width: '100px', height: '100px' }
4769
+ });
4735
4770
  } else {
4736
4771
  return h('span', {}, [params.row.doresult ? params.row.doresult + (params.row.handleInfo ? '&' : '') : '', h('span', { style: { color: '#A5A5A5', marginLeft: '2px' } }, params.row.handleInfo || '')]);
4737
4772
  }
@@ -4855,7 +4890,10 @@ var _components;
4855
4890
  showOverflowTooltip: true,
4856
4891
  render: function render(h, params) {
4857
4892
  if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
4858
- return h('img', { attrs: { src: params.row.doresult }, style: { width: '100px', height: '100px' } });
4893
+ return h('img', {
4894
+ attrs: { src: params.row.doresult },
4895
+ style: { width: '100px', height: '100px' }
4896
+ });
4859
4897
  } else {
4860
4898
  return h('span', {}, [params.row.doresult ? params.row.doresult + (params.row.handleInfo ? '&' : '') : '', h('span', { style: { color: '#A5A5A5', marginLeft: '2px' } }, params.row.handleInfo || '')]);
4861
4899
  }
@@ -4926,27 +4964,138 @@ var _components;
4926
4964
  return rows.canDelete;
4927
4965
  }
4928
4966
  }]
4967
+ }],
4968
+ circular: [{
4969
+ label: '发起人',
4970
+ field: 'circularReadInitiatorName',
4971
+ align: 'center',
4972
+ key: 'fqr',
4973
+ showOverflowTooltip: true,
4974
+ width: this.theadWidth.circularReadInitiatorName || 150
4975
+ }, {
4976
+ label: '传阅部门',
4977
+ field: 'circularReadOrgName',
4978
+ align: 'center',
4979
+ key: 'cybm',
4980
+ showOverflowTooltip: true,
4981
+ width: this.theadWidth.circularReadOrgName || 110
4982
+ }, {
4983
+ label: '传阅人',
4984
+ field: 'userName',
4985
+ align: 'center',
4986
+ key: 'cyr',
4987
+ showOverflowTooltip: true,
4988
+ width: this.theadWidth.userName || 110
4989
+ }, {
4990
+ label: '步骤',
4991
+ field: 'itemname',
4992
+ align: 'center',
4993
+ showOverflowTooltip: true,
4994
+ key: 'bz',
4995
+ width: this.theadWidth.itemname || 110
4996
+ }, {
4997
+ label: '状态',
4998
+ field: 'pendstate',
4999
+ key: 'zt',
5000
+ align: 'center',
5001
+ showOverflowTooltip: true,
5002
+ width: this.theadWidth.pendstate || 140,
5003
+ render: function render(h, params) {
5004
+ return h('span', {
5005
+ style: {
5006
+ color: params.row.pendstate == 0 || params.row.pendstate == 3 ? 'red' : params.row.pendstate == 1 ? 'green' : 'deepskyblue',
5007
+ cursor: _this2.hasCircularReadWithdrawAuthority ? 'pointer' : 'unset'
5008
+ },
5009
+ domProps: {
5010
+ innerHTML: params.row.querykeywords + (_this2.hasCircularReadWithdrawAuthority ? '<span style="color:#7AB0D5">(\u64A4\u56DE)</span>' : '')
5011
+ }
5012
+ });
5013
+ }
5014
+ }, {
5015
+ label: '送达时间',
5016
+ field: 'createtime',
5017
+ align: 'center',
5018
+ key: 'sdsj',
5019
+ showOverflowTooltip: true,
5020
+ width: this.theadWidth.createtime || 170
5021
+ }, {
5022
+ label: '办理时间',
5023
+ field: 'doetime',
5024
+ align: 'center',
5025
+ key: 'blsj',
5026
+ showOverflowTooltip: true,
5027
+ width: this.theadWidth.doetime || 150
5028
+ }, {
5029
+ label: '附件',
5030
+ key: 'fj',
5031
+ field: 'hasAdjunct',
5032
+ align: 'center',
5033
+ showOverflowTooltip: true,
5034
+ width: this.theadWidth.hasAdjunct || 70,
5035
+ render: function render(h, params) {
5036
+ if (params.row.hasAdjunct) {
5037
+ return h('span', {
5038
+ style: _that.attachmentPaperClipCssStyle ? _that.attachmentPaperClipCssStyle : { color: 'red', fontSize: '20px' },
5039
+ class: 'iconfont es-icon-fujian'
5040
+ });
5041
+ } else {
5042
+ return h('span', {}, '');
5043
+ }
5044
+ }
5045
+ }, {
5046
+ label: '提醒',
5047
+ field: 'pressTimes',
5048
+ align: 'center',
5049
+ key: 'tx',
5050
+ showOverflowTooltip: true,
5051
+ width: this.theadWidth.pressTimes || 150,
5052
+ render: function render(h, params) {
5053
+ return h('span', { style: 'color:deepskyblue;cursor: pointer;' }, params.row.pressTimes);
5054
+ }
5055
+ }, {
5056
+ label: '阅结意见 & 说明',
5057
+ field: 'doresult',
5058
+ align: 'center',
5059
+ width: this.theadWidth.doresult,
5060
+ showOverflowTooltip: true,
5061
+ key: 'blyj',
5062
+ render: function render(h, params) {
5063
+ if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
5064
+ return h('img', {
5065
+ attrs: { src: params.row.doresult },
5066
+ style: { width: '100px', height: '100px' }
5067
+ });
5068
+ } else {
5069
+ return h('span', {}, [params.row.doresult ? params.row.doresult + (params.row.handleInfo ? '&' : '') : '', h('span', { style: { color: '#A5A5A5', marginLeft: '2px' } }, params.row.handleInfo || '')]);
5070
+ }
5071
+ }
4929
5072
  }]
4930
5073
  };
4931
5074
  },
4932
5075
  content: function content() {
4933
- var _this2 = this;
5076
+ var _this3 = this;
4934
5077
 
4935
- var contents = this.contents.map(function (item) {
5078
+ var newContents = JSON.parse(JSON.stringify(this.contents));
5079
+ if (this.contents.indexOf('circular') != -1) {
5080
+ newContents = newContents.filter(function (item) {
5081
+ return item != 'splitReading';
5082
+ });
5083
+ }
5084
+ var contents = newContents.map(function (item) {
4936
5085
  if (typeof item === 'string') {
4937
5086
  return {
4938
5087
  type: item,
4939
- toolbar: _this2.toolbars[item],
4940
- thead: _this2.theads[item],
5088
+ toolbar: _this3.toolbars[item],
5089
+ thead: _this3.theads[item],
4941
5090
  showFormBtn: false
4942
5091
  };
4943
5092
  } else {
4944
5093
  if (!Object.prototype.hasOwnProperty.call(item, 'toolbar')) {
4945
- var toolbars = _this2.toolbars[item.type];
5094
+ var toolbars = _this3.toolbars[item.type];
4946
5095
  return _extends({}, item, { toolbars: toolbars });
4947
5096
  }
4948
5097
  if (!Object.prototype.hasOwnProperty.call(item, 'thead')) {
4949
- var thead = _this2.theads[item.type];
5098
+ var thead = _this3.theads[item.type];
4950
5099
  return _extends({}, item, { thead: thead });
4951
5100
  }
4952
5101
  return item;
@@ -4962,7 +5111,7 @@ var _components;
4962
5111
  }
4963
5112
  },
4964
5113
  thead: function thead() {
4965
- var _this3 = this;
5114
+ var _this4 = this;
4966
5115
 
4967
5116
  var table = [{
4968
5117
  title: '步骤',
@@ -4980,7 +5129,7 @@ var _components;
4980
5129
  align: 'center',
4981
5130
  width: this.theadWidth.isEdit || '100',
4982
5131
  render: function render(h, params) {
4983
- return h('span', _this3.getCodeValue(params.row.isEdit, 'is_edit'));
5132
+ return h('span', _this4.getCodeValue(params.row.isEdit, 'is_edit'));
4984
5133
  },
4985
5134
  field: 'isEdit'
4986
5135
  }, {
@@ -4995,7 +5144,7 @@ var _components;
4995
5144
  width: this.theadWidth.presetType || '120',
4996
5145
  align: 'center',
4997
5146
  render: function render(h, params) {
4998
- return h('span', _this3.getCodeValue(params.row.presetType, 'preset_type'));
5147
+ return h('span', _this4.getCodeValue(params.row.presetType, 'preset_type'));
4999
5148
  },
5000
5149
  field: 'presetType'
5001
5150
  }, {
@@ -5042,7 +5191,7 @@ var _components;
5042
5191
  }];
5043
5192
  if (this.presetInfoListHiddenColumns != undefined && this.presetInfoListHiddenColumns != '') {
5044
5193
  table = table.filter(function (items) {
5045
- return _this3.presetInfoListHiddenColumns.indexOf(items.key) == -1;
5194
+ return _this4.presetInfoListHiddenColumns.indexOf(items.key) == -1;
5046
5195
  });
5047
5196
  }
5048
5197
  if (!this.canDelete) table.splice(table.length - 1, 1);
@@ -5051,6 +5200,9 @@ var _components;
5051
5200
  },
5052
5201
  mounted: function mounted() {
5053
5202
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
5203
+ if (this.contents.indexOf('circular') != -1) {
5204
+ this.getCircularReadList();
5205
+ }
5054
5206
  this.getFlowList();
5055
5207
  this.getSysInfo('preset_type');
5056
5208
  this.getSysInfo('is_edit');
@@ -5059,6 +5211,46 @@ var _components;
5059
5211
 
5060
5212
 
5061
5213
  methods: {
5214
+ handledraw: function handledraw(pendedHistoryId) {
5215
+ var _this5 = this;
5216
+
5217
+ var params = {
5218
+ url: api["f" /* circularReadWithdraw */],
5219
+ params: { pendedHistoryId: pendedHistoryId }
5220
+ };
5221
+ this.$confirm('是否确定撤回当前传阅', {
5222
+ confirmButtonText: '确定',
5223
+ cancelButtonText: '取消',
5224
+ type: 'warning'
5225
+ }).then(function () {
5226
+ _this5.loading = util["a" /* default */].loading(_this5.$loading, '撤回中...');
5227
+ util["a" /* default */].ajax(params).then(function (res) {
5228
+ _this5.loading.close();
5229
+ if (res.rCode == 0) {
5230
+ _this5.$message({
5231
+ message: '撤回成功',
5232
+ type: 'success'
5233
+ });
5234
+ _this5.getCircularReadList();
5235
+ }
5236
+ });
5237
+ // _that.subMit(res.results,type)
5238
+ }).catch(function () {});
5239
+ },
5240
+ getCircularReadList: function getCircularReadList() {
5241
+ var _this6 = this;
5242
+
5243
+ var params = {
5244
+ url: api["nb" /* pendedhistoryListWithCircularReadJson */],
5245
+ params: { apprecordid: this.businessId }
5246
+ };
5247
+ util["a" /* default */].ajax(params).then(function (res) {
5248
+ if (res.status == 'success' || res.rCode == 0) {
5249
+ _this6.circularData = res.data.fyHistoryList;
5250
+ _this6.hasCircularReadWithdrawAuthority = res.data.hasCircularReadWithdrawAuthority;
5251
+ }
5252
+ });
5253
+ },
5062
5254
  returnData: function returnData(type) {
5063
5255
  switch (type) {
5064
5256
  case 'preset':
@@ -5067,6 +5259,8 @@ var _components;
5067
5259
  return this.signData;
5068
5260
  case 'splitReading':
5069
5261
  return this.splitReadingData;
5262
+ case 'circular':
5263
+ return this.circularData;
5070
5264
  default:
5071
5265
  return this.flowData;
5072
5266
  }
@@ -5076,6 +5270,8 @@ var _components;
5076
5270
  this.showFile(row.wfpendingid);
5077
5271
  } else if (column.property == 'pressTimes') {
5078
5272
  this.goPress(row.id);
5273
+ } else if (column.property == 'pendstate' && this.hasCircularReadWithdrawAuthority) {
5274
+ this.handledraw(row.id);
5079
5275
  }
5080
5276
  },
5081
5277
  handleBtnClick: function handleBtnClick(data) {
@@ -5087,19 +5283,19 @@ var _components;
5087
5283
  }
5088
5284
  },
5089
5285
 
5090
- /**
5091
- * handleFormSubmit
5092
- * @desc:删除节点点击事件
5093
- * @param {Object} formData 点击删除的form数据
5094
- * @author liufan
5095
- * @date 2022年11月29日
5286
+ /**
5287
+ * handleFormSubmit
5288
+ * @desc:删除节点点击事件
5289
+ * @param {Object} formData 点击删除的form数据
5290
+ * @author liufan
5291
+ * @date 2022年11月29日
5096
5292
  **/
5097
5293
  handleFormSubmit: function handleFormSubmit(formData) {
5098
- var _this4 = this;
5294
+ var _this7 = this;
5099
5295
 
5100
5296
  this.delLoading = true;
5101
5297
  var params = {
5102
- url: api["i" /* deleteFlow */],
5298
+ url: api["l" /* deleteFlow */],
5103
5299
  method: 'POST',
5104
5300
  data: { id: this.historyId, reason: formData.reason }
5105
5301
  };
@@ -5107,64 +5303,64 @@ var _components;
5107
5303
  var status = res.status,
5108
5304
  message = res.message;
5109
5305
 
5110
- _this4.delLoading = false;
5306
+ _this7.delLoading = false;
5111
5307
  if (status === 'success') {
5112
- _this4.$message.success('删除成功');
5113
- _this4.showDel = false;
5114
- _this4.handleChange();
5308
+ _this7.$message.success('删除成功');
5309
+ _this7.showDel = false;
5310
+ _this7.handleChange();
5115
5311
  } else {
5116
- _this4.$message.error(message || '系统错误,请联系管理员!');
5312
+ _this7.$message.error(message || '系统错误,请联系管理员!');
5117
5313
  }
5118
5314
  }).catch(function (err) {
5119
- _this4.delLoading = false;
5315
+ _this7.delLoading = false;
5120
5316
  if (err.message && err.message !== 'canceled') {
5121
- _this4.$message.error(err.message);
5317
+ _this7.$message.error(err.message);
5122
5318
  }
5123
5319
  });
5124
5320
  },
5125
5321
 
5126
- /**
5127
- * del
5128
- * @desc:展示删除弹窗
5129
- * @param {String} id 当前点击数据id
5130
- * @author liufan
5131
- * @date 2022年11月29日
5322
+ /**
5323
+ * del
5324
+ * @desc:展示删除弹窗
5325
+ * @param {String} id 当前点击数据id
5326
+ * @author liufan
5327
+ * @date 2022年11月29日
5132
5328
  **/
5133
5329
  del: function del(id) {
5134
5330
  this.historyId = id;
5135
5331
  this.showDel = true;
5136
5332
  },
5137
5333
 
5138
- /**
5139
- * handleCurrentChange
5140
- * @desc:监听页码变化
5141
- * @param {String} val 当前页
5142
- * @author liufan
5143
- * @date 2022年11月29日
5334
+ /**
5335
+ * handleCurrentChange
5336
+ * @desc:监听页码变化
5337
+ * @param {String} val 当前页
5338
+ * @author liufan
5339
+ * @date 2022年11月29日
5144
5340
  **/
5145
5341
  handleCurrentChange: function handleCurrentChange(val) {
5146
5342
  this.currentPage = val;
5147
5343
  this.getPressList();
5148
5344
  },
5149
5345
 
5150
- /**
5151
- * handleSizeChange
5152
- * @desc:监听每页数据显示数量变化
5153
- * @param {String} val 每页展示数量
5154
- * @author liufan
5155
- * @date 2022年11月29日
5346
+ /**
5347
+ * handleSizeChange
5348
+ * @desc:监听每页数据显示数量变化
5349
+ * @param {String} val 每页展示数量
5350
+ * @author liufan
5351
+ * @date 2022年11月29日
5156
5352
  **/
5157
5353
  handleSizeChange: function handleSizeChange(val) {
5158
5354
  this.pageSize = val;
5159
5355
  this.getPressList();
5160
5356
  },
5161
5357
 
5162
- /**
5163
- * sortChange
5164
- * @desc:监听排序变化
5165
- * @param {Object} info 需要排序的字段及排序方式
5166
- * @author liufan
5167
- * @date 2022年11月29日
5358
+ /**
5359
+ * sortChange
5360
+ * @desc:监听排序变化
5361
+ * @param {Object} info 需要排序的字段及排序方式
5362
+ * @author liufan
5363
+ * @date 2022年11月29日
5168
5364
  **/
5169
5365
  sortChange: function sortChange(info) {
5170
5366
  var prop = info.prop,
@@ -5175,14 +5371,14 @@ var _components;
5175
5371
  this.getPressList();
5176
5372
  },
5177
5373
 
5178
- /**
5179
- * getPressList
5180
- * @desc:催办列表数据
5181
- * @author liufan
5182
- * @date 2022年11月29日
5374
+ /**
5375
+ * getPressList
5376
+ * @desc:催办列表数据
5377
+ * @author liufan
5378
+ * @date 2022年11月29日
5183
5379
  **/
5184
5380
  getPressList: function getPressList() {
5185
- var _this5 = this;
5381
+ var _this8 = this;
5186
5382
 
5187
5383
  var historyId = this.historyId,
5188
5384
  pageSize = this.pageSize,
@@ -5192,29 +5388,29 @@ var _components;
5192
5388
 
5193
5389
  this.pressLoading = true;
5194
5390
  var params = {
5195
- url: api["kb" /* pressListJson */],
5391
+ url: api["ob" /* pressListJson */],
5196
5392
  params: { historyId: historyId },
5197
5393
  method: 'POST',
5198
5394
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
5199
5395
  };
5200
5396
  util["a" /* default */].ajax(params).then(function (res) {
5201
- _this5.pressTableList = res.data;
5202
- _this5.total = res.totalrecords;
5203
- _this5.pressLoading = false;
5397
+ _this8.pressTableList = res.data;
5398
+ _this8.total = res.totalrecords;
5399
+ _this8.pressLoading = false;
5204
5400
  }).catch(function (err) {
5205
- _this5.pressLoading = false;
5401
+ _this8.pressLoading = false;
5206
5402
  if (err.message && err.message !== 'canceled') {
5207
- _this5.$message.error(err.message);
5403
+ _this8.$message.error(err.message);
5208
5404
  }
5209
5405
  });
5210
5406
  },
5211
5407
 
5212
- /**
5213
- * goPress
5214
- * @desc:催办列表查看
5215
- * @param {String} id 催办列表id
5216
- * @author liufan
5217
- * @date 2022年11月29日
5408
+ /**
5409
+ * goPress
5410
+ * @desc:催办列表查看
5411
+ * @param {String} id 催办列表id
5412
+ * @author liufan
5413
+ * @date 2022年11月29日
5218
5414
  **/
5219
5415
  goPress: function goPress(id) {
5220
5416
  this.historyId = id;
@@ -5222,23 +5418,23 @@ var _components;
5222
5418
  this.getPressList();
5223
5419
  },
5224
5420
 
5225
- /**
5226
- * showFile
5227
- * @desc:附件查看
5228
- * @param {String} ownId 附件id
5229
- * @author liufan
5230
- * @date 2022年11月29日
5421
+ /**
5422
+ * showFile
5423
+ * @desc:附件查看
5424
+ * @param {String} ownId 附件id
5425
+ * @author liufan
5426
+ * @date 2022年11月29日
5231
5427
  **/
5232
5428
  showFile: function showFile(ownId) {
5233
5429
  this.wfpendingid = ownId;
5234
5430
  this.showFileList = true;
5235
5431
  },
5236
5432
 
5237
- /**
5238
- * handleChange
5239
- * @desc:切换排序方式
5240
- * @author liufan
5241
- * @date 2022年11月22日
5433
+ /**
5434
+ * handleChange
5435
+ * @desc:切换排序方式
5436
+ * @author liufan
5437
+ * @date 2022年11月22日
5242
5438
  **/
5243
5439
  handleChange: function handleChange(key, value) {
5244
5440
  if (value) {
@@ -5249,17 +5445,17 @@ var _components;
5249
5445
  this.getFlowList();
5250
5446
  },
5251
5447
 
5252
- /**
5253
- * getFlowList
5254
- * @desc:获取流程列表
5255
- * @author liufan
5256
- * @date 2022年11月22日
5448
+ /**
5449
+ * getFlowList
5450
+ * @desc:获取流程列表
5451
+ * @author liufan
5452
+ * @date 2022年11月22日
5257
5453
  **/
5258
5454
  getFlowList: function getFlowList() {
5259
- var _this6 = this;
5455
+ var _this9 = this;
5260
5456
 
5261
5457
  var params = {
5262
- url: api["jb" /* pendedhistoryListJson */],
5458
+ url: api["mb" /* pendedhistoryListJson */],
5263
5459
  params: _extends({
5264
5460
  apprecordid: this.businessId,
5265
5461
  pendingAttr: 0,
@@ -5279,43 +5475,43 @@ var _components;
5279
5475
  modify = _res$data.modify,
5280
5476
  taskReadName = _res$data.taskReadName;
5281
5477
 
5282
- _this6.loading.close();
5478
+ _this9.loading.close();
5283
5479
  if (status == 'success') {
5284
- _this6.flowTableInfo.adjunctCode = adjunctCode;
5285
- _this6.flowTableInfo.hasAgent = hasAgent;
5286
- _this6.attachmentPaperClipCssStyle = res.data.attachmentPaperClipCssStyle;
5287
- _this6.isShort = isShort;
5288
- _this6.taskReadName = taskReadName;
5289
- _this6.flowData = wfHistoryList;
5290
- _this6.flowData.map(function (x) {
5480
+ _this9.flowTableInfo.adjunctCode = adjunctCode;
5481
+ _this9.flowTableInfo.hasAgent = hasAgent;
5482
+ _this9.attachmentPaperClipCssStyle = res.data.attachmentPaperClipCssStyle;
5483
+ _this9.isShort = isShort;
5484
+ _this9.taskReadName = taskReadName;
5485
+ _this9.flowData = wfHistoryList;
5486
+ _this9.flowData.map(function (x) {
5291
5487
  if (!x.deptid) {
5292
5488
  x.deptid = x.deptName;
5293
5489
  }
5294
5490
  });
5295
- _this6.splitReadingData = fyHistoryList;
5296
- _this6.modify = modify;
5297
- _this6.show = true;
5491
+ _this9.splitReadingData = fyHistoryList;
5492
+ _this9.modify = modify;
5493
+ _this9.show = true;
5298
5494
  } else {
5299
- _this6.$message.error(message || '系统错误,请联系管理员!');
5495
+ _this9.$message.error(message || '系统错误,请联系管理员!');
5300
5496
  }
5301
5497
  }).catch(function (err) {
5302
- _this6.loading.close();
5498
+ _this9.loading.close();
5303
5499
  if (err.message && err.message !== 'canceled') {
5304
- _this6.$message.error(err.message);
5500
+ _this9.$message.error(err.message);
5305
5501
  }
5306
- _this6.show = true;
5502
+ _this9.show = true;
5307
5503
  });
5308
5504
  },
5309
5505
 
5310
- /**
5311
- * handleClick
5312
- * @desc:表单点击事件
5313
- * @param {Object} val 当前点击行数据及按钮
5314
- * @author liufan
5315
- * @date 2022年11月10日
5506
+ /**
5507
+ * handleClick
5508
+ * @desc:表单点击事件
5509
+ * @param {Object} val 当前点击行数据及按钮
5510
+ * @author liufan
5511
+ * @date 2022年11月10日
5316
5512
  **/
5317
5513
  handleClick: function handleClick(val) {
5318
- var _this7 = this;
5514
+ var _this10 = this;
5319
5515
 
5320
5516
  var text = val.handle.text,
5321
5517
  _val$row = val.row,
@@ -5325,9 +5521,9 @@ var _components;
5325
5521
  if (text === '置为失效') {
5326
5522
  if (status == 0) {
5327
5523
  this.$confirm('您确定要置为失效吗?').then(function () {
5328
- _this7.loading = util["a" /* default */].loading(_this7.$loading, '提交中...');
5524
+ _this10.loading = util["a" /* default */].loading(_this10.$loading, '提交中...');
5329
5525
  var param = {
5330
- url: api["j" /* deletePresetInfo */],
5526
+ url: api["m" /* deletePresetInfo */],
5331
5527
  headers: { Accept: 'application/json,text/plain' },
5332
5528
  method: 'post',
5333
5529
  params: { id: id }
@@ -5336,17 +5532,17 @@ var _components;
5336
5532
  var status = res.status,
5337
5533
  message = res.message;
5338
5534
 
5339
- _this7.loading.close();
5535
+ _this10.loading.close();
5340
5536
  if (status === 'success') {
5341
- _this7.$message.success('操作成功');
5342
- _this7.getListInfo();
5537
+ _this10.$message.success('操作成功');
5538
+ _this10.getListInfo();
5343
5539
  } else {
5344
- _this7.$message.error(message || '系统错误,请联系管理员!');
5540
+ _this10.$message.error(message || '系统错误,请联系管理员!');
5345
5541
  }
5346
5542
  }).catch(function (err) {
5347
- _this7.loading.close();
5543
+ _this10.loading.close();
5348
5544
  if (err.message && err.message !== 'canceled') {
5349
- _this7.$message.error(err.message);
5545
+ _this10.$message.error(err.message);
5350
5546
  }
5351
5547
  });
5352
5548
  }).catch(function (e) {
@@ -5358,13 +5554,13 @@ var _components;
5358
5554
  }
5359
5555
  },
5360
5556
 
5361
- /**
5362
- * getCodeValue
5363
- * @desc:获取代码表过滤后的值
5364
- * @param {String} value 展示数据的代码值
5365
- * @param {String} type 代码表类型
5366
- * @author liufan
5367
- * @date 2022年11月10日
5557
+ /**
5558
+ * getCodeValue
5559
+ * @desc:获取代码表过滤后的值
5560
+ * @param {String} value 展示数据的代码值
5561
+ * @param {String} type 代码表类型
5562
+ * @author liufan
5563
+ * @date 2022年11月10日
5368
5564
  **/
5369
5565
  getCodeValue: function getCodeValue(value, type) {
5370
5566
  var val = this[type].filter(function (item) {
@@ -5373,18 +5569,18 @@ var _components;
5373
5569
  return val[0].shortName;
5374
5570
  },
5375
5571
 
5376
- /**
5377
- * getSysInfo
5378
- * @desc:获取代码表
5379
- * @param {String} code 编码code值
5380
- * @author liufan
5381
- * @date 2022年11月10日
5572
+ /**
5573
+ * getSysInfo
5574
+ * @desc:获取代码表
5575
+ * @param {String} code 编码code值
5576
+ * @author liufan
5577
+ * @date 2022年11月10日
5382
5578
  **/
5383
5579
  getSysInfo: function getSysInfo(code) {
5384
- var _this8 = this;
5580
+ var _this11 = this;
5385
5581
 
5386
5582
  var params = {
5387
- url: api["u" /* findCodeValues */],
5583
+ url: api["x" /* findCodeValues */],
5388
5584
  params: { ccCode: code }
5389
5585
  };
5390
5586
  util["a" /* default */].ajax(params).then(function (res) {
@@ -5393,24 +5589,24 @@ var _components;
5393
5589
  data = res.data;
5394
5590
 
5395
5591
  if (status == 'success') {
5396
- _this8[code] = data;
5592
+ _this11[code] = data;
5397
5593
  } else {
5398
- _this8.$message.error(message || '系统错误,请联系管理员!');
5594
+ _this11.$message.error(message || '系统错误,请联系管理员!');
5399
5595
  }
5400
5596
  }).catch(function (e) {});
5401
5597
  },
5402
5598
 
5403
- /**
5404
- * getListInfo
5405
- * @desc:获取预设列表数据
5406
- * @author liufan
5407
- * @date 2022年11月10日
5599
+ /**
5600
+ * getListInfo
5601
+ * @desc:获取预设列表数据
5602
+ * @author liufan
5603
+ * @date 2022年11月10日
5408
5604
  **/
5409
5605
  getListInfo: function getListInfo() {
5410
- var _this9 = this;
5606
+ var _this12 = this;
5411
5607
 
5412
5608
  var param = {
5413
- url: api["Mb" /* toPresetInfoListIndex */],
5609
+ url: api["Rb" /* toPresetInfoListIndex */],
5414
5610
  params: { apprecordid: this.businessId }
5415
5611
  };
5416
5612
  util["a" /* default */].ajax(param).then(function (res) {
@@ -5422,19 +5618,19 @@ var _components;
5422
5618
  canDelete = _res$data2.canDelete,
5423
5619
  currentUserHasPresetInfoAuth = _res$data2.currentUserHasPresetInfoAuth;
5424
5620
 
5425
- _this9.loading.close();
5621
+ _this12.loading.close();
5426
5622
  if (status == 'success') {
5427
- presetInfoList && (_this9.presetData = presetInfoList);
5428
- _this9.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
5429
- _this9.currentUserHasPresetInfoAuth = currentUserHasPresetInfoAuth;
5430
- _this9.canDelete = canDelete;
5623
+ presetInfoList && (_this12.presetData = presetInfoList);
5624
+ _this12.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
5625
+ _this12.currentUserHasPresetInfoAuth = currentUserHasPresetInfoAuth;
5626
+ _this12.canDelete = canDelete;
5431
5627
  } else {
5432
- _this9.$message.error(message || '系统错误,请联系管理员!');
5628
+ _this12.$message.error(message || '系统错误,请联系管理员!');
5433
5629
  }
5434
5630
  }).catch(function (err) {
5435
- _this9.loading.close();
5631
+ _this12.loading.close();
5436
5632
  if (err.message && err.message !== 'canceled') {
5437
- _this9.$message.error(err.message);
5633
+ _this12.$message.error(err.message);
5438
5634
  }
5439
5635
  });
5440
5636
  }
@@ -5455,7 +5651,7 @@ var componentNormalizer = __webpack_require__(3);
5455
5651
 
5456
5652
  var component = Object(componentNormalizer["a" /* default */])(
5457
5653
  src_mainvue_type_script_lang_js_,
5458
- mainvue_type_template_id_81c447bc_render,
5654
+ mainvue_type_template_id_6c84bda0_render,
5459
5655
  staticRenderFns,
5460
5656
  false,
5461
5657
  null,