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
@@ -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 = 53);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 55);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
@@ -91,7 +91,7 @@ module.exports =
91
91
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
92
92
 
93
93
  "use strict";
94
- /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5);
94
+ /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(6);
95
95
  /* harmony import */ var _eoss_design_color__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_eoss_design_color__WEBPACK_IMPORTED_MODULE_0__);
96
96
  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; };
97
97
 
@@ -1506,171 +1506,79 @@ var toFunction = function toFunction(str) {
1506
1506
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1507
1507
 
1508
1508
  "use strict";
1509
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
1510
- /* globals __VUE_SSR_CONTEXT__ */
1511
-
1512
- // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
1513
- // This module is a runtime utility for cleaner component module output and will
1514
- // be included in the final webpack user bundle.
1515
-
1516
- function normalizeComponent(
1517
- scriptExports,
1518
- render,
1519
- staticRenderFns,
1520
- functionalTemplate,
1521
- injectStyles,
1522
- scopeId,
1523
- moduleIdentifier /* server only */,
1524
- shadowMode /* vue-cli only */
1525
- ) {
1526
- // Vue.extend constructor export interop
1527
- var options =
1528
- typeof scriptExports === 'function' ? scriptExports.options : scriptExports
1529
-
1530
- // render functions
1531
- if (render) {
1532
- options.render = render
1533
- options.staticRenderFns = staticRenderFns
1534
- options._compiled = true
1535
- }
1536
-
1537
- // functional template
1538
- if (functionalTemplate) {
1539
- options.functional = true
1540
- }
1541
-
1542
- // scopedId
1543
- if (scopeId) {
1544
- options._scopeId = 'data-v-' + scopeId
1545
- }
1546
-
1547
- var hook
1548
- if (moduleIdentifier) {
1549
- // server build
1550
- hook = function (context) {
1551
- // 2.3 injection
1552
- context =
1553
- context || // cached call
1554
- (this.$vnode && this.$vnode.ssrContext) || // stateful
1555
- (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
1556
- // 2.2 with runInNewContext: true
1557
- if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
1558
- context = __VUE_SSR_CONTEXT__
1559
- }
1560
- // inject component styles
1561
- if (injectStyles) {
1562
- injectStyles.call(this, context)
1563
- }
1564
- // register component module identifier for async chunk inferrence
1565
- if (context && context._registeredComponents) {
1566
- context._registeredComponents.add(moduleIdentifier)
1567
- }
1568
- }
1569
- // used by ssr in case component is cached and beforeCreate
1570
- // never gets called
1571
- options._ssrRegister = hook
1572
- } else if (injectStyles) {
1573
- hook = shadowMode
1574
- ? function () {
1575
- injectStyles.call(
1576
- this,
1577
- (options.functional ? this.parent : this).$root.$options.shadowRoot
1578
- )
1579
- }
1580
- : injectStyles
1581
- }
1582
-
1583
- if (hook) {
1584
- if (options.functional) {
1585
- // for template-only hot-reload because in that case the render fn doesn't
1586
- // go through the normalizer
1587
- options._injectStyles = hook
1588
- // register for functional component in vue file
1589
- var originalRender = options.render
1590
- options.render = function renderWithStyleInjection(h, context) {
1591
- hook.call(context)
1592
- return originalRender(h, context)
1593
- }
1594
- } else {
1595
- // inject component registration as beforeCreate hook
1596
- var existing = options.beforeCreate
1597
- options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
1598
- }
1599
- }
1600
-
1601
- return {
1602
- exports: scriptExports,
1603
- options: options
1604
- }
1605
- }
1606
-
1607
-
1608
- /***/ }),
1609
-
1610
- /***/ 2:
1611
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
1612
-
1613
- "use strict";
1614
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return initRetrialAuth; });
1615
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return getRetrialAuthCode; });
1509
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return initRetrialAuth; });
1510
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getRetrialAuthCode; });
1616
1511
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return codeRetrialAuth; });
1617
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return selectObject; });
1618
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return findSysCode; });
1512
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return selectObject; });
1513
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return findSysCode; });
1619
1514
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return commonOpion; });
1620
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return getHandleInfoHtml; });
1621
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return getNodeInfoHtml; });
1622
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return taskHandleHtml; });
1623
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return taskHandleHtmlImg; });
1624
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return registerNew; });
1625
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return getNodeInfo; });
1626
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return toStartFlow; });
1627
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return findUserBaseInfo; });
1628
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return taskRejectHtml; });
1629
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return toTaskRejectHtml; });
1630
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return handleTaskRead; });
1631
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return taskReadHtml; });
1632
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return taskReadWithHandwrittenOpinion; });
1515
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return getHandleInfoHtml; });
1516
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return getNodeInfoHtml; });
1517
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return taskHandleHtml; });
1518
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return taskHandleHtmlImg; });
1519
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return registerNew; });
1520
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return getNodeInfo; });
1521
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return toStartFlow; });
1522
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return findUserBaseInfo; });
1523
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return taskRejectHtml; });
1524
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return toTaskRejectHtml; });
1525
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return handleTaskRead; });
1526
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return taskReadHtml; });
1527
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return taskReadWithHandwrittenOpinion; });
1633
1528
  /* unused harmony export toStartTaskRead */
