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/selector.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 = 13);
85
+ /******/ return __webpack_require__(__webpack_require__.s = 15);
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 */
@@ -2140,7 +2167,9 @@ module.exports = require("sm-crypto");
2140
2167
  /* 10 */,
2141
2168
  /* 11 */,
2142
2169
  /* 12 */,
2143
- /* 13 */
2170
+ /* 13 */,
2171
+ /* 14 */,
2172
+ /* 15 */
2144
2173
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2145
2174
 
2146
2175
  "use strict";
@@ -3283,7 +3312,7 @@ treevue_type_template_id_34c2c5fa_render._withStripped = true
3283
3312
  // CONCATENATED MODULE: ./packages/selector/src/tree.vue?vue&type=script&lang=js
3284
3313
  /* harmony default export */ var src_treevue_type_script_lang_js = (treevue_type_script_lang_js);
3285
3314
  // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
3286
- var componentNormalizer = __webpack_require__(1);
3315
+ var componentNormalizer = __webpack_require__(2);
3287
3316
 
3288
3317
  // CONCATENATED MODULE: ./packages/selector/src/tree.vue
3289
3318
 
@@ -3306,7 +3335,7 @@ var component = Object(componentNormalizer["a" /* default */])(
3306
3335
 
3307
3336
  /* harmony default export */ var tree = (component.exports);
3308
3337
  // EXTERNAL MODULE: ./src/config/api.js
3309
- var api = __webpack_require__(2);
3338
+ var api = __webpack_require__(1);
3310
3339
 
3311
3340
  // EXTERNAL MODULE: ./src/utils/util.js
3312
3341
  var util = __webpack_require__(0);
@@ -3632,7 +3661,7 @@ var _props, _methods;
3632
3661
  enterprise: {
3633
3662
  label: '选择单位',
3634
3663
  name: 'enterprise',
3635
- url: api["D" /* selectObject */],
3664
+ url: api["J" /* selectObject */],
3636
3665
  data: [],
3637
3666
  nodeData: '',
3638
3667
  selection: [],
@@ -3646,7 +3675,7 @@ var _props, _methods;
3646
3675
  department: {
3647
3676
  label: '选择部门',
3648
3677
  name: 'department',
3649
- url: api["D" /* selectObject */],
3678
+ url: api["J" /* selectObject */],
3650
3679
  data: [],
3651
3680
  nodeData: '',
3652
3681
  selection: [],
@@ -3660,7 +3689,7 @@ var _props, _methods;
3660
3689
  employee: {
3661
3690
  label: '选择用户',
3662
3691
  name: 'employee',
3663
- url: api["D" /* selectObject */],
3692
+ url: api["J" /* selectObject */],
3664
3693
  data: [],
3665
3694
  nodeData: '',
3666
3695
  selection: [],
@@ -3674,7 +3703,7 @@ var _props, _methods;
3674
3703
  myemployee: {
3675
3704
  label: '本单位用户',
3676
3705
  name: 'myemployee',
3677
- url: api["D" /* selectObject */],
3706
+ url: api["J" /* selectObject */],
3678
3707
  data: [],
3679
3708
  nodeData: '',
3680
3709
  selection: [],
@@ -3688,7 +3717,7 @@ var _props, _methods;
3688
3717
  otheremployee: {
3689
3718
  label: '外单位用户',
3690
3719
  name: 'otheremployee',
3691
- url: api["D" /* selectObject */],
3720
+ url: api["J" /* selectObject */],
3692
3721
  data: [],
3693
3722
  nodeData: '',
3694
3723
  selection: [],
@@ -3702,7 +3731,7 @@ var _props, _methods;
3702
3731
  person: {
3703
3732
  label: '选择人员',
3704
3733
  name: 'person',
3705
- url: api["D" /* selectObject */],
3734
+ url: api["J" /* selectObject */],
3706
3735
  data: [],
3707
3736
  nodeData: '',
3708
3737
  selection: [],
@@ -3716,7 +3745,7 @@ var _props, _methods;
3716
3745
  otherperson: {
3717
3746
  label: '外单位人员',
3718
3747
  name: 'otherperson',
3719
- url: api["D" /* selectObject */],
3748
+ url: api["J" /* selectObject */],
3720
3749
  data: [],
3721
3750
  nodeData: '',
3722
3751
  selection: [],
@@ -3730,7 +3759,7 @@ var _props, _methods;
3730
3759
  persongroup: {
3731
3760
  label: '选择群组成员',
3732
3761
  name: 'persongroup',
3733
- url: api["D" /* selectObject */],
3762
+ url: api["J" /* selectObject */],
3734
3763
  data: [],
3735
3764
  nodeData: '',
3736
3765
  selection: [],
@@ -3748,7 +3777,7 @@ var _props, _methods;
3748
3777
  selection: [],
3749
3778
  value: [],
3750
3779
  name: 'filgroup',
3751
- url: api["D" /* selectObject */],
3780
+ url: api["J" /* selectObject */],
3752
3781
  param: {
3753
3782
  objType: this.objType,
3754
3783
  selecttype: 'filgroup',
@@ -3758,7 +3787,7 @@ var _props, _methods;
3758
3787
  depgroup: {
3759
3788
  label: '部门群组成员',
3760
3789
  name: 'depgroup',
3761
- url: api["D" /* selectObject */],
3790
+ url: api["J" /* selectObject */],
3762
3791
  data: [],
3763
3792
  nodeData: '',
3764
3793
  selection: [],
@@ -3772,7 +3801,7 @@ var _props, _methods;
3772
3801
  persongroupobj: {
3773
3802
  label: '人员群组',
3774
3803
  name: 'persongroupobj',
3775
- url: api["D" /* selectObject */],
3804
+ url: api["J" /* selectObject */],
3776
3805
  data: [],
3777
3806
  nodeData: '',
3778
3807
  selection: [],
@@ -3786,7 +3815,7 @@ var _props, _methods;
3786
3815
  filgroupobj: {
3787
3816
  label: '单位群组',
3788
3817
  name: 'filgroupobj',
3789
- url: api["D" /* selectObject */],
3818
+ url: api["J" /* selectObject */],
3790
3819
  data: [],
3791
3820
  nodeData: '',
3792
3821
  selection: [],
@@ -3800,7 +3829,7 @@ var _props, _methods;
3800
3829
  depgroupobj: {
3801
3830
  label: '部门群组',
3802
3831
  name: 'depgroupobj',
3803
- url: api["D" /* selectObject */],
3832
+ url: api["J" /* selectObject */],
3804
3833
  data: [],
3805
3834
  nodeData: '',
3806
3835
  selection: [],
@@ -3814,7 +3843,7 @@ var _props, _methods;
3814
3843
  role: {
3815
3844
  label: '选择角色',
3816
3845
  name: 'role',
3817
- url: api["D" /* selectObject */],
3846
+ url: api["J" /* selectObject */],
3818
3847
  data: [],
3819
3848
  nodeData: '',
3820
3849
  selection: [],
@@ -3828,7 +3857,7 @@ var _props, _methods;
3828
3857
  post: {
3829
3858
  label: '选择岗位',
3830
3859
  name: 'post',
3831
- url: api["D" /* selectObject */],
3860
+ url: api["J" /* selectObject */],
3832
3861
  data: [],
3833
3862
  nodeData: '',
3834
3863
  selection: [],
@@ -3842,7 +3871,7 @@ var _props, _methods;
3842
3871
  codetable: {
3843
3872
  label: '代码表',
3844
3873
  name: 'codetable',
3845
- url: api["D" /* selectObject */],
3874
+ url: api["J" /* selectObject */],
3846
3875
  data: [],
3847
3876
  nodeData: '',
3848
3877
  selection: [],
@@ -3856,7 +3885,7 @@ var _props, _methods;
3856
3885
  topcontacts: {
3857
3886
  label: '常用联系人',
3858
3887
  name: 'topcontacts',
3859
- url: api["D" /* selectObject */],
3888
+ url: api["J" /* selectObject */],
3860
3889
  data: [],
3861
3890
  nodeData: '',
3862
3891
  selection: [],
@@ -3967,12 +3996,12 @@ var _props, _methods;
3967
3996
  });
3968
3997
  },
3969
3998
 
3970
- /**
3971
- * delteList
3972
- * @desc:删除选中的数据
3973
- * @date 2023年3月6日
3974
- * @author liufan
3975
- * @param {String,Number} i 点击数据的下标
3999
+ /**
4000
+ * delteList
4001
+ * @desc:删除选中的数据
4002
+ * @date 2023年3月6日
4003
+ * @author liufan
4004
+ * @param {String,Number} i 点击数据的下标
3976
4005
  */
3977
4006
  delteList: function delteList(i) {
3978
4007
  this.oldIsSearch = this.isSearch;
@@ -3995,11 +4024,11 @@ var _props, _methods;
3995
4024
  }
3996
4025
  },
3997
4026
 
3998
- /**
3999
- * onSearch
4000
- * @desc:条件搜索
4001
- * @date 2023年3月6日
4002
- * @author liufan
4027
+ /**
4028
+ * onSearch
4029
+ * @desc:条件搜索
4030
+ * @date 2023年3月6日
4031
+ * @author liufan
4003
4032
  */
4004
4033
  onSearch: function onSearch() {
4005
4034
  var _this5 = this;
@@ -4018,11 +4047,11 @@ var _props, _methods;
4018
4047
  }, 1000);
4019
4048
  },
4020
4049
 
4021
- /**
4022
- * getContent
4023
- * @desc:获取数据
4024
- * @date 2023年3月6日
4025
- * @author liufan
4050
+ /**
4051
+ * getContent
4052
+ * @desc:获取数据
4053
+ * @date 2023年3月6日
4054
+ * @author liufan
4026
4055
  */
4027
4056
  getContent: function getContent(name, isSearch) {
4028
4057
  var _this6 = this;
@@ -4058,7 +4087,7 @@ var _props, _methods;
4058
4087
  delete this.newParam.department;
4059
4088
  delete this.newParam.myemployee;
4060
4089
  return Object(http["a" /* default */])({
4061
- url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["D" /* selectObject */] : api["D" /* selectObject */],
4090
+ url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["J" /* selectObject */] : api["J" /* selectObject */],
4062
4091
  params: _extends({
4063
4092
  objType: this.objType,
4064
4093
  namelike: this.namelike,
@@ -4126,7 +4155,7 @@ var _props, _methods;
4126
4155
  duration: 0
4127
4156
  });
4128
4157
  Object(http["a" /* default */])({
4129
- url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["D" /* selectObject */] : api["D" /* selectObject */],
4158
+ url: this.url ? this.url : this.baseUrl ? this.baseUrl + api["J" /* selectObject */] : api["J" /* selectObject */],
4130
4159
  params: params
4131
4160
  }).then(function (res) {
4132
4161
  if (res.rCode == 0) {
@@ -4999,12 +5028,12 @@ var selector_field_component = Object(componentNormalizer["a" /* default */])(
4999
5028
  this.$emit('selector-click', this.showSelectorTree);
5000
5029
  },
5001
5030
 
5002
- /**
5003
- * handleDispose
5004
- * @desc:确认选人
5005
- * @date 2023年3月6日
5006
- * @author liufan
5007
- * @param {Object} val 选中的人员/单位
5031
+ /**
5032
+ * handleDispose
5033
+ * @desc:确认选人
5034
+ * @date 2023年3月6日
5035
+ * @author liufan
5036
+ * @param {Object} val 选中的人员/单位
5008
5037
  */
5009
5038
  handleDispose: function handleDispose(val) {
5010
5039
  this.inputValue = '';
@@ -5022,12 +5051,12 @@ var selector_field_component = Object(componentNormalizer["a" /* default */])(
5022
5051
  this.$emit('selector-click', this.showSelectorTree);
5023
5052
  },
5024
5053
 
5025
- /**
5026
- * handleChangeSel
5027
- * @desc:输入框数据发生变化时
5028
- * @date 2023年3月6日
5029
- * @author liufan
5030
- * @param {Array} val 变化后的选中数据
5054
+ /**
5055
+ * handleChangeSel
5056
+ * @desc:输入框数据发生变化时
5057
+ * @date 2023年3月6日
5058
+ * @author liufan
5059
+ * @param {Array} val 变化后的选中数据
5031
5060
  */
5032
5061
  handleChangeSel: function handleChangeSel(val) {
5033
5062
  if (val) {