eoss-mobiles 0.3.95 → 0.3.97

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 (249) hide show
  1. package/CHANGELOG.md +95 -0
  2. package/lib/action-sheet.js +4 -4
  3. package/lib/button-group.js +4 -4
  4. package/lib/button.js +4 -4
  5. package/lib/calendar.js +4 -4
  6. package/lib/cascader.js +4 -4
  7. package/lib/cell.js +4 -4
  8. package/lib/checkbox.js +200 -173
  9. package/lib/circle.js +4 -4
  10. package/lib/config/api.js +16 -2
  11. package/lib/count-down.js +4 -4
  12. package/lib/date.js +108 -108
  13. package/lib/empty.js +4 -4
  14. package/lib/eoss-mobile.common.js +651 -83
  15. package/lib/esign.js +4 -4
  16. package/lib/field.js +4 -4
  17. package/lib/flow-btn.js +194 -167
  18. package/lib/flow-list.js +196 -167
  19. package/lib/flow.js +241 -212
  20. package/lib/form.js +93 -6
  21. package/lib/grid-item.js +4 -4
  22. package/lib/grid.js +12 -12
  23. package/lib/image-preview.js +15 -7
  24. package/lib/image.js +4 -4
  25. package/lib/index.js +1 -1
  26. package/lib/list.js +4 -4
  27. package/lib/loading.js +86 -86
  28. package/lib/nav-bar.js +4 -4
  29. package/lib/notice-bar.js +4 -4
  30. package/lib/pagination.js +4 -4
  31. package/lib/picker.js +200 -171
  32. package/lib/popover.js +4 -4
  33. package/lib/popup.js +4 -4
  34. package/lib/pull-refresh.js +4 -4
  35. package/lib/radio.js +199 -170
  36. package/lib/rate.js +4 -4
  37. package/lib/retrial-auth.js +194 -167
  38. package/lib/search.js +4 -4
  39. package/lib/selector.js +240 -211
  40. package/lib/skeleton.js +4 -4
  41. package/lib/stepper.js +4 -4
  42. package/lib/swipe.js +4 -4
  43. package/lib/switch.js +4 -4
  44. package/lib/tab.js +4 -4
  45. package/lib/table-column.js +194 -165
  46. package/lib/table.js +16 -16
  47. package/lib/tabs.js +4 -4
  48. package/lib/tag.js +4 -4
  49. package/lib/theme-chalk/fonts/iconfont.scss +98 -98
  50. package/lib/theme-chalk/fonts/iconfont1.scss +90 -90
  51. package/lib/uploader.js +2472 -13
  52. package/package.json +3 -1
  53. package/packages/action-sheet/index.js +5 -5
  54. package/packages/action-sheet/src/main.vue +32 -32
  55. package/packages/button/index.js +5 -5
  56. package/packages/button/src/main.vue +15 -15
  57. package/packages/button-group/index.js +5 -5
  58. package/packages/button-group/src/main.vue +80 -80
  59. package/packages/calendar/index.js +5 -5
  60. package/packages/calendar/src/main.vue +34 -34
  61. package/packages/cascader/index.js +5 -5
  62. package/packages/cascader/src/main.vue +39 -39
  63. package/packages/cell/index.js +5 -5
  64. package/packages/cell/src/main.vue +77 -77
  65. package/packages/checkbox/index.js +5 -5
  66. package/packages/checkbox/src/main.vue +232 -232
  67. package/packages/circle/index.js +5 -5
  68. package/packages/circle/src/main.vue +27 -27
  69. package/packages/count-down/index.js +5 -5
  70. package/packages/count-down/src/main.vue +27 -27
  71. package/packages/date/index.js +5 -5
  72. package/packages/date/src/date-time.vue +290 -290
  73. package/packages/date/src/main.vue +401 -401
  74. package/packages/empty/index.js +5 -5
  75. package/packages/empty/src/main.vue +16 -16
  76. package/packages/esign/index.js +5 -5
  77. package/packages/esign/src/main.vue +144 -144
  78. package/packages/field/index.js +5 -5
  79. package/packages/field/src/main.vue +235 -235
  80. package/packages/flow/index.js +5 -5
  81. package/packages/flow/src/components/Circulate.vue +595 -595
  82. package/packages/flow/src/components/Handle.vue +2404 -2404
  83. package/packages/flow/src/components/Message.vue +208 -208
  84. package/packages/flow/src/components/ProcessSettings.vue +342 -342
  85. package/packages/flow/src/components/supervise.vue +139 -139
  86. package/packages/flow/src/flowMix.js +288 -288
  87. package/packages/flow/src/main.vue +116 -116
  88. package/packages/flow-btn/index.js +5 -5
  89. package/packages/flow-btn/src/main.vue +494 -494
  90. package/packages/flow-list/index.js +5 -5
  91. package/packages/flow-list/src/main.vue +248 -248
  92. package/packages/form/index.js +5 -5
  93. package/packages/form/src/main.vue +548 -523
  94. package/packages/grid/index.js +5 -5
  95. package/packages/grid/src/main.vue +486 -486
  96. package/packages/grid-item/index.js +5 -5
  97. package/packages/grid-item/src/main.vue +16 -16
  98. package/packages/image/index.js +5 -5
  99. package/packages/image/src/main.vue +12 -12
  100. package/packages/image-preview/index.js +5 -5
  101. package/packages/image-preview/src/main.vue +41 -34
  102. package/packages/list/index.js +5 -5
  103. package/packages/list/src/main.vue +32 -32
  104. package/packages/loading/index.js +5 -5
  105. package/packages/loading/src/main.vue +19 -19
  106. package/packages/nav-bar/index.js +5 -5
  107. package/packages/nav-bar/src/main.vue +24 -24
  108. package/packages/notice-bar/index.js +5 -5
  109. package/packages/notice-bar/src/main.vue +15 -15
  110. package/packages/pagination/index.js +5 -5
  111. package/packages/pagination/src/main.vue +73 -73
  112. package/packages/picker/index.js +5 -5
  113. package/packages/picker/src/main.vue +604 -604
  114. package/packages/popover/index.js +5 -5
  115. package/packages/popover/src/main.vue +32 -32
  116. package/packages/popup/index.js +5 -5
  117. package/packages/popup/src/main.vue +27 -27
  118. package/packages/pull-refresh/index.js +5 -5
  119. package/packages/pull-refresh/src/main.vue +31 -31
  120. package/packages/radio/index.js +5 -5
  121. package/packages/radio/src/main.vue +179 -179
  122. package/packages/rate/index.js +5 -5
  123. package/packages/rate/src/main.vue +26 -26
  124. package/packages/retrial-auth/index.js +5 -5
  125. package/packages/retrial-auth/src/main.vue +257 -257
  126. package/packages/search/index.js +5 -5
  127. package/packages/search/src/main.vue +39 -39
  128. package/packages/selector/index.js +5 -5
  129. package/packages/selector/src/main.vue +186 -186
  130. package/packages/selector/src/selector-tree.vue +1117 -1117
  131. package/packages/selector/src/tree.vue +405 -405
  132. package/packages/skeleton/index.js +5 -5
  133. package/packages/skeleton/src/main.vue +17 -17
  134. package/packages/stepper/index.js +5 -5
  135. package/packages/stepper/src/main.vue +25 -25
  136. package/packages/swipe/index.js +5 -5
  137. package/packages/swipe/src/main.vue +42 -42
  138. package/packages/switch/index.js +5 -5
  139. package/packages/switch/src/main.vue +38 -38
  140. package/packages/tab/index.js +5 -5
  141. package/packages/tab/src/main.vue +16 -16
  142. package/packages/table/index.js +5 -5
  143. package/packages/table/src/main.vue +1006 -1006
  144. package/packages/table-column/index.js +5 -5
  145. package/packages/table-column/src/main.vue +931 -931
  146. package/packages/table-column/src/mixins/table.js +12 -12
  147. package/packages/tabs/index.js +5 -5
  148. package/packages/tabs/src/main.vue +34 -34
  149. package/packages/tag/index.js +5 -5
  150. package/packages/tag/src/main.vue +16 -16
  151. package/packages/theme-chalk/lib/action-sheet.css +0 -0
  152. package/packages/theme-chalk/lib/base.css +1 -0
  153. package/packages/theme-chalk/lib/button-group.css +1 -0
  154. package/packages/theme-chalk/lib/button.css +1 -0
  155. package/packages/theme-chalk/lib/calendar.css +1 -0
  156. package/packages/theme-chalk/lib/cascader.css +1 -0
  157. package/packages/theme-chalk/lib/cell.css +1 -0
  158. package/packages/theme-chalk/lib/checkbox.css +1 -0
  159. package/packages/theme-chalk/lib/circle.css +1 -0
  160. package/packages/theme-chalk/lib/count-down.css +0 -0
  161. package/packages/theme-chalk/lib/date.css +0 -0
  162. package/packages/theme-chalk/lib/empty.css +0 -0
  163. package/packages/theme-chalk/lib/esign.css +1 -0
  164. package/packages/theme-chalk/lib/field.css +1 -0
  165. package/packages/theme-chalk/lib/flow-btn.css +1 -0
  166. package/packages/theme-chalk/lib/flow-list-task-read.css +1 -0
  167. package/packages/theme-chalk/lib/flow-list.css +1 -0
  168. package/packages/theme-chalk/lib/flow.css +1 -0
  169. package/packages/theme-chalk/lib/fonts/iconfont.scss +98 -0
  170. package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
  171. package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
  172. package/packages/theme-chalk/lib/fonts/iconfont1.scss +90 -0
  173. package/packages/theme-chalk/lib/form.css +1 -0
  174. package/packages/theme-chalk/lib/grid-item.css +1 -0
  175. package/packages/theme-chalk/lib/grid.css +1 -0
  176. package/packages/theme-chalk/lib/icon.css +1 -0
  177. package/packages/theme-chalk/lib/image-preview.css +0 -0
  178. package/packages/theme-chalk/lib/image.css +0 -0
  179. package/packages/theme-chalk/lib/index.css +1 -0
  180. package/packages/theme-chalk/lib/list.css +0 -0
  181. package/packages/theme-chalk/lib/loading.css +0 -0
  182. package/packages/theme-chalk/lib/nav-bar.css +0 -0
  183. package/packages/theme-chalk/lib/navbar.css +1 -0
  184. package/packages/theme-chalk/lib/notice-bar.css +0 -0
  185. package/packages/theme-chalk/lib/pagination.css +1 -0
  186. package/packages/theme-chalk/lib/picker.css +1 -0
  187. package/packages/theme-chalk/lib/popover.css +0 -0
  188. package/packages/theme-chalk/lib/popup.css +0 -0
  189. package/packages/theme-chalk/lib/pull-refresh.css +0 -0
  190. package/packages/theme-chalk/lib/radio.css +1 -0
  191. package/packages/theme-chalk/lib/rate.css +0 -0
  192. package/packages/theme-chalk/lib/retrial-auth.css +1 -0
  193. package/packages/theme-chalk/lib/search.css +0 -0
  194. package/packages/theme-chalk/lib/selector.css +1 -0
  195. package/packages/theme-chalk/lib/skeleton.css +0 -0
  196. package/packages/theme-chalk/lib/stepper.css +1 -0
  197. package/packages/theme-chalk/lib/swipe.css +0 -0
  198. package/packages/theme-chalk/lib/switch.css +1 -0
  199. package/packages/theme-chalk/lib/tab.css +0 -0
  200. package/packages/theme-chalk/lib/table-column.css +0 -0
  201. package/packages/theme-chalk/lib/table.css +1 -0
  202. package/packages/theme-chalk/lib/tabs.css +1 -0
  203. package/packages/theme-chalk/lib/tag.css +1 -0
  204. package/packages/theme-chalk/lib/theme.css +0 -0
  205. package/packages/theme-chalk/lib/tree.css +1 -0
  206. package/packages/theme-chalk/lib/uploader.css +0 -0
  207. package/packages/theme-chalk/src/base.scss +195 -195
  208. package/packages/theme-chalk/src/button-group.scss +25 -25
  209. package/packages/theme-chalk/src/button.scss +2 -2
  210. package/packages/theme-chalk/src/calendar.scss +11 -11
  211. package/packages/theme-chalk/src/cascader.scss +11 -11
  212. package/packages/theme-chalk/src/cell.scss +14 -14
  213. package/packages/theme-chalk/src/checkbox.scss +9 -9
  214. package/packages/theme-chalk/src/circle.scss +6 -6
  215. package/packages/theme-chalk/src/common/var.scss +1525 -1525
  216. package/packages/theme-chalk/src/esign.scss +51 -51
  217. package/packages/theme-chalk/src/field.scss +98 -98
  218. package/packages/theme-chalk/src/flow-btn.scss +99 -99
  219. package/packages/theme-chalk/src/flow-list.scss +122 -122
  220. package/packages/theme-chalk/src/fonts/iconfont.scss +98 -98
  221. package/packages/theme-chalk/src/fonts/iconfont1.scss +90 -90
  222. package/packages/theme-chalk/src/form.scss +33 -33
  223. package/packages/theme-chalk/src/grid-item.scss +16 -16
  224. package/packages/theme-chalk/src/grid.scss +46 -46
  225. package/packages/theme-chalk/src/icon.scss +1661 -1661
  226. package/packages/theme-chalk/src/mixins/color.scss +117 -117
  227. package/packages/theme-chalk/src/navbar.scss +5 -5
  228. package/packages/theme-chalk/src/pagination.scss +12 -12
  229. package/packages/theme-chalk/src/picker.scss +31 -31
  230. package/packages/theme-chalk/src/radio.scss +6 -6
  231. package/packages/theme-chalk/src/retrial-auth.scss +28 -28
  232. package/packages/theme-chalk/src/selector.scss +247 -247
  233. package/packages/theme-chalk/src/stepper.scss +9 -9
  234. package/packages/theme-chalk/src/switch.scss +5 -5
  235. package/packages/theme-chalk/src/table.scss +86 -86
  236. package/packages/theme-chalk/src/tabs.scss +31 -31
  237. package/packages/theme-chalk/src/tag.scss +12 -12
  238. package/packages/theme-chalk/src/theme.scss +1 -1
  239. package/packages/theme-chalk/src/tree.scss +127 -127
  240. package/packages/uploader/index.js +5 -5
  241. package/packages/uploader/src/main.vue +586 -31
  242. package/src/config/api.js +18 -0
  243. package/src/index.js +1 -1
  244. package/src/utils/axios.js +217 -217
  245. package/src/utils/date-util.js +312 -312
  246. package/src/utils/http.js +106 -106
  247. package/src/utils/rules.js +18 -18
  248. package/src/utils/store.js +21 -21
  249. package/packages/theme-chalk/gulpfile.js +0 -25