1634
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return toStartTaskReadHtml; });
1635
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return toTaskTransferIndex; });
1636
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return taskTransfer; });
1637
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return findSysCodes; });
1638
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return getNotificationMsg; });
1639
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return toTaskUnionExamine; });
1640
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return taskUnionExamine; });
1641
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return toTaskTakeAdvice; });
1642
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return taskTakeAdvice; });
1643
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return toTaskStartDraft; });
1644
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return taskStartDraft; });
1645
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return toTaskUnionSeal; });
1646
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return taskUnionSeal; });
1529
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return toStartTaskReadHtml; });
1530
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return toTaskTransferIndex; });
1531
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return taskTransfer; });
1532
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return findSysCodes; });
1533
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return getNotificationMsg; });
1534
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return toTaskUnionExamine; });
1535
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return taskUnionExamine; });
1536
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return toTaskTakeAdvice; });
1537
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return taskTakeAdvice; });
1538
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return toTaskStartDraft; });
1539
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return taskStartDraft; });
1540
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return toTaskUnionSeal; });
1541
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return taskUnionSeal; });
1647
1542
  /* unused harmony export toTwoOfficesDispatch */
1648
1543
  /* unused harmony export twoOfficesDispatch */
1649
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return isCanStartSubFlow; });
1650
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return getPresetCustomInfo; });
1651
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return pendedhistoryList; });
1652
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return getHandleButtonHtml; });
1653
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return getSysParam; });
1654
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return getFreeStartFlowParams; });
1655
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return getProcessDefList; });
1656
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
1657
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return freeStartFlowWithSubmitTask; });
1658
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return toTaskSupervise; });
1659
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return toTaskSuperviseSub; });
1660
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return toResetProcessIndex; });
1661
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return resetProcess; });
1662
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return toTaskContinuationIndex; });
1663
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return taskContinuation; });
1664
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return taskReadList; });
1544
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return isCanStartSubFlow; });
1545
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return getPresetCustomInfo; });
1546
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return pendedhistoryList; });
1547
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return getHandleButtonHtml; });
1548
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getSysParam; });
1549
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return getFreeStartFlowParams; });
1550
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return getProcessDefList; });
1551
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
1552
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return freeStartFlowWithSubmitTask; });
1553
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return toTaskSupervise; });
1554
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return toTaskSuperviseSub; });
1555
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return toResetProcessIndex; });
1556
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return resetProcess; });
1557
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return toTaskContinuationIndex; });
1558
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return taskContinuation; });
1559
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return taskReadList; });
1665
1560
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return cancelTaskRead; });
1666
1561
  /* unused harmony export officeHandleRemark */
1667
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return toStartTaskReadNew; });
1668
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return directStartTaskCircularRead; });
1669
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return endFlowAndStartTaskCircularRead; });
1670
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return deleteCommonOpion; });
1671
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return saveCommonOpinion; });
1562
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return toStartTaskReadNew; });
1563
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return directStartTaskCircularRead; });
1564
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return endFlowAndStartTaskCircularRead; });
1565
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return deleteCommonOpion; });
1566
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return saveCommonOpinion; });
1672
1567
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
1673
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return endFlowHtml; });
1568
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return endFlowHtml; });
1569
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return getAdjunctProperties; });
1570
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return uploads; });
1571
+ /* unused harmony export uploadOnlyOne */
1572
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return getAdjunctFileInfos; });
1573
+ /* unused harmony export uploadSort */
1574
+ /* unused harmony export downloadByAdjunctId */
1575
+ /* unused harmony export uploadDownloads */
1576
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return previewAdjunct; });
1577
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return previewAdjunct2; });
1578
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return previewAdjunctOffice; });
1579
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return delAdjunct; });
1580
+ /* unused harmony export upload_updateClassify */
1581
+ /* unused harmony export getDeleteAdjunctFileInfos */
1674
1582
  /* harmony import */ var _utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
1675
1583
 
