eoss-ui 0.6.46 → 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 (259) hide show
  1. package/lib/button-group.js +132 -117
  2. package/lib/button.js +132 -117
  3. package/lib/checkbox-group.js +134 -119
  4. package/lib/config/api.js +10 -0
  5. package/lib/data-table-form.js +134 -119
  6. package/lib/data-table.js +137 -122
  7. package/lib/date-picker.js +132 -117
  8. package/lib/dialog.js +132 -117
  9. package/lib/eoss-ui.common.js +1663 -1291
  10. package/lib/flow-group.js +132 -117
  11. package/lib/flow-list.js +463 -272
  12. package/lib/flow.js +1066 -870
  13. package/lib/form.js +134 -119
  14. package/lib/handle-user.js +133 -118
  15. package/lib/handler.js +133 -118
  16. package/lib/icon.js +133 -118
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +132 -117
  19. package/lib/input.js +132 -117
  20. package/lib/login.js +146 -131
  21. package/lib/main.js +299 -284
  22. package/lib/nav.js +132 -117
  23. package/lib/notify.js +135 -120
  24. package/lib/page.js +132 -117
  25. package/lib/pagination.js +132 -117
  26. package/lib/player.js +132 -117
  27. package/lib/qr-code.js +145 -130
  28. package/lib/radio-group.js +134 -119
  29. package/lib/retrial-auth.js +136 -121
  30. package/lib/select-ganged.js +134 -119
  31. package/lib/select.js +134 -119
  32. package/lib/selector-panel.js +150 -135
  33. package/lib/selector.js +133 -118
  34. package/lib/sizer.js +134 -119
  35. package/lib/steps.js +132 -117
  36. package/lib/switch.js +132 -117
  37. package/lib/table-form.js +132 -117
  38. package/lib/tabs.js +132 -117
  39. package/lib/theme-chalk/flow.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +133 -118
  42. package/lib/tree-group.js +132 -117
  43. package/lib/tree.js +133 -118
  44. package/lib/upload.js +145 -130
  45. package/lib/wujie.js +132 -117
  46. package/lib/wxlogin.js +132 -117
  47. package/package.json +159 -159
  48. package/packages/button/index.js +5 -5
  49. package/packages/button/src/main.vue +418 -418
  50. package/packages/button-group/index.js +5 -5
  51. package/packages/button-group/src/main.vue +298 -298
  52. package/packages/calendar/index.js +5 -5
  53. package/packages/card/index.js +5 -5
  54. package/packages/card/src/main.vue +156 -156
  55. package/packages/cascader/index.js +5 -5
  56. package/packages/cascader/src/main.vue +168 -168
  57. package/packages/checkbox-group/index.js +5 -5
  58. package/packages/checkbox-group/src/main.vue +333 -333
  59. package/packages/clients/index.js +5 -5
  60. package/packages/clients/src/main.vue +144 -144
  61. package/packages/data-table/index.js +5 -5
  62. package/packages/data-table/src/children.vue +39 -39
  63. package/packages/data-table/src/column.vue +989 -989
  64. package/packages/data-table/src/main.vue +1822 -1822
  65. package/packages/data-table/src/sizer.vue +195 -195
  66. package/packages/data-table-form/index.js +5 -5
  67. package/packages/data-table-form/src/checkbox.vue +101 -101
  68. package/packages/data-table-form/src/colgroup.vue +17 -17
  69. package/packages/data-table-form/src/main.vue +181 -181
  70. package/packages/data-table-form/src/radio.vue +65 -65
  71. package/packages/data-table-form/src/table.vue +233 -233
  72. package/packages/data-table-form/src/tbody.vue +336 -336
  73. package/packages/data-table-form/src/thead.vue +68 -68
  74. package/packages/date-picker/index.js +5 -5
  75. package/packages/date-picker/src/main.vue +236 -236
  76. package/packages/dialog/index.js +5 -5
  77. package/packages/enable-drag/index.js +5 -5
  78. package/packages/enterprise/index.js +5 -5
  79. package/packages/enterprise/src/main.vue +66 -66
  80. package/packages/error-page/index.js +5 -5
  81. package/packages/error-page/src/main.vue +44 -44
  82. package/packages/flow/index.js +5 -5
  83. package/packages/flow/src/component/CommonOpinions.vue +345 -345
  84. package/packages/flow/src/component/CustomPreset.vue +322 -322
  85. package/packages/flow/src/component/FileList.vue +99 -99
  86. package/packages/flow/src/component/Preset.vue +255 -255
  87. package/packages/flow/src/component/SendMsg.vue +229 -229
  88. package/packages/flow/src/component/TimeLimit.vue +190 -190
  89. package/packages/flow/src/component/taskUnionExamine.vue +611 -611
  90. package/packages/flow/src/form.vue +121 -121
  91. package/packages/flow/src/freeStartFlow.vue +2843 -2843
  92. package/packages/flow/src/main.vue +3100 -2964
  93. package/packages/flow/src/processForm.vue +1031 -1018
  94. package/packages/flow/src/processReject.vue +293 -293
  95. package/packages/flow/src/reset.vue +899 -899
  96. package/packages/flow/src/startTaskRead.vue +597 -596
  97. package/packages/flow/src/supervise.vue +138 -138
  98. package/packages/flow/src/table.vue +58 -58
  99. package/packages/flow-group/index.js +5 -5
  100. package/packages/flow-group/src/main.vue +688 -688
  101. package/packages/flow-list/index.js +5 -5
  102. package/packages/flow-list/src/main.vue +1411 -1183
  103. package/packages/form/index.js +5 -5
  104. package/packages/form/src/main.vue +3583 -3583
  105. package/packages/form/src/table.vue +1426 -1426
  106. package/packages/handle-user/index.js +5 -5
  107. package/packages/handle-user/src/main.vue +138 -138
  108. package/packages/handler/index.js +5 -5
  109. package/packages/handler/src/main.vue +491 -491
  110. package/packages/icon/index.js +5 -5
  111. package/packages/icon/src/main.vue +101 -101
  112. package/packages/icons/index.js +5 -5
  113. package/packages/icons/src/main.vue +81 -81
  114. package/packages/input/index.js +5 -5
  115. package/packages/input/src/main.vue +356 -356
  116. package/packages/input-number/index.js +5 -5
  117. package/packages/input-number/src/main.vue +106 -106
  118. package/packages/label/index.js +5 -5
  119. package/packages/label/src/main.vue +457 -457
  120. package/packages/layout/index.js +5 -5
  121. package/packages/layout/src/item.vue +152 -152
  122. package/packages/layout/src/main.vue +31 -31
  123. package/packages/login/index.js +5 -5
  124. package/packages/login/src/main.vue +1935 -1935
  125. package/packages/login/src/resetPassword.vue +562 -562
  126. package/packages/main/index.js +5 -5
  127. package/packages/main/src/default/message.vue +249 -249
  128. package/packages/main/src/default/notice.vue +157 -157
  129. package/packages/main/src/default/userinfo.vue +505 -505
  130. package/packages/main/src/public/online.vue +89 -89
  131. package/packages/main/src/public/search.vue +461 -461
  132. package/packages/main/src/public/settings.vue +221 -221
  133. package/packages/main/src/simplicity/apps.vue +388 -388
  134. package/packages/main/src/simplicity/avatar.vue +82 -82
  135. package/packages/main/src/simplicity/handler.vue +259 -259
  136. package/packages/main/src/simplicity/index.vue +2049 -2049
  137. package/packages/main/src/simplicity/lists.vue +84 -84
  138. package/packages/main/src/simplicity/menu-list.vue +128 -128
  139. package/packages/main/src/simplicity/message.vue +259 -259
  140. package/packages/main/src/simplicity/notice.vue +190 -190
  141. package/packages/main/src/simplicity/router-page.vue +45 -45
  142. package/packages/main/src/simplicity/sub-menu.vue +241 -241
  143. package/packages/main/src/simplicity/user.vue +257 -257
  144. package/packages/main/src/simplicity/userinfo.vue +312 -312
  145. package/packages/menu/index.js +5 -5
  146. package/packages/menu/src/main.vue +536 -536
  147. package/packages/nav/index.js +5 -5
  148. package/packages/nav/src/main.vue +351 -351
  149. package/packages/notify/index.js +5 -5
  150. package/packages/notify/src/main.vue +538 -538
  151. package/packages/page/index.js +5 -5
  152. package/packages/page/src/main.vue +167 -167
  153. package/packages/pagination/index.js +5 -5
  154. package/packages/pagination/src/main.vue +96 -96
  155. package/packages/player/index.js +5 -5
  156. package/packages/player/src/main.vue +194 -194
  157. package/packages/qr-code/index.js +5 -5
  158. package/packages/qr-code/src/main.vue +170 -170
  159. package/packages/radio-group/index.js +6 -6
  160. package/packages/radio-group/src/main.vue +319 -319
  161. package/packages/retrial-auth/index.js +5 -5
  162. package/packages/retrial-auth/src/main.vue +280 -280
  163. package/packages/select/index.js +5 -5
  164. package/packages/select/src/main.vue +775 -775
  165. package/packages/select-ganged/index.js +5 -5
  166. package/packages/select-ganged/src/main.vue +724 -724
  167. package/packages/selector/index.js +5 -5
  168. package/packages/selector/src/main.vue +689 -689
  169. package/packages/selector-panel/index.js +5 -5
  170. package/packages/selector-panel/src/main.vue +1027 -1027
  171. package/packages/selector-panel/src/selection.vue +177 -177
  172. package/packages/selector-panel/src/tree.vue +129 -129
  173. package/packages/sizer/index.js +5 -5
  174. package/packages/sizer/src/main.vue +254 -254
  175. package/packages/steps/index.js +5 -5
  176. package/packages/steps/src/main.vue +181 -181
  177. package/packages/switch/index.js +5 -5
  178. package/packages/switch/src/main.vue +154 -154
  179. package/packages/table-form/index.js +5 -5
  180. package/packages/tabs/index.js +5 -5
  181. package/packages/tabs/src/main.vue +788 -788
  182. package/packages/tabs-panel/index.js +5 -5
  183. package/packages/tabs-panel/src/main.vue +29 -29
  184. package/packages/theme-chalk/lib/flow.css +1 -1
  185. package/packages/theme-chalk/lib/index.css +1 -1
  186. package/packages/theme-chalk/src/base.scss +260 -260
  187. package/packages/theme-chalk/src/button-group.scss +175 -175
  188. package/packages/theme-chalk/src/button.scss +24 -24
  189. package/packages/theme-chalk/src/calendar.scss +113 -113
  190. package/packages/theme-chalk/src/card.scss +99 -99
  191. package/packages/theme-chalk/src/checkbox-group.scss +8 -8
  192. package/packages/theme-chalk/src/clients.scss +87 -87
  193. package/packages/theme-chalk/src/data-table-form.scss +67 -67
  194. package/packages/theme-chalk/src/data-table.scss +293 -293
  195. package/packages/theme-chalk/src/date-picker.scss +7 -7
  196. package/packages/theme-chalk/src/dialog.scss +77 -77
  197. package/packages/theme-chalk/src/enable-drag.scss +181 -181
  198. package/packages/theme-chalk/src/enterprise.scss +5 -5
  199. package/packages/theme-chalk/src/error-page.scss +18 -18
  200. package/packages/theme-chalk/src/flow-group.scss +110 -110
  201. package/packages/theme-chalk/src/flow-list.scss +36 -36
  202. package/packages/theme-chalk/src/flow.scss +325 -318
  203. package/packages/theme-chalk/src/form.scss +496 -496
  204. package/packages/theme-chalk/src/handle-user.scss +40 -40
  205. package/packages/theme-chalk/src/handler.scss +143 -143
  206. package/packages/theme-chalk/src/icon.scss +1789 -1789
  207. package/packages/theme-chalk/src/icons.scss +99 -99
  208. package/packages/theme-chalk/src/input.scss +9 -9
  209. package/packages/theme-chalk/src/label.scss +24 -24
  210. package/packages/theme-chalk/src/layout.scss +46 -46
  211. package/packages/theme-chalk/src/login.scss +969 -969
  212. package/packages/theme-chalk/src/main.scss +656 -656
  213. package/packages/theme-chalk/src/menu.scss +222 -222
  214. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  215. package/packages/theme-chalk/src/nav.scss +111 -111
  216. package/packages/theme-chalk/src/page.scss +3 -3
  217. package/packages/theme-chalk/src/pagination.scss +29 -29
  218. package/packages/theme-chalk/src/player.scss +9 -9
  219. package/packages/theme-chalk/src/qr-code.scss +17 -17
  220. package/packages/theme-chalk/src/radio-group.scss +9 -9
  221. package/packages/theme-chalk/src/retrial-auth.scss +38 -38
  222. package/packages/theme-chalk/src/select-ganged.scss +8 -8
  223. package/packages/theme-chalk/src/select.scss +8 -8
  224. package/packages/theme-chalk/src/selector-panel.scss +204 -204
  225. package/packages/theme-chalk/src/selector.scss +91 -91
  226. package/packages/theme-chalk/src/simplicity.scss +1265 -1265
  227. package/packages/theme-chalk/src/sizer.scss +36 -36
  228. package/packages/theme-chalk/src/steps.scss +88 -88
  229. package/packages/theme-chalk/src/switch.scss +3 -3
  230. package/packages/theme-chalk/src/table-form.scss +1 -1
  231. package/packages/theme-chalk/src/tabs.scss +87 -87
  232. package/packages/theme-chalk/src/tips.scss +7 -7
  233. package/packages/theme-chalk/src/toolbar.scss +179 -179
  234. package/packages/theme-chalk/src/tree-group.scss +72 -72
  235. package/packages/theme-chalk/src/tree.scss +165 -165
  236. package/packages/theme-chalk/src/upload.scss +167 -167
  237. package/packages/theme-chalk/src/wxlogin.scss +3 -3
  238. package/packages/tips/index.js +5 -5
  239. package/packages/tips/src/main.vue +141 -141
  240. package/packages/toolbar/index.js +5 -5
  241. package/packages/toolbar/src/main.vue +430 -430
  242. package/packages/tree/index.js +5 -5
  243. package/packages/tree-group/index.js +5 -5
  244. package/packages/upload/index.js +5 -5
  245. package/packages/upload/src/main.vue +1335 -1335
  246. package/packages/upload/src/picture.js +15 -15
  247. package/packages/wujie/index.js +5 -5
  248. package/packages/wujie/src/main.vue +145 -145
  249. package/packages/wxlogin/index.js +5 -5
  250. package/packages/wxlogin/src/main.vue +128 -128
  251. package/src/config/api.js +281 -251
  252. package/src/config/image.js +2 -2
  253. package/src/index.js +1 -1
  254. package/src/utils/bus.js +3 -3
  255. package/src/utils/date-util.js +312 -312
  256. package/src/utils/http.js +50 -50
  257. package/src/utils/rules.js +18 -18
  258. package/src/utils/store.js +21 -21
  259. package/src/utils/webSocket.js +107 -107
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,142 +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__, "mc", 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__, "hc", 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__, "gc", 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__, "lc", function() { return uploads; });
3526
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", 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__, "kc", 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__, "ic", 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__, "fc", 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__, "nc", function() { return wss; });
3579
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", 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__, "Zb", 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__, "ac", 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__, "Yb", 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__, "Wb", function() { return toTaskSupervise; });
3597
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskSuperviseSub; });
3598
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
3599
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
3600
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
3601
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskUnionSeal; });
3602
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
3603
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTwoOfficesDispatch; });
3604
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return twoOfficesDispatch; });
3605
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
3606
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
3607
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
3608
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskContinuation; });
3609
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getFreeStartFlowParams; });
3610
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return freeStartFlowWithSubmitTask; });
3611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sendList; });
3612
- /* 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; });
3613
3618
  /* unused harmony export sendSave */
