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.
- package/CHANGELOG.md +95 -0
- package/lib/action-sheet.js +4 -4
- package/lib/button-group.js +4 -4
- package/lib/button.js +4 -4
- package/lib/calendar.js +4 -4
- package/lib/cascader.js +4 -4
- package/lib/cell.js +4 -4
- package/lib/checkbox.js +200 -173
- package/lib/circle.js +4 -4
- package/lib/config/api.js +16 -2
- package/lib/count-down.js +4 -4
- package/lib/date.js +108 -108
- package/lib/empty.js +4 -4
- package/lib/eoss-mobile.common.js +651 -83
- package/lib/esign.js +4 -4
- package/lib/field.js +4 -4
- package/lib/flow-btn.js +194 -167
- package/lib/flow-list.js +196 -167
- package/lib/flow.js +241 -212
- package/lib/form.js +93 -6
- package/lib/grid-item.js +4 -4
- package/lib/grid.js +12 -12
- package/lib/image-preview.js +15 -7
- package/lib/image.js +4 -4
- package/lib/index.js +1 -1
- package/lib/list.js +4 -4
- package/lib/loading.js +86 -86
- package/lib/nav-bar.js +4 -4
- package/lib/notice-bar.js +4 -4
- package/lib/pagination.js +4 -4
- package/lib/picker.js +200 -171
- package/lib/popover.js +4 -4
- package/lib/popup.js +4 -4
- package/lib/pull-refresh.js +4 -4
- package/lib/radio.js +199 -170
- package/lib/rate.js +4 -4
- package/lib/retrial-auth.js +194 -167
- package/lib/search.js +4 -4
- package/lib/selector.js +240 -211
- package/lib/skeleton.js +4 -4
- package/lib/stepper.js +4 -4
- package/lib/swipe.js +4 -4
- package/lib/switch.js +4 -4
- package/lib/tab.js +4 -4
- package/lib/table-column.js +194 -165
- package/lib/table.js +16 -16
- package/lib/tabs.js +4 -4
- package/lib/tag.js +4 -4
- package/lib/theme-chalk/fonts/iconfont.scss +98 -98
- package/lib/theme-chalk/fonts/iconfont1.scss +90 -90
- package/lib/uploader.js +2472 -13
- package/package.json +3 -1
- package/packages/action-sheet/index.js +5 -5
- package/packages/action-sheet/src/main.vue +32 -32
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +15 -15
- package/packages/button-group/index.js +5 -5
- package/packages/button-group/src/main.vue +80 -80
- package/packages/calendar/index.js +5 -5
- package/packages/calendar/src/main.vue +34 -34
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +39 -39
- package/packages/cell/index.js +5 -5
- package/packages/cell/src/main.vue +77 -77
- package/packages/checkbox/index.js +5 -5
- package/packages/checkbox/src/main.vue +232 -232
- package/packages/circle/index.js +5 -5
- package/packages/circle/src/main.vue +27 -27
- package/packages/count-down/index.js +5 -5
- package/packages/count-down/src/main.vue +27 -27
- package/packages/date/index.js +5 -5
- package/packages/date/src/date-time.vue +290 -290
- package/packages/date/src/main.vue +401 -401
- package/packages/empty/index.js +5 -5
- package/packages/empty/src/main.vue +16 -16
- package/packages/esign/index.js +5 -5
- package/packages/esign/src/main.vue +144 -144
- package/packages/field/index.js +5 -5
- package/packages/field/src/main.vue +235 -235
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/components/Circulate.vue +595 -595
- package/packages/flow/src/components/Handle.vue +2404 -2404
- package/packages/flow/src/components/Message.vue +208 -208
- package/packages/flow/src/components/ProcessSettings.vue +342 -342
- package/packages/flow/src/components/supervise.vue +139 -139
- package/packages/flow/src/flowMix.js +288 -288
- package/packages/flow/src/main.vue +116 -116
- package/packages/flow-btn/index.js +5 -5
- package/packages/flow-btn/src/main.vue +494 -494
- package/packages/flow-list/index.js +5 -5
- package/packages/flow-list/src/main.vue +248 -248
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +548 -523
- package/packages/grid/index.js +5 -5
- package/packages/grid/src/main.vue +486 -486
- package/packages/grid-item/index.js +5 -5
- package/packages/grid-item/src/main.vue +16 -16
- package/packages/image/index.js +5 -5
- package/packages/image/src/main.vue +12 -12
- package/packages/image-preview/index.js +5 -5
- package/packages/image-preview/src/main.vue +41 -34
- package/packages/list/index.js +5 -5
- package/packages/list/src/main.vue +32 -32
- package/packages/loading/index.js +5 -5
- package/packages/loading/src/main.vue +19 -19
- package/packages/nav-bar/index.js +5 -5
- package/packages/nav-bar/src/main.vue +24 -24
- package/packages/notice-bar/index.js +5 -5
- package/packages/notice-bar/src/main.vue +15 -15
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +73 -73
- package/packages/picker/index.js +5 -5
- package/packages/picker/src/main.vue +604 -604
- package/packages/popover/index.js +5 -5
- package/packages/popover/src/main.vue +32 -32
- package/packages/popup/index.js +5 -5
- package/packages/popup/src/main.vue +27 -27
- package/packages/pull-refresh/index.js +5 -5
- package/packages/pull-refresh/src/main.vue +31 -31
- package/packages/radio/index.js +5 -5
- package/packages/radio/src/main.vue +179 -179
- package/packages/rate/index.js +5 -5
- package/packages/rate/src/main.vue +26 -26
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +257 -257
- package/packages/search/index.js +5 -5
- package/packages/search/src/main.vue +39 -39
- package/packages/selector/index.js +5 -5
- package/packages/selector/src/main.vue +186 -186
- package/packages/selector/src/selector-tree.vue +1117 -1117
- package/packages/selector/src/tree.vue +405 -405
- package/packages/skeleton/index.js +5 -5
- package/packages/skeleton/src/main.vue +17 -17
- package/packages/stepper/index.js +5 -5
- package/packages/stepper/src/main.vue +25 -25
- package/packages/swipe/index.js +5 -5
- package/packages/swipe/src/main.vue +42 -42
- package/packages/switch/index.js +5 -5
- package/packages/switch/src/main.vue +38 -38
- package/packages/tab/index.js +5 -5
- package/packages/tab/src/main.vue +16 -16
- package/packages/table/index.js +5 -5
- package/packages/table/src/main.vue +1006 -1006
- package/packages/table-column/index.js +5 -5
- package/packages/table-column/src/main.vue +931 -931
- package/packages/table-column/src/mixins/table.js +12 -12
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +34 -34
- package/packages/tag/index.js +5 -5
- package/packages/tag/src/main.vue +16 -16
- package/packages/theme-chalk/lib/action-sheet.css +0 -0
- package/packages/theme-chalk/lib/base.css +1 -0
- package/packages/theme-chalk/lib/button-group.css +1 -0
- package/packages/theme-chalk/lib/button.css +1 -0
- package/packages/theme-chalk/lib/calendar.css +1 -0
- package/packages/theme-chalk/lib/cascader.css +1 -0
- package/packages/theme-chalk/lib/cell.css +1 -0
- package/packages/theme-chalk/lib/checkbox.css +1 -0
- package/packages/theme-chalk/lib/circle.css +1 -0
- package/packages/theme-chalk/lib/count-down.css +0 -0
- package/packages/theme-chalk/lib/date.css +0 -0
- package/packages/theme-chalk/lib/empty.css +0 -0
- package/packages/theme-chalk/lib/esign.css +1 -0
- package/packages/theme-chalk/lib/field.css +1 -0
- package/packages/theme-chalk/lib/flow-btn.css +1 -0
- package/packages/theme-chalk/lib/flow-list-task-read.css +1 -0
- package/packages/theme-chalk/lib/flow-list.css +1 -0
- package/packages/theme-chalk/lib/flow.css +1 -0
- package/packages/theme-chalk/lib/fonts/iconfont.scss +98 -0
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont1.scss +90 -0
- package/packages/theme-chalk/lib/form.css +1 -0
- package/packages/theme-chalk/lib/grid-item.css +1 -0
- package/packages/theme-chalk/lib/grid.css +1 -0
- package/packages/theme-chalk/lib/icon.css +1 -0
- package/packages/theme-chalk/lib/image-preview.css +0 -0
- package/packages/theme-chalk/lib/image.css +0 -0
- package/packages/theme-chalk/lib/index.css +1 -0
- package/packages/theme-chalk/lib/list.css +0 -0
- package/packages/theme-chalk/lib/loading.css +0 -0
- package/packages/theme-chalk/lib/nav-bar.css +0 -0
- package/packages/theme-chalk/lib/navbar.css +1 -0
- package/packages/theme-chalk/lib/notice-bar.css +0 -0
- package/packages/theme-chalk/lib/pagination.css +1 -0
- package/packages/theme-chalk/lib/picker.css +1 -0
- package/packages/theme-chalk/lib/popover.css +0 -0
- package/packages/theme-chalk/lib/popup.css +0 -0
- package/packages/theme-chalk/lib/pull-refresh.css +0 -0
- package/packages/theme-chalk/lib/radio.css +1 -0
- package/packages/theme-chalk/lib/rate.css +0 -0
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/lib/search.css +0 -0
- package/packages/theme-chalk/lib/selector.css +1 -0
- package/packages/theme-chalk/lib/skeleton.css +0 -0
- package/packages/theme-chalk/lib/stepper.css +1 -0
- package/packages/theme-chalk/lib/swipe.css +0 -0
- package/packages/theme-chalk/lib/switch.css +1 -0
- package/packages/theme-chalk/lib/tab.css +0 -0
- package/packages/theme-chalk/lib/table-column.css +0 -0
- package/packages/theme-chalk/lib/table.css +1 -0
- package/packages/theme-chalk/lib/tabs.css +1 -0
- package/packages/theme-chalk/lib/tag.css +1 -0
- package/packages/theme-chalk/lib/theme.css +0 -0
- package/packages/theme-chalk/lib/tree.css +1 -0
- package/packages/theme-chalk/lib/uploader.css +0 -0
- package/packages/theme-chalk/src/base.scss +195 -195
- package/packages/theme-chalk/src/button-group.scss +25 -25
- package/packages/theme-chalk/src/button.scss +2 -2
- package/packages/theme-chalk/src/calendar.scss +11 -11
- package/packages/theme-chalk/src/cascader.scss +11 -11
- package/packages/theme-chalk/src/cell.scss +14 -14
- package/packages/theme-chalk/src/checkbox.scss +9 -9
- package/packages/theme-chalk/src/circle.scss +6 -6
- package/packages/theme-chalk/src/common/var.scss +1525 -1525
- package/packages/theme-chalk/src/esign.scss +51 -51
- package/packages/theme-chalk/src/field.scss +98 -98
- package/packages/theme-chalk/src/flow-btn.scss +99 -99
- package/packages/theme-chalk/src/flow-list.scss +122 -122
- package/packages/theme-chalk/src/fonts/iconfont.scss +98 -98
- package/packages/theme-chalk/src/fonts/iconfont1.scss +90 -90
- package/packages/theme-chalk/src/form.scss +33 -33
- package/packages/theme-chalk/src/grid-item.scss +16 -16
- package/packages/theme-chalk/src/grid.scss +46 -46
- package/packages/theme-chalk/src/icon.scss +1661 -1661
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/navbar.scss +5 -5
- package/packages/theme-chalk/src/pagination.scss +12 -12
- package/packages/theme-chalk/src/picker.scss +31 -31
- package/packages/theme-chalk/src/radio.scss +6 -6
- package/packages/theme-chalk/src/retrial-auth.scss +28 -28
- package/packages/theme-chalk/src/selector.scss +247 -247
- package/packages/theme-chalk/src/stepper.scss +9 -9
- package/packages/theme-chalk/src/switch.scss +5 -5
- package/packages/theme-chalk/src/table.scss +86 -86
- package/packages/theme-chalk/src/tabs.scss +31 -31
- package/packages/theme-chalk/src/tag.scss +12 -12
- package/packages/theme-chalk/src/theme.scss +1 -1
- package/packages/theme-chalk/src/tree.scss +127 -127
- package/packages/uploader/index.js +5 -5
- package/packages/uploader/src/main.vue +586 -31
- package/src/config/api.js +18 -0
- package/src/index.js +1 -1
- package/src/utils/axios.js +217 -217
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +106 -106
- package/src/utils/rules.js +18 -18
- package/src/utils/store.js +21 -21
- package/packages/theme-chalk/gulpfile.js +0 -25
package/lib/flow-list.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 =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 17);
|
|
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__(
|
|
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__, "
|
|
1508
|
-
/*
|
|
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__, "
|
|
1615
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
1618
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1619
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1620
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1621
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1622
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1623
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1624
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1625
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1626
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1627
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1628
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1629
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
1632
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1633
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1634
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1635
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1636
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1637
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1638
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1639
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1640
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1641
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1642
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1643
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
1647
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1648
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1649
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1650
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1651
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1652
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1653
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1654
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1655
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1656
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1657
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1658
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1659
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1660
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1661
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
1665
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1666
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1667
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
1668
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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__(
|
|
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("
|
|
2145
|
+
module.exports = require("axios");
|
|
2119
2146
|
|
|
2120
2147
|
/***/ }),
|
|
2121
2148
|
/* 6 */
|
|
2122
2149
|
/***/ (function(module, exports) {
|
|
2123
2150
|
|
|
2124
|
-
module.exports = require("
|
|
2151
|
+
module.exports = require("@eoss-design/color");
|
|
2125
2152
|
|
|
2126
2153
|
/***/ }),
|
|
2127
2154
|
/* 7 */
|
|
@@ -2142,7 +2169,9 @@ module.exports = require("sm-crypto");
|
|
|
2142
2169
|
/* 12 */,
|
|
2143
2170
|
/* 13 */,
|
|
2144
2171
|
/* 14 */,
|
|
2145
|
-
/* 15
|
|
2172
|
+
/* 15 */,
|
|
2173
|
+
/* 16 */,
|
|
2174
|
+
/* 17 */
|
|
2146
2175
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2147
2176
|
|
|
2148
2177
|
"use strict";
|
|
@@ -2473,7 +2502,7 @@ render._withStripped = true
|
|
|
2473
2502
|
// CONCATENATED MODULE: ./packages/flow-list/src/main.vue?vue&type=template&id=6e80c8fe
|
|
2474
2503
|
|
|
2475
2504
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
2476
|
-
var api = __webpack_require__(
|
|
2505
|
+
var api = __webpack_require__(1);
|
|
2477
2506
|
|
|
2478
2507
|
// EXTERNAL MODULE: ./src/utils/http.js + 1 modules
|
|
2479
2508
|
var http = __webpack_require__(3);
|
|
@@ -2926,7 +2955,7 @@ taskReadvue_type_template_id_14d60186_render._withStripped = true
|
|
|
2926
2955
|
var _this = this;
|
|
2927
2956
|
|
|
2928
2957
|
Object(http["a" /* default */])({
|
|
2929
|
-
url: api["
|
|
2958
|
+
url: api["C" /* pendedhistoryList */],
|
|
2930
2959
|
type: 'post',
|
|
2931
2960
|
params: {
|
|
2932
2961
|
type: 0,
|
|
@@ -2949,7 +2978,7 @@ taskReadvue_type_template_id_14d60186_render._withStripped = true
|
|
|
2949
2978
|
var _this2 = this;
|
|
2950
2979
|
|
|
2951
2980
|
Object(http["a" /* default */])({
|
|
2952
|
-
url: api["
|
|
2981
|
+
url: api["P" /* taskReadList */],
|
|
2953
2982
|
params: {
|
|
2954
2983
|
appRecordId: this.businessId,
|
|
2955
2984
|
status: status
|
|
@@ -3025,7 +3054,7 @@ taskReadvue_type_template_id_14d60186_render._withStripped = true
|
|
|
3025
3054
|
// CONCATENATED MODULE: ./packages/flow-list/src/taskRead.vue?vue&type=script&lang=js
|
|
3026
3055
|
/* harmony default export */ var src_taskReadvue_type_script_lang_js = (taskReadvue_type_script_lang_js);
|
|
3027
3056
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
3028
|
-
var componentNormalizer = __webpack_require__(
|
|
3057
|
+
var componentNormalizer = __webpack_require__(2);
|
|
3029
3058
|
|
|
3030
3059
|
// CONCATENATED MODULE: ./packages/flow-list/src/taskRead.vue
|
|
3031
3060
|
|
|
@@ -3282,7 +3311,7 @@ var util = __webpack_require__(0);
|
|
|
3282
3311
|
var _this = this;
|
|
3283
3312
|
|
|
3284
3313
|
Object(http["a" /* default */])({
|
|
3285
|
-
url: api["
|
|
3314
|
+
url: api["C" /* pendedhistoryList */],
|
|
3286
3315
|
type: 'post',
|
|
3287
3316
|
params: {
|
|
3288
3317
|
type: this.type,
|