1676
1584
  var activiti = '/bpm';
@@ -1810,6 +1718,125 @@ var saveCommonOpinion = flowPendingPrefix + '/commonOpinionsManager/save.dhtml';
1810
1718
  var addCommonOpion = '/bpm/commonOpinionsManager/add';
1811
1719
  // 直接办结
1812
1720
  var endFlowHtml = flowPendingPrefix + '/task/taskHandle/endFlow.dhtml';
1721
+ // 附件相关
1722
+ var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
1723
+ var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
1724
+ var uploadOnlyOne = '/main2/mecpfileManagement/uploadOnlyOne'; // 上传接口(覆盖之前文件)
1725
+ var getAdjunctFileInfos = '/main2/mecpfileManagement/getAdjunctFileInfos'; // 附件列表
1726
+ var uploadSort = '/main2/mecpfileManagement/sort'; // 根据附件的ids排序附件
1727
+ var downloadByAdjunctId = '/main2/mecpfileManagement/downloadByAdjunctId'; // 下载附件
1728
+ var uploadDownloads = '/main2/mecpfileManagement/uploadDownloads'; // 批量下载//
1729
+ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
1730
+ var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
1731
+ var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
1732
+ var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
1733
+ var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
1734
+ var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
1735
+
1736
+ /***/ }),
1737
+
1738
+ /***/ 2:
1739
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
1740
+
1741
+ "use strict";
1742
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
1743
+ /* globals __VUE_SSR_CONTEXT__ */
1744
+
1745
+ // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
1746
+ // This module is a runtime utility for cleaner component module output and will
1747
+ // be included in the final webpack user bundle.
1748
+
1749
+ function normalizeComponent(
1750
+ scriptExports,
1751
+ render,
1752
+ staticRenderFns,
1753
+ functionalTemplate,
1754
+ injectStyles,
1755
+ scopeId,
1756
+ moduleIdentifier /* server only */,
1757
+ shadowMode /* vue-cli only */
1758
+ ) {
1759
+ // Vue.extend constructor export interop
1760
+ var options =
1761
+ typeof scriptExports === 'function' ? scriptExports.options : scriptExports
1762
+
1763
+ // render functions
1764
+ if (render) {
1765
+ options.render = render
1766
+ options.staticRenderFns = staticRenderFns
1767
+ options._compiled = true
1768
+ }
1769
+
1770
+ // functional template
1771
+ if (functionalTemplate) {
1772
+ options.functional = true
1773
+ }
1774
+
1775
+ // scopedId
1776
+ if (scopeId) {
1777
+ options._scopeId = 'data-v-' + scopeId
1778
+ }
1779
+
1780
+ var hook
1781
+ if (moduleIdentifier) {
1782
+ // server build
1783
+ hook = function (context) {
1784
+ // 2.3 injection
1785
+ context =
1786
+ context || // cached call
1787
+ (this.$vnode && this.$vnode.ssrContext) || // stateful
1788
+ (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
1789
+ // 2.2 with runInNewContext: true
1790
+ if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
1791
+ context = __VUE_SSR_CONTEXT__
1792
+ }
1793
+ // inject component styles
1794
+ if (injectStyles) {
1795
+ injectStyles.call(this, context)
1796
+ }
1797
+ // register component module identifier for async chunk inferrence
1798
+ if (context && context._registeredComponents) {
1799
+ context._registeredComponents.add(moduleIdentifier)
1800
+ }
1801
+ }
1802
+ // used by ssr in case component is cached and beforeCreate
1803
+ // never gets called
1804
+ options._ssrRegister = hook
1805
+ } else if (injectStyles) {
1806
+ hook = shadowMode
1807
+ ? function () {
1808
+ injectStyles.call(
1809
+ this,
1810
+ (options.functional ? this.parent : this).$root.$options.shadowRoot
1811
+ )
1812
+ }
1813
+ : injectStyles
1814
+ }
1815
+
1816
+ if (hook) {
1817
+ if (options.functional) {
1818
+ // for template-only hot-reload because in that case the render fn doesn't
1819
+ // go through the normalizer
1820
+ options._injectStyles = hook
1821
+ // register for functional component in vue file
1822
+ var originalRender = options.render
1823
+ options.render = function renderWithStyleInjection(h, context) {
1824
+ hook.call(context)
1825
+ return originalRender(h, context)
1826
+ }
1827
+ } else {
1828
+ // inject component registration as beforeCreate hook
1829
+ var existing = options.beforeCreate
1830
+ options.beforeCreate = existing ? [].concat(existing, hook) : [hook]
1831
+ }
1832
+ }
1833
+
1834
+ return {
1835
+ exports: scriptExports,
1836
+ options: options
1837
+ }
1838
+ }
1839
+
1813
1840
 