3614
3619
  /* unused harmony export sendUpdate */
3615
3620
  /* unused harmony export sendDelete */
3616
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendBatch; });
3617
- /* 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; });
3618
3623
  var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
3619
3624
  // 登录
3620
3625
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3842,6 +3847,16 @@ var taskContinuation = '/bpm/task/taskHandle/taskContinuation.dhtml';
3842
3847
  var getFreeStartFlowParams = '/bpm/bpmBackend/getFreeStartFlowParams';
3843
3848
  // 自由发起流程提交
3844
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';
3845
3860
  // notifySend 消息发送
3846
3861
  var sendList = '/notify2/notifySendRecord/listJson';
3847
3862
  var sendInfo = '/notify2/notifySendRecord/info';
@@ -3998,7 +4013,7 @@ var util = __webpack_require__(0);
3998
4013
 
3999
4014
  var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
4000
4015
  var params = {
4001
- url: api["g" /* delAdjunct */],
4016
+ url: api["j" /* delAdjunct */],
4002
4017
  params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
4003
4018
  };
4004
4019
  util["a" /* default */].ajax(params).then(function (res) {
@@ -4174,8 +4189,8 @@ module.exports = require("qs");
4174
4189
  // ESM COMPAT FLAG
4175
4190
  __webpack_require__.r(__webpack_exports__);
4176
4191
 
4177
- // 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&
4178
- 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 () {
4179
4194
  var _vm = this
4180
4195
  var _h = _vm.$createElement
4181
4196
  var _c = _vm._self._c || _h
@@ -4372,10 +4387,10 @@ var mainvue_type_template_id_81c447bc_render = function () {
4372
4387
  )
4373
4388
  }
4374
4389
  var staticRenderFns = []
4375
- mainvue_type_template_id_81c447bc_render._withStripped = true
4390
+ mainvue_type_template_id_6c84bda0_render._withStripped = true
4376
4391
 
4377
4392
 
4378
- // 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&
4379
4394
 
4380
4395
  // EXTERNAL MODULE: ./src/config/api.js
4381
4396
  var api = __webpack_require__(1);
@@ -4520,6 +4535,10 @@ var _components;
4520
4535
  return {};
4521
4536
  }
4522
4537
  },
