eoss-ui 0.4.51 → 0.4.53
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 +95 -88
- package/lib/button.js +95 -88
- package/lib/checkbox-group.js +96 -89
- package/lib/config/api.js +2 -0
- package/lib/data-table-form.js +96 -89
- package/lib/data-table.js +98 -91
- package/lib/date-picker.js +95 -88
- package/lib/dialog.js +95 -88
- package/lib/eoss-ui.common.js +897 -556
- package/lib/flow-group.js +95 -88
- package/lib/flow-list.js +99 -92
- package/lib/flow.js +419 -339
- package/lib/form.js +96 -89
- package/lib/handle-user.js +96 -89
- package/lib/handler.js +117 -110
- package/lib/index.js +1 -1
- package/lib/input-number.js +95 -88
- package/lib/input.js +95 -88
- package/lib/login.js +124 -99
- package/lib/main.js +415 -173
- package/lib/mainComp.js +111 -104
- package/lib/nav.js +110 -95
- package/lib/notify.js +95 -91
- package/lib/page.js +95 -88
- package/lib/player.js +95 -88
- package/lib/qr-code.js +95 -88
- package/lib/radio-group.js +96 -89
- package/lib/select-ganged.js +95 -88
- package/lib/select.js +96 -89
- package/lib/selector-panel.js +113 -106
- package/lib/selector.js +96 -89
- package/lib/sizer.js +97 -90
- package/lib/steps.js +95 -88
- package/lib/switch.js +95 -88
- package/lib/table-form.js +95 -88
- package/lib/tabs.js +95 -88
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/tips.js +96 -89
- package/lib/tree-group.js +95 -88
- package/lib/tree.js +96 -89
- package/lib/upload.js +104 -97
- package/lib/utils/util.js +5 -2
- package/lib/wujie.js +95 -88
- package/lib/wxlogin.js +95 -88
- package/package.json +1 -1
- package/packages/flow/src/main.vue +106 -34
- package/packages/flow/src/startTaskRead.vue +10 -2
- package/packages/handler/src/main.vue +13 -15
- package/packages/login/src/main.vue +34 -3
- package/packages/main/src/main.vue +128 -68
- package/packages/main/src/settings.vue +51 -4
- package/packages/nav/src/main.vue +22 -10
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/src/main.scss +45 -6
- package/packages/theme-chalk/src/menu.scss +0 -1
- package/src/config/api.js +2 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +4 -2
package/lib/data-table.js
CHANGED
|
@@ -101,6 +101,8 @@ module.exports =
|
|
|
101
101
|
/* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_4__);
|
|
102
102
|
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; };
|
|
103
103
|
|
|
104
|
+
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
105
|
+
|
|
104
106
|
/**
|
|
105
107
|
* 新封装公告方法规范:
|
|
106
108
|
* 1.方法顺序按字母顺序排列
|
|
@@ -204,6 +206,7 @@ var ajax = function ajax(_ref) {
|
|
|
204
206
|
});
|
|
205
207
|
// 请求拦截
|
|
206
208
|
http.interceptors.request.use(function (config) {
|
|
209
|
+
config.header && (config.headers = _extends({}, config.headers, config.header));
|
|
207
210
|
config.headers.common = getStorage();
|
|
208
211
|
// 根据请求的信息(请求方式,url,请求get/post数据),产生map的key
|
|
209
212
|
var requestKey = getRequestKey(config);
|
|
@@ -350,9 +353,9 @@ var ajax = function ajax(_ref) {
|
|
|
350
353
|
if (!mix) {
|
|
351
354
|
params = {};
|
|
352
355
|
}
|
|
353
|
-
if (format && !
|
|
356
|
+
if (format && !header['content-type']) {
|
|
354
357
|
data = qs__WEBPACK_IMPORTED_MODULE_2___default.a.stringify(data);
|
|
355
|
-
header['content-type'] = 'application/x-www-form-urlencoded';
|
|
358
|
+
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
356
359
|
}
|
|
357
360
|
}
|
|
358
361
|
return http({
|
|
@@ -2346,120 +2349,122 @@ var watermark = function watermark(option) {
|
|
|
2346
2349
|
|
|
2347
2350
|
"use strict";
|
|
2348
2351
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return doCaLogin; });
|
|
2349
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2352
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doUserLogin; });
|
|
2350
2353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doQrLogin; });
|
|
2351
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2352
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2353
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2354
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return logout; });
|
|
2355
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return initLogin; });
|
|
2356
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return switchUserTo; });
|
|
2354
2357
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
2355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2358
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getLoginCode; });
|
|
2356
2359
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCodeLogin; });
|
|
2357
2360
|
/* unused harmony export updateCode */
|
|
2358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2361
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getModifyPassCode; });
|
|
2359
2362
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
2360
2363
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
2361
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2362
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2364
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return initModifyPassword; });
|
|
2365
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doWechatQrLogin; });
|
|
2366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getTwoFactorLoginCode; });
|
|
2367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doTwoFactorLogin; });
|
|
2368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return mainConfig; });
|
|
2369
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initUserSet; });
|
|
2370
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return updateUserInfo; });
|
|
2366
2371
|
/* unused harmony export getUserImgUrl */
|
|
2367
2372
|
/* unused harmony export getDoorIndex */
|
|
2368
2373
|
/* unused harmony export refreshOnlineUsers */
|
|
2369
2374
|
/* unused harmony export getQuickMenuIds */
|
|
2370
2375
|
/* unused harmony export getApplicationIdArray */
|
|
2371
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2372
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2376
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getComplexApplications; });
|
|
2377
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplicationsNew; });
|
|
2373
2378
|
/* unused harmony export getUserCustomInfo */
|
|
2374
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2375
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2376
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2377
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2378
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2379
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2380
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2381
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2382
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2383
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2384
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2385
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2386
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2387
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return updateUserCustomInfo; });
|
|
2380
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sysMsgPage; });
|
|
2381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return ignoreSysMsg; });
|
|
2382
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return ignoreAllSysMsg; });
|
|
2383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctProperties; });
|
|
2384
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return uploads; });
|
|
2385
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return uploadOnlyOne; });
|
|
2386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getAdjunctFileInfos; });
|
|
2387
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return uploadSort; });
|
|
2388
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return downloadByAdjunctId; });
|
|
2389
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return uploadDownloads; });
|
|
2390
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return previewAdjunct; });
|
|
2391
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return previewAdjunct2; });
|
|
2392
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return previewAdjunctOffice; });
|
|
2388
2393
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return delAdjunct; });
|
|
2389
2394
|
/* unused harmony export upload_updateClassify */
|
|
2390
2395
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
2391
2396
|
/* unused harmony export getPictureBase64 */
|
|
2392
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2393
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2394
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2395
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2396
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2397
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getSelectorOrgTree; });
|
|
2398
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getSelectorOrgDetail; });
|
|
2399
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getOrgMainTree; });
|
|
2400
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getSelectOrgsubids; });
|
|
2401
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findSysCode; });
|
|
2397
2402
|
/* unused harmony export findUserBaseInfo */
|
|
2398
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2403
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return gethelpdoc; });
|
|
2399
2404
|
/* unused harmony export getCurrentuser */
|
|
2400
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2401
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2402
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2405
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return mainDetail; });
|
|
2406
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toStartFlow; });
|
|
2407
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return tempSave; });
|
|
2403
2408
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return commonOpion; });
|
|
2404
2409
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
2405
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2406
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2407
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2410
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return editCommonOpion; });
|
|
2411
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return saveCommonOpinion; });
|
|
2412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return updateCommonOpinion; });
|
|
2408
2413
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return deleteCommonOpion; });
|
|
2409
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2410
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2411
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2412
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2413
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2414
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2415
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2416
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2414
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getProcessDefList; });
|
|
2415
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getNodeInfo; });
|
|
2416
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return findCodeValues; });
|
|
2417
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysParam; });
|
|
2418
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysCodes; });
|
|
2419
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNotificationMsg; });
|
|
2420
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getHandleInfoHtml; });
|
|
2421
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskHandleHtml; });
|
|
2417
2422
|
/* unused harmony export getView */
|
|
2418
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2419
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2420
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2421
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2422
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2423
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2424
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2425
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2426
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2427
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2428
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2429
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2430
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2431
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2432
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2433
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2435
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2436
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2437
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2423
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return register; });
|
|
2424
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return pendedhistoryList; });
|
|
2425
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskRejectHtml; });
|
|
2426
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskRejectHtml; });
|
|
2427
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toStartTaskRead; });
|
|
2428
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toStartTaskReadIndex; });
|
|
2429
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskReadHtml; });
|
|
2430
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return rejectAndEnd; });
|
|
2431
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toSendMsg; });
|
|
2432
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return sendMsg; });
|
|
2433
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return endFlowHtml; });
|
|
2434
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return handleInfo; });
|
|
2435
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return loginUserInfo; });
|
|
2436
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return wss; });
|
|
2437
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return topic; });
|
|
2438
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getPresetCustomInfo; });
|
|
2439
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetNodeInfo; });
|
|
2440
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskTransferIndex; });
|
|
2441
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskTransfer; });
|
|
2442
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toPresetInfoListIndex; });
|
|
2438
2443
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deletePresetInfo; });
|
|
2439
2444
|
/* unused harmony export historyListJson */
|
|
2440
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2441
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2445
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return pendedhistoryListJson; });
|
|
2446
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return pressListJson; });
|
|
2442
2447
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteFlow; });
|
|
2443
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2444
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2445
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2446
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2447
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2448
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2449
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2450
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2451
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2452
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2453
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2454
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2455
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2456
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2457
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2448
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return isCanStartSubFlow; });
|
|
2449
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskUnionExamine; });
|
|
2450
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskUnionExamine; });
|
|
2451
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTaskTakeAdvice; });
|
|
2452
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskTakeAdvice; });
|
|
2453
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskStartDraft; });
|
|
2454
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskStartDraft; });
|
|
2455
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskReview; });
|
|
2456
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskReview; });
|
|
2457
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskUnionSeal; });
|
|
2458
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskUnionSeal; });
|
|
2459
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTwoOfficesDispatch; });
|
|
2460
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return twoOfficesDispatch; });
|
|
2461
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return sendList; });
|
|
2462
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return sendInfo; });
|
|
2458
2463
|
/* unused harmony export sendSave */
|
|
2459
2464
|
/* unused harmony export sendUpdate */
|
|
2460
2465
|
/* unused harmony export sendDelete */
|
|
2461
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2462
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2466
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return sendBatch; });
|
|
2467
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return formContents; });
|
|
2463
2468
|
// 登录
|
|
2464
2469
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
2465
2470
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -2476,6 +2481,8 @@ var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置
|
|
|
2476
2481
|
var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
|
|
2477
2482
|
var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
|
|
2478
2483
|
var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
|
|
2484
|
+
var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
|
|
2485
|
+
var doTwoFactorLogin = '/sso2/signIn/auth/doTwoFactorLogin'; // 双因素登录
|
|
2479
2486
|
// 框架
|
|
2480
2487
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
2481
2488
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -4953,7 +4960,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4953
4960
|
params = util["a" /* default */].extend(true, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {}, param);
|
|
4954
4961
|
_context.next = 14;
|
|
4955
4962
|
return util["a" /* default */].ajax({
|
|
4956
|
-
url: item.sysCode ? api["
|
|
4963
|
+
url: item.sysCode ? api["t" /* findSysCode */] : item.url,
|
|
4957
4964
|
method: _this.method,
|
|
4958
4965
|
params: params,
|
|
4959
4966
|
data: params
|
|
@@ -5088,7 +5095,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
5088
5095
|
}
|
|
5089
5096
|
var params = util["a" /* default */].extend(true, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {}, param);
|
|
5090
5097
|
util["a" /* default */].ajax({
|
|
5091
|
-
url: item.sysCode ? api["
|
|
5098
|
+
url: item.sysCode ? api["t" /* findSysCode */] : item.url,
|
|
5092
5099
|
method: this.method,
|
|
5093
5100
|
params: params,
|
|
5094
5101
|
data: params
|
|
@@ -6055,7 +6062,7 @@ var mainvue_type_script_lang_js_components;
|
|
|
6055
6062
|
if (item.sysCode || item.url) {
|
|
6056
6063
|
var params = util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
|
|
6057
6064
|
util["a" /* default */].ajax({
|
|
6058
|
-
url: item.sysCode ? api["
|
|
6065
|
+
url: item.sysCode ? api["t" /* findSysCode */] : item.url,
|
|
6059
6066
|
method: _this2.method,
|
|
6060
6067
|
params: params,
|
|
6061
6068
|
data: params
|
package/lib/date-picker.js
CHANGED
|
@@ -102,6 +102,8 @@ module.exports =
|
|
|
102
102
|
/* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_4__);
|
|
103
103
|
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; };
|
|
104
104
|
|
|
105
|
+
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
106
|
+
|
|
105
107
|
/**
|
|
106
108
|
* 新封装公告方法规范:
|
|
107
109
|
* 1.方法顺序按字母顺序排列
|
|
@@ -205,6 +207,7 @@ var ajax = function ajax(_ref) {
|
|
|
205
207
|
});
|
|
206
208
|
// 请求拦截
|
|
207
209
|
http.interceptors.request.use(function (config) {
|
|
210
|
+
config.header && (config.headers = _extends({}, config.headers, config.header));
|
|
208
211
|
config.headers.common = getStorage();
|
|
209
212
|
// 根据请求的信息(请求方式,url,请求get/post数据),产生map的key
|
|
210
213
|
var requestKey = getRequestKey(config);
|
|
@@ -351,9 +354,9 @@ var ajax = function ajax(_ref) {
|
|
|
351
354
|
if (!mix) {
|
|
352
355
|
params = {};
|
|
353
356
|
}
|
|
354
|
-
if (format && !
|
|
357
|
+
if (format && !header['content-type']) {
|
|
355
358
|
data = qs__WEBPACK_IMPORTED_MODULE_2___default.a.stringify(data);
|
|
356
|
-
header['content-type'] = 'application/x-www-form-urlencoded';
|
|
359
|
+
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
357
360
|
}
|
|
358
361
|
}
|
|
359
362
|
return http({
|
|
@@ -2348,120 +2351,122 @@ var watermark = function watermark(option) {
|
|
|
2348
2351
|
|
|
2349
2352
|
"use strict";
|
|
2350
2353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return doCaLogin; });
|
|
2351
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2354
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doUserLogin; });
|
|
2352
2355
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doQrLogin; });
|
|
2353
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2354
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2356
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return logout; });
|
|
2357
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return initLogin; });
|
|
2358
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return switchUserTo; });
|
|
2356
2359
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
2357
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2360
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getLoginCode; });
|
|
2358
2361
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCodeLogin; });
|
|
2359
2362
|
/* unused harmony export updateCode */
|
|
2360
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2363
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getModifyPassCode; });
|
|
2361
2364
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
2362
2365
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
2363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2367
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return initModifyPassword; });
|
|
2367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doWechatQrLogin; });
|
|
2368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getTwoFactorLoginCode; });
|
|
2369
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doTwoFactorLogin; });
|
|
2370
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return mainConfig; });
|
|
2371
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initUserSet; });
|
|
2372
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return updateUserInfo; });
|
|
2368
2373
|
/* unused harmony export getUserImgUrl */
|
|
2369
2374
|
/* unused harmony export getDoorIndex */
|
|
2370
2375
|
/* unused harmony export refreshOnlineUsers */
|
|
2371
2376
|
/* unused harmony export getQuickMenuIds */
|
|
2372
2377
|
/* unused harmony export getApplicationIdArray */
|
|
2373
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2374
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getComplexApplications; });
|
|
2379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplicationsNew; });
|
|
2375
2380
|
/* unused harmony export getUserCustomInfo */
|
|
2376
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2377
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2378
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2379
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2380
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2381
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2382
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2383
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2384
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2385
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2386
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2387
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2388
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2389
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return updateUserCustomInfo; });
|
|
2382
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sysMsgPage; });
|
|
2383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return ignoreSysMsg; });
|
|
2384
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return ignoreAllSysMsg; });
|
|
2385
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctProperties; });
|
|
2386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return uploads; });
|
|
2387
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return uploadOnlyOne; });
|
|
2388
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getAdjunctFileInfos; });
|
|
2389
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return uploadSort; });
|
|
2390
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return downloadByAdjunctId; });
|
|
2391
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return uploadDownloads; });
|
|
2392
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return previewAdjunct; });
|
|
2393
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return previewAdjunct2; });
|
|
2394
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return previewAdjunctOffice; });
|
|
2390
2395
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return delAdjunct; });
|
|
2391
2396
|
/* unused harmony export upload_updateClassify */
|
|
2392
2397
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
2393
2398
|
/* unused harmony export getPictureBase64 */
|
|
2394
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2395
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2396
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2397
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2398
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2399
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getSelectorOrgTree; });
|
|
2400
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getSelectorOrgDetail; });
|
|
2401
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getOrgMainTree; });
|
|
2402
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getSelectOrgsubids; });
|
|
2403
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findSysCode; });
|
|
2399
2404
|
/* unused harmony export findUserBaseInfo */
|
|
2400
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2405
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return gethelpdoc; });
|
|
2401
2406
|
/* unused harmony export getCurrentuser */
|
|
2402
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2403
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2404
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2407
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return mainDetail; });
|
|
2408
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toStartFlow; });
|
|
2409
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return tempSave; });
|
|
2405
2410
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return commonOpion; });
|
|
2406
2411
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
2407
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2408
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2409
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return editCommonOpion; });
|
|
2413
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return saveCommonOpinion; });
|
|
2414
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return updateCommonOpinion; });
|
|
2410
2415
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return deleteCommonOpion; });
|
|
2411
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2412
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2413
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2414
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2415
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2416
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2417
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2418
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2416
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getProcessDefList; });
|
|
2417
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getNodeInfo; });
|
|
2418
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return findCodeValues; });
|
|
2419
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysParam; });
|
|
2420
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysCodes; });
|
|
2421
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNotificationMsg; });
|
|
2422
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getHandleInfoHtml; });
|
|
2423
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskHandleHtml; });
|
|
2419
2424
|
/* unused harmony export getView */
|
|
2420
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2421
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2422
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2423
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2424
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2425
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2426
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2427
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2428
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2429
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2430
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2431
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2432
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2433
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2435
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2436
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2437
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2438
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2439
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2425
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return register; });
|
|
2426
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return pendedhistoryList; });
|
|
2427
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskRejectHtml; });
|
|
2428
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskRejectHtml; });
|
|
2429
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toStartTaskRead; });
|
|
2430
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toStartTaskReadIndex; });
|
|
2431
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskReadHtml; });
|
|
2432
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return rejectAndEnd; });
|
|
2433
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toSendMsg; });
|
|
2434
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return sendMsg; });
|
|
2435
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return endFlowHtml; });
|
|
2436
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return handleInfo; });
|
|
2437
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return loginUserInfo; });
|
|
2438
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return wss; });
|
|
2439
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return topic; });
|
|
2440
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getPresetCustomInfo; });
|
|
2441
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetNodeInfo; });
|
|
2442
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskTransferIndex; });
|
|
2443
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskTransfer; });
|
|
2444
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toPresetInfoListIndex; });
|
|
2440
2445
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deletePresetInfo; });
|
|
2441
2446
|
/* unused harmony export historyListJson */
|
|
2442
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2443
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2447
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return pendedhistoryListJson; });
|
|
2448
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return pressListJson; });
|
|
2444
2449
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteFlow; });
|
|
2445
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2446
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2447
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2448
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2449
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2450
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2451
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2452
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2453
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2454
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2455
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2456
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2457
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2458
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2459
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2450
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return isCanStartSubFlow; });
|
|
2451
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskUnionExamine; });
|
|
2452
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskUnionExamine; });
|
|
2453
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTaskTakeAdvice; });
|
|
2454
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskTakeAdvice; });
|
|
2455
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskStartDraft; });
|
|
2456
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskStartDraft; });
|
|
2457
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskReview; });
|
|
2458
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskReview; });
|
|
2459
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskUnionSeal; });
|
|
2460
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskUnionSeal; });
|
|
2461
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTwoOfficesDispatch; });
|
|
2462
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return twoOfficesDispatch; });
|
|
2463
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return sendList; });
|
|
2464
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return sendInfo; });
|
|
2460
2465
|
/* unused harmony export sendSave */
|
|
2461
2466
|
/* unused harmony export sendUpdate */
|
|
2462
2467
|
/* unused harmony export sendDelete */
|
|
2463
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2464
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2468
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return sendBatch; });
|
|
2469
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return formContents; });
|
|
2465
2470
|
// 登录
|
|
2466
2471
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
2467
2472
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -2478,6 +2483,8 @@ var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置
|
|
|
2478
2483
|
var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
|
|
2479
2484
|
var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
|
|
2480
2485
|
var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
|
|
2486
|
+
var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
|
|
2487
|
+
var doTwoFactorLogin = '/sso2/signIn/auth/doTwoFactorLogin'; // 双因素登录
|
|
2481
2488
|
// 框架
|
|
2482
2489
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
2483
2490
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|