package/lib/flow.js CHANGED
@@ -82,7 +82,7 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 12);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 14);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ([
@@ -90,7 +90,7 @@ module.exports =
90
90
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
91
91
 
92
92
  "use strict";
93
- /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
93
+ /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
94
94
  /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eoss_design_color__WEBPACK_IMPORTED_MODULE_0__);
95
95
  var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
96
96
 
@@ -1504,170 +1504,79 @@ var toFunction = function toFunction(str) {
1504
1504
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1505
1505
 
1506
1506
  "use strict";
1507
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
1508
- /* globals __VUE_SSR_CONTEXT__ */
1509
-
1510
- // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
1511
- // This module is a runtime utility for cleaner component module output and will
1512
- // be included in the final webpack user bundle.
1513
-
1514
- function normalizeComponent(
1515
- scriptExports,
1516
- render,
1517
- staticRenderFns,
1518
- functionalTemplate,
1519
- injectStyles,
1520
- scopeId,
1521
- moduleIdentifier /* server only */,
1522
- shadowMode /* vue-cli only */
1523
- ) {
1524
- // Vue.extend constructor export interop
1525
- var options =
1526
- typeof scriptExports === 'function' ? scriptExports.options : scriptExports
1527
-
1528
- // render functions
1529
- if (render) {
1530
- options.render = render
1531
- options.staticRenderFns = staticRenderFns
1532
- options._compiled = true
1533
- }
1534
-
1535
- // functional template
1536
- if (functionalTemplate) {
1537
- options.functional = true
1538
- }
1539
-
1540
- // scopedId
1541
- if (scopeId) {
1542
- options._scopeId = 'data-v-' + scopeId
1543
- }
1544
-
1545
- var hook
1546
- if (moduleIdentifier) {
1547
- // server build
1548
- hook = function (context) {
1549
- // 2.3 injection
1550
- context =
1551
- context || // cached call
1552
- (this.$vnode && this.$vnode.ssrContext) || // stateful
1553
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
1554
- // 2.2 with runInNewContext: true
1555
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
1556
- context = __VUE_SSR_CONTEXT__
1557
- }
1558
- // inject component styles
1559
- if (injectStyles) {
1560
- injectStyles.call(this, context)
1561
- }
1562
- // register component module identifier for async chunk inferrence
1563
- if (context && context._registeredComponents) {
1564
- context._registeredComponents.add(moduleIdentifier)
1565
- }
1566
- }
1567
- // used by ssr in case component is cached and beforeCreate
1568
- // never gets called
1569
- options._ssrRegister = hook
1570
- } else if (injectStyles) {
1571
- hook = shadowMode
1572
- ? function () {
1573
- injectStyles.call(
1574
- this,
1575
- (options.functional ? this.parent : this).$root.$options.shadowRoot
1576
- )
1577
- }
1578
- : injectStyles
1579
- }
1580
-
1581
- if (hook) {
1582
- if (options.functional) {
1583
- // for template-only hot-reload because in that case the render fn doesn't
1584
- // go through the normalizer
1585
- options._injectStyles = hook
1586
- // register for functional component in vue file
1587
- var originalRender = options.render
1588
- options.render = function renderWithStyleInjection(h, context) {
1589
- hook.call(context)
1590
- return originalRender(h, context)
1591
- }
1592
- } else {
1593
- // inject component registration as beforeCreate hook
1594
- var existing = options.beforeCreate
1595
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
1596
- }
1597
- }
1598
-
1599
- return {
1600
- exports: scriptExports,
1601
- options: options
1602
- }
1603
- }
1604
-
1605
-
1606
- /***/ }),
1607
- /* 2 */
1608
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1609
-
1610
- "use strict";
1611
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return initRetrialAuth; });
1612
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return getRetrialAuthCode; });
1507
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return initRetrialAuth; });
1508
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getRetrialAuthCode; });
1613
1509
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return codeRetrialAuth; });
1614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return selectObject; });
1615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return findSysCode; });
1510
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return selectObject; });
1511
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return findSysCode; });
1616
1512
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return commonOpion; });
1617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return getHandleInfoHtml; });
1618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return getNodeInfoHtml; });
1619
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return taskHandleHtml; });
1620
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return taskHandleHtmlImg; });
1621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return registerNew; });
1622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return getNodeInfo; });
1623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return toStartFlow; });
1624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return findUserBaseInfo; });
1625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return taskRejectHtml; });
1626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return toTaskRejectHtml; });
1627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return handleTaskRead; });
1628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return taskReadHtml; });
1629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return taskReadWithHandwrittenOpinion; });
1513
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return getHandleInfoHtml; });
1514
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return getNodeInfoHtml; });
1515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return taskHandleHtml; });
1516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return taskHandleHtmlImg; });
1517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return registerNew; });
1518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return getNodeInfo; });
1519
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return toStartFlow; });
1520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return findUserBaseInfo; });
1521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return taskRejectHtml; });
1522
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return toTaskRejectHtml; });
1523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return handleTaskRead; });
1524
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return taskReadHtml; });
1525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return taskReadWithHandwrittenOpinion; });
1630
1526
  /* unused harmony export toStartTaskRead */