4538
+ type: {
4539
+ type: String,
4540
+ default: ''
4541
+ },
4523
4542
  display: Boolean
4524
4543
  },
4525
4544
  inheritAttrs: false,
@@ -4527,6 +4546,8 @@ var _components;
4527
4546
  return {
4528
4547
  pressLoading: false,
4529
4548
  pressTableList: [],
4549
+ circularData: [],
4550
+ hasCircularReadWithdrawAuthority: false,
4530
4551
  currentPage: 1,
4531
4552
  pageSize: 20,
4532
4553
  currentUserHasPresetInfoAuth: false,
@@ -4671,6 +4692,10 @@ var _components;
4671
4692
  splitReading: [{
4672
4693
  type: 'text',
4673
4694
  contents: (this.taskReadName ? this.taskReadName : '非流程') + '列表'
4695
+ }],
4696
+ circular: [{
4697
+ type: 'text',
4698
+ contents: '传阅列表'
4674
4699
  }]
4675
4700
  };
4676
4701
  },
@@ -4682,6 +4707,8 @@ var _components;
4682
4707
  };
4683
4708
  },
4684
4709
  theads: function theads() {
4710
+ var _this2 = this;
4711
+
4685
4712
  var _that = this;
4686
4713
  return {
4687
4714
  flow: [{
@@ -4736,7 +4763,10 @@ var _components;
4736
4763
  key: 'blyj',
4737
4764
  render: function render(h, params) {
4738
4765
  if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
4739
- 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
+ });
4740
4770
  } else {
4741
4771
  return h('span', {}, [params.row.doresult ? params.row.doresult + (params.row.handleInfo ? '&' : '') : '', h('span', { style: { color: '#A5A5A5', marginLeft: '2px' } }, params.row.handleInfo || '')]);
4742
4772
  }
@@ -4860,7 +4890,10 @@ var _components;
4860
4890
  showOverflowTooltip: true,
4861
4891
  render: function render(h, params) {
4862
4892
  if (params.row.doresult && (params.row.doresult.startsWith('http') || params.row.doresult.startsWith('https'))) {
4863
- 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
+ });
4864
4897
  } else {
4865
4898
  return h('span', {}, [params.row.doresult ? params.row.doresult + (params.row.handleInfo ? '&' : '') : '', h('span', { style: { color: '#A5A5A5', marginLeft: '2px' } }, params.row.handleInfo || '')]);
4866
4899
  }
@@ -4931,27 +4964,138 @@ var _components;
4931
4964
  return rows.canDelete;
4932
4965
  }