1814
1841
  /***/ }),
1815
1842
 
@@ -1819,7 +1846,7 @@ var endFlowHtml = flowPendingPrefix + '/task/taskHandle/endFlow.dhtml';
1819
1846
  "use strict";
1820
1847
 
1821
1848
  // EXTERNAL MODULE: external "axios"
1822
- var external_axios_ = __webpack_require__(6);
1849
+ var external_axios_ = __webpack_require__(5);
1823
1850
  var external_axios_default = /*#__PURE__*/__webpack_require__.n(external_axios_);
1824
1851
 
1825
1852
  // EXTERNAL MODULE: external "eoss-mobile-vant"
@@ -2121,11 +2148,11 @@ module.exports = require("eoss-mobile-vant");
2121
2148
  /***/ 5:
2122
2149
  /***/ (function(module, exports) {
2123
2150
 
2124
- module.exports = require("@eoss-design/color");
2151
+ module.exports = require("axios");
2125
2152
 
2126
2153
  /***/ }),
2127
2154
 
2128
- /***/ 53:
2155
+ /***/ 55:
2129
2156
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2130
2157
 
2131
2158
  "use strict";
@@ -2257,7 +2284,7 @@ var http = __webpack_require__(3);
2257
2284
  var util = __webpack_require__(0);
2258
2285
 
2259
2286
  // EXTERNAL MODULE: ./src/config/api.js
2260
- var api = __webpack_require__(2);
2287
+ var api = __webpack_require__(1);
2261
2288
 
2262
2289
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/retrial-auth/src/main.vue?vue&type=script&lang=js
2263
2290
  var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
@@ -2447,7 +2474,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
2447
2474
  duration: 0
2448
2475
  });
2449
2476
  Object(http["a" /* default */])({
2450
- url: api["u" /* getRetrialAuthCode */],
2477
+ url: api["x" /* getRetrialAuthCode */],
2451
2478
  type: 'post',
2452
2479
  params: params
2453
2480
  }).then(function (res) {
@@ -2467,7 +2494,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
2467
2494
  var _this3 = this;
2468
2495
 
2469
2496
  Object(http["a" /* default */])({
2470
- url: api["x" /* initRetrialAuth */]
2497
+ url: api["A" /* initRetrialAuth */]
2471
2498
  }).then(function (res) {
2472
2499
  var rCode = res.rCode,
2473
2500
  results = res.results;
@@ -2527,7 +2554,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
2527
2554
  // CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue?vue&type=script&lang=js
2528
2555
  /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
2529
2556
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
2530
- var componentNormalizer = __webpack_require__(1);
2557
+ var componentNormalizer = __webpack_require__(2);
2531
2558
 
2532
2559
  // CONCATENATED MODULE: ./packages/retrial-auth/src/main.vue
2533
2560
 
@@ -2563,7 +2590,7 @@ main.install = function (Vue) {
2563
2590
  /***/ 6:
2564
2591
  /***/ (function(module, exports) {
2565
2592
 
2566
- module.exports = require("axios");
2593
+ module.exports = require("@eoss-design/color");
2567
2594
 
2568
2595
  /***/ }),
2569
2596
 
package/lib/search.js CHANGED
@@ -82,12 +82,12 @@ module.exports =
82
82
  /******/
83
83
  /******/
84
84
  /******/ // Load entry module and return exports
85
- /******/ return __webpack_require__(__webpack_require__.s = 30);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 32);
86
86
  /******/ })
87
87
  /************************************************************************/
88
88
  /******/ ({
89
89
 
90
- /***/ 1:
90
+ /***/ 2:
91
91
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
92
92
 
93
93
  "use strict";
@@ -192,7 +192,7 @@ function normalizeComponent(
192
192
 
193
193
  /***/ }),
194
194
 
195
- /***/ 30:
195
+ /***/ 32:
196
196
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
197
197
 
198
198
  "use strict";
@@ -280,7 +280,7 @@ render._withStripped = true
280
280
  // CONCATENATED MODULE: ./packages/search/src/main.vue?vue&type=script&lang=js
281
281
  /* harmony default export */ var src_mainvue_type_script_lang_js = (mainvue_type_script_lang_js);
282
282
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
283
- var componentNormalizer = __webpack_require__(1);
283
+ var componentNormalizer = __webpack_require__(2);
284
284
 
285
285
  // CONCATENATED MODULE: ./packages/search/src/main.vue
286
286