eoss-ui 0.4.55 → 0.4.57
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 +140 -102
- package/lib/button.js +142 -104
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +144 -106
- package/lib/config/api.js +4 -0
- package/lib/data-table-form.js +141 -103
- package/lib/data-table.js +149 -110
- package/lib/date-picker.js +149 -111
- package/lib/dialog.js +140 -102
- package/lib/eoss-ui.common.js +1107 -356
- package/lib/flow-group.js +140 -102
- package/lib/flow-list.js +147 -109
- package/lib/flow.js +462 -180
- package/lib/form.js +158 -121
- package/lib/handle-user.js +141 -103
- package/lib/handler.js +141 -103
- package/lib/index.js +1 -1
- package/lib/input-number.js +142 -104
- package/lib/input.js +142 -104
- package/lib/label.js +2 -2
- package/lib/login.js +176 -130
- package/lib/main.js +156 -118
- package/lib/mainComp.js +156 -118
- package/lib/menu.js +2 -2
- package/lib/nav.js +140 -102
- package/lib/notify.js +109 -101
- package/lib/page.js +140 -102
- package/lib/player.js +140 -102
- package/lib/qr-code.js +140 -102
- package/lib/radio-group.js +141 -103
- package/lib/retrial-auth.js +3330 -0
- package/lib/select-ganged.js +142 -104
- package/lib/select.js +143 -105
- package/lib/selector-panel.js +158 -120
- package/lib/selector.js +143 -105
- package/lib/sizer.js +144 -106
- package/lib/steps.js +142 -104
- package/lib/switch.js +142 -104
- package/lib/table-form.js +142 -104
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +149 -111
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/tips.js +143 -105
- package/lib/toolbar.js +14 -10
- package/lib/tree-group.js +142 -104
- package/lib/tree.js +143 -105
- package/lib/upload.js +150 -112
- package/lib/utils/util.js +36 -6
- package/lib/wujie.js +142 -104
- package/lib/wxlogin.js +142 -104
- package/package.json +2 -2
- package/packages/checkbox-group/src/main.vue +7 -7
- package/packages/data-table/src/main.vue +1 -0
- package/packages/flow/src/main.vue +148 -11
- package/packages/flow/src/startTaskRead.vue +12 -9
- package/packages/form/src/main.vue +13 -7
- package/packages/login/src/main.vue +27 -18
- package/packages/retrial-auth/index.js +5 -0
- package/packages/retrial-auth/src/main.vue +271 -0
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/retrial-auth.scss +38 -0
- package/packages/toolbar/src/main.vue +6 -1
- package/src/config/api.js +4 -0
- package/src/index.js +4 -1
- package/src/utils/util.js +36 -6
- package/CHANGELOG.md +0 -929
package/lib/mainComp.js
CHANGED
|
@@ -126,6 +126,7 @@ var $lightColorCount = 5;
|
|
|
126
126
|
var $darkColorCount = 4;
|
|
127
127
|
var publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
|
|
128
128
|
var loginMsg = void 0;
|
|
129
|
+
var initAuth = void 0;
|
|
129
130
|
|
|
130
131
|
var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ storeAsString: true });
|
|
131
132
|
|
|
@@ -247,7 +248,9 @@ var ajax = function ajax(_ref) {
|
|
|
247
248
|
removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'deviceUnique', 'menus', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
|
|
248
249
|
if (win.top.location.href.indexOf('#/login') === -1 && win.top.location.href.indexOf('/login.html') === -1) {
|
|
249
250
|
clearTimeout(loginMsg);
|
|
250
|
-
|
|
251
|
+
var remind = sessionStorage.getItem('remind');
|
|
252
|
+
!remind && (loginMsg = setTimeout(function () {
|
|
253
|
+
sessionStorage.setItem('remind', 1);
|
|
251
254
|
eoss_element__WEBPACK_IMPORTED_MODULE_4__["MessageBox"].confirm(response.data.rCode === 69 ? '该账号在其他地方已登陆!' : '登录已过期,请重新登录!', '提示', response.data.rCode === 69 ? {
|
|
252
255
|
confirmButtonText: '确定',
|
|
253
256
|
closeOnClickModal: false,
|
|
@@ -274,13 +277,40 @@ var ajax = function ajax(_ref) {
|
|
|
274
277
|
}
|
|
275
278
|
}
|
|
276
279
|
}).catch(function (e) {});
|
|
277
|
-
}, 1000);
|
|
280
|
+
}, 1000));
|
|
278
281
|
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
282
|
+
} else if (response.data.rCode === 61) {
|
|
283
|
+
clearTimeout(initAuth);
|
|
284
|
+
initAuth = setTimeout(function () {
|
|
285
|
+
Object(eoss_element__WEBPACK_IMPORTED_MODULE_4__["MessageBox"])({
|
|
286
|
+
title: '请进行二次鉴权',
|
|
287
|
+
closeOnClickModal: false,
|
|
288
|
+
closeOnPressEscape: false,
|
|
289
|
+
showConfirmButton: false,
|
|
290
|
+
dangerouslyUseHTMLString: true,
|
|
291
|
+
scroll: false,
|
|
292
|
+
customClass: 'es-retrial-auth-msg',
|
|
293
|
+
render: function render(h, msgBox) {
|
|
294
|
+
return h('es-retrial-auth', {
|
|
295
|
+
ref: 'auth',
|
|
296
|
+
props: {
|
|
297
|
+
group: response.data.results.retrialAuthGroupIds,
|
|
298
|
+
type: response.data.results.retrialAuthType,
|
|
299
|
+
msgBox: msgBox
|
|
300
|
+
}
|
|
301
|
+
});
|
|
302
|
+
},
|
|
303
|
+
callback: function callback(res, obj) {
|
|
304
|
+
obj.$children.forEach(function (item) {
|
|
305
|
+
item.clearTimeouts && item.clearTimeouts();
|
|
306
|
+
return;
|
|
307
|
+
});
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
}, 1000);
|
|
283
311
|
}
|
|
312
|
+
// eslint-disable-next-line no-undef
|
|
313
|
+
return Promise.resolve(response.data);
|
|
284
314
|
}
|
|
285
315
|
}, function (error) {
|
|
286
316
|
loading && loading.close();
|
|
@@ -2345,123 +2375,127 @@ var watermark = function watermark(option) {
|
|
|
2345
2375
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2346
2376
|
|
|
2347
2377
|
"use strict";
|
|
2348
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2349
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2350
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
2378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCaLogin; });
|
|
2379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doUserLogin; });
|
|
2380
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doQrLogin; });
|
|
2381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return logout; });
|
|
2382
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initLogin; });
|
|
2383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return switchUserTo; });
|
|
2354
2384
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
2355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2356
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2385
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getLoginCode; });
|
|
2386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCodeLogin; });
|
|
2357
2387
|
/* unused harmony export updateCode */
|
|
2358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2388
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
|
|
2359
2389
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
2360
2390
|
/* 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__, "
|
|
2366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2367
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2391
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initModifyPassword; });
|
|
2392
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doWechatQrLogin; });
|
|
2393
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getTwoFactorLoginCode; });
|
|
2394
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doTwoFactorLogin; });
|
|
2395
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initRetrialAuth; });
|
|
2396
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getRetrialAuthCode; });
|
|
2397
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return scanCodeRetrialAuth; });
|
|
2398
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
2399
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return mainConfig; });
|
|
2400
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initUserSet; });
|
|
2401
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserInfo; });
|
|
2368
2402
|
/* unused harmony export getUserImgUrl */
|
|
2369
2403
|
/* unused harmony export getDoorIndex */
|
|
2370
2404
|
/* unused harmony export refreshOnlineUsers */
|
|
2371
2405
|
/* unused harmony export getQuickMenuIds */
|
|
2372
2406
|
/* unused harmony export getApplicationIdArray */
|
|
2373
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2374
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2407
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplications; });
|
|
2408
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplicationsNew; });
|
|
2375
2409
|
/* 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__, "
|
|
2390
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2410
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateUserCustomInfo; });
|
|
2411
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sysMsgPage; });
|
|
2412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreSysMsg; });
|
|
2413
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return ignoreAllSysMsg; });
|
|
2414
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctProperties; });
|
|
2415
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploads; });
|
|
2416
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadOnlyOne; });
|
|
2417
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctFileInfos; });
|
|
2418
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadSort; });
|
|
2419
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return downloadByAdjunctId; });
|
|
2420
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return uploadDownloads; });
|
|
2421
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return previewAdjunct; });
|
|
2422
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct2; });
|
|
2423
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunctOffice; });
|
|
2424
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
|
|
2391
2425
|
/* unused harmony export upload_updateClassify */
|
|
2392
2426
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
2393
2427
|
/* 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__, "
|
|
2428
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgTree; });
|
|
2429
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectorOrgDetail; });
|
|
2430
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getOrgMainTree; });
|
|
2431
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getSelectOrgsubids; });
|
|
2432
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysCode; });
|
|
2399
2433
|
/* unused harmony export findUserBaseInfo */
|
|
2400
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
|
|
2401
2435
|
/* 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__, "
|
|
2405
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2436
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainDetail; });
|
|
2437
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toStartFlow; });
|
|
2438
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return tempSave; });
|
|
2439
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
2406
2440
|
/* 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__, "
|
|
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__, "
|
|
2417
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2418
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2441
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return editCommonOpion; });
|
|
2442
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return saveCommonOpinion; });
|
|
2443
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return updateCommonOpinion; });
|
|
2444
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
2445
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getProcessDefList; });
|
|
2446
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNodeInfo; });
|
|
2447
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findCodeValues; });
|
|
2448
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysParam; });
|
|
2449
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCodes; });
|
|
2450
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNotificationMsg; });
|
|
2451
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getHandleInfoHtml; });
|
|
2452
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskHandleHtml; });
|
|
2419
2453
|
/* 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__, "
|
|
2440
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2454
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return register; });
|
|
2455
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return pendedhistoryList; });
|
|
2456
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskRejectHtml; });
|
|
2457
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskRejectHtml; });
|
|
2458
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartTaskRead; });
|
|
2459
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskReadIndex; });
|
|
2460
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskReadHtml; });
|
|
2461
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return rejectAndEnd; });
|
|
2462
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toSendMsg; });
|
|
2463
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendMsg; });
|
|
2464
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return endFlowHtml; });
|
|
2465
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return handleInfo; });
|
|
2466
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginUserInfo; });
|
|
2467
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return wss; });
|
|
2468
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return topic; });
|
|
2469
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetCustomInfo; });
|
|
2470
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetNodeInfo; });
|
|
2471
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTransferIndex; });
|
|
2472
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTransfer; });
|
|
2473
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toPresetInfoListIndex; });
|
|
2474
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
2441
2475
|
/* unused harmony export historyListJson */
|
|
2442
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
2458
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2459
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2476
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryListJson; });
|
|
2477
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pressListJson; });
|
|
2478
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
2479
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return isCanStartSubFlow; });
|
|
2480
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskUnionExamine; });
|
|
2481
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskUnionExamine; });
|
|
2482
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskTakeAdvice; });
|
|
2483
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskTakeAdvice; });
|
|
2484
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskStartDraft; });
|
|
2485
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskStartDraft; });
|
|
2486
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskReview; });
|
|
2487
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReview; });
|
|
2488
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionSeal; });
|
|
2489
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionSeal; });
|
|
2490
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTwoOfficesDispatch; });
|
|
2491
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return twoOfficesDispatch; });
|
|
2492
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendList; });
|
|
2493
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendInfo; });
|
|
2460
2494
|
/* unused harmony export sendSave */
|
|
2461
2495
|
/* unused harmony export sendUpdate */
|
|
2462
2496
|
/* unused harmony export sendDelete */
|
|
2463
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2464
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2497
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return sendBatch; });
|
|
2498
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return formContents; });
|
|
2465
2499
|
// 登录
|
|
2466
2500
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
2467
2501
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -2480,6 +2514,10 @@ var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始
|
|
|
2480
2514
|
var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
|
|
2481
2515
|
var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
|
|
2482
2516
|
var doTwoFactorLogin = '/sso2/signIn/auth/doTwoFactorLogin'; // 双因素登录
|
|
2517
|
+
var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身份权限验证页面
|
|
2518
|
+
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
2519
|
+
var scanCodeRetrialAuth = '/sso2/retrialAuth/scanCodeRetrialAuth'; // 二维码扫码验证(二级权限验证)
|
|
2520
|
+
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
2483
2521
|
// 框架
|
|
2484
2522
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
2485
2523
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -3543,7 +3581,7 @@ var util = __webpack_require__(0);
|
|
|
3543
3581
|
var _this2 = this;
|
|
3544
3582
|
|
|
3545
3583
|
util["a" /* default */].ajax({
|
|
3546
|
-
url: api["
|
|
3584
|
+
url: api["X" /* initUserSet */]
|
|
3547
3585
|
}).then(function (res) {
|
|
3548
3586
|
if (res.rCode === 0) {
|
|
3549
3587
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -3581,7 +3619,7 @@ var util = __webpack_require__(0);
|
|
|
3581
3619
|
if (res.url) {
|
|
3582
3620
|
url = res.url;
|
|
3583
3621
|
} else {
|
|
3584
|
-
url = api["
|
|
3622
|
+
url = api["q" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
|
|
3585
3623
|
}
|
|
3586
3624
|
this.$emit('change', 'userHeadUrl', url);
|
|
3587
3625
|
},
|
|
@@ -3590,7 +3628,7 @@ var util = __webpack_require__(0);
|
|
|
3590
3628
|
|
|
3591
3629
|
switch (type) {
|
|
3592
3630
|
case 'job':
|
|
3593
|
-
util["a" /* default */].ajax({ url: api["
|
|
3631
|
+
util["a" /* default */].ajax({ url: api["rb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
|
|
3594
3632
|
if (res.rCode == 0) {
|
|
3595
3633
|
util["a" /* default */].setStorage({
|
|
3596
3634
|
type: _this3.storage,
|
|
@@ -3628,7 +3666,7 @@ var util = __webpack_require__(0);
|
|
|
3628
3666
|
var _this4 = this;
|
|
3629
3667
|
|
|
3630
3668
|
util["a" /* default */].ajax({
|
|
3631
|
-
url: api["
|
|
3669
|
+
url: api["Ub" /* updateUserInfo */],
|
|
3632
3670
|
params: {
|
|
3633
3671
|
email: this.values.email,
|
|
3634
3672
|
officeTel: this.values.officetel,
|
|
@@ -3666,7 +3704,7 @@ var util = __webpack_require__(0);
|
|
|
3666
3704
|
var notify = _this4.values.notify.sort().join(',');
|
|
3667
3705
|
if (notify != _this4.notify.split(',').sort().join(',')) {
|
|
3668
3706
|
util["a" /* default */].ajax({
|
|
3669
|
-
url: api["
|
|
3707
|
+
url: api["Tb" /* updateUserCustomInfo */],
|
|
3670
3708
|
params: {
|
|
3671
3709
|
notify: notify
|
|
3672
3710
|
}
|
|
@@ -4221,7 +4259,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
|
|
|
4221
4259
|
if (this.pageNum <= this.pageCount) {
|
|
4222
4260
|
this.loading = true;
|
|
4223
4261
|
util["a" /* default */].ajax({
|
|
4224
|
-
url: api["
|
|
4262
|
+
url: api["sb" /* sysMsgPage */],
|
|
4225
4263
|
params: {
|
|
4226
4264
|
pageNum: reload ? 1 : this.pageNum,
|
|
4227
4265
|
pageSize: this.pageSize
|
|
@@ -4254,7 +4292,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
|
|
|
4254
4292
|
var _this2 = this;
|
|
4255
4293
|
|
|
4256
4294
|
util["a" /* default */].ajax({
|
|
4257
|
-
url: api["
|
|
4295
|
+
url: api["T" /* ignoreSysMsg */],
|
|
4258
4296
|
params: {
|
|
4259
4297
|
id: res.id
|
|
4260
4298
|
}
|
|
@@ -4274,7 +4312,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
|
|
|
4274
4312
|
var _this3 = this;
|
|
4275
4313
|
|
|
4276
4314
|
util["a" /* default */].ajax({
|
|
4277
|
-
url: api["
|
|
4315
|
+
url: api["S" /* ignoreAllSysMsg */]
|
|
4278
4316
|
}).then(function (res) {
|
|
4279
4317
|
_this3.count = 0;
|
|
4280
4318
|
_this3.msgs = [];
|
|
@@ -4589,7 +4627,7 @@ noticevue_type_template_id_3741e357_render._withStripped = true
|
|
|
4589
4627
|
var _this = this;
|
|
4590
4628
|
|
|
4591
4629
|
util["a" /* default */].ajax({
|
|
4592
|
-
url: api["
|
|
4630
|
+
url: api["S" /* ignoreAllSysMsg */]
|
|
4593
4631
|
}).then(function (res) {
|
|
4594
4632
|
_this.count = 0;
|
|
4595
4633
|
_this.msgs = [];
|
|
@@ -5177,7 +5215,7 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
5177
5215
|
//获取用户信息的接口
|
|
5178
5216
|
mainConfig: {
|
|
5179
5217
|
type: String,
|
|
5180
|
-
default: api["
|
|
5218
|
+
default: api["bb" /* mainConfig */]
|
|
5181
5219
|
},
|
|
5182
5220
|
iframeId: {
|
|
5183
5221
|
type: String,
|
|
@@ -5239,9 +5277,9 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
5239
5277
|
return this.menuUrl;
|
|
5240
5278
|
}
|
|
5241
5279
|
if (this.application) {
|
|
5242
|
-
return api["
|
|
5280
|
+
return api["B" /* getComplexApplicationsNew */];
|
|
5243
5281
|
}
|
|
5244
|
-
return api["
|
|
5282
|
+
return api["A" /* getComplexApplications */];
|
|
5245
5283
|
},
|
|
5246
5284
|
|
|
5247
5285
|
//是否双列右侧菜单
|
|
@@ -5457,7 +5495,7 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
5457
5495
|
var _this = this;
|
|
5458
5496
|
|
|
5459
5497
|
var params = {
|
|
5460
|
-
url: api["
|
|
5498
|
+
url: api["cb" /* mainDetail */],
|
|
5461
5499
|
params: { id: id }
|
|
5462
5500
|
};
|
|
5463
5501
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -5578,7 +5616,7 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
5578
5616
|
return;
|
|
5579
5617
|
}
|
|
5580
5618
|
util["a" /* default */].ajax({
|
|
5581
|
-
url: api["
|
|
5619
|
+
url: api["Tb" /* updateUserCustomInfo */],
|
|
5582
5620
|
params: { color: escape(color.toLowerCase()) },
|
|
5583
5621
|
data: { color: escape(color.toLowerCase()) }
|
|
5584
5622
|
}).then(function (res) {
|
|
@@ -6562,7 +6600,7 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
6562
6600
|
//初始化weosocket
|
|
6563
6601
|
//初始化weosocket
|
|
6564
6602
|
if (!this.websocket) {
|
|
6565
|
-
var url = (util["a" /* default */].getStorage('wshost') || '') + api["
|
|
6603
|
+
var url = (util["a" /* default */].getStorage('wshost') || '') + api["Zb" /* wss */];
|
|
6566
6604
|
this.websocket = new external_sockjs_client_default.a(url);
|
|
6567
6605
|
}
|
|
6568
6606
|
|
|
@@ -6577,7 +6615,7 @@ var isIE = navigator.userAgent.indexOf('MSIE') != -1;
|
|
|
6577
6615
|
client.connect({}, function () {
|
|
6578
6616
|
//localStorage.setItem("socket",true);
|
|
6579
6617
|
//订阅服务端的
|
|
6580
|
-
client.subscribe(api["
|
|
6618
|
+
client.subscribe(api["Qb" /* topic */], function (response) {
|
|
6581
6619
|
var res = JSON.parse(response.body);
|
|
6582
6620
|
var data = res.data;
|
|
6583
6621
|
for (var i in data) {
|
package/lib/menu.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 74);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 74:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|