4933
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
+ }
4934
5072
  }]
4935
5073
  };
4936
5074
  },
4937
5075
  content: function content() {
4938
- var _this2 = this;
5076
+ var _this3 = this;
4939
5077
 
4940
- 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) {
4941
5085
  if (typeof item === 'string') {
4942
5086
  return {
4943
5087
  type: item,
4944
- toolbar: _this2.toolbars[item],
4945
- thead: _this2.theads[item],
5088
+ toolbar: _this3.toolbars[item],
5089
+ thead: _this3.theads[item],
4946
5090
  showFormBtn: false
4947
5091
  };
4948
5092
  } else {
4949
5093
  if (!Object.prototype.hasOwnProperty.call(item, 'toolbar')) {
4950
- var toolbars = _this2.toolbars[item.type];
5094
+ var toolbars = _this3.toolbars[item.type];
4951
5095
  return _extends({}, item, { toolbars: toolbars });
4952
5096
  }
4953
5097
  if (!Object.prototype.hasOwnProperty.call(item, 'thead')) {
4954
- var thead = _this2.theads[item.type];
5098
+ var thead = _this3.theads[item.type];
4955
5099
  return _extends({}, item, { thead: thead });
4956
5100
  }
4957
5101
  return item;
@@ -4967,7 +5111,7 @@ var _components;
4967
5111
  }
4968
5112
  },