1631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return toStartTaskReadHtml; });
1632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return toTaskTransferIndex; });
1633
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return taskTransfer; });
1634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return findSysCodes; });
1635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return getNotificationMsg; });
1636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return toTaskUnionExamine; });
1637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return taskUnionExamine; });
1638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return toTaskTakeAdvice; });
1639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return taskTakeAdvice; });
1640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return toTaskStartDraft; });
1641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return taskStartDraft; });
1642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return toTaskUnionSeal; });
1643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return taskUnionSeal; });
1527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return toStartTaskReadHtml; });
1528
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return toTaskTransferIndex; });
1529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return taskTransfer; });
1530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return findSysCodes; });
1531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return getNotificationMsg; });
1532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return toTaskUnionExamine; });
1533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return taskUnionExamine; });
1534
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return toTaskTakeAdvice; });
1535
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return taskTakeAdvice; });
1536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return toTaskStartDraft; });
1537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return taskStartDraft; });
1538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return toTaskUnionSeal; });
1539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return taskUnionSeal; });
1644
1540
  /* unused harmony export toTwoOfficesDispatch */
1645
1541
  /* unused harmony export twoOfficesDispatch */
1646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return isCanStartSubFlow; });
1647
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return getPresetCustomInfo; });
1648
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return pendedhistoryList; });
1649
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return getHandleButtonHtml; });
1650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return getSysParam; });
1651
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return getFreeStartFlowParams; });
1652
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return getProcessDefList; });
1653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
1654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return freeStartFlowWithSubmitTask; });
1655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return toTaskSupervise; });
1656
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return toTaskSuperviseSub; });
1657
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return toResetProcessIndex; });
1658
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return resetProcess; });
1659
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return toTaskContinuationIndex; });
1660
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return taskContinuation; });
1661
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return taskReadList; });
1542
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return isCanStartSubFlow; });
1543
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return getPresetCustomInfo; });
1544
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return pendedhistoryList; });
1545
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return getHandleButtonHtml; });
1546
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getSysParam; });
1547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return getFreeStartFlowParams; });
1548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return getProcessDefList; });
1549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
1550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return freeStartFlowWithSubmitTask; });
1551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return toTaskSupervise; });
1552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return toTaskSuperviseSub; });
1553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return toResetProcessIndex; });
1554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return resetProcess; });
1555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return toTaskContinuationIndex; });
1556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return taskContinuation; });
1557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return taskReadList; });
1662
1558
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return cancelTaskRead; });
1663
1559
  /* unused harmony export officeHandleRemark */
