eoss-ui 0.8.23 → 0.8.25
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/lib/button-group.js +228 -231
- package/lib/button.js +166 -153
- package/lib/calendar.js +2 -2
- package/lib/calogin.js +393 -379
- package/lib/card.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +162 -148
- package/lib/clients.js +2 -2
- package/lib/config/api.js +5 -0
- package/lib/data-table-form.js +162 -148
- package/lib/data-table.js +165 -151
- package/lib/date-picker.js +159 -146
- package/lib/dialog.js +166 -153
- package/lib/enable-drag.js +2 -2
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +1362 -891
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +159 -146
- package/lib/flow-list.js +174 -161
- package/lib/flow.js +501 -487
- package/lib/form.js +161 -148
- package/lib/handle-user.js +160 -147
- package/lib/handler.js +160 -147
- package/lib/icon.js +160 -147
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +159 -146
- package/lib/input.js +159 -146
- package/lib/label.js +2 -2
- package/lib/layout.js +2 -2
- package/lib/login.js +174 -160
- package/lib/main.js +523 -509
- package/lib/menu.js +2 -2
- package/lib/nav.js +159 -146
- package/lib/notify.js +157 -148
- package/lib/page.js +159 -146
- package/lib/pagination.js +159 -146
- package/lib/player.js +164 -151
- package/lib/qr-code.js +174 -161
- package/lib/radio-group.js +161 -148
- package/lib/retrial-auth.js +163 -150
- package/lib/select-ganged.js +161 -148
- package/lib/select.js +161 -148
- package/lib/selector-panel.js +178 -164
- package/lib/selector.js +161 -148
- package/lib/sizer.js +168 -155
- package/lib/steps.js +159 -146
- package/lib/switch.js +159 -146
- package/lib/table-form.js +159 -146
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +159 -146
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/tips.js +160 -147
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +159 -146
- package/lib/tree.js +160 -147
- package/lib/upload.js +698 -223
- package/lib/utils/util.js +5 -1
- package/lib/wujie.js +159 -146
- package/lib/wxlogin.js +159 -146
- package/package.json +2 -1
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/calendar/index.js +5 -5
- package/packages/calogin/index.js +5 -5
- package/packages/calogin/src/plugin.js +915 -915
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +46 -46
- package/packages/data-table/src/main.vue +1876 -1876
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enable-drag/index.js +5 -5
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/Circulate.vue +420 -420
- package/packages/flow/src/component/CustomPreset.vue +324 -324
- package/packages/flow/src/component/FreeCirculation.vue +245 -245
- package/packages/flow/src/component/Preset.vue +257 -257
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +763 -763
- package/packages/flow/src/freeStartFlow.vue +2898 -2898
- package/packages/flow/src/main.vue +4248 -4248
- package/packages/flow/src/processForm.vue +1806 -1806
- package/packages/flow/src/processReject.vue +311 -311
- package/packages/flow/src/reset.vue +952 -952
- package/packages/flow/src/startTaskRead.vue +698 -698
- package/packages/flow/src/supervise.vue +162 -162
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +750 -750
- package/packages/flow-list/index.js +5 -5
- package/packages/form/index.js +5 -5
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +137 -137
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +499 -499
- package/packages/icon/index.js +5 -5
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +2088 -2088
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +513 -513
- package/packages/main/src/simplicity/index.vue +2403 -2403
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/userinfo.vue +408 -408
- package/packages/main/src/simplicityTop/index.vue +2688 -2688
- package/packages/main/src/simplicityTop/userinfo.vue +408 -408
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +597 -597
- package/packages/nav/index.js +5 -5
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +299 -299
- package/packages/select/index.js +5 -5
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/index.js +5 -5
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +257 -257
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/gulpfile.js +25 -0
- package/packages/theme-chalk/src/base.scss +261 -261
- package/packages/theme-chalk/src/button-group.scss +176 -176
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enable-drag.scss +181 -181
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow.scss +376 -376
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +111 -111
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +7 -5
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1813 -1345
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +356 -351
- package/src/config/image.js +2 -2
- package/src/index.js +1 -1
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +6 -1
- package/src/utils/webSocket.js +107 -107
- package/packages/theme-chalk/lib/base.css +0 -1
- package/packages/theme-chalk/lib/button-group.css +0 -1
- package/packages/theme-chalk/lib/button.css +0 -1
- package/packages/theme-chalk/lib/calendar.css +0 -1
- package/packages/theme-chalk/lib/calogin.css +0 -0
- package/packages/theme-chalk/lib/card.css +0 -1
- package/packages/theme-chalk/lib/cascader.css +0 -0
- package/packages/theme-chalk/lib/checkbox-group.css +0 -1
- package/packages/theme-chalk/lib/clients.css +0 -1
- package/packages/theme-chalk/lib/data-table-form.css +0 -1
- package/packages/theme-chalk/lib/data-table.css +0 -1
- package/packages/theme-chalk/lib/date-picker.css +0 -1
- package/packages/theme-chalk/lib/dialog.css +0 -1
- package/packages/theme-chalk/lib/enable-drag.css +0 -1
- package/packages/theme-chalk/lib/enterprise.css +0 -1
- package/packages/theme-chalk/lib/error-page.css +0 -1
- package/packages/theme-chalk/lib/flow-chart.css +0 -0
- package/packages/theme-chalk/lib/flow-group.css +0 -1
- package/packages/theme-chalk/lib/flow-list.css +0 -1
- package/packages/theme-chalk/lib/flow.css +0 -1
- 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/form.css +0 -1
- package/packages/theme-chalk/lib/handle-user.css +0 -1
- package/packages/theme-chalk/lib/handler.css +0 -1
- package/packages/theme-chalk/lib/icon.css +0 -1
- package/packages/theme-chalk/lib/icons.css +0 -1
- package/packages/theme-chalk/lib/index.css +0 -1
- package/packages/theme-chalk/lib/input-number.css +0 -0
- package/packages/theme-chalk/lib/input.css +0 -1
- package/packages/theme-chalk/lib/label.css +0 -1
- package/packages/theme-chalk/lib/layout.css +0 -1
- package/packages/theme-chalk/lib/login.css +0 -1
- package/packages/theme-chalk/lib/main.css +0 -1
- package/packages/theme-chalk/lib/menu.css +0 -1
- package/packages/theme-chalk/lib/nav.css +0 -1
- package/packages/theme-chalk/lib/notify.css +0 -0
- package/packages/theme-chalk/lib/page.css +0 -1
- package/packages/theme-chalk/lib/pagination.css +0 -1
- package/packages/theme-chalk/lib/player.css +0 -1
- package/packages/theme-chalk/lib/qr-code.css +0 -1
- package/packages/theme-chalk/lib/radio-group.css +0 -1
- package/packages/theme-chalk/lib/retrial-auth.css +0 -1
- package/packages/theme-chalk/lib/select-ganged.css +0 -1
- package/packages/theme-chalk/lib/select.css +0 -1
- package/packages/theme-chalk/lib/selector-panel.css +0 -1
- package/packages/theme-chalk/lib/selector.css +0 -1
- package/packages/theme-chalk/lib/simplicity-top.css +0 -1
- package/packages/theme-chalk/lib/simplicity.css +0 -1
- package/packages/theme-chalk/lib/sizer.css +0 -1
- package/packages/theme-chalk/lib/steps.css +0 -1
- package/packages/theme-chalk/lib/switch.css +0 -1
- package/packages/theme-chalk/lib/table-form.css +0 -0
- package/packages/theme-chalk/lib/tabs-panel.css +0 -0
- package/packages/theme-chalk/lib/tabs.css +0 -1
- package/packages/theme-chalk/lib/tips.css +0 -1
- package/packages/theme-chalk/lib/toolbar.css +0 -1
- package/packages/theme-chalk/lib/tree-group.css +0 -1
- package/packages/theme-chalk/lib/tree.css +0 -1
- package/packages/theme-chalk/lib/upload.css +0 -1
- package/packages/theme-chalk/lib/wujie.css +0 -0
- package/packages/theme-chalk/lib/wxlogin.css +0 -1
package/lib/button-group.js
CHANGED
|
@@ -82,11 +82,12 @@ 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 = 45);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
|
-
/******/ (
|
|
89
|
-
|
|
88
|
+
/******/ ({
|
|
89
|
+
|
|
90
|
+
/***/ 0:
|
|
90
91
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
91
92
|
|
|
92
93
|
"use strict";
|
|
@@ -540,7 +541,11 @@ var util_ajax = function ajax(_ref) {
|
|
|
540
541
|
}
|
|
541
542
|
}
|
|
542
543
|
}
|
|
543
|
-
|
|
544
|
+
var isFormData = typeof FormData !== 'undefined' && data instanceof FormData;
|
|
545
|
+
if (isFormData) {
|
|
546
|
+
// FormData(如分片上传):不做序列化,也不强制 content-type,
|
|
547
|
+
// 交给浏览器/axios 自动设置 multipart/form-data 及 boundary
|
|
548
|
+
} else if (method === 'post' && format) {
|
|
544
549
|
data = external_qs_default.a.stringify(data, formatConfig);
|
|
545
550
|
if (!header['content-type'] && !header['Content-Type']) {
|
|
546
551
|
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
@@ -1704,7 +1709,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1704
1709
|
* @param {function} callback - 回调函数
|
|
1705
1710
|
**/
|
|
1706
1711
|
var util_getMainConfig = function getMainConfig(callback) {
|
|
1707
|
-
util_ajax({ url: api["
|
|
1712
|
+
util_ajax({ url: api["Db" /* mainConfig */] }).then(function (res) {
|
|
1708
1713
|
if (res && res.rCode === 0) {
|
|
1709
1714
|
callback(res.results);
|
|
1710
1715
|
}
|
|
@@ -2530,7 +2535,7 @@ var isLogined = function () {
|
|
|
2530
2535
|
break;
|
|
2531
2536
|
}
|
|
2532
2537
|
|
|
2533
|
-
util_ajax({ method: 'post', url: api["
|
|
2538
|
+
util_ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
2534
2539
|
if (res.rCode === 0) {
|
|
2535
2540
|
removeStorage();
|
|
2536
2541
|
}
|
|
@@ -3995,175 +4000,180 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
3995
4000
|
});
|
|
3996
4001
|
|
|
3997
4002
|
/***/ }),
|
|
3998
|
-
|
|
4003
|
+
|
|
4004
|
+
/***/ 1:
|
|
3999
4005
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4000
4006
|
|
|
4001
4007
|
"use strict";
|
|
4002
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4003
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4004
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4005
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4006
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4007
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4008
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doCaLogin; });
|
|
4009
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return doUserLogin; });
|
|
4010
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return doQrLogin; });
|
|
4011
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return logout; });
|
|
4012
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return initLogin; });
|
|
4013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return switchUserTo; });
|
|
4008
4014
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return changeImg; });
|
|
4009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4010
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4015
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getLoginCode; });
|
|
4016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return doCodeLogin; });
|
|
4011
4017
|
/* unused harmony export updateCode */
|
|
4012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4013
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4018
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getModifyPassCode; });
|
|
4019
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return codeModifyPass; });
|
|
4020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return loginModifyPassword; });
|
|
4015
4021
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
4016
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4017
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4018
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4019
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4020
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4021
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4022
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4023
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4024
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4025
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4026
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4027
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4028
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4029
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4030
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return initModifyPassword; });
|
|
4023
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return doWechatQrLogin; });
|
|
4024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return getTwoFactorLoginCode; });
|
|
4025
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return doTwoFactorLogin; });
|
|
4026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return initRetrialAuth; });
|
|
4027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getRetrialAuthCode; });
|
|
4028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return scanCodeRetrialAuth; });
|
|
4029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return codeRetrialAuth; });
|
|
4030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doAssistanceQrLogin; });
|
|
4031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tc", function() { return userOnline; });
|
|
4032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return getUserAppWithTag; });
|
|
4033
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return recordUserApp; });
|
|
4034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return mainConfig; });
|
|
4035
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return initUserSet; });
|
|
4036
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Oc", function() { return updateUserInfo; });
|
|
4031
4037
|
/* unused harmony export getUserImgUrl */
|
|
4032
4038
|
/* unused harmony export getDoorIndex */
|
|
4033
4039
|
/* unused harmony export refreshOnlineUsers */
|
|
4034
4040
|
/* unused harmony export getQuickMenuIds */
|
|
4035
4041
|
/* unused harmony export getApplicationIdArray */
|
|
4036
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4037
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4042
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getComplexApplications; });
|
|
4043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getComplexApplicationsNew; });
|
|
4038
4044
|
/* unused harmony export getUserCustomInfo */
|
|
4039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4040
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4041
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4042
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4043
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4044
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4045
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4046
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4047
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4048
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4049
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4050
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4051
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4052
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4053
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4054
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4055
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4045
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nc", function() { return updateUserCustomInfo; });
|
|
4046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return sysMsgPage; });
|
|
4047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return ignoreSysMsg; });
|
|
4048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return ignoreAllSysMsg; });
|
|
4049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return searchType; });
|
|
4050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return getSysParam; });
|
|
4051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getAdjunctProperties; });
|
|
4052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sc", function() { return uploads; });
|
|
4053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qc", function() { return uploadOnlyOne; });
|
|
4054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getAdjunctFileInfos; });
|
|
4055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rc", function() { return uploadSort; });
|
|
4056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return downloadByAdjunctId; });
|
|
4057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pc", function() { return uploadDownloads; });
|
|
4058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return previewAdjunct; });
|
|
4059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return previewAdjunct2; });
|
|
4060
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return previewAdjunctOffice; });
|
|
4061
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return delAdjunct; });
|
|
4062
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return chunkCheckFile; });
|
|
4063
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return chunkUploadChunk; });
|
|
4064
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return chunkMergeChunk; });
|
|
4065
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getDochubBucket; });
|
|
4056
4066
|
/* unused harmony export upload_updateClassify */
|
|
4057
4067
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
4058
4068
|
/* unused harmony export getPictureBase64 */
|
|
4059
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4060
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4061
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4062
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4063
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4064
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4069
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return getSelectorOrgTree; });
|
|
4070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return getSelectorOrgDetail; });
|
|
4071
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getOrgMainTree; });
|
|
4072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return getSelectOrgsubids; });
|
|
4073
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return findSysCode; });
|
|
4074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getDictList; });
|
|
4065
4075
|
/* unused harmony export findUserBaseInfo */
|
|
4066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4076
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return gethelpdoc; });
|
|
4067
4077
|
/* unused harmony export getCurrentuser */
|
|
4068
4078
|
/* unused harmony export mainDetail */
|
|
4069
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4070
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4071
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return toStartFlow; });
|
|
4080
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return tempSave; });
|
|
4081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return commonOpion; });
|
|
4072
4082
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
4073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4074
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4075
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4076
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4077
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4078
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4079
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4080
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4081
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4082
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4083
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4084
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return editCommonOpion; });
|
|
4084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return saveCommonOpinion; });
|
|
4085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mc", function() { return updateCommonOpinion; });
|
|
4086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return deleteCommonOpion; });
|
|
4087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getProcessDefList; });
|
|
4088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getNodeInfo; });
|
|
4089
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return findCodeValues; });
|
|
4090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return findSysParam; });
|
|
4091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return findSysCodes; });
|
|
4092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getNotificationMsg; });
|
|
4093
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getHandleInfoHtml; });
|
|
4094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return taskHandleHtml; });
|
|
4085
4095
|
/* unused harmony export getView */
|
|
4086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4087
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4088
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4089
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4090
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4091
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4092
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4093
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4094
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4095
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4096
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4097
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4098
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4099
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4100
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4101
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4102
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4103
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4104
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4105
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4106
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return register; });
|
|
4097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return pendedhistoryList; });
|
|
4098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return toTaskRejectHtml; });
|
|
4099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return taskRejectHtml; });
|
|
4100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return toStartTaskRead; });
|
|
4101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return toStartTaskReadIndex; });
|
|
4102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return taskReadHtml; });
|
|
4103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return rejectAndEnd; });
|
|
4104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return toSendMsg; });
|
|
4105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return sendMsg; });
|
|
4106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return endFlowHtml; });
|
|
4107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return handleInfo; });
|
|
4108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return loginUserInfo; });
|
|
4109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Uc", function() { return wss; });
|
|
4110
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kc", function() { return topic; });
|
|
4111
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getPresetCustomInfo; });
|
|
4112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getPresetNodeInfo; });
|
|
4113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gc", function() { return toTaskTransferIndex; });
|
|
4114
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return taskTransfer; });
|
|
4115
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return toPresetInfoListIndex; });
|
|
4116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return deletePresetInfo; });
|
|
4107
4117
|
/* unused harmony export historyListJson */
|
|
4108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4109
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4111
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4112
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4113
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4114
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4115
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4117
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4118
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4119
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4120
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4121
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4122
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4123
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4124
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4125
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4126
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4127
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4128
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4129
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4130
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4131
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4132
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return pendedhistoryListJson; });
|
|
4119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return pressListJson; });
|
|
4120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return deleteFlow; });
|
|
4121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return modifyFlow; });
|
|
4122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return isCanStartSubFlow; });
|
|
4123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hc", function() { return toTaskUnionExamine; });
|
|
4124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return taskUnionExamine; });
|
|
4125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fc", function() { return toTaskTakeAdvice; });
|
|
4126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return taskTakeAdvice; });
|
|
4127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return toTaskStartDraft; });
|
|
4128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return toTaskSupervise; });
|
|
4129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ec", function() { return toTaskSuperviseSub; });
|
|
4130
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return taskStartDraft; });
|
|
4131
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return toTaskReview; });
|
|
4132
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return taskReview; });
|
|
4133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ic", function() { return toTaskUnionSeal; });
|
|
4134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return taskUnionSeal; });
|
|
4135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jc", function() { return toTwoOfficesDispatch; });
|
|
4136
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lc", function() { return twoOfficesDispatch; });
|
|
4137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return toResetProcessIndex; });
|
|
4138
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return resetProcess; });
|
|
4139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return toTaskContinuationIndex; });
|
|
4140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return taskContinuation; });
|
|
4141
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getFreeStartFlowParams; });
|
|
4142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return freeStartFlowWithSubmitTask; });
|
|
4133
4143
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return checkForeignOrgStartedCircularRead; });
|
|
4134
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4135
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4136
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4137
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4138
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4144
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return pendedhistoryListWithCircularReadJson; });
|
|
4145
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return fyListJson; });
|
|
4146
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return resetJson; });
|
|
4147
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return deletedListJson; });
|
|
4148
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return restoredHistory; });
|
|
4139
4149
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return batchDelete; });
|
|
4140
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4141
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4142
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4150
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return circularReadWithdraw; });
|
|
4151
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return taskReadWithDraw; });
|
|
4152
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
|
|
4143
4153
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkBusinessIdStartedReadTransferHandle; });
|
|
4144
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4145
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4154
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return sendList; });
|
|
4155
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return sendInfo; });
|
|
4146
4156
|
/* unused harmony export sendSave */
|
|
4147
4157
|
/* unused harmony export sendUpdate */
|
|
4148
4158
|
/* unused harmony export sendDelete */
|
|
4149
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4150
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4151
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4152
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4153
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4154
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4155
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4156
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4157
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4158
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4159
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4161
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4162
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4163
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4164
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4165
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4166
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4159
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return sendBatch; });
|
|
4160
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return formContents; });
|
|
4161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return directStartTaskCircularRead; });
|
|
4162
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return endFlowAndStartTaskCircularRead; });
|
|
4163
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getNodeInfoForStart; });
|
|
4164
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return freeStartFlow; });
|
|
4165
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return getUrgencyLevelChangedNotificationType; });
|
|
4166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toFreeTaskCircularRead; });
|
|
4167
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return isCancelSecondConfirmation; });
|
|
4168
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return freeTaskCircularRead; });
|
|
4169
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toDefinitionChangeSort; });
|
|
4170
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return setSort; });
|
|
4171
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return queryUseCommonMenu; });
|
|
4172
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getIndexCount; });
|
|
4173
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return getVoteMeetingNum; });
|
|
4174
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return getUserTipsInstanceNum; });
|
|
4175
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return getShareFilesReceiveCountNew; });
|
|
4176
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return queryChildMenuUrl; });
|
|
4167
4177
|
var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
|
|
4168
4178
|
// 登录
|
|
4169
4179
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -4228,6 +4238,11 @@ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
|
|
|
4228
4238
|
var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
|
|
4229
4239
|
var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
|
|
4230
4240
|
var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
|
|
4241
|
+
// 分片上传(dochub v2),优先使用 dochubConfig 下发的同名 url,这里仅作兜底
|
|
4242
|
+
var chunkCheckFile = '/dochub/v2/chunk/checkFile'; // 秒传检测/断点续传查询
|
|
4243
|
+
var chunkUploadChunk = '/dochub/v2/chunk/uploadChunk'; // 上传单个分片
|
|
4244
|
+
var chunkMergeChunk = '/dochub/v2/chunk/mergeChunk'; // 合并分片并写入文档库
|
|
4245
|
+
var getDochubBucket = '/dochub/v2/getBucket'; // 根据桶编码获取文档中台桶配置(含分片上传开关/参数)
|
|
4231
4246
|
var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
|
|
4232
4247
|
var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
|
|
4233
4248
|
var getPictureBase64 = '/main2/mecpfileManagement/getPictureBase64'; // 获取图片的base64编码
|
|
@@ -4462,13 +4477,36 @@ var getShareFilesReceiveCountNew = '/oa/sharefiles/receive/getShareFilesReceiveC
|
|
|
4462
4477
|
var queryChildMenuUrl = '/sys/v1/userCustom/queryChildMenu.dhtml?type=2';
|
|
4463
4478
|
|
|
4464
4479
|
/***/ }),
|
|
4465
|
-
|
|
4480
|
+
|
|
4481
|
+
/***/ 10:
|
|
4482
|
+
/***/ (function(module, exports) {
|
|
4483
|
+
|
|
4484
|
+
module.exports = require("ua-parser-js");
|
|
4485
|
+
|
|
4486
|
+
/***/ }),
|
|
4487
|
+
|
|
4488
|
+
/***/ 11:
|
|
4489
|
+
/***/ (function(module, exports) {
|
|
4490
|
+
|
|
4491
|
+
module.exports = require("sm-crypto");
|
|
4492
|
+
|
|
4493
|
+
/***/ }),
|
|
4494
|
+
|
|
4495
|
+
/***/ 12:
|
|
4496
|
+
/***/ (function(module, exports) {
|
|
4497
|
+
|
|
4498
|
+
module.exports = require("lodash");
|
|
4499
|
+
|
|
4500
|
+
/***/ }),
|
|
4501
|
+
|
|
4502
|
+
/***/ 2:
|
|
4466
4503
|
/***/ (function(module, exports) {
|
|
4467
4504
|
|
|
4468
4505
|
module.exports = require("eoss-element");
|
|
4469
4506
|
|
|
4470
4507
|
/***/ }),
|
|
4471
|
-
|
|
4508
|
+
|
|
4509
|
+
/***/ 3:
|
|
4472
4510
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4473
4511
|
|
|
4474
4512
|
"use strict";
|
|
@@ -4572,92 +4610,15 @@ function normalizeComponent(
|
|
|
4572
4610
|
|
|
4573
4611
|
|
|
4574
4612
|
/***/ }),
|
|
4575
|
-
/* 4 */
|
|
4576
|
-
/***/ (function(module, exports) {
|
|
4577
4613
|
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
/***/ }),
|
|
4581
|
-
/* 5 */
|
|
4582
|
-
/***/ (function(module, exports) {
|
|
4583
|
-
|
|
4584
|
-
module.exports = require("qs");
|
|
4585
|
-
|
|
4586
|
-
/***/ }),
|
|
4587
|
-
/* 6 */
|
|
4588
|
-
/***/ (function(module, exports) {
|
|
4589
|
-
|
|
4590
|
-
module.exports = require("axios");
|
|
4591
|
-
|
|
4592
|
-
/***/ }),
|
|
4593
|
-
/* 7 */
|
|
4614
|
+
/***/ 4:
|
|
4594
4615
|
/***/ (function(module, exports) {
|
|
4595
4616
|
|
|
4596
|
-
module.exports = require("
|
|
4597
|
-
|
|
4598
|
-
/***/ }),
|
|
4599
|
-
/* 8 */
|
|
4600
|
-
/***/ (function(module, exports) {
|
|
4601
|
-
|
|
4602
|
-
module.exports = require("sockjs-client");
|
|
4603
|
-
|
|
4604
|
-
/***/ }),
|
|
4605
|
-
/* 9 */
|
|
4606
|
-
/***/ (function(module, exports) {
|
|
4607
|
-
|
|
4608
|
-
module.exports = require("stompjs");
|
|
4609
|
-
|
|
4610
|
-
/***/ }),
|
|
4611
|
-
/* 10 */
|
|
4612
|
-
/***/ (function(module, exports) {
|
|
4613
|
-
|
|
4614
|
-
module.exports = require("ua-parser-js");
|
|
4615
|
-
|
|
4616
|
-
/***/ }),
|
|
4617
|
-
/* 11 */
|
|
4618
|
-
/***/ (function(module, exports) {
|
|
4619
|
-
|
|
4620
|
-
module.exports = require("sm-crypto");
|
|
4617
|
+
module.exports = require("babel-runtime/regenerator");
|
|
4621
4618
|
|
|
4622
4619
|
/***/ }),
|
|
4623
|
-
/* 12 */
|
|
4624
|
-
/***/ (function(module, exports) {
|
|
4625
4620
|
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
/***/ }),
|
|
4629
|
-
/* 13 */,
|
|
4630
|
-
/* 14 */,
|
|
4631
|
-
/* 15 */,
|
|
4632
|
-
/* 16 */,
|
|
4633
|
-
/* 17 */,
|
|
4634
|
-
/* 18 */,
|
|
4635
|
-
/* 19 */,
|
|
4636
|
-
/* 20 */,
|
|
4637
|
-
/* 21 */,
|
|
4638
|
-
/* 22 */,
|
|
4639
|
-
/* 23 */,
|
|
4640
|
-
/* 24 */,
|
|
4641
|
-
/* 25 */,
|
|
4642
|
-
/* 26 */,
|
|
4643
|
-
/* 27 */,
|
|
4644
|
-
/* 28 */,
|
|
4645
|
-
/* 29 */,
|
|
4646
|
-
/* 30 */,
|
|
4647
|
-
/* 31 */,
|
|
4648
|
-
/* 32 */,
|
|
4649
|
-
/* 33 */,
|
|
4650
|
-
/* 34 */,
|
|
4651
|
-
/* 35 */,
|
|
4652
|
-
/* 36 */,
|
|
4653
|
-
/* 37 */,
|
|
4654
|
-
/* 38 */,
|
|
4655
|
-
/* 39 */,
|
|
4656
|
-
/* 40 */,
|
|
4657
|
-
/* 41 */,
|
|
4658
|
-
/* 42 */,
|
|
4659
|
-
/* 43 */,
|
|
4660
|
-
/* 44 */
|
|
4621
|
+
/***/ 45:
|
|
4661
4622
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4662
4623
|
|
|
4663
4624
|
"use strict";
|
|
@@ -5421,5 +5382,41 @@ main.install = function (Vue) {
|
|
|
5421
5382
|
|
|
5422
5383
|
/* harmony default export */ var button_group = __webpack_exports__["default"] = (main);
|
|
5423
5384
|
|
|
5385
|
+
/***/ }),
|
|
5386
|
+
|
|
5387
|
+
/***/ 5:
|
|
5388
|
+
/***/ (function(module, exports) {
|
|
5389
|
+
|
|
5390
|
+
module.exports = require("qs");
|
|
5391
|
+
|
|
5392
|
+
/***/ }),
|
|
5393
|
+
|
|
5394
|
+
/***/ 6:
|
|
5395
|
+
/***/ (function(module, exports) {
|
|
5396
|
+
|
|
5397
|
+
module.exports = require("axios");
|
|
5398
|
+
|
|
5399
|
+
/***/ }),
|
|
5400
|
+
|
|
5401
|
+
/***/ 7:
|
|
5402
|
+
/***/ (function(module, exports) {
|
|
5403
|
+
|
|
5404
|
+
module.exports = require("json-bigint");
|
|
5405
|
+
|
|
5406
|
+
/***/ }),
|
|
5407
|
+
|
|
5408
|
+
/***/ 8:
|
|
5409
|
+
/***/ (function(module, exports) {
|
|
5410
|
+
|
|
5411
|
+
module.exports = require("sockjs-client");
|
|
5412
|
+
|
|
5413
|
+
/***/ }),
|
|
5414
|
+
|
|
5415
|
+
/***/ 9:
|
|
5416
|
+
/***/ (function(module, exports) {
|
|
5417
|
+
|
|
5418
|
+
module.exports = require("stompjs");
|
|
5419
|
+
|
|
5424
5420
|
/***/ })
|
|
5425
|
-
|
|
5421
|
+
|
|
5422
|
+
/******/ });
|