4969
5113
  thead: function thead() {
4970
- var _this3 = this;
5114
+ var _this4 = this;
4971
5115
 
4972
5116
  var table = [{
4973
5117
  title: '步骤',
@@ -4985,7 +5129,7 @@ var _components;
4985
5129
  align: 'center',
4986
5130
  width: this.theadWidth.isEdit || '100',
4987
5131
  render: function render(h, params) {
4988
- return h('span', _this3.getCodeValue(params.row.isEdit, 'is_edit'));
5132
+ return h('span', _this4.getCodeValue(params.row.isEdit, 'is_edit'));
4989
5133
  },
4990
5134
  field: 'isEdit'
4991
5135
  }, {
@@ -5000,7 +5144,7 @@ var _components;
5000
5144
  width: this.theadWidth.presetType || '120',
5001
5145
  align: 'center',
5002
5146
  render: function render(h, params) {
5003
- return h('span', _this3.getCodeValue(params.row.presetType, 'preset_type'));
5147
+ return h('span', _this4.getCodeValue(params.row.presetType, 'preset_type'));
5004
5148
  },
5005
5149
  field: 'presetType'
5006
5150
  }, {
@@ -5047,7 +5191,7 @@ var _components;
5047
5191
  }];
5048
5192
  if (this.presetInfoListHiddenColumns != undefined && this.presetInfoListHiddenColumns != '') {
5049
5193
  table = table.filter(function (items) {
5050
- return _this3.presetInfoListHiddenColumns.indexOf(items.key) == -1;
5194
+ return _this4.presetInfoListHiddenColumns.indexOf(items.key) == -1;
5051
5195
  });
5052
5196
  }
5053
5197
  if (!this.canDelete) table.splice(table.length - 1, 1);
@@ -5056,6 +5200,9 @@ var _components;
5056
5200
  },
5057
5201
  mounted: function mounted() {
5058
5202
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
5203
+ if (this.contents.indexOf('circular') != -1) {
5204
+ this.getCircularReadList();
5205
+ }
5059
5206
  this.getFlowList();
5060
5207
  this.getSysInfo('preset_type');
5061
5208
  this.getSysInfo('is_edit');
@@ -5064,6 +5211,46 @@ var _components;
5064
5211
 
5065
5212
 
5066
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
+ },
5067
5254
  returnData: function returnData(type) {
5068
5255
  switch (type) {
5069
5256
  case 'preset':
@@ -5072,6 +5259,8 @@ var _components;
5072
5259
  return this.signData;
5073
5260
  case 'splitReading':
5074
5261
  return this.splitReadingData;
5262
+ case 'circular':
5263
+ return this.circularData;
5075
5264
  default:
5076
5265
  return this.flowData;
5077
5266
  }
@@ -5081,6 +5270,8 @@ var _components;
5081
5270
  this.showFile(row.wfpendingid);
5082
5271
  } else if (column.property == 'pressTimes') {
5083
5272
  this.goPress(row.id);
5273
+ } else if (column.property == 'pendstate' && this.hasCircularReadWithdrawAuthority) {
5274
+ this.handledraw(row.id);
5084
5275
  }
5085
5276
  },
5086
5277
  handleBtnClick: function handleBtnClick(data) {
@@ -5092,19 +5283,19 @@ var _components;
5092
5283
  }
5093
5284
  },
5094
5285
 
5095
- /**
5096
- * handleFormSubmit
5097
- * @desc:删除节点点击事件
5098
- * @param {Object} formData 点击删除的form数据
5099
- * @author liufan
5100
- * @date 2022年11月29日
5286
+ /**
5287
+ * handleFormSubmit
5288
+ * @desc:删除节点点击事件
5289
+ * @param {Object} formData 点击删除的form数据
5290
+ * @author liufan
5291
+ * @date 2022年11月29日
5101
5292
  **/
5102
5293
  handleFormSubmit: function handleFormSubmit(formData) {
5103
- var _this4 = this;
5294
+ var _this7 = this;
5104
5295
 
5105
5296
  this.delLoading = true;
5106
5297
  var params = {
5107
- url: api["i" /* deleteFlow */],
5298
+ url: api["l" /* deleteFlow */],
5108
5299
  method: 'POST',
5109
5300
  data: { id: this.historyId, reason: formData.reason }
5110
5301
  };
@@ -5112,64 +5303,64 @@ var _components;
5112
5303
  var status = res.status,
5113
5304
  message = res.message;
5114
5305
 
5115
- _this4.delLoading = false;
5306
+ _this7.delLoading = false;
5116
5307
  if (status === 'success') {
5117
- _this4.$message.success('删除成功');
5118
- _this4.showDel = false;
5119
- _this4.handleChange();
5308
+ _this7.$message.success('删除成功');
5309
+ _this7.showDel = false;
5310
+ _this7.handleChange();
5120
5311
  } else {
5121
- _this4.$message.error(message || '系统错误,请联系管理员!');
5312
+ _this7.$message.error(message || '系统错误,请联系管理员!');
5122
5313
  }
5123
5314
  }).catch(function (err) {
5124
- _this4.delLoading = false;
5315
+ _this7.delLoading = false;
5125
5316
  if (err.message && err.message !== 'canceled') {
5126
- _this4.$message.error(err.message);
5317
+ _this7.$message.error(err.message);
5127
5318
  }
5128
5319
  });