1664
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return toStartTaskReadNew; });
1665
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return directStartTaskCircularRead; });
1666
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return endFlowAndStartTaskCircularRead; });
1667
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return deleteCommonOpion; });
1668
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return saveCommonOpinion; });
1560
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return toStartTaskReadNew; });
1561
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return directStartTaskCircularRead; });
1562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return endFlowAndStartTaskCircularRead; });
1563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return deleteCommonOpion; });
1564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return saveCommonOpinion; });
1669
1565
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
1670
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return endFlowHtml; });
1566
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return endFlowHtml; });
1567
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return getAdjunctProperties; });
1568
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return uploads; });
1569
+ /* unused harmony export uploadOnlyOne */
1570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return getAdjunctFileInfos; });
1571
+ /* unused harmony export uploadSort */
1572
+ /* unused harmony export downloadByAdjunctId */
1573
+ /* unused harmony export uploadDownloads */
1574
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return previewAdjunct; });
1575
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return previewAdjunct2; });
1576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return previewAdjunctOffice; });
1577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return delAdjunct; });
1578
+ /* unused harmony export upload_updateClassify */
1579
+ /* unused harmony export getDeleteAdjunctFileInfos */
1671
1580
  /* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
1672
1581
 
1673
1582
  var activiti = '/bpm';
@@ -1807,6 +1716,124 @@ var saveCommonOpinion = flowPendingPrefix + '/commonOpinionsManager/save.dhtml';
1807
1716
  var addCommonOpion = '/bpm/commonOpinionsManager/add';
1808
1717
  // 直接办结
1809
1718
  var endFlowHtml = flowPendingPrefix + '/task/taskHandle/endFlow.dhtml';
1719
+ // 附件相关
1720
+ var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
1721
+ var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
1722
+ var uploadOnlyOne = '/main2/mecpfileManagement/uploadOnlyOne'; // 上传接口(覆盖之前文件)
1723
+ var getAdjunctFileInfos = '/main2/mecpfileManagement/getAdjunctFileInfos'; // 附件列表
1724
+ var uploadSort = '/main2/mecpfileManagement/sort'; // 根据附件的ids排序附件
1725
+ var downloadByAdjunctId = '/main2/mecpfileManagement/downloadByAdjunctId'; // 下载附件
1726
+ var uploadDownloads = '/main2/mecpfileManagement/uploadDownloads'; // 批量下载//
1727
+ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
1728
+ var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
1729
+ var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
1730
+ var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
1731
+ var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
1732
+ var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
1733
+
1734
+ /***/ }),
1735
+ /* 2 */
1736
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1737
+
1738
+ "use strict";
1739
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
1740
+ /* globals __VUE_SSR_CONTEXT__ */
1741
+
1742
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
1743
+ // This module is a runtime utility for cleaner component module output and will
1744
+ // be included in the final webpack user bundle.
1745
+
1746
+ function normalizeComponent(
1747
+ scriptExports,
1748
+ render,
1749
+ staticRenderFns,
1750
+ functionalTemplate,
1751
+ injectStyles,
1752
+ scopeId,
1753
+ moduleIdentifier /* server only */,
1754
+ shadowMode /* vue-cli only */
1755
+ ) {
1756
+ // Vue.extend constructor export interop
1757
+ var options =
1758
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
1759
+
1760
+ // render functions
1761
+ if (render) {
1762
+ options.render = render
1763
+ options.staticRenderFns = staticRenderFns
1764
+ options._compiled = true
1765
+ }
1766
+
1767
+ // functional template
1768
+ if (functionalTemplate) {
1769
+ options.functional = true
1770
+ }
1771
+
1772
+ // scopedId
1773
+ if (scopeId) {
1774
+ options._scopeId = 'data-v-' + scopeId
1775
+ }
1776
+
1777
+ var hook
1778
+ if (moduleIdentifier) {
1779
+ // server build
1780
+ hook = function (context) {
1781
+ // 2.3 injection
1782
+ context =
1783
+ context || // cached call
1784
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
1785
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
1786
+ // 2.2 with runInNewContext: true
1787
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
1788
+ context = __VUE_SSR_CONTEXT__
1789
+ }
1790
+ // inject component styles
1791
+ if (injectStyles) {
1792
+ injectStyles.call(this, context)
1793
+ }
1794
+ // register component module identifier for async chunk inferrence
1795
+ if (context && context._registeredComponents) {
1796
+ context._registeredComponents.add(moduleIdentifier)
1797
+ }
1798
+ }
1799
+ // used by ssr in case component is cached and beforeCreate
1800
+ // never gets called
1801
+ options._ssrRegister = hook
1802
+ } else if (injectStyles) {
1803
+ hook = shadowMode
1804
+ ? function () {
1805
+ injectStyles.call(
1806
+ this,
1807
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
1808
+ )
1809
+ }
1810
+ : injectStyles
1811
+ }
1812
+
1813
+ if (hook) {
1814
+ if (options.functional) {
1815
+ // for template-only hot-reload because in that case the render fn doesn't
1816
+ // go through the normalizer
1817
+ options._injectStyles = hook
1818
+ // register for functional component in vue file
1819
+ var originalRender = options.render
1820
+ options.render = function renderWithStyleInjection(h, context) {
1821
+ hook.call(context)
1822
+ return originalRender(h, context)
1823
+ }
1824
+ } else {
1825
+ // inject component registration as beforeCreate hook
1826
+ var existing = options.beforeCreate
1827
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
1828
+ }
1829
+ }
1830
+
1831
+ return {
1832
+ exports: scriptExports,
1833
+ options: options
1834
+ }
1835
+ }
1836
+
1810
1837
 
1811
1838
  /***/ }),
1812
1839
  /* 3 */
@@ -1815,7 +1842,7 @@ var endFlowHtml = flowPendingPrefix + '/task/taskHandle/endFlow.dhtml';
1815
1842
  "use strict";
1816
1843
 
1817
1844
  // EXTERNAL MODULE: external "axios"
1818
- var external_axios_ = __webpack_require__(6);
1845
+ var external_axios_ = __webpack_require__(5);
1819
1846
  var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
1820
1847
 
1821
1848
  // EXTERNAL MODULE: external "eoss-mobile-vant"
@@ -2115,13 +2142,13 @@ module.exports = require("eoss-mobile-vant");
2115
2142
  /* 5 */
2116
2143
  /***/ (function(module, exports) {
2117
2144
 
2118
- module.exports = require("@eoss-design/color");
2145
+ module.exports = require("axios");
2119
2146
 
2120
2147
  /***/ }),
2121
2148
  /* 6 */
2122
2149
  /***/ (function(module, exports) {
2123
2150
 
2124
- module.exports = require("axios");
2151
+ module.exports = require("@eoss-design/color");
2125
2152
 
2126
2153
  /***/ }),
