eoss-ui 0.6.68 → 0.6.70
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/.DS_Store +0 -0
- package/lib/button-group.js +103 -81
- package/lib/button.js +103 -81
- package/lib/calogin.js +173 -115
- package/lib/checkbox-group.js +103 -81
- package/lib/config/api.js +3 -0
- package/lib/data-table-form.js +103 -81
- package/lib/data-table.js +103 -81
- package/lib/date-picker.js +103 -81
- package/lib/dialog.js +103 -81
- package/lib/eoss-ui.common.js +702 -440
- package/lib/flow-group.js +103 -81
- package/lib/flow-list.js +108 -86
- package/lib/flow.js +399 -197
- package/lib/form.js +103 -81
- package/lib/handle-user.js +104 -82
- package/lib/handler.js +104 -82
- package/lib/icon.js +104 -82
- package/lib/index.js +1 -1
- package/lib/input-number.js +103 -81
- package/lib/input.js +103 -81
- package/lib/login.js +203 -176
- package/lib/main.js +140 -119
- package/lib/nav.js +103 -81
- package/lib/notify.js +85 -81
- package/lib/page.js +103 -81
- package/lib/pagination.js +103 -81
- package/lib/player.js +103 -81
- package/lib/qr-code.js +103 -81
- package/lib/radio-group.js +103 -81
- package/lib/retrial-auth.js +105 -83
- package/lib/select-ganged.js +103 -81
- package/lib/select.js +103 -81
- package/lib/selector-panel.js +118 -100
- package/lib/selector.js +135 -89
- package/lib/sizer.js +103 -81
- package/lib/steps.js +103 -81
- package/lib/switch.js +103 -81
- package/lib/table-form.js +103 -81
- package/lib/tabs.js +103 -81
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/tips.js +104 -82
- package/lib/tree-group.js +103 -81
- package/lib/tree.js +103 -81
- package/lib/upload.js +110 -88
- package/lib/utils/util.js +21 -3
- package/lib/wujie.js +103 -81
- package/lib/wxlogin.js +103 -81
- package/package.json +2 -2
- package/packages/.DS_Store +0 -0
- package/packages/calogin/.DS_Store +0 -0
- package/packages/calogin/src/main.vue +75 -31
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/src/component/Circulate.vue +9 -2
- package/packages/flow/src/component/taskUnionExamine.vue +8 -0
- package/packages/flow/src/main.vue +46 -3
- package/packages/flow/src/selectUser.vue +6 -0
- package/packages/flow-list/.DS_Store +0 -0
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/main.vue +44 -48
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/simplicity/avatar.vue +0 -1
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/src/main.vue +33 -7
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/src/main.vue +5 -5
- package/packages/selector-panel/src/selection.vue +3 -10
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/src/login.scss +4 -1
- package/src/.DS_Store +0 -0
- package/src/config/api.js +3 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +60 -42
package/lib/login.js
CHANGED
|
@@ -586,8 +586,9 @@ var ajaxStream = function ajaxStream(_ref2) {
|
|
|
586
586
|
try {
|
|
587
587
|
// 假设数据是 JSON 格式
|
|
588
588
|
var parsedData = JSON.parse(data);
|
|
589
|
-
info
|
|
590
|
-
info.
|
|
589
|
+
info = _extends({}, info, parsedData);
|
|
590
|
+
// info.time = parsedData.time;
|
|
591
|
+
// info.conversationId = parsedData.conversationId;
|
|
591
592
|
var thinkRegex = /<think>([\s\S]*?)<\/think>([\s\S]*)?/;
|
|
592
593
|
var match = parsedData.message.match(thinkRegex);
|
|
593
594
|
if (match) {
|
|
@@ -1051,6 +1052,22 @@ var domEval = function domEval(code) {
|
|
|
1051
1052
|
script.text = code;
|
|
1052
1053
|
document.head.appendChild(script);
|
|
1053
1054
|
};
|
|
1055
|
+
/**
|
|
1056
|
+
* downloadFile
|
|
1057
|
+
* @desc:下载附件
|
|
1058
|
+
* @author huangbo
|
|
1059
|
+
* @date 2022年5月7日
|
|
1060
|
+
* @param {String} [code] - js内容
|
|
1061
|
+
**/
|
|
1062
|
+
var downloadFile = function downloadFile(fileUrl) {
|
|
1063
|
+
var link = document.createElement('a');
|
|
1064
|
+
link.href = fileUrl;
|
|
1065
|
+
link.rel = 'noopener noreferrer';
|
|
1066
|
+
link.target = '_blank';
|
|
1067
|
+
document.body.appendChild(link);
|
|
1068
|
+
link.click();
|
|
1069
|
+
document.body.removeChild(link);
|
|
1070
|
+
};
|
|
1054
1071
|
|
|
1055
1072
|
/**
|
|
1056
1073
|
* esEncode
|
|
@@ -1604,7 +1621,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1604
1621
|
* @param {function} callback - 回调函数
|
|
1605
1622
|
**/
|
|
1606
1623
|
var getMainConfig = function getMainConfig(callback) {
|
|
1607
|
-
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "
|
|
1624
|
+
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* mainConfig */ "pb"] }).then(function (res) {
|
|
1608
1625
|
if (res && res.rCode === 0) {
|
|
1609
1626
|
callback(res.results);
|
|
1610
1627
|
}
|
|
@@ -1941,7 +1958,7 @@ var getTypeName = function getTypeName(type) {
|
|
|
1941
1958
|
typeName = '[角色]';
|
|
1942
1959
|
} else if (type === 'post') {
|
|
1943
1960
|
typeName = '[岗位]';
|
|
1944
|
-
} else if (type === 'otheremployee' || type === 'employee') {
|
|
1961
|
+
} else if (type === 'otheremployee' || type === 'employee' || type === 'myemployee') {
|
|
1945
1962
|
if (sysdepname) {
|
|
1946
1963
|
typeName = '[' + sysdepname + '员工]';
|
|
1947
1964
|
} else {
|
|
@@ -2361,7 +2378,7 @@ var isLogined = function () {
|
|
|
2361
2378
|
break;
|
|
2362
2379
|
}
|
|
2363
2380
|
|
|
2364
|
-
ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "
|
|
2381
|
+
ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_1__[/* logout */ "ob"] }).then(function (res) {
|
|
2365
2382
|
if (res.rCode === 0) {
|
|
2366
2383
|
removeStorage();
|
|
2367
2384
|
}
|
|
@@ -3434,6 +3451,7 @@ var watermark = function watermark(option) {
|
|
|
3434
3451
|
debounce: debounce,
|
|
3435
3452
|
delUrlParam: delUrlParam,
|
|
3436
3453
|
domEval: domEval,
|
|
3454
|
+
downloadFile: downloadFile,
|
|
3437
3455
|
esDecode: esDecode,
|
|
3438
3456
|
esEncode: esEncode,
|
|
3439
3457
|
esmEncrypt: esmEncrypt,
|
|
@@ -3517,32 +3535,32 @@ var watermark = function watermark(option) {
|
|
|
3517
3535
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doCaLogin; });
|
|
3518
3536
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doUserLogin; });
|
|
3519
3537
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return doQrLogin; });
|
|
3520
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3521
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3522
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3538
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return logout; });
|
|
3539
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return initLogin; });
|
|
3540
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return switchUserTo; });
|
|
3523
3541
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3524
3542
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getLoginCode; });
|
|
3525
3543
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doCodeLogin; });
|
|
3526
3544
|
/* unused harmony export updateCode */
|
|
3527
3545
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getModifyPassCode; });
|
|
3528
3546
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return codeModifyPass; });
|
|
3529
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3547
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return loginModifyPassword; });
|
|
3530
3548
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
3531
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3549
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return initModifyPassword; });
|
|
3532
3550
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doWechatQrLogin; });
|
|
3533
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3551
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getTwoFactorLoginCode; });
|
|
3534
3552
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return doTwoFactorLogin; });
|
|
3535
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3553
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return initRetrialAuth; });
|
|
3536
3554
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getRetrialAuthCode; });
|
|
3537
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3555
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return scanCodeRetrialAuth; });
|
|
3538
3556
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return codeRetrialAuth; });
|
|
3539
3557
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doAssistanceQrLogin; });
|
|
3540
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3541
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3542
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3543
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3544
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3545
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3558
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return userOnline; });
|
|
3559
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getUserAppWithTag; });
|
|
3560
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return recordUserApp; });
|
|
3561
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return mainConfig; });
|
|
3562
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return initUserSet; });
|
|
3563
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return updateUserInfo; });
|
|
3546
3564
|
/* unused harmony export getUserImgUrl */
|
|
3547
3565
|
/* unused harmony export getDoorIndex */
|
|
3548
3566
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3551,21 +3569,22 @@ var watermark = function watermark(option) {
|
|
|
3551
3569
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getComplexApplications; });
|
|
3552
3570
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getComplexApplicationsNew; });
|
|
3553
3571
|
/* unused harmony export getUserCustomInfo */
|
|
3554
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3555
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3556
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3557
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3558
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3572
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return updateUserCustomInfo; });
|
|
3573
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return sysMsgPage; });
|
|
3574
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return ignoreSysMsg; });
|
|
3575
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return ignoreAllSysMsg; });
|
|
3576
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return searchType; });
|
|
3577
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getSysParam; });
|
|
3559
3578
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getAdjunctProperties; });
|
|
3560
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3561
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3579
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return uploads; });
|
|
3580
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return uploadOnlyOne; });
|
|
3562
3581
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getAdjunctFileInfos; });
|
|
3563
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3582
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return uploadSort; });
|
|
3564
3583
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return downloadByAdjunctId; });
|
|
3565
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3566
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3567
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3568
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3584
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return uploadDownloads; });
|
|
3585
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return previewAdjunct; });
|
|
3586
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return previewAdjunct2; });
|
|
3587
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return previewAdjunctOffice; });
|
|
3569
3588
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return delAdjunct; });
|
|
3570
3589
|
/* unused harmony export upload_updateClassify */
|
|
3571
3590
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
@@ -3577,16 +3596,16 @@ var watermark = function watermark(option) {
|
|
|
3577
3596
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return findSysCode; });
|
|
3578
3597
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getDictList; });
|
|
3579
3598
|
/* unused harmony export findUserBaseInfo */
|
|
3580
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3599
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return gethelpdoc; });
|
|
3581
3600
|
/* unused harmony export getCurrentuser */
|
|
3582
3601
|
/* unused harmony export mainDetail */
|
|
3583
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3584
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3602
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toStartFlow; });
|
|
3603
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return tempSave; });
|
|
3585
3604
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return commonOpion; });
|
|
3586
3605
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3587
3606
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return editCommonOpion; });
|
|
3588
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3589
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3607
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return saveCommonOpinion; });
|
|
3608
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return updateCommonOpinion; });
|
|
3590
3609
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return deleteCommonOpion; });
|
|
3591
3610
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getProcessDefList; });
|
|
3592
3611
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getNodeInfo; });
|
|
@@ -3595,67 +3614,67 @@ var watermark = function watermark(option) {
|
|
|
3595
3614
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return findSysCodes; });
|
|
3596
3615
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getNotificationMsg; });
|
|
3597
3616
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getHandleInfoHtml; });
|
|
3598
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3617
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return taskHandleHtml; });
|
|
3599
3618
|
/* unused harmony export getView */
|
|
3600
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3601
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3602
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3603
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3604
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3605
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3606
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3607
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3608
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3609
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3619
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return register; });
|
|
3620
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return pendedhistoryList; });
|
|
3621
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return toTaskRejectHtml; });
|
|
3622
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return taskRejectHtml; });
|
|
3623
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toStartTaskRead; });
|
|
3624
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toStartTaskReadIndex; });
|
|
3625
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return taskReadHtml; });
|
|
3626
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return rejectAndEnd; });
|
|
3627
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toSendMsg; });
|
|
3628
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return sendMsg; });
|
|
3610
3629
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return endFlowHtml; });
|
|
3611
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3612
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3613
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3614
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3630
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return handleInfo; });
|
|
3631
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return loginUserInfo; });
|
|
3632
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return wss; });
|
|
3633
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return topic; });
|
|
3615
3634
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getPresetCustomInfo; });
|
|
3616
3635
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getPresetNodeInfo; });
|
|
3617
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3618
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3619
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3636
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return toTaskTransferIndex; });
|
|
3637
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return taskTransfer; });
|
|
3638
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toPresetInfoListIndex; });
|
|
3620
3639
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return deletePresetInfo; });
|
|
3621
3640
|
/* unused harmony export historyListJson */
|
|
3622
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3623
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3641
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return pendedhistoryListJson; });
|
|
3642
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return pressListJson; });
|
|
3624
3643
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return deleteFlow; });
|
|
3625
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3626
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3627
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3628
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3629
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3630
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3631
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3632
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3633
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3634
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3635
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3636
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3637
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3638
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3639
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3640
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3641
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3642
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3643
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3644
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return isCanStartSubFlow; });
|
|
3645
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return toTaskUnionExamine; });
|
|
3646
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return taskUnionExamine; });
|
|
3647
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return toTaskTakeAdvice; });
|
|
3648
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return taskTakeAdvice; });
|
|
3649
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return toTaskStartDraft; });
|
|
3650
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return toTaskSupervise; });
|
|
3651
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return toTaskSuperviseSub; });
|
|
3652
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return taskStartDraft; });
|
|
3653
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return toTaskReview; });
|
|
3654
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return taskReview; });
|
|
3655
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return toTaskUnionSeal; });
|
|
3656
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return taskUnionSeal; });
|
|
3657
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return toTwoOfficesDispatch; });
|
|
3658
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return twoOfficesDispatch; });
|
|
3659
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toResetProcessIndex; });
|
|
3660
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return resetProcess; });
|
|
3661
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return toTaskContinuationIndex; });
|
|
3662
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return taskContinuation; });
|
|
3644
3663
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getFreeStartFlowParams; });
|
|
3645
3664
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return freeStartFlowWithSubmitTask; });
|
|
3646
3665
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkForeignOrgStartedCircularRead; });
|
|
3647
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3666
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return pendedhistoryListWithCircularReadJson; });
|
|
3648
3667
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return fyListJson; });
|
|
3649
3668
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return circularReadWithdraw; });
|
|
3650
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3651
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3669
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return taskReadWithDraw; });
|
|
3670
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
|
|
3652
3671
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return checkBusinessIdStartedReadTransferHandle; });
|
|
3653
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3654
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3672
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return sendList; });
|
|
3673
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return sendInfo; });
|
|
3655
3674
|
/* unused harmony export sendSave */
|
|
3656
3675
|
/* unused harmony export sendUpdate */
|
|
3657
3676
|
/* unused harmony export sendDelete */
|
|
3658
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3677
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return sendBatch; });
|
|
3659
3678
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return formContents; });
|
|
3660
3679
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return directStartTaskCircularRead; });
|
|
3661
3680
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return endFlowAndStartTaskCircularRead; });
|
|
@@ -3709,6 +3728,9 @@ var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消
|
|
|
3709
3728
|
// 框架 - 搜索
|
|
3710
3729
|
var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
|
|
3711
3730
|
|
|
3731
|
+
// 系统参数
|
|
3732
|
+
var getSysParam = '/sys/systemSetting/getSysParam.dhtml'; // 获取系统参数
|
|
3733
|
+
|
|
3712
3734
|
// 附件相关
|
|
3713
3735
|
var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
3714
3736
|
var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
|
|
@@ -4316,7 +4338,7 @@ var nightImg = 'data:image/jpeg;base64,/9j/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA
|
|
|
4316
4338
|
// ESM COMPAT FLAG
|
|
4317
4339
|
__webpack_require__.r(__webpack_exports__);
|
|
4318
4340
|
|
|
4319
|
-
// 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=
|
|
4341
|
+
// 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=7795d992&
|
|
4320
4342
|
var render = function () {
|
|
4321
4343
|
var _vm = this
|
|
4322
4344
|
var _h = _vm.$createElement
|
|
@@ -4354,6 +4376,7 @@ var render = function () {
|
|
|
4354
4376
|
})
|
|
4355
4377
|
: _vm._e(),
|
|
4356
4378
|
_vm._t("default"),
|
|
4379
|
+
_vm._t("warning", null, { contents: _vm.warningText }),
|
|
4357
4380
|
_c(
|
|
4358
4381
|
"div",
|
|
4359
4382
|
{
|
|
@@ -4413,75 +4436,81 @@ var render = function () {
|
|
|
4413
4436
|
},
|
|
4414
4437
|
},
|
|
4415
4438
|
[
|
|
4416
|
-
this.mode == "complex"
|
|
4417
|
-
_vm.loginModel.indexOf("3") > -1
|
|
4439
|
+
this.mode == "complex"
|
|
4418
4440
|
? [
|
|
4419
|
-
_vm.
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
|
|
4431
|
-
|
|
4432
|
-
|
|
4441
|
+
_vm.loginModel.indexOf("3") > -1
|
|
4442
|
+
? [
|
|
4443
|
+
_vm._l(_vm.switchs, function (item) {
|
|
4444
|
+
return [
|
|
4445
|
+
item.tips
|
|
4446
|
+
? _c(
|
|
4447
|
+
"div",
|
|
4448
|
+
{
|
|
4449
|
+
directives: [
|
|
4450
|
+
{
|
|
4451
|
+
name: "show",
|
|
4452
|
+
rawName: "v-show",
|
|
4453
|
+
value:
|
|
4454
|
+
_vm.switchActive !=
|
|
4455
|
+
item.type,
|
|
4456
|
+
expression:
|
|
4457
|
+
"switchActive != item.type",
|
|
4458
|
+
},
|
|
4459
|
+
],
|
|
4460
|
+
key: item.type + "_0",
|
|
4461
|
+
staticClass:
|
|
4462
|
+
"es-login-model-tips",
|
|
4463
|
+
style: _vm.getBackground(
|
|
4464
|
+
item.background
|
|
4465
|
+
),
|
|
4466
|
+
},
|
|
4467
|
+
[
|
|
4468
|
+
_vm._v(
|
|
4469
|
+
"\n " +
|
|
4470
|
+
_vm._s(item.tips) +
|
|
4471
|
+
"\n "
|
|
4472
|
+
),
|
|
4473
|
+
]
|
|
4474
|
+
)
|
|
4475
|
+
: _vm._e(),
|
|
4476
|
+
_c(
|
|
4477
|
+
"span",
|
|
4478
|
+
{
|
|
4479
|
+
directives: [
|
|
4480
|
+
{
|
|
4481
|
+
name: "show",
|
|
4482
|
+
rawName: "v-show",
|
|
4483
|
+
value:
|
|
4484
|
+
_vm.switchActive !=
|
|
4485
|
+
item.type,
|
|
4486
|
+
expression:
|
|
4487
|
+
"switchActive != item.type",
|
|
4488
|
+
},
|
|
4489
|
+
],
|
|
4490
|
+
key: item.type + "_1",
|
|
4491
|
+
staticClass: "es-icon-box",
|
|
4492
|
+
attrs: {
|
|
4493
|
+
title:
|
|
4494
|
+
_vm.modelLength > 2
|
|
4495
|
+
? item.name
|
|
4496
|
+
: "",
|
|
4433
4497
|
},
|
|
4434
|
-
|
|
4435
|
-
|
|
4436
|
-
|
|
4437
|
-
|
|
4438
|
-
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
_c(
|
|
4451
|
-
"span",
|
|
4452
|
-
{
|
|
4453
|
-
directives: [
|
|
4454
|
-
{
|
|
4455
|
-
name: "show",
|
|
4456
|
-
rawName: "v-show",
|
|
4457
|
-
value:
|
|
4458
|
-
_vm.switchActive != item.type,
|
|
4459
|
-
expression:
|
|
4460
|
-
"switchActive != item.type",
|
|
4461
|
-
},
|
|
4462
|
-
],
|
|
4463
|
-
key: item.type + "_1",
|
|
4464
|
-
staticClass: "es-icon-box",
|
|
4465
|
-
attrs: {
|
|
4466
|
-
title:
|
|
4467
|
-
_vm.modelLength > 2
|
|
4468
|
-
? item.name
|
|
4469
|
-
: "",
|
|
4470
|
-
},
|
|
4471
|
-
on: {
|
|
4472
|
-
click: function ($event) {
|
|
4473
|
-
_vm.switchLoginType(item)
|
|
4474
|
-
},
|
|
4475
|
-
},
|
|
4476
|
-
},
|
|
4477
|
-
[
|
|
4478
|
-
_c("i", {
|
|
4479
|
-
class: [item.icon, "es-icon"],
|
|
4480
|
-
}),
|
|
4481
|
-
]
|
|
4482
|
-
),
|
|
4483
|
-
]
|
|
4484
|
-
}),
|
|
4498
|
+
on: {
|
|
4499
|
+
click: function ($event) {
|
|
4500
|
+
_vm.switchLoginType(item)
|
|
4501
|
+
},
|
|
4502
|
+
},
|
|
4503
|
+
},
|
|
4504
|
+
[
|
|
4505
|
+
_c("i", {
|
|
4506
|
+
class: [item.icon, "es-icon"],
|
|
4507
|
+
}),
|
|
4508
|
+
]
|
|
4509
|
+
),
|
|
4510
|
+
]
|
|
4511
|
+
}),
|
|
4512
|
+
]
|
|
4513
|
+
: _vm._e(),
|
|
4485
4514
|
]
|
|
4486
4515
|
: [
|
|
4487
4516
|
_vm._l(_vm.icons, function (item) {
|
|
@@ -5329,11 +5358,11 @@ var render = function () {
|
|
|
5329
5358
|
2
|
|
5330
5359
|
)
|
|
5331
5360
|
: _vm._e(),
|
|
5332
|
-
_vm.
|
|
5361
|
+
_vm.showWarnInfo
|
|
5333
5362
|
? _c("div", { staticClass: "es-warning" }, [
|
|
5334
5363
|
_vm._v(
|
|
5335
5364
|
"\n " +
|
|
5336
|
-
_vm._s(_vm.
|
|
5365
|
+
_vm._s(_vm.warningText) +
|
|
5337
5366
|
"\n "
|
|
5338
5367
|
),
|
|
5339
5368
|
])
|
|
@@ -5553,7 +5582,7 @@ var render = function () {
|
|
|
5553
5582
|
},
|
|
5554
5583
|
[
|
|
5555
5584
|
_c("p", { staticClass: "es-launch-text es-launch-user-name" }, [
|
|
5556
|
-
_vm._v(_vm._s(_vm.userName) + "
|
|
5585
|
+
_vm._v(_vm._s(_vm.userName) + ",您好!"),
|
|
5557
5586
|
]),
|
|
5558
5587
|
_c(
|
|
5559
5588
|
"p",
|
|
@@ -5571,6 +5600,8 @@ var render = function () {
|
|
|
5571
5600
|
? _c("es-ca-login", {
|
|
5572
5601
|
ref: "calogin",
|
|
5573
5602
|
attrs: {
|
|
5603
|
+
showSelect: _vm.showKeySelect,
|
|
5604
|
+
"install-path": _vm.installPath,
|
|
5574
5605
|
"ca-model": _vm.caLoginModel,
|
|
5575
5606
|
identifyingId: _vm.identifyingId,
|
|
5576
5607
|
success: _vm.caLogin,
|
|
@@ -5601,7 +5632,7 @@ var staticRenderFns = [
|
|
|
5601
5632
|
render._withStripped = true
|
|
5602
5633
|
|
|
5603
5634
|
|
|
5604
|
-
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=
|
|
5635
|
+
// CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=7795d992&
|
|
5605
5636
|
|
|
5606
5637
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
5607
5638
|
var regenerator_ = __webpack_require__(4);
|
|
@@ -5999,7 +6030,7 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
|
|
|
5999
6030
|
var _this2 = this;
|
|
6000
6031
|
|
|
6001
6032
|
util["a" /* default */].ajax({
|
|
6002
|
-
url: api["
|
|
6033
|
+
url: api["ib" /* initModifyPassword */]
|
|
6003
6034
|
}).then(function (res) {
|
|
6004
6035
|
if (res.rCode === 0) {
|
|
6005
6036
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -6104,7 +6135,7 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
|
|
|
6104
6135
|
data.operationCheckCode = this.operationCheckCode;
|
|
6105
6136
|
util["a" /* default */].ajax({
|
|
6106
6137
|
method: 'post',
|
|
6107
|
-
url: api["
|
|
6138
|
+
url: api["mb" /* loginModifyPassword */],
|
|
6108
6139
|
data: data
|
|
6109
6140
|
}).then(function (res) {
|
|
6110
6141
|
_this5.submit = false;
|
|
@@ -6712,6 +6743,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6712
6743
|
//
|
|
6713
6744
|
//
|
|
6714
6745
|
//
|
|
6746
|
+
//
|
|
6747
|
+
//
|
|
6748
|
+
//
|
|
6715
6749
|
|
|
6716
6750
|
|
|
6717
6751
|
|
|
@@ -6731,7 +6765,7 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
6731
6765
|
//初始登录配置接口地址
|
|
6732
6766
|
initLogin: {
|
|
6733
6767
|
type: String,
|
|
6734
|
-
default: api["
|
|
6768
|
+
default: api["hb" /* initLogin */]
|
|
6735
6769
|
},
|
|
6736
6770
|
size: String,
|
|
6737
6771
|
mode: {
|
|
@@ -6863,7 +6897,7 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
6863
6897
|
},
|
|
6864
6898
|
getTwoFactorLoginCode: {
|
|
6865
6899
|
type: String,
|
|
6866
|
-
default: api["
|
|
6900
|
+
default: api["bb" /* getTwoFactorLoginCode */]
|
|
6867
6901
|
},
|
|
6868
6902
|
doTwoFactorLogin: {
|
|
6869
6903
|
type: String,
|
|
@@ -6888,10 +6922,7 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
6888
6922
|
default: true
|
|
6889
6923
|
},
|
|
6890
6924
|
storage: String,
|
|
6891
|
-
warning:
|
|
6892
|
-
type: [Boolean, String],
|
|
6893
|
-
default: false
|
|
6894
|
-
},
|
|
6925
|
+
warning: String,
|
|
6895
6926
|
copyrightStyle: {
|
|
6896
6927
|
type: Object,
|
|
6897
6928
|
default: function _default() {
|
|
@@ -6952,7 +6983,9 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
6952
6983
|
return [];
|
|
6953
6984
|
}
|
|
6954
6985
|
},
|
|
6955
|
-
caModel: String
|
|
6986
|
+
caModel: String,
|
|
6987
|
+
caInstallPath: String,
|
|
6988
|
+
showKeySelect: Boolean
|
|
6956
6989
|
},
|
|
6957
6990
|
computed: {
|
|
6958
6991
|
transform: function transform() {
|
|
@@ -6991,17 +7024,8 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
6991
7024
|
return window.location.href || window.href;
|
|
6992
7025
|
}
|
|
6993
7026
|
},
|
|
6994
|
-
|
|
6995
|
-
|
|
6996
|
-
return false;
|
|
6997
|
-
}
|
|
6998
|
-
if (this.warningText && this.warningText !== 'true' && this.warningText !== true) {
|
|
6999
|
-
return this.warningText;
|
|
7000
|
-
}
|
|
7001
|
-
if (this.warning && typeof this.warning === 'string') {
|
|
7002
|
-
return this.warning;
|
|
7003
|
-
}
|
|
7004
|
-
return '本系统为非涉密系统,禁止上传和处理任何涉密文件';
|
|
7027
|
+
showWarnInfo: function showWarnInfo() {
|
|
7028
|
+
return this.$slots.warning || this.$scopedSlots.warning ? false : this.warningText ? true : false;
|
|
7005
7029
|
},
|
|
7006
7030
|
modelLength: function modelLength() {
|
|
7007
7031
|
return Array.isArray(this.loginModel) ? this.loginModel.length : this.loginModel.split(',').length;
|
|
@@ -7050,7 +7074,6 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
7050
7074
|
types.forEach(function (item) {
|
|
7051
7075
|
icon.push(_this.iconfonts[item]);
|
|
7052
7076
|
});
|
|
7053
|
-
console.log(icon);
|
|
7054
7077
|
return icon;
|
|
7055
7078
|
},
|
|
7056
7079
|
isCaLogin: function isCaLogin() {
|
|
@@ -7180,7 +7203,7 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
7180
7203
|
checkCode: '',
|
|
7181
7204
|
showAssistance: false,
|
|
7182
7205
|
doAssistance: null,
|
|
7183
|
-
warningText:
|
|
7206
|
+
warningText: this.warning,
|
|
7184
7207
|
safes: {
|
|
7185
7208
|
paste: function paste(event) {
|
|
7186
7209
|
event.preventDefault();
|
|
@@ -7206,7 +7229,8 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
7206
7229
|
launchKey: 'day',
|
|
7207
7230
|
launchTime: 2000,
|
|
7208
7231
|
switchActive: this.switchsActive,
|
|
7209
|
-
loginDownloadApp: this.loginDownloadApps
|
|
7232
|
+
loginDownloadApp: this.loginDownloadApps,
|
|
7233
|
+
installPath: this.caInstallPath
|
|
7210
7234
|
};
|
|
7211
7235
|
},
|
|
7212
7236
|
beforeCreate: function beforeCreate() {
|
|
@@ -7622,6 +7646,9 @@ var ceshi = util["a" /* default */].getParams('ceshi');
|
|
|
7622
7646
|
if (res.subsystemExtend.loginDownloadApp) {
|
|
7623
7647
|
this.loginDownloadApp = res.subsystemExtend.loginDownloadApp;
|
|
7624
7648
|
}
|
|
7649
|
+
if (res.subsystemExtend.caInstallPath) {
|
|
7650
|
+
this.installPath = res.subsystemExtend.caInstallPath;
|
|
7651
|
+
}
|
|
7625
7652
|
}
|
|
7626
7653
|
this.passModifyModel = res.passModifyModel;
|
|
7627
7654
|
this.wechatAppid = res.wechatAppid;
|