5129
5320
  },
5130
5321
 
5131
- /**
5132
- * del
5133
- * @desc:展示删除弹窗
5134
- * @param {String} id 当前点击数据id
5135
- * @author liufan
5136
- * @date 2022年11月29日
5322
+ /**
5323
+ * del
5324
+ * @desc:展示删除弹窗
5325
+ * @param {String} id 当前点击数据id
5326
+ * @author liufan
5327
+ * @date 2022年11月29日
5137
5328
  **/
5138
5329
  del: function del(id) {
5139
5330
  this.historyId = id;
5140
5331
  this.showDel = true;
5141
5332
  },
5142
5333
 
5143
- /**
5144
- * handleCurrentChange
5145
- * @desc:监听页码变化
5146
- * @param {String} val 当前页
5147
- * @author liufan
5148
- * @date 2022年11月29日
5334
+ /**
5335
+ * handleCurrentChange
5336
+ * @desc:监听页码变化
5337
+ * @param {String} val 当前页
5338
+ * @author liufan
5339
+ * @date 2022年11月29日
5149
5340
  **/
5150
5341
  handleCurrentChange: function handleCurrentChange(val) {
5151
5342
  this.currentPage = val;
5152
5343
  this.getPressList();
5153
5344
  },
5154
5345
 
5155
- /**
5156
- * handleSizeChange
5157
- * @desc:监听每页数据显示数量变化
5158
- * @param {String} val 每页展示数量
5159
- * @author liufan
5160
- * @date 2022年11月29日
5346
+ /**
5347
+ * handleSizeChange
5348
+ * @desc:监听每页数据显示数量变化
5349
+ * @param {String} val 每页展示数量
5350
+ * @author liufan
5351
+ * @date 2022年11月29日
5161
5352
  **/
5162
5353
  handleSizeChange: function handleSizeChange(val) {
5163
5354
  this.pageSize = val;
5164
5355
  this.getPressList();
5165
5356
  },
5166
5357
 
5167
- /**
5168
- * sortChange
5169
- * @desc:监听排序变化
5170
- * @param {Object} info 需要排序的字段及排序方式
5171
- * @author liufan
5172
- * @date 2022年11月29日
5358
+ /**
5359
+ * sortChange
5360
+ * @desc:监听排序变化
5361
+ * @param {Object} info 需要排序的字段及排序方式
5362
+ * @author liufan
5363
+ * @date 2022年11月29日
5173
5364
  **/
5174
5365
  sortChange: function sortChange(info) {
5175
5366
  var prop = info.prop,
@@ -5180,14 +5371,14 @@ var _components;
5180
5371
  this.getPressList();
5181
5372
  },
5182
5373
 
5183
- /**
5184
- * getPressList
5185
- * @desc:催办列表数据
5186
- * @author liufan
5187
- * @date 2022年11月29日
5374
+ /**
5375
+ * getPressList
5376
+ * @desc:催办列表数据
5377
+ * @author liufan
5378
+ * @date 2022年11月29日
5188
5379
  **/
5189
5380
  getPressList: function getPressList() {
5190
- var _this5 = this;
5381
+ var _this8 = this;
5191
5382
 
5192
5383
  var historyId = this.historyId,
5193
5384
  pageSize = this.pageSize,
@@ -5197,29 +5388,29 @@ var _components;
5197
5388
 
5198
5389
  this.pressLoading = true;
5199
5390
  var params = {
5200
- url: api["kb" /* pressListJson */],
5391
+ url: api["ob" /* pressListJson */],
5201
5392
  params: { historyId: historyId },
5202
5393
  method: 'POST',
5203
5394
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
5204
5395
  };
5205
5396
  util["a" /* default */].ajax(params).then(function (res) {
5206
- _this5.pressTableList = res.data;
5207
- _this5.total = res.totalrecords;
5208
- _this5.pressLoading = false;
5397
+ _this8.pressTableList = res.data;
5398
+ _this8.total = res.totalrecords;
5399
+ _this8.pressLoading = false;
5209
5400
  }).catch(function (err) {
5210
- _this5.pressLoading = false;
5401
+ _this8.pressLoading = false;
5211
5402
  if (err.message && err.message !== 'canceled') {
5212
- _this5.$message.error(err.message);
5403
+ _this8.$message.error(err.message);
5213
5404
  }
5214
5405
  });
5215
5406
  },
5216
5407
 
5217
- /**
5218
- * goPress
5219
- * @desc:催办列表查看
5220
- * @param {String} id 催办列表id
5221
- * @author liufan
5222
- * @date 2022年11月29日
5408
+ /**
5409
+ * goPress
5410
+ * @desc:催办列表查看
5411
+ * @param {String} id 催办列表id
5412
+ * @author liufan
5413
+ * @date 2022年11月29日
5223
5414
  **/
5224
5415
  goPress: function goPress(id) {
5225
5416
  this.historyId = id;
@@ -5227,23 +5418,23 @@ var _components;
5227
5418
  this.getPressList();
5228
5419
  },
5229
5420
 