2127
2154
  /* 7 */
@@ -2139,7 +2166,9 @@ module.exports = require("sm-crypto");
2139
2166
  /* 9 */,
2140
2167
  /* 10 */,
2141
2168
  /* 11 */,
2142
- /* 12 */
2169
+ /* 12 */,
2170
+ /* 13 */,
2171
+ /* 14 */
2143
2172
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2144
2173
 
2145
2174
  "use strict";
@@ -2698,7 +2727,7 @@ StartFlowvue_type_template_id_68acd67c_render._withStripped = true
2698
2727
  // CONCATENATED MODULE: ./packages/flow/src/components/StartFlow.vue?vue&type=template&id=68acd67c
2699
2728
 
2700
2729
  // EXTERNAL MODULE: ./src/config/api.js
2701
- var api = __webpack_require__(2);
2730
+ var api = __webpack_require__(1);
2702
2731
 
2703
2732
  // EXTERNAL MODULE: ./src/utils/http.js + 1 modules
2704
2733
  var http = __webpack_require__(3);
@@ -3464,7 +3493,7 @@ Opinionvue_type_template_id_68fdb647_render._withStripped = true
3464
3493
  duration: 0
3465
3494
  });
3466
3495
  Object(http["a" /* default */])({
3467
- url: _that.baseUrl ? _that.baseUrl + api["e" /* deleteCommonOpion */] : api["e" /* deleteCommonOpion */],
3496
+ url: _that.baseUrl ? _that.baseUrl + api["f" /* deleteCommonOpion */] : api["f" /* deleteCommonOpion */],
3468
3497
  type: 'post',
3469
3498
  params: { id: id },
3470
3499
  format: false
@@ -3518,7 +3547,7 @@ Opinionvue_type_template_id_68fdb647_render._withStripped = true
3518
3547
  duration: 0
3519
3548
  });
