eoss-ui 0.8.23 → 0.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button-group.js +228 -231
- package/lib/button.js +166 -153
- package/lib/calendar.js +2 -2
- package/lib/calogin.js +393 -379
- package/lib/card.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +162 -148
- package/lib/clients.js +2 -2
- package/lib/config/api.js +5 -0
- package/lib/data-table-form.js +162 -148
- package/lib/data-table.js +165 -151
- package/lib/date-picker.js +159 -146
- package/lib/dialog.js +166 -153
- package/lib/enable-drag.js +2 -2
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +1362 -891
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +159 -146
- package/lib/flow-list.js +174 -161
- package/lib/flow.js +501 -487
- package/lib/form.js +161 -148
- package/lib/handle-user.js +160 -147
- package/lib/handler.js +160 -147
- package/lib/icon.js +160 -147
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +159 -146
- package/lib/input.js +159 -146
- package/lib/label.js +2 -2
- package/lib/layout.js +2 -2
- package/lib/login.js +174 -160
- package/lib/main.js +523 -509
- package/lib/menu.js +2 -2
- package/lib/nav.js +159 -146
- package/lib/notify.js +157 -148
- package/lib/page.js +159 -146
- package/lib/pagination.js +159 -146
- package/lib/player.js +164 -151
- package/lib/qr-code.js +174 -161
- package/lib/radio-group.js +161 -148
- package/lib/retrial-auth.js +163 -150
- package/lib/select-ganged.js +161 -148
- package/lib/select.js +161 -148
- package/lib/selector-panel.js +178 -164
- package/lib/selector.js +161 -148
- package/lib/sizer.js +168 -155
- package/lib/steps.js +159 -146
- package/lib/switch.js +159 -146
- package/lib/table-form.js +159 -146
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +159 -146
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/tips.js +160 -147
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +159 -146
- package/lib/tree.js +160 -147
- package/lib/upload.js +698 -223
- package/lib/utils/util.js +5 -1
- package/lib/wujie.js +159 -146
- package/lib/wxlogin.js +159 -146
- package/package.json +2 -1
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/calendar/index.js +5 -5
- package/packages/calogin/index.js +5 -5
- package/packages/calogin/src/plugin.js +915 -915
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +46 -46
- package/packages/data-table/src/main.vue +1876 -1876
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enable-drag/index.js +5 -5
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/Circulate.vue +420 -420
- package/packages/flow/src/component/CustomPreset.vue +324 -324
- package/packages/flow/src/component/FreeCirculation.vue +245 -245
- package/packages/flow/src/component/Preset.vue +257 -257
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +763 -763
- package/packages/flow/src/freeStartFlow.vue +2898 -2898
- package/packages/flow/src/main.vue +4248 -4248
- package/packages/flow/src/processForm.vue +1806 -1806
- package/packages/flow/src/processReject.vue +311 -311
- package/packages/flow/src/reset.vue +952 -952
- package/packages/flow/src/startTaskRead.vue +698 -698
- package/packages/flow/src/supervise.vue +162 -162
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +750 -750
- package/packages/flow-list/index.js +5 -5
- package/packages/form/index.js +5 -5
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +137 -137
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +499 -499
- package/packages/icon/index.js +5 -5
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +2088 -2088
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +513 -513
- package/packages/main/src/simplicity/index.vue +2403 -2403
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/userinfo.vue +408 -408
- package/packages/main/src/simplicityTop/index.vue +2688 -2688
- package/packages/main/src/simplicityTop/userinfo.vue +408 -408
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +597 -597
- package/packages/nav/index.js +5 -5
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +299 -299
- package/packages/select/index.js +5 -5
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/index.js +5 -5
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +257 -257
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/gulpfile.js +25 -0
- package/packages/theme-chalk/src/base.scss +261 -261
- package/packages/theme-chalk/src/button-group.scss +176 -176
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enable-drag.scss +181 -181
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow.scss +376 -376
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +111 -111
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +7 -5
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1813 -1345
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +356 -351
- package/src/config/image.js +2 -2
- package/src/index.js +1 -1
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +6 -1
- package/src/utils/webSocket.js +107 -107
- package/packages/theme-chalk/lib/base.css +0 -1
- package/packages/theme-chalk/lib/button-group.css +0 -1
- package/packages/theme-chalk/lib/button.css +0 -1
- package/packages/theme-chalk/lib/calendar.css +0 -1
- package/packages/theme-chalk/lib/calogin.css +0 -0
- package/packages/theme-chalk/lib/card.css +0 -1
- package/packages/theme-chalk/lib/cascader.css +0 -0
- package/packages/theme-chalk/lib/checkbox-group.css +0 -1
- package/packages/theme-chalk/lib/clients.css +0 -1
- package/packages/theme-chalk/lib/data-table-form.css +0 -1
- package/packages/theme-chalk/lib/data-table.css +0 -1
- package/packages/theme-chalk/lib/date-picker.css +0 -1
- package/packages/theme-chalk/lib/dialog.css +0 -1
- package/packages/theme-chalk/lib/enable-drag.css +0 -1
- package/packages/theme-chalk/lib/enterprise.css +0 -1
- package/packages/theme-chalk/lib/error-page.css +0 -1
- package/packages/theme-chalk/lib/flow-chart.css +0 -0
- package/packages/theme-chalk/lib/flow-group.css +0 -1
- package/packages/theme-chalk/lib/flow-list.css +0 -1
- package/packages/theme-chalk/lib/flow.css +0 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/form.css +0 -1
- package/packages/theme-chalk/lib/handle-user.css +0 -1
- package/packages/theme-chalk/lib/handler.css +0 -1
- package/packages/theme-chalk/lib/icon.css +0 -1
- package/packages/theme-chalk/lib/icons.css +0 -1
- package/packages/theme-chalk/lib/index.css +0 -1
- package/packages/theme-chalk/lib/input-number.css +0 -0
- package/packages/theme-chalk/lib/input.css +0 -1
- package/packages/theme-chalk/lib/label.css +0 -1
- package/packages/theme-chalk/lib/layout.css +0 -1
- package/packages/theme-chalk/lib/login.css +0 -1
- package/packages/theme-chalk/lib/main.css +0 -1
- package/packages/theme-chalk/lib/menu.css +0 -1
- package/packages/theme-chalk/lib/nav.css +0 -1
- package/packages/theme-chalk/lib/notify.css +0 -0
- package/packages/theme-chalk/lib/page.css +0 -1
- package/packages/theme-chalk/lib/pagination.css +0 -1
- package/packages/theme-chalk/lib/player.css +0 -1
- package/packages/theme-chalk/lib/qr-code.css +0 -1
- package/packages/theme-chalk/lib/radio-group.css +0 -1
- package/packages/theme-chalk/lib/retrial-auth.css +0 -1
- package/packages/theme-chalk/lib/select-ganged.css +0 -1
- package/packages/theme-chalk/lib/select.css +0 -1
- package/packages/theme-chalk/lib/selector-panel.css +0 -1
- package/packages/theme-chalk/lib/selector.css +0 -1
- package/packages/theme-chalk/lib/simplicity-top.css +0 -1
- package/packages/theme-chalk/lib/simplicity.css +0 -1
- package/packages/theme-chalk/lib/sizer.css +0 -1
- package/packages/theme-chalk/lib/steps.css +0 -1
- package/packages/theme-chalk/lib/switch.css +0 -1
- package/packages/theme-chalk/lib/table-form.css +0 -0
- package/packages/theme-chalk/lib/tabs-panel.css +0 -0
- package/packages/theme-chalk/lib/tabs.css +0 -1
- package/packages/theme-chalk/lib/tips.css +0 -1
- package/packages/theme-chalk/lib/toolbar.css +0 -1
- package/packages/theme-chalk/lib/tree-group.css +0 -1
- package/packages/theme-chalk/lib/tree.css +0 -1
- package/packages/theme-chalk/lib/upload.css +0 -1
- package/packages/theme-chalk/lib/wujie.css +0 -0
- package/packages/theme-chalk/lib/wxlogin.css +0 -1
package/lib/calogin.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 = 43);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ([
|
|
@@ -540,7 +540,11 @@ var util_ajax = function ajax(_ref) {
|
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
|
-
|
|
543
|
+
var isFormData = typeof FormData !== 'undefined' && data instanceof FormData;
|
|
544
|
+
if (isFormData) {
|
|
545
|
+
// FormData(如分片上传):不做序列化,也不强制 content-type,
|
|
546
|
+
// 交给浏览器/axios 自动设置 multipart/form-data 及 boundary
|
|
547
|
+
} else if (method === 'post' && format) {
|
|
544
548
|
data = external_qs_default.a.stringify(data, formatConfig);
|
|
545
549
|
if (!header['content-type'] && !header['Content-Type']) {
|
|
546
550
|
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
@@ -1704,7 +1708,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1704
1708
|
* @param {function} callback - 回调函数
|
|
1705
1709
|
**/
|
|
1706
1710
|
var util_getMainConfig = function getMainConfig(callback) {
|
|
1707
|
-
util_ajax({ url: api["
|
|
1711
|
+
util_ajax({ url: api["Db" /* mainConfig */] }).then(function (res) {
|
|
1708
1712
|
if (res && res.rCode === 0) {
|
|
1709
1713
|
callback(res.results);
|
|
1710
1714
|
}
|
|
@@ -2530,7 +2534,7 @@ var isLogined = function () {
|
|
|
2530
2534
|
break;
|
|
2531
2535
|
}
|
|
2532
2536
|
|
|
2533
|
-
util_ajax({ method: 'post', url: api["
|
|
2537
|
+
util_ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
2534
2538
|
if (res.rCode === 0) {
|
|
2535
2539
|
removeStorage();
|
|
2536
2540
|
}
|
|
@@ -3999,171 +4003,175 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
3999
4003
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4000
4004
|
|
|
4001
4005
|
"use strict";
|
|
4002
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4003
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4004
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4005
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4006
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4007
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4006
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doCaLogin; });
|
|
4007
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return doUserLogin; });
|
|
4008
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return doQrLogin; });
|
|
4009
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return logout; });
|
|
4010
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return initLogin; });
|
|
4011
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return switchUserTo; });
|
|
4008
4012
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return changeImg; });
|
|
4009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4010
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getLoginCode; });
|
|
4014
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return doCodeLogin; });
|
|
4011
4015
|
/* unused harmony export updateCode */
|
|
4012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4013
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getModifyPassCode; });
|
|
4017
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return codeModifyPass; });
|
|
4018
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return loginModifyPassword; });
|
|
4015
4019
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
4016
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4017
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4018
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4019
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4020
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4021
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4022
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4023
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4024
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4025
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4026
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4027
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4028
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4029
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4030
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return initModifyPassword; });
|
|
4021
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return doWechatQrLogin; });
|
|
4022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return getTwoFactorLoginCode; });
|
|
4023
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return doTwoFactorLogin; });
|
|
4024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return initRetrialAuth; });
|
|
4025
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getRetrialAuthCode; });
|
|
4026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return scanCodeRetrialAuth; });
|
|
4027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return codeRetrialAuth; });
|
|
4028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doAssistanceQrLogin; });
|
|
4029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tc", function() { return userOnline; });
|
|
4030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return getUserAppWithTag; });
|
|
4031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return recordUserApp; });
|
|
4032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return mainConfig; });
|
|
4033
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return initUserSet; });
|
|
4034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Oc", function() { return updateUserInfo; });
|
|
4031
4035
|
/* unused harmony export getUserImgUrl */
|
|
4032
4036
|
/* unused harmony export getDoorIndex */
|
|
4033
4037
|
/* unused harmony export refreshOnlineUsers */
|
|
4034
4038
|
/* unused harmony export getQuickMenuIds */
|
|
4035
4039
|
/* unused harmony export getApplicationIdArray */
|
|
4036
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4037
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4040
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getComplexApplications; });
|
|
4041
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getComplexApplicationsNew; });
|
|
4038
4042
|
/* unused harmony export getUserCustomInfo */
|
|
4039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4040
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4041
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4042
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4043
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4044
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4045
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4046
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4047
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4048
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4049
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4050
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4051
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4052
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4053
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4054
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4055
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nc", function() { return updateUserCustomInfo; });
|
|
4044
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return sysMsgPage; });
|
|
4045
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return ignoreSysMsg; });
|
|
4046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return ignoreAllSysMsg; });
|
|
4047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return searchType; });
|
|
4048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return getSysParam; });
|
|
4049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getAdjunctProperties; });
|
|
4050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sc", function() { return uploads; });
|
|
4051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qc", function() { return uploadOnlyOne; });
|
|
4052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getAdjunctFileInfos; });
|
|
4053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rc", function() { return uploadSort; });
|
|
4054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return downloadByAdjunctId; });
|
|
4055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pc", function() { return uploadDownloads; });
|
|
4056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return previewAdjunct; });
|
|
4057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return previewAdjunct2; });
|
|
4058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return previewAdjunctOffice; });
|
|
4059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return delAdjunct; });
|
|
4060
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return chunkCheckFile; });
|
|
4061
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return chunkUploadChunk; });
|
|
4062
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return chunkMergeChunk; });
|
|
4063
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getDochubBucket; });
|
|
4056
4064
|
/* unused harmony export upload_updateClassify */
|
|
4057
4065
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
4058
4066
|
/* unused harmony export getPictureBase64 */
|
|
4059
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4060
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4061
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4062
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4063
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4064
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4067
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return getSelectorOrgTree; });
|
|
4068
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return getSelectorOrgDetail; });
|
|
4069
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getOrgMainTree; });
|
|
4070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return getSelectOrgsubids; });
|
|
4071
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return findSysCode; });
|
|
4072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getDictList; });
|
|
4065
4073
|
/* unused harmony export findUserBaseInfo */
|
|
4066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return gethelpdoc; });
|
|
4067
4075
|
/* unused harmony export getCurrentuser */
|
|
4068
4076
|
/* unused harmony export mainDetail */
|
|
4069
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4070
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4071
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4077
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return toStartFlow; });
|
|
4078
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return tempSave; });
|
|
4079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return commonOpion; });
|
|
4072
4080
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
4073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4074
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4075
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4076
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4077
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4078
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4079
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4080
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4081
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4082
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4083
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4084
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return editCommonOpion; });
|
|
4082
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return saveCommonOpinion; });
|
|
4083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mc", function() { return updateCommonOpinion; });
|
|
4084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return deleteCommonOpion; });
|
|
4085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getProcessDefList; });
|
|
4086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getNodeInfo; });
|
|
4087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return findCodeValues; });
|
|
4088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return findSysParam; });
|
|
4089
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return findSysCodes; });
|
|
4090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getNotificationMsg; });
|
|
4091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getHandleInfoHtml; });
|
|
4092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return taskHandleHtml; });
|
|
4085
4093
|
/* unused harmony export getView */
|
|
4086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4087
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4088
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4089
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4090
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4091
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4092
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4093
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4094
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4095
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4096
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4097
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4098
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4099
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4100
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4101
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4102
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4103
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4104
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4105
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4106
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return register; });
|
|
4095
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return pendedhistoryList; });
|
|
4096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return toTaskRejectHtml; });
|
|
4097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return taskRejectHtml; });
|
|
4098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return toStartTaskRead; });
|
|
4099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return toStartTaskReadIndex; });
|
|
4100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return taskReadHtml; });
|
|
4101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return rejectAndEnd; });
|
|
4102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return toSendMsg; });
|
|
4103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return sendMsg; });
|
|
4104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return endFlowHtml; });
|
|
4105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return handleInfo; });
|
|
4106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return loginUserInfo; });
|
|
4107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Uc", function() { return wss; });
|
|
4108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kc", function() { return topic; });
|
|
4109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getPresetCustomInfo; });
|
|
4110
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getPresetNodeInfo; });
|
|
4111
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gc", function() { return toTaskTransferIndex; });
|
|
4112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return taskTransfer; });
|
|
4113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return toPresetInfoListIndex; });
|
|
4114
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return deletePresetInfo; });
|
|
4107
4115
|
/* unused harmony export historyListJson */
|
|
4108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4109
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4111
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4112
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4113
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4114
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4115
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4117
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4118
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4119
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4120
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4121
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4122
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4123
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4124
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4125
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4126
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4127
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4128
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4129
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4130
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4131
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4132
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return pendedhistoryListJson; });
|
|
4117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return pressListJson; });
|
|
4118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return deleteFlow; });
|
|
4119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return modifyFlow; });
|
|
4120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return isCanStartSubFlow; });
|
|
4121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hc", function() { return toTaskUnionExamine; });
|
|
4122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return taskUnionExamine; });
|
|
4123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fc", function() { return toTaskTakeAdvice; });
|
|
4124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return taskTakeAdvice; });
|
|
4125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return toTaskStartDraft; });
|
|
4126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return toTaskSupervise; });
|
|
4127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ec", function() { return toTaskSuperviseSub; });
|
|
4128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return taskStartDraft; });
|
|
4129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return toTaskReview; });
|
|
4130
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return taskReview; });
|
|
4131
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ic", function() { return toTaskUnionSeal; });
|
|
4132
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return taskUnionSeal; });
|
|
4133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jc", function() { return toTwoOfficesDispatch; });
|
|
4134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lc", function() { return twoOfficesDispatch; });
|
|
4135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return toResetProcessIndex; });
|
|
4136
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return resetProcess; });
|
|
4137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return toTaskContinuationIndex; });
|
|
4138
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return taskContinuation; });
|
|
4139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getFreeStartFlowParams; });
|
|
4140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return freeStartFlowWithSubmitTask; });
|
|
4133
4141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return checkForeignOrgStartedCircularRead; });
|
|
4134
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4135
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4136
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4137
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4138
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return pendedhistoryListWithCircularReadJson; });
|
|
4143
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return fyListJson; });
|
|
4144
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return resetJson; });
|
|
4145
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return deletedListJson; });
|
|
4146
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return restoredHistory; });
|
|
4139
4147
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return batchDelete; });
|
|
4140
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4141
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4142
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4148
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return circularReadWithdraw; });
|
|
4149
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return taskReadWithDraw; });
|
|
4150
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
|
|
4143
4151
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkBusinessIdStartedReadTransferHandle; });
|
|
4144
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4145
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4152
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return sendList; });
|
|
4153
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return sendInfo; });
|
|
4146
4154
|
/* unused harmony export sendSave */
|
|
4147
4155
|
/* unused harmony export sendUpdate */
|
|
4148
4156
|
/* unused harmony export sendDelete */
|
|
4149
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4150
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4151
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4152
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4153
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4154
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4155
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4156
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4157
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4158
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4159
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4161
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4162
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4163
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4164
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4165
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4166
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4157
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return sendBatch; });
|
|
4158
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return formContents; });
|
|
4159
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return directStartTaskCircularRead; });
|
|
4160
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return endFlowAndStartTaskCircularRead; });
|
|
4161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getNodeInfoForStart; });
|
|
4162
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return freeStartFlow; });
|
|
4163
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return getUrgencyLevelChangedNotificationType; });
|
|
4164
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toFreeTaskCircularRead; });
|
|
4165
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return isCancelSecondConfirmation; });
|
|
4166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return freeTaskCircularRead; });
|
|
4167
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toDefinitionChangeSort; });
|
|
4168
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return setSort; });
|
|
4169
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return queryUseCommonMenu; });
|
|
4170
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getIndexCount; });
|
|
4171
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return getVoteMeetingNum; });
|
|
4172
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return getUserTipsInstanceNum; });
|
|
4173
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return getShareFilesReceiveCountNew; });
|
|
4174
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return queryChildMenuUrl; });
|
|
4167
4175
|
var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
|
|
4168
4176
|
// 登录
|
|
4169
4177
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -4228,6 +4236,11 @@ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
|
|
|
4228
4236
|
var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
|
|
4229
4237
|
var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
|
|
4230
4238
|
var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
|
|
4239
|
+
// 分片上传(dochub v2),优先使用 dochubConfig 下发的同名 url,这里仅作兜底
|
|
4240
|
+
var chunkCheckFile = '/dochub/v2/chunk/checkFile'; // 秒传检测/断点续传查询
|
|
4241
|
+
var chunkUploadChunk = '/dochub/v2/chunk/uploadChunk'; // 上传单个分片
|
|
4242
|
+
var chunkMergeChunk = '/dochub/v2/chunk/mergeChunk'; // 合并分片并写入文档库
|
|
4243
|
+
var getDochubBucket = '/dochub/v2/getBucket'; // 根据桶编码获取文档中台桶配置(含分片上传开关/参数)
|
|
4231
4244
|
var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
|
|
4232
4245
|
var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
|
|
4233
4246
|
var getPictureBase64 = '/main2/mecpfileManagement/getPictureBase64'; // 获取图片的base64编码
|
|
@@ -4655,7 +4668,8 @@ module.exports = require("lodash");
|
|
|
4655
4668
|
/* 39 */,
|
|
4656
4669
|
/* 40 */,
|
|
4657
4670
|
/* 41 */,
|
|
4658
|
-
/* 42
|
|
4671
|
+
/* 42 */,
|
|
4672
|
+
/* 43 */
|
|
4659
4673
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4660
4674
|
|
|
4661
4675
|
"use strict";
|
|
@@ -4693,8 +4707,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
4693
4707
|
|
|
4694
4708
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
4695
4709
|
|
|
4696
|
-
/**
|
|
4697
|
-
* JIT_GW_ExtInterface 模块,提供与客户端交互的功能
|
|
4710
|
+
/**
|
|
4711
|
+
* JIT_GW_ExtInterface 模块,提供与客户端交互的功能
|
|
4698
4712
|
*/
|
|
4699
4713
|
var plugin_CA_ExtInterface = function () {
|
|
4700
4714
|
function CA_ExtInterface() {
|
|
@@ -4707,11 +4721,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4707
4721
|
this.init();
|
|
4708
4722
|
}
|
|
4709
4723
|
|
|
4710
|
-
/**
|
|
4711
|
-
* 简单的 Object.assign 兼容 IE <= 11 的 polyfill
|
|
4712
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
|
4713
|
-
* @param {Object} target - 目标对象
|
|
4714
|
-
* @param {Object} options - 新的选项对象
|
|
4724
|
+
/**
|
|
4725
|
+
* 简单的 Object.assign 兼容 IE <= 11 的 polyfill
|
|
4726
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
|
4727
|
+
* @param {Object} target - 目标对象
|
|
4728
|
+
* @param {Object} options - 新的选项对象
|
|
4715
4729
|
*/
|
|
4716
4730
|
|
|
4717
4731
|
|
|
@@ -4726,8 +4740,8 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4726
4740
|
}
|
|
4727
4741
|
};
|
|
4728
4742
|
|
|
4729
|
-
/**
|
|
4730
|
-
* 检查当前会话的 WebSocket URL
|
|
4743
|
+
/**
|
|
4744
|
+
* 检查当前会话的 WebSocket URL
|
|
4731
4745
|
*/
|
|
4732
4746
|
|
|
4733
4747
|
|
|
@@ -4741,8 +4755,8 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4741
4755
|
}
|
|
4742
4756
|
};
|
|
4743
4757
|
|
|
4744
|
-
/**
|
|
4745
|
-
* 检查是否使用 ActiveX
|
|
4758
|
+
/**
|
|
4759
|
+
* 检查是否使用 ActiveX
|
|
4746
4760
|
*/
|
|
4747
4761
|
|
|
4748
4762
|
|
|
@@ -4754,11 +4768,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4754
4768
|
}
|
|
4755
4769
|
};
|
|
4756
4770
|
|
|
4757
|
-
/**
|
|
4758
|
-
* 扩展发送消息并等待响应
|
|
4759
|
-
* @param {string} operatorCmd - 操作命令
|
|
4760
|
-
* @param {string} sendMsg - 发送的消息
|
|
4761
|
-
* @returns {string} 响应消息
|
|
4771
|
+
/**
|
|
4772
|
+
* 扩展发送消息并等待响应
|
|
4773
|
+
* @param {string} operatorCmd - 操作命令
|
|
4774
|
+
* @param {string} sendMsg - 发送的消息
|
|
4775
|
+
* @returns {string} 响应消息
|
|
4762
4776
|
*/
|
|
4763
4777
|
|
|
4764
4778
|
|
|
@@ -4791,11 +4805,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4791
4805
|
return sendAndWaitMessageEx;
|
|
4792
4806
|
}();
|
|
4793
4807
|
|
|
4794
|
-
/**
|
|
4795
|
-
* 发送消息并等待响应
|
|
4796
|
-
* @param {string} wsurl - WebSocket URL
|
|
4797
|
-
* @param {string} sendMsg - 发送的消息
|
|
4798
|
-
* @returns {string} 响应消息
|
|
4808
|
+
/**
|
|
4809
|
+
* 发送消息并等待响应
|
|
4810
|
+
* @param {string} wsurl - WebSocket URL
|
|
4811
|
+
* @param {string} sendMsg - 发送的消息
|
|
4812
|
+
* @returns {string} 响应消息
|
|
4799
4813
|
*/
|
|
4800
4814
|
|
|
4801
4815
|
|
|
@@ -4819,9 +4833,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4819
4833
|
}
|
|
4820
4834
|
};
|
|
4821
4835
|
|
|
4822
|
-
/**
|
|
4823
|
-
* 配置选项
|
|
4824
|
-
* @param {Object} extendOption - 扩展选项
|
|
4836
|
+
/**
|
|
4837
|
+
* 配置选项
|
|
4838
|
+
* @param {Object} extendOption - 扩展选项
|
|
4825
4839
|
*/
|
|
4826
4840
|
|
|
4827
4841
|
|
|
@@ -4831,8 +4845,8 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4831
4845
|
}
|
|
4832
4846
|
};
|
|
4833
4847
|
|
|
4834
|
-
/**
|
|
4835
|
-
* 初始化
|
|
4848
|
+
/**
|
|
4849
|
+
* 初始化
|
|
4836
4850
|
*/
|
|
4837
4851
|
|
|
4838
4852
|
|
|
@@ -4840,9 +4854,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4840
4854
|
this.isUseActioveX();
|
|
4841
4855
|
};
|
|
4842
4856
|
|
|
4843
|
-
/**
|
|
4844
|
-
* 返回客户端的版本
|
|
4845
|
-
* @returns {string} 客户端版本
|
|
4857
|
+
/**
|
|
4858
|
+
* 返回客户端的版本
|
|
4859
|
+
* @returns {string} 客户端版本
|
|
4846
4860
|
*/
|
|
4847
4861
|
|
|
4848
4862
|
|
|
@@ -4855,13 +4869,13 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4855
4869
|
}
|
|
4856
4870
|
};
|
|
4857
4871
|
|
|
4858
|
-
/**
|
|
4859
|
-
* 下载客户端程序并安装
|
|
4860
|
-
* @param {string} bstrURL - 下载地址
|
|
4861
|
-
* @param {string} bstrHashValue - 哈希值
|
|
4862
|
-
* @param {boolean} bSync - 是否同步安装
|
|
4863
|
-
* @param {boolean} bOnlySSO - 是否仅安装 SSO
|
|
4864
|
-
* @returns {number} 安装结果
|
|
4872
|
+
/**
|
|
4873
|
+
* 下载客户端程序并安装
|
|
4874
|
+
* @param {string} bstrURL - 下载地址
|
|
4875
|
+
* @param {string} bstrHashValue - 哈希值
|
|
4876
|
+
* @param {boolean} bSync - 是否同步安装
|
|
4877
|
+
* @param {boolean} bOnlySSO - 是否仅安装 SSO
|
|
4878
|
+
* @returns {number} 安装结果
|
|
4865
4879
|
*/
|
|
4866
4880
|
|
|
4867
4881
|
|
|
@@ -4875,11 +4889,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4875
4889
|
}
|
|
4876
4890
|
};
|
|
4877
4891
|
|
|
4878
|
-
/**
|
|
4879
|
-
* 获取硬件指纹信息
|
|
4880
|
-
* @param {number} dwSign - 签名
|
|
4881
|
-
* @param {string} strGateWayIP - 网关 IP
|
|
4882
|
-
* @returns {string} 硬件指纹信息
|
|
4892
|
+
/**
|
|
4893
|
+
* 获取硬件指纹信息
|
|
4894
|
+
* @param {number} dwSign - 签名
|
|
4895
|
+
* @param {string} strGateWayIP - 网关 IP
|
|
4896
|
+
* @returns {string} 硬件指纹信息
|
|
4883
4897
|
*/
|
|
4884
4898
|
|
|
4885
4899
|
|
|
@@ -4893,12 +4907,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4893
4907
|
}
|
|
4894
4908
|
};
|
|
4895
4909
|
|
|
4896
|
-
/**
|
|
4897
|
-
* 设置转发策略和代填策略
|
|
4898
|
-
* @param {string} strProxyPolicy - 转发策略
|
|
4899
|
-
* @param {string} strSSOPolicy - 代填策略
|
|
4900
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
4901
|
-
* @returns {number} 设置结果
|
|
4910
|
+
/**
|
|
4911
|
+
* 设置转发策略和代填策略
|
|
4912
|
+
* @param {string} strProxyPolicy - 转发策略
|
|
4913
|
+
* @param {string} strSSOPolicy - 代填策略
|
|
4914
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
4915
|
+
* @returns {number} 设置结果
|
|
4902
4916
|
*/
|
|
4903
4917
|
|
|
4904
4918
|
|
|
@@ -4912,11 +4926,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4912
4926
|
}
|
|
4913
4927
|
};
|
|
4914
4928
|
|
|
4915
|
-
/**
|
|
4916
|
-
* 启动认证信息模块
|
|
4917
|
-
* @param {string} strFileName - 文件名
|
|
4918
|
-
* @param {string} strXmlData - XML 数据
|
|
4919
|
-
* @returns {string} 认证信息
|
|
4929
|
+
/**
|
|
4930
|
+
* 启动认证信息模块
|
|
4931
|
+
* @param {string} strFileName - 文件名
|
|
4932
|
+
* @param {string} strXmlData - XML 数据
|
|
4933
|
+
* @returns {string} 认证信息
|
|
4920
4934
|
*/
|
|
4921
4935
|
|
|
4922
4936
|
|
|
@@ -4930,10 +4944,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4930
4944
|
}
|
|
4931
4945
|
};
|
|
4932
4946
|
|
|
4933
|
-
/**
|
|
4934
|
-
* 打开 BS 应用
|
|
4935
|
-
* @param {string} strUrl - 应用 URL
|
|
4936
|
-
* @returns {number} 打开结果
|
|
4947
|
+
/**
|
|
4948
|
+
* 打开 BS 应用
|
|
4949
|
+
* @param {string} strUrl - 应用 URL
|
|
4950
|
+
* @returns {number} 打开结果
|
|
4937
4951
|
*/
|
|
4938
4952
|
|
|
4939
4953
|
|
|
@@ -4947,12 +4961,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4947
4961
|
}
|
|
4948
4962
|
};
|
|
4949
4963
|
|
|
4950
|
-
/**
|
|
4951
|
-
* 打开 CS 应用
|
|
4952
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
4953
|
-
* @param {string} strAppFlag - 应用标识
|
|
4954
|
-
* @param {string} strAppPath - 应用路径
|
|
4955
|
-
* @returns {number} 打开结果
|
|
4964
|
+
/**
|
|
4965
|
+
* 打开 CS 应用
|
|
4966
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
4967
|
+
* @param {string} strAppFlag - 应用标识
|
|
4968
|
+
* @param {string} strAppPath - 应用路径
|
|
4969
|
+
* @returns {number} 打开结果
|
|
4956
4970
|
*/
|
|
4957
4971
|
|
|
4958
4972
|
|
|
@@ -4966,13 +4980,13 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4966
4980
|
}
|
|
4967
4981
|
};
|
|
4968
4982
|
|
|
4969
|
-
/**
|
|
4970
|
-
* 设置自动更新策略
|
|
4971
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
4972
|
-
* @param {number} nGatewayPort - 网关端口
|
|
4973
|
-
* @param {string} strUserToken - 用户令牌
|
|
4974
|
-
* @param {number} updatedelay - 更新延迟
|
|
4975
|
-
* @returns {number} 设置结果
|
|
4983
|
+
/**
|
|
4984
|
+
* 设置自动更新策略
|
|
4985
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
4986
|
+
* @param {number} nGatewayPort - 网关端口
|
|
4987
|
+
* @param {string} strUserToken - 用户令牌
|
|
4988
|
+
* @param {number} updatedelay - 更新延迟
|
|
4989
|
+
* @returns {number} 设置结果
|
|
4976
4990
|
*/
|
|
4977
4991
|
|
|
4978
4992
|
|
|
@@ -4986,10 +5000,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
4986
5000
|
}
|
|
4987
5001
|
};
|
|
4988
5002
|
|
|
4989
|
-
/**
|
|
4990
|
-
* 获取客户端 IP
|
|
4991
|
-
* @param {string} strGatewayIP - 网关 IP
|
|
4992
|
-
* @returns {string} 客户端 IP
|
|
5003
|
+
/**
|
|
5004
|
+
* 获取客户端 IP
|
|
5005
|
+
* @param {string} strGatewayIP - 网关 IP
|
|
5006
|
+
* @returns {string} 客户端 IP
|
|
4993
5007
|
*/
|
|
4994
5008
|
|
|
4995
5009
|
|
|
@@ -5003,10 +5017,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5003
5017
|
}
|
|
5004
5018
|
};
|
|
5005
5019
|
|
|
5006
|
-
/**
|
|
5007
|
-
* 登出网关
|
|
5008
|
-
* @param {string} strServerIP - 服务器 IP
|
|
5009
|
-
* @returns {number} 登出结果
|
|
5020
|
+
/**
|
|
5021
|
+
* 登出网关
|
|
5022
|
+
* @param {string} strServerIP - 服务器 IP
|
|
5023
|
+
* @returns {number} 登出结果
|
|
5010
5024
|
*/
|
|
5011
5025
|
|
|
5012
5026
|
|
|
@@ -5020,11 +5034,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5020
5034
|
}
|
|
5021
5035
|
};
|
|
5022
5036
|
|
|
5023
|
-
/**
|
|
5024
|
-
* 运行安装包
|
|
5025
|
-
* @param {number} lRunType - 运行类型
|
|
5026
|
-
* @param {boolean} bIsOnlySSO - 是否仅安装 SSO
|
|
5027
|
-
* @returns {number} 运行结果
|
|
5037
|
+
/**
|
|
5038
|
+
* 运行安装包
|
|
5039
|
+
* @param {number} lRunType - 运行类型
|
|
5040
|
+
* @param {boolean} bIsOnlySSO - 是否仅安装 SSO
|
|
5041
|
+
* @returns {number} 运行结果
|
|
5028
5042
|
*/
|
|
5029
5043
|
|
|
5030
5044
|
|
|
@@ -5038,9 +5052,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5038
5052
|
}
|
|
5039
5053
|
};
|
|
5040
5054
|
|
|
5041
|
-
/**
|
|
5042
|
-
* 获取下载进度
|
|
5043
|
-
* @returns {number} 下载进度
|
|
5055
|
+
/**
|
|
5056
|
+
* 获取下载进度
|
|
5057
|
+
* @returns {number} 下载进度
|
|
5044
5058
|
*/
|
|
5045
5059
|
|
|
5046
5060
|
|
|
@@ -5054,9 +5068,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5054
5068
|
}
|
|
5055
5069
|
};
|
|
5056
5070
|
|
|
5057
|
-
/**
|
|
5058
|
-
* 是否安装完成
|
|
5059
|
-
* @returns {boolean} 安装完成状态
|
|
5071
|
+
/**
|
|
5072
|
+
* 是否安装完成
|
|
5073
|
+
* @returns {boolean} 安装完成状态
|
|
5060
5074
|
*/
|
|
5061
5075
|
|
|
5062
5076
|
|
|
@@ -5070,11 +5084,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5070
5084
|
}
|
|
5071
5085
|
};
|
|
5072
5086
|
|
|
5073
|
-
/**
|
|
5074
|
-
* 初始化签包对象
|
|
5075
|
-
* @param {string} strAlgType - 算法类型
|
|
5076
|
-
* @param {string} strAuxParam - 辅助参数
|
|
5077
|
-
* @returns {number} 初始化结果
|
|
5087
|
+
/**
|
|
5088
|
+
* 初始化签包对象
|
|
5089
|
+
* @param {string} strAlgType - 算法类型
|
|
5090
|
+
* @param {string} strAuxParam - 辅助参数
|
|
5091
|
+
* @returns {number} 初始化结果
|
|
5078
5092
|
*/
|
|
5079
5093
|
|
|
5080
5094
|
|
|
@@ -5088,10 +5102,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5088
5102
|
}
|
|
5089
5103
|
};
|
|
5090
5104
|
|
|
5091
|
-
/**
|
|
5092
|
-
* 设置摘要算法
|
|
5093
|
-
* @param {string} strDigestAlg - 摘要算法
|
|
5094
|
-
* @returns {number} 设置结果
|
|
5105
|
+
/**
|
|
5106
|
+
* 设置摘要算法
|
|
5107
|
+
* @param {string} strDigestAlg - 摘要算法
|
|
5108
|
+
* @returns {number} 设置结果
|
|
5095
5109
|
*/
|
|
5096
5110
|
|
|
5097
5111
|
|
|
@@ -5105,10 +5119,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5105
5119
|
}
|
|
5106
5120
|
};
|
|
5107
5121
|
|
|
5108
|
-
/**
|
|
5109
|
-
* 设置单证书是否弹出对话框
|
|
5110
|
-
* @param {number} isChoose - 是否弹出对话框
|
|
5111
|
-
* @returns {number} 设置结果
|
|
5122
|
+
/**
|
|
5123
|
+
* 设置单证书是否弹出对话框
|
|
5124
|
+
* @param {number} isChoose - 是否弹出对话框
|
|
5125
|
+
* @returns {number} 设置结果
|
|
5112
5126
|
*/
|
|
5113
5127
|
|
|
5114
5128
|
|
|
@@ -5122,11 +5136,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5122
5136
|
}
|
|
5123
5137
|
};
|
|
5124
5138
|
|
|
5125
|
-
/**
|
|
5126
|
-
* 添加证书过滤条件
|
|
5127
|
-
* @param {number} ulType - 过滤类型
|
|
5128
|
-
* @param {string} strValue - 过滤值
|
|
5129
|
-
* @returns {number} 添加结果
|
|
5139
|
+
/**
|
|
5140
|
+
* 添加证书过滤条件
|
|
5141
|
+
* @param {number} ulType - 过滤类型
|
|
5142
|
+
* @param {string} strValue - 过滤值
|
|
5143
|
+
* @returns {number} 添加结果
|
|
5130
5144
|
*/
|
|
5131
5145
|
|
|
5132
5146
|
|
|
@@ -5140,9 +5154,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5140
5154
|
}
|
|
5141
5155
|
};
|
|
5142
5156
|
|
|
5143
|
-
/**
|
|
5144
|
-
* 清除所有过滤条件
|
|
5145
|
-
* @returns {number} 清除结果
|
|
5157
|
+
/**
|
|
5158
|
+
* 清除所有过滤条件
|
|
5159
|
+
* @returns {number} 清除结果
|
|
5146
5160
|
*/
|
|
5147
5161
|
|
|
5148
5162
|
|
|
@@ -5156,10 +5170,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5156
5170
|
}
|
|
5157
5171
|
};
|
|
5158
5172
|
|
|
5159
|
-
/**
|
|
5160
|
-
* P1 签名
|
|
5161
|
-
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
5162
|
-
* @returns {string} 签名结果
|
|
5173
|
+
/**
|
|
5174
|
+
* P1 签名
|
|
5175
|
+
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
5176
|
+
* @returns {string} 签名结果
|
|
5163
5177
|
*/
|
|
5164
5178
|
|
|
5165
5179
|
|
|
@@ -5173,10 +5187,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5173
5187
|
}
|
|
5174
5188
|
};
|
|
5175
5189
|
|
|
5176
|
-
/**
|
|
5177
|
-
* P1 签名字符串
|
|
5178
|
-
* @param {string} strValue - 待签名的字符串
|
|
5179
|
-
* @returns {string} 签名结果
|
|
5190
|
+
/**
|
|
5191
|
+
* P1 签名字符串
|
|
5192
|
+
* @param {string} strValue - 待签名的字符串
|
|
5193
|
+
* @returns {string} 签名结果
|
|
5180
5194
|
*/
|
|
5181
5195
|
|
|
5182
5196
|
|
|
@@ -5190,12 +5204,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5190
5204
|
}
|
|
5191
5205
|
};
|
|
5192
5206
|
|
|
5193
|
-
/**
|
|
5194
|
-
* P7 签名
|
|
5195
|
-
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
5196
|
-
* @param {boolean} isDetach - 是否分离签名
|
|
5197
|
-
* @param {boolean} isIncludeCert - 是否包含证书
|
|
5198
|
-
* @returns {string} 签名结果
|
|
5207
|
+
/**
|
|
5208
|
+
* P7 签名
|
|
5209
|
+
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
5210
|
+
* @param {boolean} isDetach - 是否分离签名
|
|
5211
|
+
* @param {boolean} isIncludeCert - 是否包含证书
|
|
5212
|
+
* @returns {string} 签名结果
|
|
5199
5213
|
*/
|
|
5200
5214
|
|
|
5201
5215
|
|
|
@@ -5209,12 +5223,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5209
5223
|
}
|
|
5210
5224
|
};
|
|
5211
5225
|
|
|
5212
|
-
/**
|
|
5213
|
-
* P7 签名字符串
|
|
5214
|
-
* @param {string} strValue - 待签名的字符串
|
|
5215
|
-
* @param {boolean} isDetach - 是否分离签名
|
|
5216
|
-
* @param {boolean} isIncludeCert - 是否包含证书
|
|
5217
|
-
* @returns {string} 签名结果
|
|
5226
|
+
/**
|
|
5227
|
+
* P7 签名字符串
|
|
5228
|
+
* @param {string} strValue - 待签名的字符串
|
|
5229
|
+
* @param {boolean} isDetach - 是否分离签名
|
|
5230
|
+
* @param {boolean} isIncludeCert - 是否包含证书
|
|
5231
|
+
* @returns {string} 签名结果
|
|
5218
5232
|
*/
|
|
5219
5233
|
|
|
5220
5234
|
|
|
@@ -5228,9 +5242,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5228
5242
|
}
|
|
5229
5243
|
};
|
|
5230
5244
|
|
|
5231
|
-
/**
|
|
5232
|
-
* 释放签名对象
|
|
5233
|
-
* @returns {number} 释放结果
|
|
5245
|
+
/**
|
|
5246
|
+
* 释放签名对象
|
|
5247
|
+
* @returns {number} 释放结果
|
|
5234
5248
|
*/
|
|
5235
5249
|
|
|
5236
5250
|
|
|
@@ -5244,9 +5258,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5244
5258
|
}
|
|
5245
5259
|
};
|
|
5246
5260
|
|
|
5247
|
-
/**
|
|
5248
|
-
* 获取签名版本
|
|
5249
|
-
* @returns {string} 签名版本
|
|
5261
|
+
/**
|
|
5262
|
+
* 获取签名版本
|
|
5263
|
+
* @returns {string} 签名版本
|
|
5250
5264
|
*/
|
|
5251
5265
|
|
|
5252
5266
|
|
|
@@ -5260,9 +5274,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5260
5274
|
}
|
|
5261
5275
|
};
|
|
5262
5276
|
|
|
5263
|
-
/**
|
|
5264
|
-
* 获取签名证书
|
|
5265
|
-
* @returns {string} 签名证书
|
|
5277
|
+
/**
|
|
5278
|
+
* 获取签名证书
|
|
5279
|
+
* @returns {string} 签名证书
|
|
5266
5280
|
*/
|
|
5267
5281
|
|
|
5268
5282
|
|
|
@@ -5276,9 +5290,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5276
5290
|
}
|
|
5277
5291
|
};
|
|
5278
5292
|
|
|
5279
|
-
/**
|
|
5280
|
-
* 获取错误码
|
|
5281
|
-
* @returns {number} 错误码
|
|
5293
|
+
/**
|
|
5294
|
+
* 获取错误码
|
|
5295
|
+
* @returns {number} 错误码
|
|
5282
5296
|
*/
|
|
5283
5297
|
|
|
5284
5298
|
|
|
@@ -5292,9 +5306,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5292
5306
|
}
|
|
5293
5307
|
};
|
|
5294
5308
|
|
|
5295
|
-
/**
|
|
5296
|
-
* 获取错误信息
|
|
5297
|
-
* @returns {string} 错误信息
|
|
5309
|
+
/**
|
|
5310
|
+
* 获取错误信息
|
|
5311
|
+
* @returns {string} 错误信息
|
|
5298
5312
|
*/
|
|
5299
5313
|
|
|
5300
5314
|
|
|
@@ -5308,9 +5322,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5308
5322
|
}
|
|
5309
5323
|
};
|
|
5310
5324
|
|
|
5311
|
-
/**
|
|
5312
|
-
* 销毁认证对象
|
|
5313
|
-
* @returns {number} 销毁结果
|
|
5325
|
+
/**
|
|
5326
|
+
* 销毁认证对象
|
|
5327
|
+
* @returns {number} 销毁结果
|
|
5314
5328
|
*/
|
|
5315
5329
|
|
|
5316
5330
|
|
|
@@ -5324,9 +5338,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5324
5338
|
}
|
|
5325
5339
|
};
|
|
5326
5340
|
|
|
5327
|
-
/**
|
|
5328
|
-
* 获取证书类型
|
|
5329
|
-
* @returns {string} 证书类型
|
|
5341
|
+
/**
|
|
5342
|
+
* 获取证书类型
|
|
5343
|
+
* @returns {string} 证书类型
|
|
5330
5344
|
*/
|
|
5331
5345
|
|
|
5332
5346
|
|
|
@@ -5340,9 +5354,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5340
5354
|
}
|
|
5341
5355
|
};
|
|
5342
5356
|
|
|
5343
|
-
/**
|
|
5344
|
-
* 获取签名摘要算法
|
|
5345
|
-
* @returns {string} 签名摘要算法
|
|
5357
|
+
/**
|
|
5358
|
+
* 获取签名摘要算法
|
|
5359
|
+
* @returns {string} 签名摘要算法
|
|
5346
5360
|
*/
|
|
5347
5361
|
|
|
5348
5362
|
|
|
@@ -5356,11 +5370,11 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5356
5370
|
}
|
|
5357
5371
|
};
|
|
5358
5372
|
|
|
5359
|
-
/**
|
|
5360
|
-
* 使能调用序列
|
|
5361
|
-
* @param {boolean} bCallQueueEnable - 是否使能调用序列
|
|
5362
|
-
* @param {boolean} bHeadInfoEnable - 是否使能头部信息
|
|
5363
|
-
* @returns {number} 使能结果
|
|
5373
|
+
/**
|
|
5374
|
+
* 使能调用序列
|
|
5375
|
+
* @param {boolean} bCallQueueEnable - 是否使能调用序列
|
|
5376
|
+
* @param {boolean} bHeadInfoEnable - 是否使能头部信息
|
|
5377
|
+
* @returns {number} 使能结果
|
|
5364
5378
|
*/
|
|
5365
5379
|
|
|
5366
5380
|
|
|
@@ -5374,9 +5388,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5374
5388
|
}
|
|
5375
5389
|
};
|
|
5376
5390
|
|
|
5377
|
-
/**
|
|
5378
|
-
* 清空调用序列结果
|
|
5379
|
-
* @returns {number} 清空调用序列结果
|
|
5391
|
+
/**
|
|
5392
|
+
* 清空调用序列结果
|
|
5393
|
+
* @returns {number} 清空调用序列结果
|
|
5380
5394
|
*/
|
|
5381
5395
|
|
|
5382
5396
|
|
|
@@ -5390,9 +5404,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5390
5404
|
}
|
|
5391
5405
|
};
|
|
5392
5406
|
|
|
5393
|
-
/**
|
|
5394
|
-
* 获取调用序列结果
|
|
5395
|
-
* @returns {string} 调用序列结果
|
|
5407
|
+
/**
|
|
5408
|
+
* 获取调用序列结果
|
|
5409
|
+
* @returns {string} 调用序列结果
|
|
5396
5410
|
*/
|
|
5397
5411
|
|
|
5398
5412
|
|
|
@@ -5406,12 +5420,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5406
5420
|
}
|
|
5407
5421
|
};
|
|
5408
5422
|
|
|
5409
|
-
/**
|
|
5410
|
-
* 客户端安全策略检查
|
|
5411
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
5412
|
-
* @param {number} usGatewayPort - 网关端口
|
|
5413
|
-
* @param {string} strSecurityPolicys - 安全策略
|
|
5414
|
-
* @returns {boolean} 检查结果
|
|
5423
|
+
/**
|
|
5424
|
+
* 客户端安全策略检查
|
|
5425
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
5426
|
+
* @param {number} usGatewayPort - 网关端口
|
|
5427
|
+
* @param {string} strSecurityPolicys - 安全策略
|
|
5428
|
+
* @returns {boolean} 检查结果
|
|
5415
5429
|
*/
|
|
5416
5430
|
|
|
5417
5431
|
|
|
@@ -5425,9 +5439,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5425
5439
|
}
|
|
5426
5440
|
};
|
|
5427
5441
|
|
|
5428
|
-
/**
|
|
5429
|
-
* 获取通讯协议版本
|
|
5430
|
-
* @returns {string} 通讯协议版本
|
|
5442
|
+
/**
|
|
5443
|
+
* 获取通讯协议版本
|
|
5444
|
+
* @returns {string} 通讯协议版本
|
|
5431
5445
|
*/
|
|
5432
5446
|
|
|
5433
5447
|
|
|
@@ -5441,13 +5455,13 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5441
5455
|
}
|
|
5442
5456
|
};
|
|
5443
5457
|
|
|
5444
|
-
/**
|
|
5445
|
-
* 修改 Key 的 Pin 码
|
|
5446
|
-
* @param {string} strCertSn - 证书序列号
|
|
5447
|
-
* @param {number} lPinCodeType - Pin 码类型
|
|
5448
|
-
* @param {string} strCurPinCode - 当前 Pin 码
|
|
5449
|
-
* @param {string} strNewPinCode - 新 Pin 码
|
|
5450
|
-
* @returns {number} 修改结果
|
|
5458
|
+
/**
|
|
5459
|
+
* 修改 Key 的 Pin 码
|
|
5460
|
+
* @param {string} strCertSn - 证书序列号
|
|
5461
|
+
* @param {number} lPinCodeType - Pin 码类型
|
|
5462
|
+
* @param {string} strCurPinCode - 当前 Pin 码
|
|
5463
|
+
* @param {string} strNewPinCode - 新 Pin 码
|
|
5464
|
+
* @returns {number} 修改结果
|
|
5451
5465
|
*/
|
|
5452
5466
|
|
|
5453
5467
|
|
|
@@ -5461,10 +5475,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5461
5475
|
}
|
|
5462
5476
|
};
|
|
5463
5477
|
|
|
5464
|
-
/**
|
|
5465
|
-
* 等待策略设置完毕
|
|
5466
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
5467
|
-
* @returns {number} 等待结果
|
|
5478
|
+
/**
|
|
5479
|
+
* 等待策略设置完毕
|
|
5480
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
5481
|
+
* @returns {number} 等待结果
|
|
5468
5482
|
*/
|
|
5469
5483
|
|
|
5470
5484
|
|
|
@@ -5478,10 +5492,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5478
5492
|
}
|
|
5479
5493
|
};
|
|
5480
5494
|
|
|
5481
|
-
/**
|
|
5482
|
-
* 获取会话 Token
|
|
5483
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
5484
|
-
* @returns {string} 会话 Token
|
|
5495
|
+
/**
|
|
5496
|
+
* 获取会话 Token
|
|
5497
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
5498
|
+
* @returns {string} 会话 Token
|
|
5485
5499
|
*/
|
|
5486
5500
|
|
|
5487
5501
|
|
|
@@ -5495,9 +5509,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5495
5509
|
}
|
|
5496
5510
|
};
|
|
5497
5511
|
|
|
5498
|
-
/**
|
|
5499
|
-
* 获取控件版本
|
|
5500
|
-
* @returns {string} 控件版本
|
|
5512
|
+
/**
|
|
5513
|
+
* 获取控件版本
|
|
5514
|
+
* @returns {string} 控件版本
|
|
5501
5515
|
*/
|
|
5502
5516
|
|
|
5503
5517
|
|
|
@@ -5511,10 +5525,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5511
5525
|
}
|
|
5512
5526
|
};
|
|
5513
5527
|
|
|
5514
|
-
/**
|
|
5515
|
-
* 设置语言资源
|
|
5516
|
-
* @param {string} strLanguage - 语言资源
|
|
5517
|
-
* @returns {number} 设置结果
|
|
5528
|
+
/**
|
|
5529
|
+
* 设置语言资源
|
|
5530
|
+
* @param {string} strLanguage - 语言资源
|
|
5531
|
+
* @returns {number} 设置结果
|
|
5518
5532
|
*/
|
|
5519
5533
|
|
|
5520
5534
|
|
|
@@ -5528,12 +5542,12 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5528
5542
|
}
|
|
5529
5543
|
};
|
|
5530
5544
|
|
|
5531
|
-
/**
|
|
5532
|
-
* 获取用户属性
|
|
5533
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
5534
|
-
* @param {string} strAppFlag - 应用标识
|
|
5535
|
-
* @param {string} strAttributeName - 属性名称
|
|
5536
|
-
* @returns {string} 用户属性值
|
|
5545
|
+
/**
|
|
5546
|
+
* 获取用户属性
|
|
5547
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
5548
|
+
* @param {string} strAppFlag - 应用标识
|
|
5549
|
+
* @param {string} strAttributeName - 属性名称
|
|
5550
|
+
* @returns {string} 用户属性值
|
|
5537
5551
|
*/
|
|
5538
5552
|
|
|
5539
5553
|
|
|
@@ -5547,9 +5561,9 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5547
5561
|
}
|
|
5548
5562
|
};
|
|
5549
5563
|
|
|
5550
|
-
/**
|
|
5551
|
-
* 获取签名加密 PIN 码
|
|
5552
|
-
* @returns {string} 签名加密 PIN 码
|
|
5564
|
+
/**
|
|
5565
|
+
* 获取签名加密 PIN 码
|
|
5566
|
+
* @returns {string} 签名加密 PIN 码
|
|
5553
5567
|
*/
|
|
5554
5568
|
|
|
5555
5569
|
|
|
@@ -5562,20 +5576,20 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5562
5576
|
return result.value;
|
|
5563
5577
|
}
|
|
5564
5578
|
};
|
|
5565
|
-
/*
|
|
5566
|
-
*曙光四川CA
|
|
5567
|
-
*'SOF_GetUserList' 证书列表
|
|
5568
|
-
*'SOF_ExportUserCert' 导出证书
|
|
5569
|
-
*'SOF_GetCertInfo': 获取证书信息
|
|
5570
|
-
*'SOF_GenRandom': 生成随机数
|
|
5571
|
-
*'SOF_SignData': 获取证书签名
|
|
5572
|
-
*'SOF_Login': 登录证书
|
|
5573
|
-
*'SOF_GetPinRetryCount': 剩余次数
|
|
5579
|
+
/*
|
|
5580
|
+
*曙光四川CA
|
|
5581
|
+
*'SOF_GetUserList' 证书列表
|
|
5582
|
+
*'SOF_ExportUserCert' 导出证书
|
|
5583
|
+
*'SOF_GetCertInfo': 获取证书信息
|
|
5584
|
+
*'SOF_GenRandom': 生成随机数
|
|
5585
|
+
*'SOF_SignData': 获取证书签名
|
|
5586
|
+
*'SOF_Login': 登录证书
|
|
5587
|
+
*'SOF_GetPinRetryCount': 剩余次数
|
|
5574
5588
|
*/
|
|
5575
|
-
/**
|
|
5576
|
-
*
|
|
5577
|
-
* 获取webSocket消息
|
|
5578
|
-
* @returns {string}
|
|
5589
|
+
/**
|
|
5590
|
+
*
|
|
5591
|
+
* 获取webSocket消息
|
|
5592
|
+
* @returns {string}
|
|
5579
5593
|
*/
|
|
5580
5594
|
|
|
5581
5595
|
|
|
@@ -5611,10 +5625,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5611
5625
|
};
|
|
5612
5626
|
});
|
|
5613
5627
|
};
|
|
5614
|
-
/**
|
|
5615
|
-
*
|
|
5616
|
-
* base64解码
|
|
5617
|
-
* @returns {string} base64解码后的字符串
|
|
5628
|
+
/**
|
|
5629
|
+
*
|
|
5630
|
+
* base64解码
|
|
5631
|
+
* @returns {string} base64解码后的字符串
|
|
5618
5632
|
*/
|
|
5619
5633
|
|
|
5620
5634
|
|
|
@@ -5649,10 +5663,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5649
5663
|
val = this.utf8_decode(val);
|
|
5650
5664
|
return val;
|
|
5651
5665
|
};
|
|
5652
|
-
/**
|
|
5653
|
-
*
|
|
5654
|
-
* base64编码
|
|
5655
|
-
* @returns {string} base64编码后的字符串
|
|
5666
|
+
/**
|
|
5667
|
+
*
|
|
5668
|
+
* base64编码
|
|
5669
|
+
* @returns {string} base64编码后的字符串
|
|
5656
5670
|
*/
|
|
5657
5671
|
|
|
5658
5672
|
|
|
@@ -5685,10 +5699,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5685
5699
|
}
|
|
5686
5700
|
return val;
|
|
5687
5701
|
};
|
|
5688
|
-
/**
|
|
5689
|
-
*
|
|
5690
|
-
* utf8解码
|
|
5691
|
-
* @returns {string} utf8解码后的字符串
|
|
5702
|
+
/**
|
|
5703
|
+
*
|
|
5704
|
+
* utf8解码
|
|
5705
|
+
* @returns {string} utf8解码后的字符串
|
|
5692
5706
|
*/
|
|
5693
5707
|
|
|
5694
5708
|
|
|
@@ -5717,10 +5731,10 @@ var plugin_CA_ExtInterface = function () {
|
|
|
5717
5731
|
}
|
|
5718
5732
|
return string;
|
|
5719
5733
|
};
|
|
5720
|
-
/**
|
|
5721
|
-
*
|
|
5722
|
-
* utf8编码
|
|
5723
|
-
* @returns {string} utf8编码后的字符串
|
|
5734
|
+
/**
|
|
5735
|
+
*
|
|
5736
|
+
* utf8编码
|
|
5737
|
+
* @returns {string} utf8编码后的字符串
|
|
5724
5738
|
*/
|
|
5725
5739
|
|
|
5726
5740
|
|