5230
- /**
5231
- * showFile
5232
- * @desc:附件查看
5233
- * @param {String} ownId 附件id
5234
- * @author liufan
5235
- * @date 2022年11月29日
5421
+ /**
5422
+ * showFile
5423
+ * @desc:附件查看
5424
+ * @param {String} ownId 附件id
5425
+ * @author liufan
5426
+ * @date 2022年11月29日
5236
5427
  **/
5237
5428
  showFile: function showFile(ownId) {
5238
5429
  this.wfpendingid = ownId;
5239
5430
  this.showFileList = true;
5240
5431
  },
5241
5432
 
5242
- /**
5243
- * handleChange
5244
- * @desc:切换排序方式
5245
- * @author liufan
5246
- * @date 2022年11月22日
5433
+ /**
5434
+ * handleChange
5435
+ * @desc:切换排序方式
5436
+ * @author liufan
5437
+ * @date 2022年11月22日
5247
5438
  **/
5248
5439
  handleChange: function handleChange(key, value) {
5249
5440
  if (value) {
@@ -5254,17 +5445,17 @@ var _components;
5254
5445
  this.getFlowList();
5255
5446
  },
5256
5447
 
5257
- /**
5258
- * getFlowList
5259
- * @desc:获取流程列表
5260
- * @author liufan
5261
- * @date 2022年11月22日
5448
+ /**
5449
+ * getFlowList
5450
+ * @desc:获取流程列表
5451
+ * @author liufan
5452
+ * @date 2022年11月22日
5262
5453
  **/
5263
5454
  getFlowList: function getFlowList() {
5264
- var _this6 = this;
5455
+ var _this9 = this;
5265
5456
 
5266
5457
  var params = {
5267
- url: api["jb" /* pendedhistoryListJson */],
5458
+ url: api["mb" /* pendedhistoryListJson */],
5268
5459
  params: _extends({
5269
5460
  apprecordid: this.businessId,
5270
5461
  pendingAttr: 0,
@@ -5284,43 +5475,43 @@ var _components;
5284
5475
  modify = _res$data.modify,
5285
5476
  taskReadName = _res$data.taskReadName;
5286
5477
 
5287
- _this6.loading.close();
5478
+ _this9.loading.close();
5288
5479
  if (status == 'success') {
5289
- _this6.flowTableInfo.adjunctCode = adjunctCode;
5290
- _this6.flowTableInfo.hasAgent = hasAgent;
5291
- _this6.attachmentPaperClipCssStyle = res.data.attachmentPaperClipCssStyle;
5292
- _this6.isShort = isShort;
5293
- _this6.taskReadName = taskReadName;
5294
- _this6.flowData = wfHistoryList;
5295
- _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) {
5296
5487
  if (!x.deptid) {
5297
5488
  x.deptid = x.deptName;
5298
5489
  }
5299
5490
  });
5300
- _this6.splitReadingData = fyHistoryList;
5301
- _this6.modify = modify;
5302
- _this6.show = true;
5491
+ _this9.splitReadingData = fyHistoryList;
5492
+ _this9.modify = modify;
5493
+ _this9.show = true;
5303
5494
  } else {
5304
- _this6.$message.error(message || '系统错误,请联系管理员!');
5495
+ _this9.$message.error(message || '系统错误,请联系管理员!');
5305
5496
  }
5306
5497
  }).catch(function (err) {
5307
- _this6.loading.close();
5498
+ _this9.loading.close();
5308
5499
  if (err.message && err.message !== 'canceled') {
5309
- _this6.$message.error(err.message);
5500
+ _this9.$message.error(err.message);
5310
5501
  }
5311
- _this6.show = true;
5502
+ _this9.show = true;
5312
5503
  });
5313
5504
  },
5314
5505
 
5315
- /**
5316
- * handleClick
5317
- * @desc:表单点击事件
5318
- * @param {Object} val 当前点击行数据及按钮
5319
- * @author liufan
5320
- * @date 2022年11月10日
5506
+ /**
5507
+ * handleClick
5508
+ * @desc:表单点击事件
5509
+ * @param {Object} val 当前点击行数据及按钮
5510
+ * @author liufan
5511
+ * @date 2022年11月10日
5321
5512
  **/