3520
3549
  Object(http["a" /* default */])({
3521
- url: _that.baseUrl ? _that.baseUrl + api["C" /* saveCommonOpinion */] : api["C" /* saveCommonOpinion */],
3550
+ url: _that.baseUrl ? _that.baseUrl + api["I" /* saveCommonOpinion */] : api["I" /* saveCommonOpinion */],
3522
3551
  type: 'post',
3523
3552
  params: obj,
3524
3553
  format: false
@@ -3634,7 +3663,7 @@ Opinionvue_type_template_id_68fdb647_render._withStripped = true
3634
3663
  // CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue?vue&type=script&lang=js
3635
3664
  /* harmony default export */ var components_Opinionvue_type_script_lang_js = (Opinionvue_type_script_lang_js);
3636
3665
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
3637
- var componentNormalizer = __webpack_require__(1);
3666
+ var componentNormalizer = __webpack_require__(2);
3638
3667
 
3639
3668
  // CONCATENATED MODULE: ./packages/flow/src/components/Opinion.vue
3640
3669
 
@@ -3928,7 +3957,7 @@ Messagevue_type_template_id_587552f7_render._withStripped = true
3928
3957
  var _this3 = this;
3929
3958
 
3930
3959
  var params = {
3931
- url: this.baseUrl ? this.baseUrl + api["i" /* findSysCode */] : api["i" /* findSysCode */],
3960
+ url: this.baseUrl ? this.baseUrl + api["j" /* findSysCode */] : api["j" /* findSysCode */],
3932
3961
  type: 'get',
3933
3962
  params: {
3934
3963
  ccCode: this.code,
@@ -4366,7 +4395,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4366
4395
  duration: 0
4367
4396
  });
4368
4397
  Object(http["a" /* default */])({
4369
- url: api["q" /* getNodeInfoHtml */],
4398
+ url: api["t" /* getNodeInfoHtml */],
4370
4399
  params: {
4371
4400
  processDefinitionId: this.processDefinitionId,
4372
4401
  nextNodeId: nodeId,
@@ -4402,7 +4431,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
4402
4431
  var _this4 = this;
4403
4432
 
4404
4433
  Object(http["a" /* default */])({
4405
- url: api["s" /* getPresetCustomInfo */],
4434
+ url: api["v" /* getPresetCustomInfo */],
4406
4435
  params: {
4407
4436
  processDefinitionId: this.processDefinitionId,
4408
4437
  nodeId: nodeId,
@@ -5054,7 +5083,7 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
5054
5083
  });
5055
5084
  var _that = this;
5056
5085
  Object(http["a" /* default */])({
5057
- url: (_that.apiBaseUrl || '') + (_that.isFreeStartFlow ? api["l" /* freeStartFlowWithSubmitTask */] : _that.formType == 'readTransfer' ? api["E" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["A" /* registerNew */]),
5086
+ url: (_that.apiBaseUrl || '') + (_that.isFreeStartFlow ? api["m" /* freeStartFlowWithSubmitTask */] : _that.formType == 'readTransfer' ? api["K" /* startReadTransferHandleFlowWithTaskReadEnd */] : api["G" /* registerNew */]),
5058
5087
  type: 'post',
5059
5088
  params: _that.isFreeStartFlow || _that.formType == 'readTransfer' ? info : { params: info },
5060
5089
  format: false
@@ -5190,7 +5219,7 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
5190
5219
  var that = this;
5191
5220
  return new Promise(function (resolve, reiect) {
5192
5221
  Object(http["a" /* default */])({
5193
- url: that.apiBaseUrl ? that.apiBaseUrl + api["S" /* toStartFlow */] : api["S" /* toStartFlow */],
5222
+ url: that.apiBaseUrl ? that.apiBaseUrl + api["Y" /* toStartFlow */] : api["Y" /* toStartFlow */],
5194
5223
  params: {
5195
5224
  params: StartFlowvue_type_script_lang_js_extends({}, res, {
5196
5225
  userId: that.userId || util["a" /* default */].getStorage('userId')
@@ -5324,7 +5353,7 @@ var StartFlowvue_type_script_lang_js_extends = Object.assign || function (target
5324
5353
  // duration: 0
5325
5354
  // });
5326
5355
  Object(http["a" /* default */])({
5327
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["p" /* getNodeInfo */] : api["p" /* getNodeInfo */],
5356
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["s" /* getNodeInfo */] : api["s" /* getNodeInfo */],
5328
5357
  params: {
5329
5358
  // params: {
5330
5359
  processDefinitionId: this.flowObj.processDefinitionId,
@@ -7363,7 +7392,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
7363
7392
  });
7364
7393
  var _that = this;
7365
7394
  Object(http["a" /* default */])({
7366
- url: _that.baseUrl ? _that.baseUrl + api["L" /* taskRejectHtml */] : api["L" /* taskRejectHtml */],
7395
+ url: _that.baseUrl ? _that.baseUrl + api["R" /* taskRejectHtml */] : api["R" /* taskRejectHtml */],
7367
7396
  type: 'post',
7368
7397
  params: this.form.isImageOpinion == 1 ? formData : this.form,
7369
7398
  format: false
@@ -7419,7 +7448,7 @@ var Rejectvue_type_script_lang_js_extends = Object.assign || function (target) {
7419
7448
  duration: 0
7420
7449
  });
7421
7450
  Object(http["a" /* default */])({
7422
- url: _that.baseUrl ? _that.baseUrl + api["W" /* toTaskRejectHtml */] : api["W" /* toTaskRejectHtml */],
7451
+ url: _that.baseUrl ? _that.baseUrl + api["cb" /* toTaskRejectHtml */] : api["cb" /* toTaskRejectHtml */],
7423
7452
  params: {
7424
7453
  pendingId: this.pendingId,
7425
7454
  isSinglePage: false,
@@ -7521,7 +7550,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
7521
7550
  duration: 0
7522
7551
  });
7523
7552
  Object(http["a" /* default */])({
7524
- url: _that.baseUrl ? _that.baseUrl + api["W" /* toTaskRejectHtml */] : api["W" /* toTaskRejectHtml */],
7553
+ url: _that.baseUrl ? _that.baseUrl + api["cb" /* toTaskRejectHtml */] : api["cb" /* toTaskRejectHtml */],
7525
7554
  params: {
7526
7555
  appid: this.appid,
7527
7556
  pendingId: this.pendingId,
@@ -7565,7 +7594,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
7565
7594
  var that = this;
7566
7595
  return new Promise(function (resolve, reiect) {
7567
7596
  Object(http["a" /* default */])({
7568
- url: that.baseUrl ? that.baseUrl + api["o" /* getHandleInfoHtml */] : api["o" /* getHandleInfoHtml */],
7597
+ url: that.baseUrl ? that.baseUrl + api["r" /* getHandleInfoHtml */] : api["r" /* getHandleInfoHtml */],
7569
7598
  params: {
7570
7599
  pendingId: that.pendingId,
7571
7600
  identityIds: that.identityIds
@@ -7661,7 +7690,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
7661
7690
 
7662
7691
  var _that = this;
7663
7692
  var params = {
7664
- url: _that.baseUrl ? _that.baseUrl + api["w" /* handleTaskRead */] : api["w" /* handleTaskRead */],
7693
+ url: _that.baseUrl ? _that.baseUrl + api["z" /* handleTaskRead */] : api["z" /* handleTaskRead */],
7665
7694
  params: {
7666
7695
  pendingId: this.pendingId,
7667
7696
  businessId: this.businessId,
@@ -7707,7 +7736,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
7707
7736
  ids = ids + r.showid + (i === _this3.nextReadUserSelectList.length - 1 ? '' : ',');
7708
7737
  });
7709
7738
  var params = {
7710
- url: _that.baseUrl ? _that.baseUrl + api["I" /* taskReadHtml */] : api["I" /* taskReadHtml */],
7739
+ url: _that.baseUrl ? _that.baseUrl + api["O" /* taskReadHtml */] : api["O" /* taskReadHtml */],
7711
7740
  params: {
7712
7741
  pendingId: this.pendingId,
7713
7742
  appId: this.appid,
@@ -7746,7 +7775,7 @@ var Reject_component = Object(componentNormalizer["a" /* default */])(
7746
7775
 
7747
7776
  var _that = this;
7748
7777
  Object(http["a" /* default */])({
7749
- url: _that.baseUrl ? _that.baseUrl + api["T" /* toStartTaskReadHtml */] : api["T" /* toStartTaskReadHtml */],
7778
+ url: _that.baseUrl ? _that.baseUrl + api["Z" /* toStartTaskReadHtml */] : api["Z" /* toStartTaskReadHtml */],
7750
7779
  params: {
7751
7780
  appId: this.appid,
7752
7781
  pendingId: this.pendingId,
@@ -8747,7 +8776,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
8747
8776
  var _this3 = this;
8748
8777
 
8749
8778
  var params = {
8750
- url: api["t" /* getProcessDefList */],
8779
+ url: api["w" /* getProcessDefList */],
8751
8780
  params: {
8752
8781
  flowTypeCode: this.freeStartFlowParams.flowTypeCode,
8753
8782
  onlyFlag: false
@@ -8780,7 +8809,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
8780
8809
  nodeId = _taskExamineInfo.nodeId;
8781
8810
 
8782
8811
  var param = {
8783
- url: api["m" /* getFreeStartFlowParams */],
8812
+ url: api["p" /* getFreeStartFlowParams */],
8784
8813
  params: {
8785
8814
  businessId: businessId,
8786
8815
  processDefinitionId: processDefinitionId,
@@ -8882,7 +8911,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
8882
8911
  duration: 0
8883
8912
  });
8884
8913
  Object(http["a" /* default */])({
8885
- url: this.baseUrl ? this.baseUrl + (this.form.isImageOpinion == 1 ? api["K" /* taskReadWithHandwrittenOpinion */] : api["I" /* taskReadHtml */]) : this.form.isImageOpinion == 1 ? api["K" /* taskReadWithHandwrittenOpinion */] : api["I" /* taskReadHtml */],
8914
+ url: this.baseUrl ? this.baseUrl + (this.form.isImageOpinion == 1 ? api["Q" /* taskReadWithHandwrittenOpinion */] : api["O" /* taskReadHtml */]) : this.form.isImageOpinion == 1 ? api["Q" /* taskReadWithHandwrittenOpinion */] : api["O" /* taskReadHtml */],
8886
8915
  headers: {
8887
8916
  Accept: 'application/json,text/plain'
8888
8917
  },
@@ -8928,7 +8957,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
8928
8957
  this.form.opinion = this.nodeDefaultSubmitOpinion;
8929
8958
  }
8930
8959
  Object(http["a" /* default */])({
8931
- url: this.baseUrl ? this.baseUrl + api["h" /* endFlowHtml */] : api["h" /* endFlowHtml */],
8960
+ url: this.baseUrl ? this.baseUrl + api["i" /* endFlowHtml */] : api["i" /* endFlowHtml */],
8932
8961
  headers: {
8933
8962
  Accept: 'application/json,text/plain'
8934
8963
  },
@@ -9119,7 +9148,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
9119
9148
  duration: 0
9120
9149
  });
9121
9150
  Object(http["a" /* default */])({
9122
- url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["H" /* taskHandleHtmlImg */] : api["G" /* taskHandleHtml */]) : _that.form.isImageOpinion == 1 ? api["H" /* taskHandleHtmlImg */] : api["G" /* taskHandleHtml */],
9151
+ url: _that.baseUrl ? _that.baseUrl + (_that.form.isImageOpinion == 1 ? api["N" /* taskHandleHtmlImg */] : api["M" /* taskHandleHtml */]) : _that.form.isImageOpinion == 1 ? api["N" /* taskHandleHtmlImg */] : api["M" /* taskHandleHtml */],
9123
9152
  type: 'post',
9124
9153
  params: formData,
9125
9154
  format: false
@@ -9408,7 +9437,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
9408
9437
  var that = this;
9409
9438
  return new Promise(function (resolve, reiect) {
9410
9439
  Object(http["a" /* default */])({
9411
- url: that.baseUrl ? that.baseUrl + api["o" /* getHandleInfoHtml */] : api["o" /* getHandleInfoHtml */],
9440
+ url: that.baseUrl ? that.baseUrl + api["r" /* getHandleInfoHtml */] : api["r" /* getHandleInfoHtml */],
9412
9441
  params: {
9413
9442
  pendingId: that.pendingId,
9414
9443
  userId: that.userId
@@ -9668,7 +9697,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
9668
9697
  var _this10 = this;
9669
9698
 
9670
9699
  Object(http["a" /* default */])({
9671
- url: this.baseUrl ? this.baseUrl + api["T" /* toStartTaskReadHtml */] : api["T" /* toStartTaskReadHtml */],
9700
+ url: this.baseUrl ? this.baseUrl + api["Z" /* toStartTaskReadHtml */] : api["Z" /* toStartTaskReadHtml */],
9672
9701
  params: { pendingId: this.pendingId, userId: this.userId }
9673
9702
  }).then(function (res) {
9674
9703
  var status = res.status,
@@ -9708,7 +9737,7 @@ var Handlevue_type_script_lang_js_extends = Object.assign || function (target) {
9708
9737
 
9709
9738
  var _that = this;
9710
9739
  Object(http["a" /* default */])({
9711
- url: _that.baseUrl ? _that.baseUrl + api["q" /* getNodeInfoHtml */] : api["q" /* getNodeInfoHtml */],
9740
+ url: _that.baseUrl ? _that.baseUrl + api["t" /* getNodeInfoHtml */] : api["t" /* getNodeInfoHtml */],
9712
9741
  params: {
9713
9742
  processDefinitionId: this.processObj.taskExamine.processDefinitionId,
9714
9743
  nextNodeId: res,
@@ -10476,7 +10505,7 @@ var Circulatevue_type_script_lang_js_extends = Object.assign || function (target
10476
10505
  var _this3 = this;
10477
10506
 
10478
10507
  var params = {
10479
- url: this.pendingId ? api["g" /* endFlowAndStartTaskCircularRead */] : api["f" /* directStartTaskCircularRead */],
10508
+ url: this.pendingId ? api["h" /* endFlowAndStartTaskCircularRead */] : api["g" /* directStartTaskCircularRead */],
10480
10509
  params: {
10481
10510
  businessId: this.businessId,
10482
10511
  pendingId: this.pendingId,
@@ -11200,7 +11229,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11200
11229
  // this.getProcessObjNew();
11201
11230
  // }
11202
11231
  this.getFind();
11203
- Object(http["a" /* default */])({ url: api["k" /* findUserBaseInfo */] }).then(function (res) {
11232
+ Object(http["a" /* default */])({ url: api["l" /* findUserBaseInfo */] }).then(function (res) {
11204
11233
  console.log(res);
11205
11234
  });
11206
11235
  if (!this.readParams) {
@@ -11229,7 +11258,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11229
11258
  var params = {
11230
11259
  appId: this.readParams.appId
11231
11260
  };
11232
- Object(http["a" /* default */])({ url: api["r" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11261
+ Object(http["a" /* default */])({ url: api["u" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11233
11262
  if (res.status === 'success') {
11234
11263
  _this.defaultNotificationMessage = res.message;
11235
11264
  _this.form.notificationMsg = res.message;
@@ -11258,7 +11287,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11258
11287
  pendingId = this.pendingId;
11259
11288
 
11260
11289
  var params = {
11261
- url: api["O" /* taskTransfer */],
11290
+ url: api["U" /* taskTransfer */],
11262
11291
  params: {
11263
11292
  choiceDeptId: choiceDeptId,
11264
11293
  choiceOrgId: choiceOrgId,
@@ -11310,7 +11339,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11310
11339
  duration: 0
11311
11340
  });
11312
11341
  Object(http["a" /* default */])({
11313
- url: this.baseUrl ? this.baseUrl + api["j" /* findSysCodes */] : api["j" /* findSysCodes */]
11342
+ url: this.baseUrl ? this.baseUrl + api["k" /* findSysCodes */] : api["k" /* findSysCodes */]
11314
11343
  }).then(function (res) {
11315
11344
  var status = res.status,
11316
11345
  message = res.message,
@@ -11354,7 +11383,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11354
11383
  taskExamine = this.taskExamine;
11355
11384
 
11356
11385
  var params = {
11357
- url: this.baseUrl ? this.baseUrl + api["bb" /* toTaskTransferIndex */] : api["bb" /* toTaskTransferIndex */],
11386
+ url: this.baseUrl ? this.baseUrl + api["hb" /* toTaskTransferIndex */] : api["hb" /* toTaskTransferIndex */],
11358
11387
  params: {
11359
11388
  opinion: opinion,
11360
11389
  pendingId: pendingId,
@@ -11468,7 +11497,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11468
11497
  mobileKey: util["a" /* default */].getStorage('deviceId') || '123'
11469
11498
  };
11470
11499
  Object(http["a" /* default */])({
11471
- url: this.baseUrl ? this.baseUrl + api["U" /* toStartTaskReadNew */] : api["U" /* toStartTaskReadNew */],
11500
+ url: this.baseUrl ? this.baseUrl + api["ab" /* toStartTaskReadNew */] : api["ab" /* toStartTaskReadNew */],
11472
11501
  params: params
11473
11502
  }).then(function (res) {
11474
11503
  if (res.status == 'success' || res.rCode == 0) {
@@ -11494,7 +11523,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11494
11523
  if (_that.newType != 'taskReadAndEnd') delete params.taskAction;
11495
11524
 
11496
11525
  Object(http["a" /* default */])({
11497
- url: _that.baseUrl ? _that.baseUrl + api["T" /* toStartTaskReadHtml */] : api["T" /* toStartTaskReadHtml */],
11526
+ url: _that.baseUrl ? _that.baseUrl + api["Z" /* toStartTaskReadHtml */] : api["Z" /* toStartTaskReadHtml */],
11498
11527
  params: params
11499
11528
  }).then(function (res) {
11500
11529
  _that.$toast.clear();
@@ -11545,7 +11574,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11545
11574
 
11546
11575
  var _that = this;
11547
11576
  var params = {
11548
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["w" /* handleTaskRead */] : api["w" /* handleTaskRead */],
11577
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["z" /* handleTaskRead */] : api["z" /* handleTaskRead */],
11549
11578
  params: {
11550
11579
  pendingId: this.pendingId,
11551
11580
  businessId: this.businessId,
@@ -11586,7 +11615,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11586
11615
  var _this8 = this;
11587
11616
 
11588
11617
  Object(http["a" /* default */])({
11589
- url: this.baseUrl ? this.baseUrl + api["o" /* getHandleInfoHtml */] : api["o" /* getHandleInfoHtml */],
11618
+ url: this.baseUrl ? this.baseUrl + api["r" /* getHandleInfoHtml */] : api["r" /* getHandleInfoHtml */],
11590
11619
  params: { pendingId: this.pendingId, userId: this.userId }
11591
11620
  }).then(function (res) {
11592
11621
  var status = res.status,
@@ -11648,7 +11677,7 @@ var TaskReadvue_type_script_lang_js_extends = Object.assign || function (target)
11648
11677
  }
11649
11678
 
11650
11679
  var params = {
11651
- url: _that.baseUrl ? _that.baseUrl + api["I" /* taskReadHtml */] : api["I" /* taskReadHtml */],
11680
+ url: _that.baseUrl ? _that.baseUrl + api["O" /* taskReadHtml */] : api["O" /* taskReadHtml */],
11652
11681
  type: 'post',
11653
11682
  params: TaskReadvue_type_script_lang_js_extends({}, this.form, {
11654
11683
  pendingId: this.pendingId,
@@ -12149,7 +12178,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12149
12178
  this.$parent.$emit('selector-click', val);
12150
12179
  },
12151
12180
  getuserInfo: function getuserInfo() {
12152
- Object(http["a" /* default */])({ url: api["k" /* findUserBaseInfo */] }).then(function (res) {
12181
+ Object(http["a" /* default */])({ url: api["l" /* findUserBaseInfo */] }).then(function (res) {
12153
12182
  localStorage.setItem('userInfo', JSON.stringify(res.results));
12154
12183
  });
12155
12184
  },
@@ -12166,7 +12195,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12166
12195
  var _this = this;
12167
12196
 
12168
12197
  var params = {
12169
- url: api["y" /* isCanStartSubFlow */],
12198
+ url: api["B" /* isCanStartSubFlow */],
12170
12199
  params: {
12171
12200
  appId: this.appId,
12172
12201
  inevitableNode: this.inevitableNode,
@@ -12195,7 +12224,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12195
12224
  pendingId: this.pendingId,
12196
12225
  userId: this.userId
12197
12226
  };
12198
- Object(http["a" /* default */])({ url: api["r" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
12227
+ Object(http["a" /* default */])({ url: api["u" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
12199
12228
  _this2.$toast.clear();
12200
12229
  //localhost:8080/#/Selector
12201
12230
  http: if (res.status === 'success') {
@@ -12211,7 +12240,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12211
12240
  var _this3 = this;
12212
12241
 
12213
12242
  Object(http["a" /* default */])({
12214
- url: api["j" /* findSysCodes */]
12243
+ url: api["k" /* findSysCodes */]
12215
12244
  }).then(function (res) {
12216
12245
  var status = res.status,
12217
12246
  message = res.message;
@@ -12301,7 +12330,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12301
12330
  var _this5 = this;
12302
12331
 
12303
12332
  var params = {
12304
- url: this.type == 'takeAdvice' ? api["ab" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["X" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["db" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? toTwoOfficesDispatch : api["cb" /* toTaskUnionExamine */],
12333
+ url: this.type == 'takeAdvice' ? api["gb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["db" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["jb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? toTwoOfficesDispatch : api["ib" /* toTaskUnionExamine */],
12305
12334
  params: { pendingId: this.pendingId, userId: this.userId },
12306
12335
  headers: { Accept: 'application/json,text/plain' }
12307
12336
  };
@@ -12480,7 +12509,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12480
12509
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
12481
12510
  // return this.$toast('暂未开放,敬请期待!');
12482
12511
  var param = {
12483
- url: this.type === 'startDraf' ? api["M" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Q" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? twoOfficesDispatch : this.type == 'takeAdvice' ? api["N" /* taskTakeAdvice */] : api["P" /* taskUnionExamine */],
12512
+ url: this.type === 'startDraf' ? api["S" /* taskStartDraft */] : this.type == 'unionSeal' ? api["W" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? twoOfficesDispatch : this.type == 'takeAdvice' ? api["T" /* taskTakeAdvice */] : api["V" /* taskUnionExamine */],
12484
12513
  params: isImageOpinion == 1 ? formData : info,
12485
12514
  headers: { Accept: 'application/json,text/plain' },
12486
12515
  type: 'post',
@@ -12529,7 +12558,7 @@ var taskUnionExaminevue_type_script_lang_js_extends = Object.assign || function
12529
12558
  // duration: 0
12530
12559
  // });
12531
12560
  Object(http["a" /* default */])({
12532
- url: _that.baseUrl ? _that.baseUrl + api["cb" /* toTaskUnionExamine */] : api["cb" /* toTaskUnionExamine */],
12561
+ url: _that.baseUrl ? _that.baseUrl + api["ib" /* toTaskUnionExamine */] : api["ib" /* toTaskUnionExamine */],
12533
12562
  params: {
12534
12563
  pendingId: this.pendingId
12535
12564
  }
@@ -12731,7 +12760,7 @@ supervisevue_type_template_id_62f0df9d_render._withStripped = true
12731
12760
  pendingUserIds = _form.pendingUserIds;
12732
12761
 
12733
12762
  var params = {
12734
- url: api["Z" /* toTaskSuperviseSub */],
12763
+ url: api["fb" /* toTaskSuperviseSub */],
12735
12764
  params: {
12736
12765
  userId: util["a" /* default */].getStorage('userId'),
12737
12766
  urgeUserIds: selectInfo.map(function (item) {
@@ -12771,7 +12800,7 @@ supervisevue_type_template_id_62f0df9d_render._withStripped = true
12771
12800
  message: '加载中...'
12772
12801
  });
12773
12802
  Object(http["a" /* default */])({
12774
- url: api["Y" /* toTaskSupervise */],
12803
+ url: api["eb" /* toTaskSupervise */],
12775
12804
  params: {
12776
12805
  businessId: this.businessId,
12777
12806
  userId: util["a" /* default */].getStorage('userId')
@@ -13483,7 +13512,7 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
13483
13512
  var _this = this;
13484
13513
 
13485
13514
  Object(http["a" /* default */])({
13486
- url: api["j" /* findSysCodes */]
13515
+ url: api["k" /* findSysCodes */]
13487
13516
  }).then(function (res) {
13488
13517
  // this.form.notificationMsg = res.message;
13489
13518
  if (_this.hideMessage) return;
@@ -13494,7 +13523,7 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
13494
13523
  var _this2 = this;
13495
13524
 
13496
13525
  var params = {
13497
- url: api["r" /* getNotificationMsg */],
13526
+ url: api["u" /* getNotificationMsg */],
13498
13527
  params: {
13499
13528
  processDefinitionId: this.processObj.processDefinitionId,
13500
13529
  businessId: this.processObj.businessId,
@@ -13629,7 +13658,7 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
13629
13658
  });
13630
13659
  var _that = this;
13631
13660
  Object(http["a" /* default */])({
13632
- url: (_that.apiBaseUrl || '') + _that.type === 'reset' ? api["B" /* resetProcess */] : api["F" /* taskContinuation */],
13661
+ url: (_that.apiBaseUrl || '') + _that.type === 'reset' ? api["H" /* resetProcess */] : api["L" /* taskContinuation */],
13633
13662
  type: 'post',
13634
13663
  params: info,
13635
13664
  format: false
@@ -13746,7 +13775,7 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
13746
13775
  // 获取发起流程信息
13747
13776
  getProcessObj: function getProcessObj(res) {
13748
13777
  var that = this;
13749
- var url = that.type === 'reset' ? api["R" /* toResetProcessIndex */] : api["V" /* toTaskContinuationIndex */];
13778
+ var url = that.type === 'reset' ? api["X" /* toResetProcessIndex */] : api["bb" /* toTaskContinuationIndex */];
13750
13779
  return new Promise(function (resolve, reiect) {
13751
13780
  Object(http["a" /* default */])({
13752
13781
  url: that.apiBaseUrl ? that.apiBaseUrl + url : url,
@@ -13817,7 +13846,7 @@ var resetvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof
13817
13846
 
13818
13847
  var _that = this;
13819
13848
  Object(http["a" /* default */])({
13820
- url: _that.apiBaseUrl ? _that.apiBaseUrl + api["p" /* getNodeInfo */] : api["p" /* getNodeInfo */],
13849
+ url: _that.apiBaseUrl ? _that.apiBaseUrl + api["s" /* getNodeInfo */] : api["s" /* getNodeInfo */],
13821
13850
  params: {
13822
13851
  processDefinitionId: this.processObj.processDefinitionId,
13823
13852
  // nextNodeId: res,