eoss-ui 0.4.54 → 0.4.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +929 -0
- package/lib/button-group.js +137 -104
- package/lib/button.js +139 -106
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +141 -108
- package/lib/config/api.js +4 -0
- package/lib/data-table-form.js +138 -105
- package/lib/data-table.js +140 -107
- package/lib/date-picker.js +146 -113
- package/lib/dialog.js +141 -108
- package/lib/eoss-ui.common.js +790 -296
- package/lib/flow-group.js +137 -104
- package/lib/flow-list.js +144 -111
- package/lib/flow.js +188 -155
- package/lib/form.js +138 -105
- package/lib/handle-user.js +138 -105
- package/lib/handler.js +138 -105
- package/lib/index.js +1 -1
- package/lib/input-number.js +139 -106
- package/lib/input.js +139 -106
- package/lib/label.js +2 -2
- package/lib/login.js +167 -130
- package/lib/main.js +153 -120
- package/lib/mainComp.js +153 -120
- package/lib/menu.js +2 -2
- package/lib/nav.js +137 -104
- package/lib/notify.js +109 -101
- package/lib/page.js +137 -104
- package/lib/player.js +137 -104
- package/lib/qr-code.js +137 -104
- package/lib/radio-group.js +138 -105
- package/lib/retrial-auth.js +3328 -0
- package/lib/select-ganged.js +139 -106
- package/lib/select.js +140 -107
- package/lib/selector-panel.js +155 -122
- package/lib/selector.js +140 -107
- package/lib/sizer.js +141 -108
- package/lib/steps.js +139 -106
- package/lib/switch.js +139 -106
- package/lib/table-form.js +139 -106
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +146 -113
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/tips.js +140 -107
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +139 -106
- package/lib/tree.js +140 -107
- package/lib/upload.js +147 -114
- package/lib/utils/util.js +33 -8
- package/lib/wujie.js +139 -106
- package/lib/wxlogin.js +139 -106
- package/package.json +2 -2
- package/packages/checkbox-group/src/main.vue +7 -7
- package/packages/dialog/src/main.vue +2 -2
- package/packages/login/src/main.vue +21 -15
- 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/src/config/api.js +4 -0
- package/src/index.js +4 -1
- package/src/utils/util.js +33 -7
package/lib/login.js
CHANGED
|
@@ -102,8 +102,6 @@ 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
|
-
|
|
107
105
|
/**
|
|
108
106
|
* 新封装公告方法规范:
|
|
109
107
|
* 1.方法顺序按字母顺序排列
|
|
@@ -129,6 +127,7 @@ var $lightColorCount = 5;
|
|
|
129
127
|
var $darkColorCount = 4;
|
|
130
128
|
var publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
|
|
131
129
|
var loginMsg = void 0;
|
|
130
|
+
var initAuth = void 0;
|
|
132
131
|
|
|
133
132
|
var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ storeAsString: true });
|
|
134
133
|
|
|
@@ -207,7 +206,6 @@ var ajax = function ajax(_ref) {
|
|
|
207
206
|
});
|
|
208
207
|
// 请求拦截
|
|
209
208
|
http.interceptors.request.use(function (config) {
|
|
210
|
-
config.header && (config.headers = _extends({}, config.headers, config.header));
|
|
211
209
|
config.headers.common = getStorage();
|
|
212
210
|
// 根据请求的信息(请求方式,url,请求get/post数据),产生map的key
|
|
213
211
|
var requestKey = getRequestKey(config);
|
|
@@ -280,11 +278,38 @@ var ajax = function ajax(_ref) {
|
|
|
280
278
|
}).catch(function (e) {});
|
|
281
279
|
}, 1000);
|
|
282
280
|
}
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
281
|
+
} else if (response.data.rCode === 61) {
|
|
282
|
+
clearTimeout(initAuth);
|
|
283
|
+
initAuth = setTimeout(function () {
|
|
284
|
+
Object(eoss_element__WEBPACK_IMPORTED_MODULE_4__["MessageBox"])({
|
|
285
|
+
title: '请进行二次鉴权',
|
|
286
|
+
closeOnClickModal: false,
|
|
287
|
+
closeOnPressEscape: false,
|
|
288
|
+
showConfirmButton: false,
|
|
289
|
+
dangerouslyUseHTMLString: true,
|
|
290
|
+
scroll: false,
|
|
291
|
+
customClass: 'es-retrial-auth-msg',
|
|
292
|
+
render: function render(h, msgBox) {
|
|
293
|
+
return h('es-retrial-auth', {
|
|
294
|
+
ref: 'auth',
|
|
295
|
+
props: {
|
|
296
|
+
group: response.data.results.retrialAuthGroupIds,
|
|
297
|
+
type: response.data.results.retrialAuthType,
|
|
298
|
+
msgBox: msgBox
|
|
299
|
+
}
|
|
300
|
+
});
|
|
301
|
+
},
|
|
302
|
+
callback: function callback(res, obj) {
|
|
303
|
+
obj.$children.forEach(function (item) {
|
|
304
|
+
item.clearTimeouts && item.clearTimeouts();
|
|
305
|
+
return;
|
|
306
|
+
});
|
|
307
|
+
}
|
|
308
|
+
});
|
|
309
|
+
}, 1000);
|
|
287
310
|
}
|
|
311
|
+
// eslint-disable-next-line no-undef
|
|
312
|
+
return Promise.resolve(response.data);
|
|
288
313
|
}
|
|
289
314
|
}, function (error) {
|
|
290
315
|
loading && loading.close();
|
|
@@ -364,7 +389,7 @@ var ajax = function ajax(_ref) {
|
|
|
364
389
|
url: url,
|
|
365
390
|
data: data,
|
|
366
391
|
params: params,
|
|
367
|
-
|
|
392
|
+
headers: header
|
|
368
393
|
});
|
|
369
394
|
};
|
|
370
395
|
|
|
@@ -2350,123 +2375,127 @@ var watermark = function watermark(option) {
|
|
|
2350
2375
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2351
2376
|
|
|
2352
2377
|
"use strict";
|
|
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__, "
|
|
2357
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2358
|
-
/* 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; });
|
|
2359
2384
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
2360
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2361
|
-
/* 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; });
|
|
2362
2387
|
/* unused harmony export updateCode */
|
|
2363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2388
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
|
|
2364
2389
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
2365
2390
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
2366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2367
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2368
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2369
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2370
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2371
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2372
|
-
/* 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; });
|
|
2373
2402
|
/* unused harmony export getUserImgUrl */
|
|
2374
2403
|
/* unused harmony export getDoorIndex */
|
|
2375
2404
|
/* unused harmony export refreshOnlineUsers */
|
|
2376
2405
|
/* unused harmony export getQuickMenuIds */
|
|
2377
2406
|
/* unused harmony export getApplicationIdArray */
|
|
2378
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2379
|
-
/* 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; });
|
|
2380
2409
|
/* unused harmony export getUserCustomInfo */
|
|
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__, "
|
|
2391
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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; });
|
|
2396
2425
|
/* unused harmony export upload_updateClassify */
|
|
2397
2426
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
2398
2427
|
/* unused harmony export getPictureBase64 */
|
|
2399
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
2403
|
-
/* 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; });
|
|
2404
2433
|
/* unused harmony export findUserBaseInfo */
|
|
2405
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
|
|
2406
2435
|
/* unused harmony export getCurrentuser */
|
|
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__, "
|
|
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; });
|
|
2411
2440
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
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__, "
|
|
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__, "
|
|
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; });
|
|
2424
2453
|
/* unused harmony export getView */
|
|
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__, "
|
|
2441
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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; });
|
|
2446
2475
|
/* unused harmony export historyListJson */
|
|
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__, "
|
|
2460
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2461
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2462
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2463
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2464
|
-
/* 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; });
|
|
2465
2494
|
/* unused harmony export sendSave */
|
|
2466
2495
|
/* unused harmony export sendUpdate */
|
|
2467
2496
|
/* unused harmony export sendDelete */
|
|
2468
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2469
|
-
/* 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; });
|
|
2470
2499
|
// 登录
|
|
2471
2500
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
2472
2501
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -2485,6 +2514,10 @@ var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始
|
|
|
2485
2514
|
var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
|
|
2486
2515
|
var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
|
|
2487
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'; // 二级身份验证-验证码验证
|
|
2488
2521
|
// 框架
|
|
2489
2522
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
2490
2523
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -2822,7 +2855,7 @@ function normalizeComponent(
|
|
|
2822
2855
|
// ESM COMPAT FLAG
|
|
2823
2856
|
__webpack_require__.r(__webpack_exports__);
|
|
2824
2857
|
|
|
2825
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=
|
|
2858
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=cca116b4&
|
|
2826
2859
|
var render = function () {
|
|
2827
2860
|
var _vm = this
|
|
2828
2861
|
var _h = _vm.$createElement
|
|
@@ -2924,7 +2957,7 @@ var render = function () {
|
|
|
2924
2957
|
{ staticClass: "es-login-form-box" },
|
|
2925
2958
|
[
|
|
2926
2959
|
_vm.isShow(_vm.active) &&
|
|
2927
|
-
(_vm.active == 0 || _vm.active ==
|
|
2960
|
+
(_vm.active == 0 || _vm.active == 12)
|
|
2928
2961
|
? [
|
|
2929
2962
|
_c(
|
|
2930
2963
|
"el-form",
|
|
@@ -3044,6 +3077,7 @@ var render = function () {
|
|
|
3044
3077
|
{
|
|
3045
3078
|
required: true,
|
|
3046
3079
|
message: "验证码不能为空",
|
|
3080
|
+
trigger: "change",
|
|
3047
3081
|
},
|
|
3048
3082
|
],
|
|
3049
3083
|
},
|
|
@@ -3093,11 +3127,10 @@ var render = function () {
|
|
|
3093
3127
|
name: "show",
|
|
3094
3128
|
rawName: "v-show",
|
|
3095
3129
|
value:
|
|
3096
|
-
|
|
3097
|
-
_vm.active == 12) &&
|
|
3130
|
+
_vm.active == 12 &&
|
|
3098
3131
|
_vm.showVerifyCode,
|
|
3099
3132
|
expression:
|
|
3100
|
-
"
|
|
3133
|
+
"active == 12 && showVerifyCode",
|
|
3101
3134
|
},
|
|
3102
3135
|
],
|
|
3103
3136
|
staticClass: "es-get-code",
|
|
@@ -3672,7 +3705,7 @@ var staticRenderFns = []
|
|
|
3672
3705
|
render._withStripped = true
|
|
3673
3706
|
|
|
3674
3707
|
|
|
3675
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
3708
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=cca116b4&
|
|
3676
3709
|
|
|
3677
3710
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=4f5da52e&
|
|
3678
3711
|
var resetPasswordvue_type_template_id_4f5da52e_render = function () {
|
|
@@ -3924,7 +3957,7 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
|
|
|
3924
3957
|
var _this = this;
|
|
3925
3958
|
|
|
3926
3959
|
util["a" /* default */].ajax({
|
|
3927
|
-
url: api["
|
|
3960
|
+
url: api["V" /* initModifyPassword */]
|
|
3928
3961
|
}).then(function (res) {
|
|
3929
3962
|
if (res.rCode === 0) {
|
|
3930
3963
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -3984,7 +4017,7 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
|
|
|
3984
4017
|
var _this3 = this;
|
|
3985
4018
|
|
|
3986
4019
|
util["a" /* default */].ajax({
|
|
3987
|
-
url: api["
|
|
4020
|
+
url: api["E" /* getModifyPassCode */],
|
|
3988
4021
|
params: params
|
|
3989
4022
|
}).then(function (res) {
|
|
3990
4023
|
if (res.rCode === 0) {
|
|
@@ -4401,6 +4434,12 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4401
4434
|
//
|
|
4402
4435
|
//
|
|
4403
4436
|
//
|
|
4437
|
+
//
|
|
4438
|
+
//
|
|
4439
|
+
//
|
|
4440
|
+
//
|
|
4441
|
+
//
|
|
4442
|
+
//
|
|
4404
4443
|
|
|
4405
4444
|
|
|
4406
4445
|
|
|
@@ -4417,7 +4456,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4417
4456
|
//初始登录配置接口地址
|
|
4418
4457
|
initLogin: {
|
|
4419
4458
|
type: String,
|
|
4420
|
-
default: api["
|
|
4459
|
+
default: api["U" /* initLogin */]
|
|
4421
4460
|
},
|
|
4422
4461
|
mode: {
|
|
4423
4462
|
type: String,
|
|
@@ -4493,17 +4532,17 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4493
4532
|
//账号登录接口地址
|
|
4494
4533
|
action: {
|
|
4495
4534
|
type: String,
|
|
4496
|
-
default: api["
|
|
4535
|
+
default: api["o" /* doUserLogin */]
|
|
4497
4536
|
},
|
|
4498
4537
|
//ca登录地址
|
|
4499
4538
|
caAction: {
|
|
4500
4539
|
type: String,
|
|
4501
|
-
default: api["
|
|
4540
|
+
default: api["k" /* doCaLogin */]
|
|
4502
4541
|
},
|
|
4503
4542
|
//扫码登录接口地址
|
|
4504
4543
|
scanAction: {
|
|
4505
4544
|
type: String,
|
|
4506
|
-
default: api["
|
|
4545
|
+
default: api["m" /* doQrLogin */]
|
|
4507
4546
|
},
|
|
4508
4547
|
//图片验证码接口地址
|
|
4509
4548
|
codeAction: {
|
|
@@ -4512,23 +4551,23 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4512
4551
|
},
|
|
4513
4552
|
getLoginCode: {
|
|
4514
4553
|
type: String,
|
|
4515
|
-
default: api["
|
|
4554
|
+
default: api["D" /* getLoginCode */]
|
|
4516
4555
|
},
|
|
4517
4556
|
doCodeLogin: {
|
|
4518
4557
|
type: String,
|
|
4519
|
-
default: api["
|
|
4558
|
+
default: api["l" /* doCodeLogin */]
|
|
4520
4559
|
},
|
|
4521
4560
|
getTwoFactorLoginCode: {
|
|
4522
4561
|
type: String,
|
|
4523
|
-
default: api["
|
|
4562
|
+
default: api["P" /* getTwoFactorLoginCode */]
|
|
4524
4563
|
},
|
|
4525
4564
|
doTwoFactorLogin: {
|
|
4526
4565
|
type: String,
|
|
4527
|
-
default: api["
|
|
4566
|
+
default: api["n" /* doTwoFactorLogin */]
|
|
4528
4567
|
},
|
|
4529
4568
|
doWechatQrLogin: {
|
|
4530
4569
|
type: String,
|
|
4531
|
-
default: api["
|
|
4570
|
+
default: api["p" /* doWechatQrLogin */]
|
|
4532
4571
|
},
|
|
4533
4572
|
imgCode: {
|
|
4534
4573
|
type: [Boolean, Object],
|
|
@@ -4642,17 +4681,15 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4642
4681
|
return types.length > 2 ? {
|
|
4643
4682
|
0: { type: '0', icon: 'es-icon-shuru', name: '账号登录' },
|
|
4644
4683
|
1: { type: '1', icon: 'es-icon-usb-key', name: '证书登录' },
|
|
4645
|
-
2: { type: '2', icon: 'es-icon-shuru', name: '账号登录' },
|
|
4646
4684
|
3: { type: '3', icon: 'es-icon-saoma', name: '扫码登录' },
|
|
4647
4685
|
6: { type: '6', icon: 'es-icon-duanxin', name: '短信登录' },
|
|
4648
4686
|
7: { type: '7', icon: 'es-icon-dingding', name: '钉钉扫码登录' },
|
|
4649
4687
|
9: { type: '9', icon: 'es-icon-weixin', name: '微信扫码登录' },
|
|
4650
4688
|
11: { type: '11', icon: 'es-icon-youxiang', name: '邮箱登录' },
|
|
4651
|
-
12: { type: '12', icon: 'es-icon-
|
|
4652
|
-
|
|
4689
|
+
12: { type: '12', icon: 'es-icon-shuru', name: '账号登录' //双因素
|
|
4690
|
+
} } : {
|
|
4653
4691
|
0: { type: '0', icon: 'es-icon-jianpan', name: '账号登录' },
|
|
4654
4692
|
1: { type: '1', icon: 'es-icon-ca', name: '证书登录' },
|
|
4655
|
-
2: { type: '2', icon: 'es-icon-jianpan', name: '账号登录' },
|
|
4656
4693
|
3: { type: '3', icon: 'es-icon-qrcode', name: '扫码登录' },
|
|
4657
4694
|
6: { type: '6', icon: 'es-icon-duanxin', name: '短信登录' },
|
|
4658
4695
|
7: { type: '7', icon: 'es-icon-dingding', name: '钉钉扫码登录' },
|
|
@@ -4662,8 +4699,8 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4662
4699
|
icon: 'es-icon-wodeyouxiang',
|
|
4663
4700
|
name: '邮箱登录'
|
|
4664
4701
|
},
|
|
4665
|
-
12: { type: '12', icon: 'es-icon-
|
|
4666
|
-
|
|
4702
|
+
12: { type: '12', icon: 'es-icon-jianpan', name: '账号登录' //双因素
|
|
4703
|
+
} };
|
|
4667
4704
|
},
|
|
4668
4705
|
icons: function icons() {
|
|
4669
4706
|
var _this = this;
|
|
@@ -4682,7 +4719,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4682
4719
|
return mainvue_type_script_lang_js_extends({}, this.copyrightStyle, style);
|
|
4683
4720
|
},
|
|
4684
4721
|
showVerifyCode: function showVerifyCode() {
|
|
4685
|
-
return this.passModifyModel.indexOf('6') > -1 || this.passModifyModel.indexOf('11') > -1;
|
|
4722
|
+
return this.passModifyModel && (this.passModifyModel.indexOf('6') > -1 || this.passModifyModel.indexOf('11') > -1);
|
|
4686
4723
|
}
|
|
4687
4724
|
},
|
|
4688
4725
|
watch: {
|
|
@@ -4970,7 +5007,6 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
4970
5007
|
this.app = res.appName || res.subsystemName;
|
|
4971
5008
|
this.qrimg = res.qrimg || res.qrImg;
|
|
4972
5009
|
this.loginModel = res.loginModel;
|
|
4973
|
-
// this.loginModel = '0,3,11,6,9,12';
|
|
4974
5010
|
this.loginBackgroundImg = res.loginBackgroundUrl ? res.loginBackgroundUrl.split(',') : null;
|
|
4975
5011
|
this.loginLogoImg = res.loginLogoUrl ? res.loginLogoUrl : null;
|
|
4976
5012
|
if (res.subsystemExtend && Object.keys(res.subsystemExtend).length) {
|
|
@@ -5021,7 +5057,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
5021
5057
|
}
|
|
5022
5058
|
var data = {};
|
|
5023
5059
|
var flag = false;
|
|
5024
|
-
if (this.active ==
|
|
5060
|
+
if (this.active == 12) {
|
|
5025
5061
|
if (!this.formData.username) {
|
|
5026
5062
|
this.$refs.login.validateField('username');
|
|
5027
5063
|
return false;
|
|
@@ -5062,6 +5098,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
|
|
|
5062
5098
|
} else {
|
|
5063
5099
|
_this4.btnText = '重新获取';
|
|
5064
5100
|
_this4.disabled = false;
|
|
5101
|
+
_this4.submit = false;
|
|
5065
5102
|
}
|
|
5066
5103
|
}, 1000);
|
|
5067
5104
|
util["a" /* default */].ajax({
|