5322
5513
  handleClick: function handleClick(val) {
5323
- var _this7 = this;
5514
+ var _this10 = this;
5324
5515
 
5325
5516
  var text = val.handle.text,
5326
5517
  _val$row = val.row,
@@ -5330,9 +5521,9 @@ var _components;
5330
5521
  if (text === '置为失效') {
5331
5522
  if (status == 0) {
5332
5523
  this.$confirm('您确定要置为失效吗?').then(function () {
5333
- _this7.loading = util["a" /* default */].loading(_this7.$loading, '提交中...');
5524
+ _this10.loading = util["a" /* default */].loading(_this10.$loading, '提交中...');
5334
5525
  var param = {
5335
- url: api["j" /* deletePresetInfo */],
5526
+ url: api["m" /* deletePresetInfo */],
5336
5527
  headers: { Accept: 'application/json,text/plain' },
5337
5528
  method: 'post',
5338
5529
  params: { id: id }
@@ -5341,17 +5532,17 @@ var _components;
5341
5532
  var status = res.status,
5342
5533
  message = res.message;
5343
5534
 
5344
- _this7.loading.close();
5535
+ _this10.loading.close();
5345
5536
  if (status === 'success') {
5346
- _this7.$message.success('操作成功');
5347
- _this7.getListInfo();
5537
+ _this10.$message.success('操作成功');
5538
+ _this10.getListInfo();
5348
5539
  } else {
5349
- _this7.$message.error(message || '系统错误,请联系管理员!');
5540
+ _this10.$message.error(message || '系统错误,请联系管理员!');
5350
5541
  }
5351
5542
  }).catch(function (err) {
5352
- _this7.loading.close();
5543
+ _this10.loading.close();
5353
5544
  if (err.message && err.message !== 'canceled') {
5354
- _this7.$message.error(err.message);
5545
+ _this10.$message.error(err.message);
5355
5546
  }
5356
5547
  });
5357
5548
  }).catch(function (e) {
@@ -5363,13 +5554,13 @@ var _components;
5363
5554
  }
5364
5555
  },
5365
5556
 
5366
- /**
5367
- * getCodeValue
5368
- * @desc:获取代码表过滤后的值
5369
- * @param {String} value 展示数据的代码值
5370
- * @param {String} type 代码表类型
5371
- * @author liufan
5372
- * @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日
5373
5564
  **/
5374
5565
  getCodeValue: function getCodeValue(value, type) {
5375
5566
  var val = this[type].filter(function (item) {
@@ -5378,18 +5569,18 @@ var _components;
5378
5569
  return val[0].shortName;
5379
5570
  },
5380
5571
 
5381
- /**
5382
- * getSysInfo
5383
- * @desc:获取代码表
5384
- * @param {String} code 编码code值
5385
- * @author liufan
5386
- * @date 2022年11月10日
5572
+ /**
5573
+ * getSysInfo
5574
+ * @desc:获取代码表
5575
+ * @param {String} code 编码code值
5576
+ * @author liufan
5577
+ * @date 2022年11月10日
5387
5578
  **/
5388
5579
  getSysInfo: function getSysInfo(code) {
5389
- var _this8 = this;
5580
+ var _this11 = this;
5390
5581
 
5391
5582
  var params = {
5392
- url: api["u" /* findCodeValues */],
5583
+ url: api["x" /* findCodeValues */],
5393
5584
  params: { ccCode: code }
5394
5585
  };
5395
5586
  util["a" /* default */].ajax(params).then(function (res) {
@@ -5398,24 +5589,24 @@ var _components;
5398
5589
  data = res.data;
5399
5590
 
5400
5591
  if (status == 'success') {
5401
- _this8[code] = data;
5592
+ _this11[code] = data;
5402
5593
  } else {
5403
- _this8.$message.error(message || '系统错误,请联系管理员!');
5594
+ _this11.$message.error(message || '系统错误,请联系管理员!');
5404
5595
  }
5405
5596
  }).catch(function (e) {});
5406
5597
  },
5407
5598
 
5408
- /**
5409
- * getListInfo
5410
- * @desc:获取预设列表数据
5411
- * @author liufan
5412
- * @date 2022年11月10日
5599
+ /**
5600
+ * getListInfo
5601
+ * @desc:获取预设列表数据
5602
+ * @author liufan
5603
+ * @date 2022年11月10日
5413
5604
  **/
5414
5605
  getListInfo: function getListInfo() {
5415
- var _this9 = this;
5606
+ var _this12 = this;
5416
5607
 
5417
5608
  var param = {
5418
- url: api["Mb" /* toPresetInfoListIndex */],
5609
+ url: api["Rb" /* toPresetInfoListIndex */],
5419
5610
  params: { apprecordid: this.businessId }
5420
5611
  };
5421
5612
  util["a" /* default */].ajax(param).then(function (res) {
@@ -5427,19 +5618,19 @@ var _components;
5427
5618
  canDelete = _res$data2.canDelete,
5428
5619
  currentUserHasPresetInfoAuth = _res$data2.currentUserHasPresetInfoAuth;
5429
5620
 
5430
- _this9.loading.close();
5621
+ _this12.loading.close();
5431
5622
  if (status == 'success') {
5432
- presetInfoList && (_this9.presetData = presetInfoList);
5433
- _this9.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
5434
- _this9.currentUserHasPresetInfoAuth = currentUserHasPresetInfoAuth;
5435
- _this9.canDelete = canDelete;
5623
+ presetInfoList && (_this12.presetData = presetInfoList);
5624
+ _this12.presetInfoListHiddenColumns = presetInfoListHiddenColumns;
5625
+ _this12.currentUserHasPresetInfoAuth = currentUserHasPresetInfoAuth;
5626
+ _this12.canDelete = canDelete;
5436
5627
  } else {
5437
- _this9.$message.error(message || '系统错误,请联系管理员!');
5628
+ _this12.$message.error(message || '系统错误,请联系管理员!');
5438
5629
  }
5439
5630
  }).catch(function (err) {
5440
- _this9.loading.close();
5631
+ _this12.loading.close();
5441
5632
  if (err.message && err.message !== 'canceled') {
5442
- _this9.$message.error(err.message);
5633
+ _this12.$message.error(err.message);
5443
5634
  }
5444
5635
  });
5445
5636
  }
@@ -5460,7 +5651,7 @@ var componentNormalizer = __webpack_require__(3);
5460
5651
 
5461
5652
  var component = Object(componentNormalizer["a" /* default */])(
5462
5653
  src_mainvue_type_script_lang_js_,
5463
- mainvue_type_template_id_81c447bc_render,
5654
+ mainvue_type_template_id_6c84bda0_render,
5464
5655
  staticRenderFns,
5465
5656
  false,
5466
5657
  null,