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/main.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 = 36);
|
|
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编码
|
|
@@ -4683,7 +4696,7 @@ var nightImg = 'data:image/jpeg;base64,/9j/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBA
|
|
|
4683
4696
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4684
4697
|
|
|
4685
4698
|
|
|
4686
|
-
var content = __webpack_require__(
|
|
4699
|
+
var content = __webpack_require__(30);
|
|
4687
4700
|
|
|
4688
4701
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
4689
4702
|
|
|
@@ -4697,7 +4710,7 @@ var options = {"hmr":true}
|
|
|
4697
4710
|
options.transform = transform
|
|
4698
4711
|
options.insertInto = undefined;
|
|
4699
4712
|
|
|
4700
|
-
var update = __webpack_require__(
|
|
4713
|
+
var update = __webpack_require__(32)(content, options);
|
|
4701
4714
|
|
|
4702
4715
|
if(content.locals) module.exports = content.locals;
|
|
4703
4716
|
|
|
@@ -4710,7 +4723,8 @@ if(false) {}
|
|
|
4710
4723
|
/* 25 */,
|
|
4711
4724
|
/* 26 */,
|
|
4712
4725
|
/* 27 */,
|
|
4713
|
-
/* 28
|
|
4726
|
+
/* 28 */,
|
|
4727
|
+
/* 29 */
|
|
4714
4728
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4715
4729
|
|
|
4716
4730
|
"use strict";
|
|
@@ -4720,17 +4734,17 @@ if(false) {}
|
|
|
4720
4734
|
|
|
4721
4735
|
|
|
4722
4736
|
/***/ }),
|
|
4723
|
-
/*
|
|
4737
|
+
/* 30 */
|
|
4724
4738
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4725
4739
|
|
|
4726
|
-
exports = module.exports = __webpack_require__(
|
|
4740
|
+
exports = module.exports = __webpack_require__(31)(false);
|
|
4727
4741
|
// Module
|
|
4728
4742
|
exports.push([module.i, "\n.es-setting-top-nav-side[data-v-1b15d77c]::before {\r\n content: '';\r\n display: block;\r\n position: absolute;\r\n left: 0;\r\n width: 8px;\r\n top: 10px;\r\n bottom: 0;\r\n z-index: 2;\r\n background-color: rgb(0, 80, 179);\n}\r\n", ""]);
|
|
4729
4743
|
|
|
4730
4744
|
|
|
4731
4745
|
|
|
4732
4746
|
/***/ }),
|
|
4733
|
-
/*
|
|
4747
|
+
/* 31 */
|
|
4734
4748
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4735
4749
|
|
|
4736
4750
|
"use strict";
|
|
@@ -4821,7 +4835,7 @@ function toComment(sourceMap) {
|
|
|
4821
4835
|
}
|
|
4822
4836
|
|
|
4823
4837
|
/***/ }),
|
|
4824
|
-
/*
|
|
4838
|
+
/* 32 */
|
|
4825
4839
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4826
4840
|
|
|
4827
4841
|
/*
|
|
@@ -4890,7 +4904,7 @@ var singleton = null;
|
|
|
4890
4904
|
var singletonCounter = 0;
|
|
4891
4905
|
var stylesInsertedAtTop = [];
|
|
4892
4906
|
|
|
4893
|
-
var fixUrls = __webpack_require__(
|
|
4907
|
+
var fixUrls = __webpack_require__(33);
|
|
4894
4908
|
|
|
4895
4909
|
module.exports = function(list, options) {
|
|
4896
4910
|
if (typeof DEBUG !== "undefined" && DEBUG) {
|
|
@@ -5225,7 +5239,7 @@ function updateLink (link, options, obj) {
|
|
|
5225
5239
|
|
|
5226
5240
|
|
|
5227
5241
|
/***/ }),
|
|
5228
|
-
/*
|
|
5242
|
+
/* 33 */
|
|
5229
5243
|
/***/ (function(module, exports) {
|
|
5230
5244
|
|
|
5231
5245
|
|
|
@@ -5320,9 +5334,9 @@ module.exports = function (css) {
|
|
|
5320
5334
|
|
|
5321
5335
|
|
|
5322
5336
|
/***/ }),
|
|
5323
|
-
/* 33 */,
|
|
5324
5337
|
/* 34 */,
|
|
5325
|
-
/* 35
|
|
5338
|
+
/* 35 */,
|
|
5339
|
+
/* 36 */
|
|
5326
5340
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
5327
5341
|
|
|
5328
5342
|
"use strict";
|
|
@@ -6385,7 +6399,7 @@ var api = __webpack_require__(1);
|
|
|
6385
6399
|
if (res.url && util["a" /* default */].startWith(res.url, ['http', 'https', '/'])) {
|
|
6386
6400
|
this.userHead = res.url;
|
|
6387
6401
|
} else {
|
|
6388
|
-
this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["
|
|
6402
|
+
this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["A" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
|
|
6389
6403
|
}
|
|
6390
6404
|
this.$emit('change', this.userHead);
|
|
6391
6405
|
}
|
|
@@ -8317,7 +8331,7 @@ var external_throttle_debounce_ = __webpack_require__(13);
|
|
|
8317
8331
|
},
|
|
8318
8332
|
handleClick: function handleClick(res) {
|
|
8319
8333
|
util["a" /* default */].ajax({
|
|
8320
|
-
url: api["
|
|
8334
|
+
url: api["Ob" /* recordUserApp */],
|
|
8321
8335
|
params: {
|
|
8322
8336
|
userId: this.user.userId,
|
|
8323
8337
|
appId: res.id
|
|
@@ -8780,7 +8794,7 @@ var _props;
|
|
|
8780
8794
|
return _this2.formKey.includes(key);
|
|
8781
8795
|
})));
|
|
8782
8796
|
util["a" /* default */].ajax({
|
|
8783
|
-
url: api["
|
|
8797
|
+
url: api["Oc" /* updateUserInfo */],
|
|
8784
8798
|
params: _extends({}, data, {
|
|
8785
8799
|
oldPassword: this.secret && initLogin && initLogin.secret && oldpassword ? util["a" /* default */].esmEncrypt({
|
|
8786
8800
|
data: oldpassword,
|
|
@@ -9022,7 +9036,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
|
|
|
9022
9036
|
var _this2 = this;
|
|
9023
9037
|
|
|
9024
9038
|
util["a" /* default */].ajax({
|
|
9025
|
-
url: api["
|
|
9039
|
+
url: api["xb" /* initUserSet */]
|
|
9026
9040
|
}).then(function (res) {
|
|
9027
9041
|
if (res.rCode === 0) {
|
|
9028
9042
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -9063,7 +9077,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
|
|
|
9063
9077
|
var notify = this.checked.join(',');
|
|
9064
9078
|
util["a" /* default */].ajax({
|
|
9065
9079
|
method: 'post',
|
|
9066
|
-
url: api["
|
|
9080
|
+
url: api["Nc" /* updateUserCustomInfo */],
|
|
9067
9081
|
data: {
|
|
9068
9082
|
notify: notify
|
|
9069
9083
|
}
|
|
@@ -9093,7 +9107,7 @@ var userinfo_component = Object(componentNormalizer["a" /* default */])(
|
|
|
9093
9107
|
if (this.user.identityId !== res.id) {
|
|
9094
9108
|
util["a" /* default */].ajax({
|
|
9095
9109
|
method: 'post',
|
|
9096
|
-
url: api["
|
|
9110
|
+
url: api["dc" /* switchUserTo */],
|
|
9097
9111
|
data: { userId: res.value }
|
|
9098
9112
|
}).then(function (res) {
|
|
9099
9113
|
if (res.rCode == 0) {
|
|
@@ -9490,7 +9504,7 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
9490
9504
|
if (this.pageNum <= this.pageCount) {
|
|
9491
9505
|
this.loading = true;
|
|
9492
9506
|
util["a" /* default */].ajax({
|
|
9493
|
-
url: api["
|
|
9507
|
+
url: api["ec" /* sysMsgPage */],
|
|
9494
9508
|
params: {
|
|
9495
9509
|
pageNum: reload ? 1 : this.pageNum,
|
|
9496
9510
|
pageSize: this.pageSize
|
|
@@ -9523,7 +9537,7 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
9523
9537
|
var _this2 = this;
|
|
9524
9538
|
|
|
9525
9539
|
util["a" /* default */].ajax({
|
|
9526
|
-
url: api["
|
|
9540
|
+
url: api["tb" /* ignoreSysMsg */],
|
|
9527
9541
|
params: {
|
|
9528
9542
|
id: res.id
|
|
9529
9543
|
}
|
|
@@ -9543,7 +9557,7 @@ var messagevue_type_script_lang_js_extends = Object.assign || function (target)
|
|
|
9543
9557
|
var _this3 = this;
|
|
9544
9558
|
|
|
9545
9559
|
util["a" /* default */].ajax({
|
|
9546
|
-
url: api["
|
|
9560
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
9547
9561
|
}).then(function (res) {
|
|
9548
9562
|
_this3.count = 0;
|
|
9549
9563
|
_this3.msgs = [];
|
|
@@ -9936,7 +9950,7 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
9936
9950
|
var _this = this;
|
|
9937
9951
|
|
|
9938
9952
|
util["a" /* default */].ajax({
|
|
9939
|
-
url: api["
|
|
9953
|
+
url: api["tb" /* ignoreSysMsg */],
|
|
9940
9954
|
params: {
|
|
9941
9955
|
id: res.id
|
|
9942
9956
|
}
|
|
@@ -9955,7 +9969,7 @@ var noticevue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
9955
9969
|
var _this2 = this;
|
|
9956
9970
|
|
|
9957
9971
|
util["a" /* default */].ajax({
|
|
9958
|
-
url: api["
|
|
9972
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
9959
9973
|
}).then(function (res) {
|
|
9960
9974
|
_this2.msgs = [];
|
|
9961
9975
|
_this2.$emit('ignore', { type: 'ignore', value: 'all' });
|
|
@@ -10744,7 +10758,7 @@ settingsvue_type_template_id_1b15d77c_scoped_true_render._withStripped = true
|
|
|
10744
10758
|
// CONCATENATED MODULE: ./packages/main/src/public/settings.vue?vue&type=script&lang=js&
|
|
10745
10759
|
/* harmony default export */ var public_settingsvue_type_script_lang_js_ = (settingsvue_type_script_lang_js_);
|
|
10746
10760
|
// EXTERNAL MODULE: ./packages/main/src/public/settings.vue?vue&type=style&index=0&id=1b15d77c&prod&scoped=true&lang=css&
|
|
10747
|
-
var settingsvue_type_style_index_0_id_1b15d77c_prod_scoped_true_lang_css_ = __webpack_require__(
|
|
10761
|
+
var settingsvue_type_style_index_0_id_1b15d77c_prod_scoped_true_lang_css_ = __webpack_require__(29);
|
|
10748
10762
|
|
|
10749
10763
|
// CONCATENATED MODULE: ./packages/main/src/public/settings.vue
|
|
10750
10764
|
|
|
@@ -10892,7 +10906,7 @@ onlinevue_type_template_id_6706bd21_scoped_true_render._withStripped = true
|
|
|
10892
10906
|
props: {
|
|
10893
10907
|
sysuseronline: {
|
|
10894
10908
|
type: String,
|
|
10895
|
-
default: api["
|
|
10909
|
+
default: api["Tc" /* userOnline */]
|
|
10896
10910
|
}
|
|
10897
10911
|
},
|
|
10898
10912
|
data: function data() {
|
|
@@ -11565,7 +11579,7 @@ var searchvue_type_script_lang_js_extends = Object.assign || function (target) {
|
|
|
11565
11579
|
},
|
|
11566
11580
|
searchType: {
|
|
11567
11581
|
type: String,
|
|
11568
|
-
default: api["
|
|
11582
|
+
default: api["Wb" /* searchType */]
|
|
11569
11583
|
},
|
|
11570
11584
|
pageSize: {
|
|
11571
11585
|
type: Number,
|
|
@@ -12447,7 +12461,7 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12447
12461
|
//应用列表接口
|
|
12448
12462
|
appsUrl: {
|
|
12449
12463
|
type: String,
|
|
12450
|
-
default: api["
|
|
12464
|
+
default: api["nb" /* getUserAppWithTag */]
|
|
12451
12465
|
},
|
|
12452
12466
|
//是否启用子应用菜单接口
|
|
12453
12467
|
application: {
|
|
@@ -12668,9 +12682,9 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12668
12682
|
return this.menuUrl;
|
|
12669
12683
|
}
|
|
12670
12684
|
if (this.application) {
|
|
12671
|
-
return api["
|
|
12685
|
+
return api["Q" /* getComplexApplicationsNew */];
|
|
12672
12686
|
}
|
|
12673
|
-
return api["
|
|
12687
|
+
return api["P" /* getComplexApplications */];
|
|
12674
12688
|
},
|
|
12675
12689
|
|
|
12676
12690
|
//人工智能配置
|
|
@@ -12743,10 +12757,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12743
12757
|
this.$refs.user.handleSelect(res);
|
|
12744
12758
|
},
|
|
12745
12759
|
|
|
12746
|
-
/**
|
|
12747
|
-
* @desc:匹配路由
|
|
12748
|
-
* @author huangbo
|
|
12749
|
-
* @date 2024年9月7日
|
|
12760
|
+
/**
|
|
12761
|
+
* @desc:匹配路由
|
|
12762
|
+
* @author huangbo
|
|
12763
|
+
* @date 2024年9月7日
|
|
12750
12764
|
**/
|
|
12751
12765
|
hasRouter: function hasRouter(res, url, code) {
|
|
12752
12766
|
if (!url) {
|
|
@@ -12790,10 +12804,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12790
12804
|
return false;
|
|
12791
12805
|
},
|
|
12792
12806
|
|
|
12793
|
-
/**
|
|
12794
|
-
* @desc:获取初始数据
|
|
12795
|
-
* @author huangbo
|
|
12796
|
-
* @date 2024年9月7日
|
|
12807
|
+
/**
|
|
12808
|
+
* @desc:获取初始数据
|
|
12809
|
+
* @author huangbo
|
|
12810
|
+
* @date 2024年9月7日
|
|
12797
12811
|
**/
|
|
12798
12812
|
init: function init(results, first) {
|
|
12799
12813
|
this.setConfig(results);
|
|
@@ -12802,10 +12816,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12802
12816
|
}
|
|
12803
12817
|
},
|
|
12804
12818
|
|
|
12805
|
-
/**
|
|
12806
|
-
* @desc:设置用户配置及信息
|
|
12807
|
-
* @author huangbo
|
|
12808
|
-
* @date 2024年9月7日
|
|
12819
|
+
/**
|
|
12820
|
+
* @desc:设置用户配置及信息
|
|
12821
|
+
* @author huangbo
|
|
12822
|
+
* @date 2024年9月7日
|
|
12809
12823
|
**/
|
|
12810
12824
|
setConfig: function setConfig(results) {
|
|
12811
12825
|
localStorage.setItem('mainConfig', JSON.stringify(results));
|
|
@@ -12973,10 +12987,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
12973
12987
|
}
|
|
12974
12988
|
},
|
|
12975
12989
|
|
|
12976
|
-
/**
|
|
12977
|
-
* @desc:获取所有应用
|
|
12978
|
-
* @author huangbo
|
|
12979
|
-
* @date 2024年9月7日
|
|
12990
|
+
/**
|
|
12991
|
+
* @desc:获取所有应用
|
|
12992
|
+
* @author huangbo
|
|
12993
|
+
* @date 2024年9月7日
|
|
12980
12994
|
**/
|
|
12981
12995
|
getApplications: function getApplications() {
|
|
12982
12996
|
var _this2 = this;
|
|
@@ -13024,10 +13038,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13024
13038
|
});
|
|
13025
13039
|
},
|
|
13026
13040
|
|
|
13027
|
-
/**
|
|
13028
|
-
* @desc:获取菜单列表
|
|
13029
|
-
* @author huangbo
|
|
13030
|
-
* @date 2024年9月7日
|
|
13041
|
+
/**
|
|
13042
|
+
* @desc:获取菜单列表
|
|
13043
|
+
* @author huangbo
|
|
13044
|
+
* @date 2024年9月7日
|
|
13031
13045
|
**/
|
|
13032
13046
|
getMenus: function getMenus(loading) {
|
|
13033
13047
|
var _this3 = this;
|
|
@@ -13060,10 +13074,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13060
13074
|
});
|
|
13061
13075
|
},
|
|
13062
13076
|
|
|
13063
|
-
/**
|
|
13064
|
-
* @desc:处理菜单列表
|
|
13065
|
-
* @author huangbo
|
|
13066
|
-
* @date 2024年9月7日
|
|
13077
|
+
/**
|
|
13078
|
+
* @desc:处理菜单列表
|
|
13079
|
+
* @author huangbo
|
|
13080
|
+
* @date 2024年9月7日
|
|
13067
13081
|
**/
|
|
13068
13082
|
renderMenus: function renderMenus(res) {
|
|
13069
13083
|
this.menus = res;
|
|
@@ -13159,10 +13173,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13159
13173
|
}
|
|
13160
13174
|
},
|
|
13161
13175
|
|
|
13162
|
-
/**
|
|
13163
|
-
* @desc:设置页面加载类型
|
|
13164
|
-
* @author huangbo
|
|
13165
|
-
* @date 2024年9月7日
|
|
13176
|
+
/**
|
|
13177
|
+
* @desc:设置页面加载类型
|
|
13178
|
+
* @author huangbo
|
|
13179
|
+
* @date 2024年9月7日
|
|
13166
13180
|
**/
|
|
13167
13181
|
setIframeType: function setIframeType(res) {
|
|
13168
13182
|
var url = res.url;
|
|
@@ -13218,10 +13232,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13218
13232
|
return res;
|
|
13219
13233
|
},
|
|
13220
13234
|
|
|
13221
|
-
/**
|
|
13222
|
-
* @desc:获取菜单
|
|
13223
|
-
* @author huangbo
|
|
13224
|
-
* @date 2024年9月7日
|
|
13235
|
+
/**
|
|
13236
|
+
* @desc:获取菜单
|
|
13237
|
+
* @author huangbo
|
|
13238
|
+
* @date 2024年9月7日
|
|
13225
13239
|
**/
|
|
13226
13240
|
getMenu: function getMenu(menus, res, key) {
|
|
13227
13241
|
if (Array.isArray(menus)) {
|
|
@@ -13250,10 +13264,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13250
13264
|
return false;
|
|
13251
13265
|
},
|
|
13252
13266
|
|
|
13253
|
-
/**
|
|
13254
|
-
* @desc:获取菜单第一条数据
|
|
13255
|
-
* @author huangbo
|
|
13256
|
-
* @date 2024年9月7日
|
|
13267
|
+
/**
|
|
13268
|
+
* @desc:获取菜单第一条数据
|
|
13269
|
+
* @author huangbo
|
|
13270
|
+
* @date 2024年9月7日
|
|
13257
13271
|
**/
|
|
13258
13272
|
getFirst: function getFirst(obj) {
|
|
13259
13273
|
if (!obj) {
|
|
@@ -13272,10 +13286,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13272
13286
|
}
|
|
13273
13287
|
},
|
|
13274
13288
|
|
|
13275
|
-
/**
|
|
13276
|
-
* @desc:遍历设置菜单气泡提醒
|
|
13277
|
-
* @author huangbo
|
|
13278
|
-
* @date 2024年9月7日
|
|
13289
|
+
/**
|
|
13290
|
+
* @desc:遍历设置菜单气泡提醒
|
|
13291
|
+
* @author huangbo
|
|
13292
|
+
* @date 2024年9月7日
|
|
13279
13293
|
**/
|
|
13280
13294
|
setTips: function setTips(obj) {
|
|
13281
13295
|
var _this4 = this;
|
|
@@ -13346,10 +13360,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13346
13360
|
}
|
|
13347
13361
|
},
|
|
13348
13362
|
|
|
13349
|
-
/**
|
|
13350
|
-
* @desc:获取气泡提醒
|
|
13351
|
-
* @author huangbo
|
|
13352
|
-
* @date 2024年9月7日
|
|
13363
|
+
/**
|
|
13364
|
+
* @desc:获取气泡提醒
|
|
13365
|
+
* @author huangbo
|
|
13366
|
+
* @date 2024年9月7日
|
|
13353
13367
|
**/
|
|
13354
13368
|
getBadge: function getBadge(res) {
|
|
13355
13369
|
var num = res.tips || 0;
|
|
@@ -13363,17 +13377,17 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13363
13377
|
};
|
|
13364
13378
|
},
|
|
13365
13379
|
|
|
13366
|
-
/**
|
|
13367
|
-
* @desc:开启weosocket
|
|
13368
|
-
* @author huangbo
|
|
13369
|
-
* @date 2024年9月7日
|
|
13380
|
+
/**
|
|
13381
|
+
* @desc:开启weosocket
|
|
13382
|
+
* @author huangbo
|
|
13383
|
+
* @date 2024年9月7日
|
|
13370
13384
|
**/
|
|
13371
13385
|
initWebSocket: function initWebSocket() {
|
|
13372
13386
|
var _this6 = this;
|
|
13373
13387
|
|
|
13374
13388
|
this.webSocket = util["a" /* default */].socket({
|
|
13375
|
-
url: api["
|
|
13376
|
-
take: api["
|
|
13389
|
+
url: api["Uc" /* wss */],
|
|
13390
|
+
take: api["Kc" /* topic */],
|
|
13377
13391
|
success: function success(res) {
|
|
13378
13392
|
var data = res.data || {};
|
|
13379
13393
|
for (var i in data) {
|
|
@@ -13415,10 +13429,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13415
13429
|
});
|
|
13416
13430
|
},
|
|
13417
13431
|
|
|
13418
|
-
/**
|
|
13419
|
-
* @desc:显示用户信息
|
|
13420
|
-
* @author huangbo
|
|
13421
|
-
* @date 2024年9月7日
|
|
13432
|
+
/**
|
|
13433
|
+
* @desc:显示用户信息
|
|
13434
|
+
* @author huangbo
|
|
13435
|
+
* @date 2024年9月7日
|
|
13422
13436
|
**/
|
|
13423
13437
|
showUserInfo: function showUserInfo() {
|
|
13424
13438
|
if (this.showUser === false) {
|
|
@@ -13426,19 +13440,19 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13426
13440
|
}
|
|
13427
13441
|
},
|
|
13428
13442
|
|
|
13429
|
-
/**
|
|
13430
|
-
* @desc:删除更多应用菜单点击
|
|
13431
|
-
* @author huangbo
|
|
13432
|
-
* @date 2024年9月7日
|
|
13443
|
+
/**
|
|
13444
|
+
* @desc:删除更多应用菜单点击
|
|
13445
|
+
* @author huangbo
|
|
13446
|
+
* @date 2024年9月7日
|
|
13433
13447
|
**/
|
|
13434
13448
|
handleDelete: function handleDelete(index) {
|
|
13435
13449
|
this.newApps.splice(index, 1);
|
|
13436
13450
|
},
|
|
13437
13451
|
|
|
13438
|
-
/**
|
|
13439
|
-
* @desc:储存更多应用菜单点击
|
|
13440
|
-
* @author huangbo
|
|
13441
|
-
* @date 2024年9月7日
|
|
13452
|
+
/**
|
|
13453
|
+
* @desc:储存更多应用菜单点击
|
|
13454
|
+
* @author huangbo
|
|
13455
|
+
* @date 2024年9月7日
|
|
13442
13456
|
**/
|
|
13443
13457
|
handlerClickApps: function handlerClickApps(res) {
|
|
13444
13458
|
if (res.permission === false) {
|
|
@@ -13451,10 +13465,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13451
13465
|
this.handlerClickApp(res);
|
|
13452
13466
|
},
|
|
13453
13467
|
|
|
13454
|
-
/**
|
|
13455
|
-
* @desc:侧边应用菜单点击
|
|
13456
|
-
* @author huangbo
|
|
13457
|
-
* @date 2024年9月7日
|
|
13468
|
+
/**
|
|
13469
|
+
* @desc:侧边应用菜单点击
|
|
13470
|
+
* @author huangbo
|
|
13471
|
+
* @date 2024年9月7日
|
|
13458
13472
|
**/
|
|
13459
13473
|
handlerClickApp: function handlerClickApp(res) {
|
|
13460
13474
|
this.showMsg = false;
|
|
@@ -13543,10 +13557,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13543
13557
|
}
|
|
13544
13558
|
},
|
|
13545
13559
|
|
|
13546
|
-
/**
|
|
13547
|
-
* @desc:显示Drawer界面
|
|
13548
|
-
* @author huangbo
|
|
13549
|
-
* @date 2024年9月7日
|
|
13560
|
+
/**
|
|
13561
|
+
* @desc:显示Drawer界面
|
|
13562
|
+
* @author huangbo
|
|
13563
|
+
* @date 2024年9月7日
|
|
13550
13564
|
**/
|
|
13551
13565
|
handlerSetDrawer: function handlerSetDrawer(res, type) {
|
|
13552
13566
|
var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
|
|
@@ -13566,23 +13580,23 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13566
13580
|
}
|
|
13567
13581
|
},
|
|
13568
13582
|
|
|
13569
|
-
/**
|
|
13570
|
-
* @desc:关闭Drawer界面
|
|
13571
|
-
* @author huangbo
|
|
13572
|
-
* @date 2024年9月7日
|
|
13583
|
+
/**
|
|
13584
|
+
* @desc:关闭Drawer界面
|
|
13585
|
+
* @author huangbo
|
|
13586
|
+
* @date 2024年9月7日
|
|
13573
13587
|
**/
|
|
13574
13588
|
handleCloseDrawer: function handleCloseDrawer() {
|
|
13575
13589
|
this.drawer = { visible: false };
|
|
13576
13590
|
},
|
|
13577
13591
|
|
|
13578
|
-
/**
|
|
13579
|
-
* @desc:菜单点击
|
|
13580
|
-
* @author huangbo
|
|
13581
|
-
* @date 2024年9月7日
|
|
13592
|
+
/**
|
|
13593
|
+
* @desc:菜单点击
|
|
13594
|
+
* @author huangbo
|
|
13595
|
+
* @date 2024年9月7日
|
|
13582
13596
|
**/
|
|
13583
13597
|
handlerClickMenu: function handlerClickMenu(res) {
|
|
13584
13598
|
util["a" /* default */].ajax({
|
|
13585
|
-
url: api["
|
|
13599
|
+
url: api["Ob" /* recordUserApp */],
|
|
13586
13600
|
params: {
|
|
13587
13601
|
userId: this.user.userId,
|
|
13588
13602
|
appId: res.id
|
|
@@ -13627,19 +13641,19 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13627
13641
|
},
|
|
13628
13642
|
|
|
13629
13643
|
|
|
13630
|
-
/**
|
|
13631
|
-
* @desc:用户详情请求成功
|
|
13632
|
-
* @author huangbo
|
|
13633
|
-
* @date 2024年9月7日
|
|
13644
|
+
/**
|
|
13645
|
+
* @desc:用户详情请求成功
|
|
13646
|
+
* @author huangbo
|
|
13647
|
+
* @date 2024年9月7日
|
|
13634
13648
|
**/
|
|
13635
13649
|
handleSuccess: function handleSuccess(res) {
|
|
13636
13650
|
this.simpleUserInfo = res.simpleUserInfo;
|
|
13637
13651
|
},
|
|
13638
13652
|
|
|
13639
|
-
/**
|
|
13640
|
-
* @desc:修改用户配置
|
|
13641
|
-
* @author huangbo
|
|
13642
|
-
* @date 2024年9月7日
|
|
13653
|
+
/**
|
|
13654
|
+
* @desc:修改用户配置
|
|
13655
|
+
* @author huangbo
|
|
13656
|
+
* @date 2024年9月7日
|
|
13643
13657
|
**/
|
|
13644
13658
|
handleChangeConfig: function handleChangeConfig(name, res) {
|
|
13645
13659
|
if (name == 'userHeadUrl') {
|
|
@@ -13655,10 +13669,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13655
13669
|
}
|
|
13656
13670
|
},
|
|
13657
13671
|
|
|
13658
|
-
/**
|
|
13659
|
-
* @desc:关闭webSocket
|
|
13660
|
-
* @author huangbo
|
|
13661
|
-
* @date 2024年9月7日
|
|
13672
|
+
/**
|
|
13673
|
+
* @desc:关闭webSocket
|
|
13674
|
+
* @author huangbo
|
|
13675
|
+
* @date 2024年9月7日
|
|
13662
13676
|
**/
|
|
13663
13677
|
handlerClose: function handlerClose() {
|
|
13664
13678
|
if (this.webSocket) {
|
|
@@ -13666,10 +13680,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13666
13680
|
}
|
|
13667
13681
|
},
|
|
13668
13682
|
|
|
13669
|
-
/**
|
|
13670
|
-
* @desc:刷新选中iframe页签
|
|
13671
|
-
* @author huangbo
|
|
13672
|
-
* @date 2024年9月7日
|
|
13683
|
+
/**
|
|
13684
|
+
* @desc:刷新选中iframe页签
|
|
13685
|
+
* @author huangbo
|
|
13686
|
+
* @date 2024年9月7日
|
|
13673
13687
|
**/
|
|
13674
13688
|
handleRefresh: function handleRefresh(arg) {
|
|
13675
13689
|
var _this7 = this;
|
|
@@ -13723,11 +13737,11 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13723
13737
|
}
|
|
13724
13738
|
},
|
|
13725
13739
|
|
|
13726
|
-
/**
|
|
13727
|
-
* @desc:构建 Wujie 子应用 URL(处理路由参数)
|
|
13728
|
-
* @param {String} baseUrl - 基础 URL
|
|
13729
|
-
* @param {Object} routeInfo - 路由信息 { path, params, query }
|
|
13730
|
-
* @returns {String} 拼接后的完整 URL
|
|
13740
|
+
/**
|
|
13741
|
+
* @desc:构建 Wujie 子应用 URL(处理路由参数)
|
|
13742
|
+
* @param {String} baseUrl - 基础 URL
|
|
13743
|
+
* @param {Object} routeInfo - 路由信息 { path, params, query }
|
|
13744
|
+
* @returns {String} 拼接后的完整 URL
|
|
13731
13745
|
**/
|
|
13732
13746
|
buildWujieUrl: function buildWujieUrl(baseUrl, routeInfo) {
|
|
13733
13747
|
var path = routeInfo.path,
|
|
@@ -13778,10 +13792,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13778
13792
|
return baseUrlPrefix + fullPath;
|
|
13779
13793
|
},
|
|
13780
13794
|
|
|
13781
|
-
/**
|
|
13782
|
-
* @desc:删除iframe
|
|
13783
|
-
* @author huangbo
|
|
13784
|
-
* @date 2024年9月7日
|
|
13795
|
+
/**
|
|
13796
|
+
* @desc:删除iframe
|
|
13797
|
+
* @author huangbo
|
|
13798
|
+
* @date 2024年9月7日
|
|
13785
13799
|
**/
|
|
13786
13800
|
handleRemove: function handleRemove(name) {
|
|
13787
13801
|
var len = this.tabs.length - 1;
|
|
@@ -13798,10 +13812,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13798
13812
|
}
|
|
13799
13813
|
},
|
|
13800
13814
|
|
|
13801
|
-
/**
|
|
13802
|
-
* @desc:tabs鼠标右键事件
|
|
13803
|
-
* @author huangbo
|
|
13804
|
-
* @date 2024年9月7日
|
|
13815
|
+
/**
|
|
13816
|
+
* @desc:tabs鼠标右键事件
|
|
13817
|
+
* @author huangbo
|
|
13818
|
+
* @date 2024年9月7日
|
|
13805
13819
|
**/
|
|
13806
13820
|
handleContextmenu: function handleContextmenu(tabs, e) {
|
|
13807
13821
|
var disabled = {};
|
|
@@ -13826,10 +13840,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13826
13840
|
window.addEventListener('click', this.closeTabsEvents);
|
|
13827
13841
|
},
|
|
13828
13842
|
|
|
13829
|
-
/**
|
|
13830
|
-
* @desc:tabs页签事件
|
|
13831
|
-
* @author huangbo
|
|
13832
|
-
* @date 2024年9月7日
|
|
13843
|
+
/**
|
|
13844
|
+
* @desc:tabs页签事件
|
|
13845
|
+
* @author huangbo
|
|
13846
|
+
* @date 2024年9月7日
|
|
13833
13847
|
**/
|
|
13834
13848
|
handleTabsEvents: function handleTabsEvents(num) {
|
|
13835
13849
|
if (this.pane !== null) {
|
|
@@ -13840,10 +13854,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13840
13854
|
},
|
|
13841
13855
|
|
|
13842
13856
|
|
|
13843
|
-
/**
|
|
13844
|
-
* @desc:关闭页签事件面板
|
|
13845
|
-
* @author huangbo
|
|
13846
|
-
* @date 2024年9月7日
|
|
13857
|
+
/**
|
|
13858
|
+
* @desc:关闭页签事件面板
|
|
13859
|
+
* @author huangbo
|
|
13860
|
+
* @date 2024年9月7日
|
|
13847
13861
|
**/
|
|
13848
13862
|
closeTabsEvents: function closeTabsEvents(e) {
|
|
13849
13863
|
if (e.target.parentNode != this.$refs.tabsHandler.$el && e.target.parentNode.parentNode != this.$refs.tabsHandler.$el) {
|
|
@@ -13853,10 +13867,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13853
13867
|
},
|
|
13854
13868
|
|
|
13855
13869
|
|
|
13856
|
-
/**
|
|
13857
|
-
* @desc:tabs页签点击事件
|
|
13858
|
-
* @author huangbo
|
|
13859
|
-
* @date 2024年9月7日
|
|
13870
|
+
/**
|
|
13871
|
+
* @desc:tabs页签点击事件
|
|
13872
|
+
* @author huangbo
|
|
13873
|
+
* @date 2024年9月7日
|
|
13860
13874
|
**/
|
|
13861
13875
|
handleTabClick: function handleTabClick() {
|
|
13862
13876
|
this.active = '';
|
|
@@ -13864,10 +13878,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13864
13878
|
this.showMenu = false;
|
|
13865
13879
|
},
|
|
13866
13880
|
|
|
13867
|
-
/**
|
|
13868
|
-
* @desc:handler工具栏点击事件
|
|
13869
|
-
* @author huangbo
|
|
13870
|
-
* @date 2024年9月7日
|
|
13881
|
+
/**
|
|
13882
|
+
* @desc:handler工具栏点击事件
|
|
13883
|
+
* @author huangbo
|
|
13884
|
+
* @date 2024年9月7日
|
|
13871
13885
|
**/
|
|
13872
13886
|
handleClick: function handleClick(res) {
|
|
13873
13887
|
var type = res.type,
|
|
@@ -13948,10 +13962,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13948
13962
|
this.$emit('handler-click', res);
|
|
13949
13963
|
},
|
|
13950
13964
|
|
|
13951
|
-
/**
|
|
13952
|
-
* @desc:退出登录
|
|
13953
|
-
* @author huangbo
|
|
13954
|
-
* @date 2024年9月7日
|
|
13965
|
+
/**
|
|
13966
|
+
* @desc:退出登录
|
|
13967
|
+
* @author huangbo
|
|
13968
|
+
* @date 2024年9月7日
|
|
13955
13969
|
**/
|
|
13956
13970
|
handleQuit: function handleQuit() {
|
|
13957
13971
|
var _this8 = this;
|
|
@@ -13978,7 +13992,7 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
13978
13992
|
document.body.appendChild(iframe);
|
|
13979
13993
|
}
|
|
13980
13994
|
}
|
|
13981
|
-
util["a" /* default */].ajax({ method: 'post', url: api["
|
|
13995
|
+
util["a" /* default */].ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
13982
13996
|
if (res.rCode == 0) {
|
|
13983
13997
|
util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
|
|
13984
13998
|
if (_this8.onQuit && typeof _this8.onQuit === 'function') {
|
|
@@ -14032,10 +14046,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
14032
14046
|
}).catch(function (e) {});
|
|
14033
14047
|
},
|
|
14034
14048
|
|
|
14035
|
-
/**
|
|
14036
|
-
* @desc:主题、消息回调
|
|
14037
|
-
* @author huangbo
|
|
14038
|
-
* @date 2024年9月7日
|
|
14049
|
+
/**
|
|
14050
|
+
* @desc:主题、消息回调
|
|
14051
|
+
* @author huangbo
|
|
14052
|
+
* @date 2024年9月7日
|
|
14039
14053
|
**/
|
|
14040
14054
|
handleChange: function handleChange(res) {
|
|
14041
14055
|
var type = res.type,
|
|
@@ -14051,10 +14065,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
14051
14065
|
}
|
|
14052
14066
|
},
|
|
14053
14067
|
|
|
14054
|
-
/**
|
|
14055
|
-
* @desc:菜单布局样式切换
|
|
14056
|
-
* @author huangbo
|
|
14057
|
-
* @date 2024年9月7日
|
|
14068
|
+
/**
|
|
14069
|
+
* @desc:菜单布局样式切换
|
|
14070
|
+
* @author huangbo
|
|
14071
|
+
* @date 2024年9月7日
|
|
14058
14072
|
**/
|
|
14059
14073
|
handleLayout: function handleLayout(res, active) {
|
|
14060
14074
|
if (active) {
|
|
@@ -14064,10 +14078,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
14064
14078
|
this.$emit('chang-layout', res, active);
|
|
14065
14079
|
},
|
|
14066
14080
|
|
|
14067
|
-
/**
|
|
14068
|
-
* @desc:消息修改总数
|
|
14069
|
-
* @author huangbo
|
|
14070
|
-
* @date 2024年9月7日
|
|
14081
|
+
/**
|
|
14082
|
+
* @desc:消息修改总数
|
|
14083
|
+
* @author huangbo
|
|
14084
|
+
* @date 2024年9月7日
|
|
14071
14085
|
**/
|
|
14072
14086
|
handleMenuTips: function handleMenuTips(id, num) {
|
|
14073
14087
|
if (num) {
|
|
@@ -14078,10 +14092,10 @@ var simplicityvue_type_script_lang_js_events = [function (tabs, index, that) {
|
|
|
14078
14092
|
}
|
|
14079
14093
|
},
|
|
14080
14094
|
|
|
14081
|
-
/**
|
|
14082
|
-
* @desc:处理即时消息
|
|
14083
|
-
* @author huangbo
|
|
14084
|
-
* @date 2024年9月7日
|
|
14095
|
+
/**
|
|
14096
|
+
* @desc:处理即时消息
|
|
14097
|
+
* @author huangbo
|
|
14098
|
+
* @date 2024年9月7日
|
|
14085
14099
|
**/
|
|
14086
14100
|
handleOpened: function handleOpened(res) {
|
|
14087
14101
|
var _this9 = this;
|
|
@@ -14918,7 +14932,7 @@ avatarvue_type_template_id_30391b69_scoped_true_render._withStripped = true
|
|
|
14918
14932
|
if (res.url && util["a" /* default */].startWith(res.url, ['http', 'https', '/'])) {
|
|
14919
14933
|
this.userHead = res.url;
|
|
14920
14934
|
} else {
|
|
14921
|
-
this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["
|
|
14935
|
+
this.userHead = dochubConfig && dochubConfig.downloadDocumentUrl ? dochubConfig.downloadDocumentUrl + '?documentId=' + res.adjunctId : api["A" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
|
|
14922
14936
|
}
|
|
14923
14937
|
this.$emit('change', this.userHead);
|
|
14924
14938
|
}
|
|
@@ -15225,7 +15239,7 @@ var handlervue_type_script_lang_js_data;
|
|
|
15225
15239
|
if (this.user.identityId !== res.id) {
|
|
15226
15240
|
util["a" /* default */].ajax({
|
|
15227
15241
|
method: 'post',
|
|
15228
|
-
url: api["
|
|
15242
|
+
url: api["dc" /* switchUserTo */],
|
|
15229
15243
|
data: { userId: res.value }
|
|
15230
15244
|
}).then(function (res) {
|
|
15231
15245
|
if (res.rCode == 0) {
|
|
@@ -15713,7 +15727,7 @@ var userinfovue_type_script_lang_js_props;
|
|
|
15713
15727
|
return _this2.formKey.includes(key);
|
|
15714
15728
|
})));
|
|
15715
15729
|
util["a" /* default */].ajax({
|
|
15716
|
-
url: api["
|
|
15730
|
+
url: api["Oc" /* updateUserInfo */],
|
|
15717
15731
|
params: userinfovue_type_script_lang_js_extends({}, data, {
|
|
15718
15732
|
oldPassword: this.secret && initLogin && initLogin.secret && oldpassword ? util["a" /* default */].esmEncrypt({
|
|
15719
15733
|
data: oldpassword,
|
|
@@ -15955,7 +15969,7 @@ var simplicityTop_userinfo_component = Object(componentNormalizer["a" /* default
|
|
|
15955
15969
|
var _this2 = this;
|
|
15956
15970
|
|
|
15957
15971
|
util["a" /* default */].ajax({
|
|
15958
|
-
url: api["
|
|
15972
|
+
url: api["xb" /* initUserSet */]
|
|
15959
15973
|
}).then(function (res) {
|
|
15960
15974
|
if (res.rCode === 0) {
|
|
15961
15975
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -15996,7 +16010,7 @@ var simplicityTop_userinfo_component = Object(componentNormalizer["a" /* default
|
|
|
15996
16010
|
var notify = this.checked.join(',');
|
|
15997
16011
|
util["a" /* default */].ajax({
|
|
15998
16012
|
method: 'post',
|
|
15999
|
-
url: api["
|
|
16013
|
+
url: api["Nc" /* updateUserCustomInfo */],
|
|
16000
16014
|
data: {
|
|
16001
16015
|
notify: notify
|
|
16002
16016
|
}
|
|
@@ -16026,7 +16040,7 @@ var simplicityTop_userinfo_component = Object(componentNormalizer["a" /* default
|
|
|
16026
16040
|
if (this.user.identityId !== res.id) {
|
|
16027
16041
|
util["a" /* default */].ajax({
|
|
16028
16042
|
method: 'post',
|
|
16029
|
-
url: api["
|
|
16043
|
+
url: api["dc" /* switchUserTo */],
|
|
16030
16044
|
data: { userId: res.value }
|
|
16031
16045
|
}).then(function (res) {
|
|
16032
16046
|
if (res.rCode == 0) {
|
|
@@ -16423,7 +16437,7 @@ var simplicityTop_messagevue_type_script_lang_js_extends = Object.assign || func
|
|
|
16423
16437
|
if (this.pageNum <= this.pageCount) {
|
|
16424
16438
|
this.loading = true;
|
|
16425
16439
|
util["a" /* default */].ajax({
|
|
16426
|
-
url: api["
|
|
16440
|
+
url: api["ec" /* sysMsgPage */],
|
|
16427
16441
|
params: {
|
|
16428
16442
|
pageNum: reload ? 1 : this.pageNum,
|
|
16429
16443
|
pageSize: this.pageSize
|
|
@@ -16456,7 +16470,7 @@ var simplicityTop_messagevue_type_script_lang_js_extends = Object.assign || func
|
|
|
16456
16470
|
var _this2 = this;
|
|
16457
16471
|
|
|
16458
16472
|
util["a" /* default */].ajax({
|
|
16459
|
-
url: api["
|
|
16473
|
+
url: api["tb" /* ignoreSysMsg */],
|
|
16460
16474
|
params: {
|
|
16461
16475
|
id: res.id
|
|
16462
16476
|
}
|
|
@@ -16476,7 +16490,7 @@ var simplicityTop_messagevue_type_script_lang_js_extends = Object.assign || func
|
|
|
16476
16490
|
var _this3 = this;
|
|
16477
16491
|
|
|
16478
16492
|
util["a" /* default */].ajax({
|
|
16479
|
-
url: api["
|
|
16493
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
16480
16494
|
}).then(function (res) {
|
|
16481
16495
|
_this3.count = 0;
|
|
16482
16496
|
_this3.msgs = [];
|
|
@@ -16869,7 +16883,7 @@ var simplicityTop_noticevue_type_script_lang_js_extends = Object.assign || funct
|
|
|
16869
16883
|
var _this = this;
|
|
16870
16884
|
|
|
16871
16885
|
util["a" /* default */].ajax({
|
|
16872
|
-
url: api["
|
|
16886
|
+
url: api["tb" /* ignoreSysMsg */],
|
|
16873
16887
|
params: {
|
|
16874
16888
|
id: res.id
|
|
16875
16889
|
}
|
|
@@ -16888,7 +16902,7 @@ var simplicityTop_noticevue_type_script_lang_js_extends = Object.assign || funct
|
|
|
16888
16902
|
var _this2 = this;
|
|
16889
16903
|
|
|
16890
16904
|
util["a" /* default */].ajax({
|
|
16891
|
-
url: api["
|
|
16905
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
16892
16906
|
}).then(function (res) {
|
|
16893
16907
|
_this2.msgs = [];
|
|
16894
16908
|
_this2.$emit('ignore', { type: 'ignore', value: 'all' });
|
|
@@ -17588,7 +17602,7 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
17588
17602
|
//应用列表接口
|
|
17589
17603
|
appsUrl: {
|
|
17590
17604
|
type: String,
|
|
17591
|
-
default: api["
|
|
17605
|
+
default: api["nb" /* getUserAppWithTag */]
|
|
17592
17606
|
},
|
|
17593
17607
|
//是否启用子应用菜单接口
|
|
17594
17608
|
application: {
|
|
@@ -17660,11 +17674,11 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
17660
17674
|
|
|
17661
17675
|
userCommonMenu: {
|
|
17662
17676
|
type: String,
|
|
17663
|
-
default: api["
|
|
17677
|
+
default: api["Nb" /* queryUseCommonMenu */]
|
|
17664
17678
|
},
|
|
17665
17679
|
queryChildMenu: {
|
|
17666
17680
|
type: String,
|
|
17667
|
-
default: api["
|
|
17681
|
+
default: api["Mb" /* queryChildMenuUrl */]
|
|
17668
17682
|
},
|
|
17669
17683
|
showTipNums: {
|
|
17670
17684
|
type: Boolean,
|
|
@@ -18020,9 +18034,9 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18020
18034
|
return this.menuUrl;
|
|
18021
18035
|
}
|
|
18022
18036
|
if (this.application) {
|
|
18023
|
-
return api["
|
|
18037
|
+
return api["Q" /* getComplexApplicationsNew */];
|
|
18024
18038
|
}
|
|
18025
|
-
return api["
|
|
18039
|
+
return api["P" /* getComplexApplications */];
|
|
18026
18040
|
},
|
|
18027
18041
|
|
|
18028
18042
|
//人工智能配置
|
|
@@ -18113,14 +18127,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18113
18127
|
this.currentPage = this.setIframeType(this.fourthTabs[0]);
|
|
18114
18128
|
},
|
|
18115
18129
|
|
|
18116
|
-
/**
|
|
18117
|
-
* queryChildMenu: 查询左侧我的提醒和我的快捷菜单
|
|
18130
|
+
/**
|
|
18131
|
+
* queryChildMenu: 查询左侧我的提醒和我的快捷菜单
|
|
18118
18132
|
*/
|
|
18119
18133
|
queryChildMenuData: function queryChildMenuData() {
|
|
18120
18134
|
var _this2 = this;
|
|
18121
18135
|
|
|
18122
18136
|
util["a" /* default */].ajax({
|
|
18123
|
-
url: api["
|
|
18137
|
+
url: api["Mb" /* queryChildMenuUrl */],
|
|
18124
18138
|
method: 'get'
|
|
18125
18139
|
}).then(function (res) {
|
|
18126
18140
|
if (res.rCode === 0) {
|
|
@@ -18233,14 +18247,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18233
18247
|
}))();
|
|
18234
18248
|
},
|
|
18235
18249
|
|
|
18236
|
-
/**
|
|
18237
|
-
* getVoteMeetingNum: 查询会议数量
|
|
18250
|
+
/**
|
|
18251
|
+
* getVoteMeetingNum: 查询会议数量
|
|
18238
18252
|
*/
|
|
18239
18253
|
getVoteMeetingNum: function getVoteMeetingNum() {
|
|
18240
18254
|
var _this5 = this;
|
|
18241
18255
|
|
|
18242
18256
|
util["a" /* default */].ajax({
|
|
18243
|
-
url: api["
|
|
18257
|
+
url: api["pb" /* getVoteMeetingNum */],
|
|
18244
18258
|
params: {
|
|
18245
18259
|
userId: util["a" /* default */].getStorage('userId'),
|
|
18246
18260
|
type: 10
|
|
@@ -18259,14 +18273,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18259
18273
|
});
|
|
18260
18274
|
},
|
|
18261
18275
|
|
|
18262
|
-
/**
|
|
18263
|
-
* getShareFilesReceiveCountNew: 查询待接收文件数量
|
|
18276
|
+
/**
|
|
18277
|
+
* getShareFilesReceiveCountNew: 查询待接收文件数量
|
|
18264
18278
|
*/
|
|
18265
18279
|
getShareFilesReceiveCountNew: function getShareFilesReceiveCountNew() {
|
|
18266
18280
|
var _this6 = this;
|
|
18267
18281
|
|
|
18268
18282
|
util["a" /* default */].ajax({
|
|
18269
|
-
url: api["
|
|
18283
|
+
url: api["jb" /* getShareFilesReceiveCountNew */],
|
|
18270
18284
|
params: {
|
|
18271
18285
|
userId: util["a" /* default */].getStorage('userId')
|
|
18272
18286
|
},
|
|
@@ -18285,8 +18299,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18285
18299
|
},
|
|
18286
18300
|
|
|
18287
18301
|
|
|
18288
|
-
/**
|
|
18289
|
-
* getUserTipsInstanceNum: 查询待签收/据签收任务数量 1是拒签收 0是待签收
|
|
18302
|
+
/**
|
|
18303
|
+
* getUserTipsInstanceNum: 查询待签收/据签收任务数量 1是拒签收 0是待签收
|
|
18290
18304
|
*/
|
|
18291
18305
|
getUserTipsInstanceNum: function getUserTipsInstanceNum(type) {
|
|
18292
18306
|
var _this7 = this;
|
|
@@ -18296,7 +18310,7 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18296
18310
|
params = '?subjectCode=signCount&queryOrgType=-1&viewState=0&userId=' + util["a" /* default */].getStorage('userId') + '&queryAccType=-1&queryArcType=0';
|
|
18297
18311
|
}
|
|
18298
18312
|
util["a" /* default */].ajax({
|
|
18299
|
-
url: api["
|
|
18313
|
+
url: api["ob" /* getUserTipsInstanceNum */] + params,
|
|
18300
18314
|
method: 'get'
|
|
18301
18315
|
}).then(function (res) {
|
|
18302
18316
|
if (res.rCode === 0) {
|
|
@@ -18314,14 +18328,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18314
18328
|
});
|
|
18315
18329
|
},
|
|
18316
18330
|
|
|
18317
|
-
/**
|
|
18318
|
-
* getIndexCount: 查询待办任务数量
|
|
18331
|
+
/**
|
|
18332
|
+
* getIndexCount: 查询待办任务数量
|
|
18319
18333
|
*/
|
|
18320
18334
|
getIndexCount: function getIndexCount() {
|
|
18321
18335
|
var _this8 = this;
|
|
18322
18336
|
|
|
18323
18337
|
util["a" /* default */].ajax({
|
|
18324
|
-
url: api["
|
|
18338
|
+
url: api["V" /* getIndexCount */],
|
|
18325
18339
|
params: {
|
|
18326
18340
|
userId: util["a" /* default */].getStorage('userId')
|
|
18327
18341
|
},
|
|
@@ -18346,10 +18360,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18346
18360
|
this.$refs.user.handleSelect(res);
|
|
18347
18361
|
},
|
|
18348
18362
|
|
|
18349
|
-
/**
|
|
18350
|
-
* @desc:匹配路由
|
|
18351
|
-
* @author huangbo
|
|
18352
|
-
* @date 2024年9月7日
|
|
18363
|
+
/**
|
|
18364
|
+
* @desc:匹配路由
|
|
18365
|
+
* @author huangbo
|
|
18366
|
+
* @date 2024年9月7日
|
|
18353
18367
|
**/
|
|
18354
18368
|
hasRouter: function hasRouter(res, url, code) {
|
|
18355
18369
|
if (!url) {
|
|
@@ -18393,10 +18407,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18393
18407
|
return false;
|
|
18394
18408
|
},
|
|
18395
18409
|
|
|
18396
|
-
/**
|
|
18397
|
-
* @desc:获取初始数据
|
|
18398
|
-
* @author huangbo
|
|
18399
|
-
* @date 2024年9月7日
|
|
18410
|
+
/**
|
|
18411
|
+
* @desc:获取初始数据
|
|
18412
|
+
* @author huangbo
|
|
18413
|
+
* @date 2024年9月7日
|
|
18400
18414
|
**/
|
|
18401
18415
|
init: function init(results) {
|
|
18402
18416
|
this.setConfig(results);
|
|
@@ -18407,10 +18421,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18407
18421
|
// }
|
|
18408
18422
|
},
|
|
18409
18423
|
|
|
18410
|
-
/**
|
|
18411
|
-
* @desc:设置用户配置及信息
|
|
18412
|
-
* @author huangbo
|
|
18413
|
-
* @date 2024年9月7日
|
|
18424
|
+
/**
|
|
18425
|
+
* @desc:设置用户配置及信息
|
|
18426
|
+
* @author huangbo
|
|
18427
|
+
* @date 2024年9月7日
|
|
18414
18428
|
**/
|
|
18415
18429
|
setConfig: function setConfig(results) {
|
|
18416
18430
|
localStorage.setItem('mainConfig', JSON.stringify(results));
|
|
@@ -18574,8 +18588,8 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18574
18588
|
}
|
|
18575
18589
|
},
|
|
18576
18590
|
|
|
18577
|
-
/**
|
|
18578
|
-
* @desc:获取用户自定义菜单
|
|
18591
|
+
/**
|
|
18592
|
+
* @desc:获取用户自定义菜单
|
|
18579
18593
|
**/
|
|
18580
18594
|
getUseCommonMenu: function getUseCommonMenu() {
|
|
18581
18595
|
var _this9 = this;
|
|
@@ -18605,10 +18619,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18605
18619
|
});
|
|
18606
18620
|
},
|
|
18607
18621
|
|
|
18608
|
-
/**
|
|
18609
|
-
* @desc:获取所有应用
|
|
18610
|
-
* @author huangbo
|
|
18611
|
-
* @date 2024年9月7日
|
|
18622
|
+
/**
|
|
18623
|
+
* @desc:获取所有应用
|
|
18624
|
+
* @author huangbo
|
|
18625
|
+
* @date 2024年9月7日
|
|
18612
18626
|
**/
|
|
18613
18627
|
getApplications: function getApplications() {
|
|
18614
18628
|
var _this10 = this;
|
|
@@ -18656,10 +18670,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18656
18670
|
});
|
|
18657
18671
|
},
|
|
18658
18672
|
|
|
18659
|
-
/**
|
|
18660
|
-
* @desc:获取菜单列表
|
|
18661
|
-
* @author huangbo
|
|
18662
|
-
* @date 2024年9月7日
|
|
18673
|
+
/**
|
|
18674
|
+
* @desc:获取菜单列表
|
|
18675
|
+
* @author huangbo
|
|
18676
|
+
* @date 2024年9月7日
|
|
18663
18677
|
**/
|
|
18664
18678
|
getMenus: function getMenus(loading) {
|
|
18665
18679
|
var _this11 = this;
|
|
@@ -18686,10 +18700,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18686
18700
|
});
|
|
18687
18701
|
},
|
|
18688
18702
|
|
|
18689
|
-
/**
|
|
18690
|
-
* @desc:处理菜单列表
|
|
18691
|
-
* @author huangbo
|
|
18692
|
-
* @date 2024年9月7日
|
|
18703
|
+
/**
|
|
18704
|
+
* @desc:处理菜单列表
|
|
18705
|
+
* @author huangbo
|
|
18706
|
+
* @date 2024年9月7日
|
|
18693
18707
|
**/
|
|
18694
18708
|
renderMenus: function renderMenus(res) {
|
|
18695
18709
|
// // console.log(res, 'renderMenus');
|
|
@@ -18735,9 +18749,9 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18735
18749
|
// console.log(this.currentPage, 'currentPage');
|
|
18736
18750
|
},
|
|
18737
18751
|
|
|
18738
|
-
/**
|
|
18739
|
-
* 更新myRemind中各项的权限状态
|
|
18740
|
-
* @param {Array} menus - 完整的菜单列表
|
|
18752
|
+
/**
|
|
18753
|
+
* 更新myRemind中各项的权限状态
|
|
18754
|
+
* @param {Array} menus - 完整的菜单列表
|
|
18741
18755
|
*/
|
|
18742
18756
|
updateRemindPermission: function updateRemindPermission(menus) {
|
|
18743
18757
|
// 创建一个Set存储所有菜单的id,方便快速查找
|
|
@@ -18765,10 +18779,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18765
18779
|
});
|
|
18766
18780
|
},
|
|
18767
18781
|
|
|
18768
|
-
/**
|
|
18769
|
-
* @desc:设置页面加载类型
|
|
18770
|
-
* @author huangbo
|
|
18771
|
-
* @date 2024年9月7日
|
|
18782
|
+
/**
|
|
18783
|
+
* @desc:设置页面加载类型
|
|
18784
|
+
* @author huangbo
|
|
18785
|
+
* @date 2024年9月7日
|
|
18772
18786
|
**/
|
|
18773
18787
|
setIframeType: function setIframeType(res) {
|
|
18774
18788
|
var url = res.url;
|
|
@@ -18825,10 +18839,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18825
18839
|
return res;
|
|
18826
18840
|
},
|
|
18827
18841
|
|
|
18828
|
-
/**
|
|
18829
|
-
* @desc:获取菜单
|
|
18830
|
-
* @author huangbo
|
|
18831
|
-
* @date 2024年9月7日
|
|
18842
|
+
/**
|
|
18843
|
+
* @desc:获取菜单
|
|
18844
|
+
* @author huangbo
|
|
18845
|
+
* @date 2024年9月7日
|
|
18832
18846
|
**/
|
|
18833
18847
|
getMenu: function getMenu(menus, res, key) {
|
|
18834
18848
|
if (Array.isArray(menus)) {
|
|
@@ -18857,10 +18871,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18857
18871
|
return false;
|
|
18858
18872
|
},
|
|
18859
18873
|
|
|
18860
|
-
/**
|
|
18861
|
-
* @desc:获取菜单第一条数据
|
|
18862
|
-
* @author huangbo
|
|
18863
|
-
* @date 2024年9月7日
|
|
18874
|
+
/**
|
|
18875
|
+
* @desc:获取菜单第一条数据
|
|
18876
|
+
* @author huangbo
|
|
18877
|
+
* @date 2024年9月7日
|
|
18864
18878
|
**/
|
|
18865
18879
|
getFirst: function getFirst(obj) {
|
|
18866
18880
|
if (!obj) {
|
|
@@ -18879,10 +18893,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18879
18893
|
}
|
|
18880
18894
|
},
|
|
18881
18895
|
|
|
18882
|
-
/**
|
|
18883
|
-
* @desc:遍历设置菜单气泡提醒
|
|
18884
|
-
* @author huangbo
|
|
18885
|
-
* @date 2024年9月7日
|
|
18896
|
+
/**
|
|
18897
|
+
* @desc:遍历设置菜单气泡提醒
|
|
18898
|
+
* @author huangbo
|
|
18899
|
+
* @date 2024年9月7日
|
|
18886
18900
|
**/
|
|
18887
18901
|
setTips: function setTips(obj) {
|
|
18888
18902
|
var _this12 = this;
|
|
@@ -18947,10 +18961,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18947
18961
|
}
|
|
18948
18962
|
},
|
|
18949
18963
|
|
|
18950
|
-
/**
|
|
18951
|
-
* @desc:获取气泡提醒
|
|
18952
|
-
* @author huangbo
|
|
18953
|
-
* @date 2024年9月7日
|
|
18964
|
+
/**
|
|
18965
|
+
* @desc:获取气泡提醒
|
|
18966
|
+
* @author huangbo
|
|
18967
|
+
* @date 2024年9月7日
|
|
18954
18968
|
**/
|
|
18955
18969
|
getBadge: function getBadge(res) {
|
|
18956
18970
|
var num = res.tips || 0;
|
|
@@ -18964,17 +18978,17 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
18964
18978
|
};
|
|
18965
18979
|
},
|
|
18966
18980
|
|
|
18967
|
-
/**
|
|
18968
|
-
* @desc:开启weosocket
|
|
18969
|
-
* @author huangbo
|
|
18970
|
-
* @date 2024年9月7日
|
|
18981
|
+
/**
|
|
18982
|
+
* @desc:开启weosocket
|
|
18983
|
+
* @author huangbo
|
|
18984
|
+
* @date 2024年9月7日
|
|
18971
18985
|
**/
|
|
18972
18986
|
initWebSocket: function initWebSocket() {
|
|
18973
18987
|
var _this14 = this;
|
|
18974
18988
|
|
|
18975
18989
|
this.webSocket = util["a" /* default */].socket({
|
|
18976
|
-
url: api["
|
|
18977
|
-
take: api["
|
|
18990
|
+
url: api["Uc" /* wss */],
|
|
18991
|
+
take: api["Kc" /* topic */],
|
|
18978
18992
|
success: function success(res) {
|
|
18979
18993
|
var data = res.data || {};
|
|
18980
18994
|
for (var i in data) {
|
|
@@ -19035,10 +19049,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19035
19049
|
});
|
|
19036
19050
|
},
|
|
19037
19051
|
|
|
19038
|
-
/**
|
|
19039
|
-
* @desc:显示用户信息
|
|
19040
|
-
* @author huangbo
|
|
19041
|
-
* @date 2024年9月7日
|
|
19052
|
+
/**
|
|
19053
|
+
* @desc:显示用户信息
|
|
19054
|
+
* @author huangbo
|
|
19055
|
+
* @date 2024年9月7日
|
|
19042
19056
|
**/
|
|
19043
19057
|
showUserInfo: function showUserInfo() {
|
|
19044
19058
|
if (this.showUser === false) {
|
|
@@ -19046,19 +19060,19 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19046
19060
|
}
|
|
19047
19061
|
},
|
|
19048
19062
|
|
|
19049
|
-
/**
|
|
19050
|
-
* @desc:删除更多应用菜单点击
|
|
19051
|
-
* @author huangbo
|
|
19052
|
-
* @date 2024年9月7日
|
|
19063
|
+
/**
|
|
19064
|
+
* @desc:删除更多应用菜单点击
|
|
19065
|
+
* @author huangbo
|
|
19066
|
+
* @date 2024年9月7日
|
|
19053
19067
|
**/
|
|
19054
19068
|
handleDelete: function handleDelete(index) {
|
|
19055
19069
|
this.newApps.splice(index, 1);
|
|
19056
19070
|
},
|
|
19057
19071
|
|
|
19058
|
-
/**
|
|
19059
|
-
* @desc:显示Drawer界面
|
|
19060
|
-
* @author huangbo
|
|
19061
|
-
* @date 2024年9月7日
|
|
19072
|
+
/**
|
|
19073
|
+
* @desc:显示Drawer界面
|
|
19074
|
+
* @author huangbo
|
|
19075
|
+
* @date 2024年9月7日
|
|
19062
19076
|
**/
|
|
19063
19077
|
handlerSetDrawer: function handlerSetDrawer(res, type) {
|
|
19064
19078
|
var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
|
|
@@ -19078,28 +19092,28 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19078
19092
|
}
|
|
19079
19093
|
},
|
|
19080
19094
|
|
|
19081
|
-
/**
|
|
19082
|
-
* @desc:关闭Drawer界面
|
|
19083
|
-
* @author huangbo
|
|
19084
|
-
* @date 2024年9月7日
|
|
19095
|
+
/**
|
|
19096
|
+
* @desc:关闭Drawer界面
|
|
19097
|
+
* @author huangbo
|
|
19098
|
+
* @date 2024年9月7日
|
|
19085
19099
|
**/
|
|
19086
19100
|
handleCloseDrawer: function handleCloseDrawer() {
|
|
19087
19101
|
this.drawer = { visible: false };
|
|
19088
19102
|
},
|
|
19089
19103
|
|
|
19090
|
-
/**
|
|
19091
|
-
* @desc:用户详情请求成功
|
|
19092
|
-
* @author huangbo
|
|
19093
|
-
* @date 2024年9月7日
|
|
19104
|
+
/**
|
|
19105
|
+
* @desc:用户详情请求成功
|
|
19106
|
+
* @author huangbo
|
|
19107
|
+
* @date 2024年9月7日
|
|
19094
19108
|
**/
|
|
19095
19109
|
handleSuccess: function handleSuccess(res) {
|
|
19096
19110
|
this.simpleUserInfo = res.simpleUserInfo;
|
|
19097
19111
|
},
|
|
19098
19112
|
|
|
19099
|
-
/**
|
|
19100
|
-
* @desc:修改用户配置
|
|
19101
|
-
* @author huangbo
|
|
19102
|
-
* @date 2024年9月7日
|
|
19113
|
+
/**
|
|
19114
|
+
* @desc:修改用户配置
|
|
19115
|
+
* @author huangbo
|
|
19116
|
+
* @date 2024年9月7日
|
|
19103
19117
|
**/
|
|
19104
19118
|
handleChangeConfig: function handleChangeConfig(name, res) {
|
|
19105
19119
|
if (name == 'userHeadUrl') {
|
|
@@ -19115,10 +19129,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19115
19129
|
}
|
|
19116
19130
|
},
|
|
19117
19131
|
|
|
19118
|
-
/**
|
|
19119
|
-
* @desc:关闭webSocket
|
|
19120
|
-
* @author huangbo
|
|
19121
|
-
* @date 2024年9月7日
|
|
19132
|
+
/**
|
|
19133
|
+
* @desc:关闭webSocket
|
|
19134
|
+
* @author huangbo
|
|
19135
|
+
* @date 2024年9月7日
|
|
19122
19136
|
**/
|
|
19123
19137
|
handlerClose: function handlerClose() {
|
|
19124
19138
|
if (this.webSocket) {
|
|
@@ -19129,10 +19143,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19129
19143
|
this.handleRefresh(1);
|
|
19130
19144
|
},
|
|
19131
19145
|
|
|
19132
|
-
/**
|
|
19133
|
-
* @desc:刷新选中iframe页签
|
|
19134
|
-
* @author huangbo
|
|
19135
|
-
* @date 2024年9月7日
|
|
19146
|
+
/**
|
|
19147
|
+
* @desc:刷新选中iframe页签
|
|
19148
|
+
* @author huangbo
|
|
19149
|
+
* @date 2024年9月7日
|
|
19136
19150
|
**/
|
|
19137
19151
|
handleRefresh: function handleRefresh(arg) {
|
|
19138
19152
|
if (arg !== 1) {
|
|
@@ -19190,11 +19204,11 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19190
19204
|
}
|
|
19191
19205
|
},
|
|
19192
19206
|
|
|
19193
|
-
/**
|
|
19194
|
-
* @desc:构建 Wujie 子应用 URL(处理路由参数)
|
|
19195
|
-
* @param {String} baseUrl - 基础 URL
|
|
19196
|
-
* @param {Object} routeInfo - 路由信息 { path, params, query }
|
|
19197
|
-
* @returns {String} 拼接后的完整 URL
|
|
19207
|
+
/**
|
|
19208
|
+
* @desc:构建 Wujie 子应用 URL(处理路由参数)
|
|
19209
|
+
* @param {String} baseUrl - 基础 URL
|
|
19210
|
+
* @param {Object} routeInfo - 路由信息 { path, params, query }
|
|
19211
|
+
* @returns {String} 拼接后的完整 URL
|
|
19198
19212
|
**/
|
|
19199
19213
|
buildWujieUrl: function buildWujieUrl(baseUrl, routeInfo) {
|
|
19200
19214
|
var path = routeInfo.path,
|
|
@@ -19245,10 +19259,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19245
19259
|
return baseUrlPrefix + fullPath;
|
|
19246
19260
|
},
|
|
19247
19261
|
|
|
19248
|
-
/**
|
|
19249
|
-
* @desc:删除iframe
|
|
19250
|
-
* @author huangbo
|
|
19251
|
-
* @date 2024年9月7日
|
|
19262
|
+
/**
|
|
19263
|
+
* @desc:删除iframe
|
|
19264
|
+
* @author huangbo
|
|
19265
|
+
* @date 2024年9月7日
|
|
19252
19266
|
**/
|
|
19253
19267
|
handleRemove: function handleRemove(name) {
|
|
19254
19268
|
var len = this.tabs.length - 1;
|
|
@@ -19265,10 +19279,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19265
19279
|
}
|
|
19266
19280
|
},
|
|
19267
19281
|
|
|
19268
|
-
/**
|
|
19269
|
-
* @desc:tabs鼠标右键事件
|
|
19270
|
-
* @author huangbo
|
|
19271
|
-
* @date 2024年9月7日
|
|
19282
|
+
/**
|
|
19283
|
+
* @desc:tabs鼠标右键事件
|
|
19284
|
+
* @author huangbo
|
|
19285
|
+
* @date 2024年9月7日
|
|
19272
19286
|
**/
|
|
19273
19287
|
handleContextmenu: function handleContextmenu(tabs, e) {
|
|
19274
19288
|
var disabled = {};
|
|
@@ -19293,10 +19307,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19293
19307
|
window.addEventListener('click', this.closeTabsEvents);
|
|
19294
19308
|
},
|
|
19295
19309
|
|
|
19296
|
-
/**
|
|
19297
|
-
* @desc:tabs页签事件
|
|
19298
|
-
* @author huangbo
|
|
19299
|
-
* @date 2024年9月7日
|
|
19310
|
+
/**
|
|
19311
|
+
* @desc:tabs页签事件
|
|
19312
|
+
* @author huangbo
|
|
19313
|
+
* @date 2024年9月7日
|
|
19300
19314
|
**/
|
|
19301
19315
|
handleTabsEvents: function handleTabsEvents(num) {
|
|
19302
19316
|
if (this.pane !== null) {
|
|
@@ -19307,10 +19321,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19307
19321
|
},
|
|
19308
19322
|
|
|
19309
19323
|
|
|
19310
|
-
/**
|
|
19311
|
-
* @desc:关闭页签事件面板
|
|
19312
|
-
* @author huangbo
|
|
19313
|
-
* @date 2024年9月7日
|
|
19324
|
+
/**
|
|
19325
|
+
* @desc:关闭页签事件面板
|
|
19326
|
+
* @author huangbo
|
|
19327
|
+
* @date 2024年9月7日
|
|
19314
19328
|
**/
|
|
19315
19329
|
closeTabsEvents: function closeTabsEvents(e) {
|
|
19316
19330
|
if (e.target.parentNode != this.$refs.tabsHandler.$el && e.target.parentNode.parentNode != this.$refs.tabsHandler.$el) {
|
|
@@ -19320,10 +19334,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19320
19334
|
},
|
|
19321
19335
|
|
|
19322
19336
|
|
|
19323
|
-
/**
|
|
19324
|
-
* @desc:tabs页签点击事件
|
|
19325
|
-
* @author huangbo
|
|
19326
|
-
* @date 2024年9月7日
|
|
19337
|
+
/**
|
|
19338
|
+
* @desc:tabs页签点击事件
|
|
19339
|
+
* @author huangbo
|
|
19340
|
+
* @date 2024年9月7日
|
|
19327
19341
|
**/
|
|
19328
19342
|
handleTabClick: function handleTabClick() {
|
|
19329
19343
|
this.active = '';
|
|
@@ -19331,10 +19345,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19331
19345
|
this.showMenu = false;
|
|
19332
19346
|
},
|
|
19333
19347
|
|
|
19334
|
-
/**
|
|
19335
|
-
* @desc:handler工具栏点击事件
|
|
19336
|
-
* @author huangbo
|
|
19337
|
-
* @date 2024年9月7日
|
|
19348
|
+
/**
|
|
19349
|
+
* @desc:handler工具栏点击事件
|
|
19350
|
+
* @author huangbo
|
|
19351
|
+
* @date 2024年9月7日
|
|
19338
19352
|
**/
|
|
19339
19353
|
handleClick: function handleClick(res) {
|
|
19340
19354
|
var type = res.type,
|
|
@@ -19424,10 +19438,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19424
19438
|
this.$emit('handler-click', res);
|
|
19425
19439
|
},
|
|
19426
19440
|
|
|
19427
|
-
/**
|
|
19428
|
-
* @desc:退出登录
|
|
19429
|
-
* @author huangbo
|
|
19430
|
-
* @date 2024年9月7日
|
|
19441
|
+
/**
|
|
19442
|
+
* @desc:退出登录
|
|
19443
|
+
* @author huangbo
|
|
19444
|
+
* @date 2024年9月7日
|
|
19431
19445
|
**/
|
|
19432
19446
|
handleQuit: function handleQuit() {
|
|
19433
19447
|
var _this15 = this;
|
|
@@ -19454,7 +19468,7 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19454
19468
|
document.body.appendChild(iframe);
|
|
19455
19469
|
}
|
|
19456
19470
|
}
|
|
19457
|
-
util["a" /* default */].ajax({ method: 'post', url: api["
|
|
19471
|
+
util["a" /* default */].ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
19458
19472
|
if (res.rCode == 0) {
|
|
19459
19473
|
util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
|
|
19460
19474
|
if (_this15.onQuit && typeof _this15.onQuit === 'function') {
|
|
@@ -19502,10 +19516,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19502
19516
|
}).catch(function (e) {});
|
|
19503
19517
|
},
|
|
19504
19518
|
|
|
19505
|
-
/**
|
|
19506
|
-
* @desc:主题、消息回调
|
|
19507
|
-
* @author huangbo
|
|
19508
|
-
* @date 2024年9月7日
|
|
19519
|
+
/**
|
|
19520
|
+
* @desc:主题、消息回调
|
|
19521
|
+
* @author huangbo
|
|
19522
|
+
* @date 2024年9月7日
|
|
19509
19523
|
**/
|
|
19510
19524
|
handleChange: function handleChange(res) {
|
|
19511
19525
|
var type = res.type,
|
|
@@ -19521,10 +19535,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19521
19535
|
}
|
|
19522
19536
|
},
|
|
19523
19537
|
|
|
19524
|
-
/**
|
|
19525
|
-
* @desc:菜单布局样式切换
|
|
19526
|
-
* @author huangbo
|
|
19527
|
-
* @date 2024年9月7日
|
|
19538
|
+
/**
|
|
19539
|
+
* @desc:菜单布局样式切换
|
|
19540
|
+
* @author huangbo
|
|
19541
|
+
* @date 2024年9月7日
|
|
19528
19542
|
**/
|
|
19529
19543
|
handleLayout: function handleLayout(res, active) {
|
|
19530
19544
|
if (active) {
|
|
@@ -19534,10 +19548,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19534
19548
|
this.$emit('chang-layout', res, active);
|
|
19535
19549
|
},
|
|
19536
19550
|
|
|
19537
|
-
/**
|
|
19538
|
-
* @desc:消息修改总数
|
|
19539
|
-
* @author huangbo
|
|
19540
|
-
* @date 2024年9月7日
|
|
19551
|
+
/**
|
|
19552
|
+
* @desc:消息修改总数
|
|
19553
|
+
* @author huangbo
|
|
19554
|
+
* @date 2024年9月7日
|
|
19541
19555
|
**/
|
|
19542
19556
|
handleMenuTips: function handleMenuTips(id, num) {
|
|
19543
19557
|
if (num) {
|
|
@@ -19548,10 +19562,10 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19548
19562
|
}
|
|
19549
19563
|
},
|
|
19550
19564
|
|
|
19551
|
-
/**
|
|
19552
|
-
* @desc:处理即时消息
|
|
19553
|
-
* @author huangbo
|
|
19554
|
-
* @date 2024年9月7日
|
|
19565
|
+
/**
|
|
19566
|
+
* @desc:处理即时消息
|
|
19567
|
+
* @author huangbo
|
|
19568
|
+
* @date 2024年9月7日
|
|
19555
19569
|
**/
|
|
19556
19570
|
handleOpened: function handleOpened(res) {
|
|
19557
19571
|
var _this16 = this;
|
|
@@ -19567,14 +19581,14 @@ var simplicityTopvue_type_script_lang_js_systemMode = util["a" /* default */].ge
|
|
|
19567
19581
|
}
|
|
19568
19582
|
},
|
|
19569
19583
|
|
|
19570
|
-
/**
|
|
19571
|
-
* @desc:菜单点击事件
|
|
19572
|
-
* @author huangbo
|
|
19573
|
-
* @date 2024年9月7日
|
|
19574
|
-
* @param {*} res 菜单点击事件参数
|
|
19575
|
-
* @param {*} method 菜单点击事件方法
|
|
19576
|
-
* 1.顶部菜单点击跳转已经实现
|
|
19577
|
-
* 2.其他地方点击跳转,需要选中跳转的一二级菜单
|
|
19584
|
+
/**
|
|
19585
|
+
* @desc:菜单点击事件
|
|
19586
|
+
* @author huangbo
|
|
19587
|
+
* @date 2024年9月7日
|
|
19588
|
+
* @param {*} res 菜单点击事件参数
|
|
19589
|
+
* @param {*} method 菜单点击事件方法
|
|
19590
|
+
* 1.顶部菜单点击跳转已经实现
|
|
19591
|
+
* 2.其他地方点击跳转,需要选中跳转的一二级菜单
|
|
19578
19592
|
**/
|
|
19579
19593
|
handleSelect: function handleSelect(res) {
|
|
19580
19594
|
var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
@@ -20578,7 +20592,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
|
|
|
20578
20592
|
var _this2 = this;
|
|
20579
20593
|
|
|
20580
20594
|
util["a" /* default */].ajax({
|
|
20581
|
-
url: api["
|
|
20595
|
+
url: api["xb" /* initUserSet */]
|
|
20582
20596
|
}).then(function (res) {
|
|
20583
20597
|
if (res.rCode === 0) {
|
|
20584
20598
|
var results = JSON.parse(JSON.stringify(res.results));
|
|
@@ -20618,7 +20632,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
|
|
|
20618
20632
|
if (res.url) {
|
|
20619
20633
|
url = res.url;
|
|
20620
20634
|
} else {
|
|
20621
|
-
url = api["
|
|
20635
|
+
url = api["A" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
|
|
20622
20636
|
}
|
|
20623
20637
|
this.$emit('change', 'userHeadUrl', url);
|
|
20624
20638
|
},
|
|
@@ -20627,7 +20641,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
|
|
|
20627
20641
|
|
|
20628
20642
|
switch (type) {
|
|
20629
20643
|
case 'job':
|
|
20630
|
-
util["a" /* default */].ajax({ url: api["
|
|
20644
|
+
util["a" /* default */].ajax({ url: api["dc" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
|
|
20631
20645
|
if (res.rCode == 0) {
|
|
20632
20646
|
util["a" /* default */].setStorage({
|
|
20633
20647
|
type: _this3.storage,
|
|
@@ -20667,7 +20681,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
|
|
|
20667
20681
|
var initLogin = util["a" /* default */].getStorage('initLogin');
|
|
20668
20682
|
initLogin && (initLogin = JSON.parse(initLogin));
|
|
20669
20683
|
util["a" /* default */].ajax({
|
|
20670
|
-
url: api["
|
|
20684
|
+
url: api["Oc" /* updateUserInfo */],
|
|
20671
20685
|
params: {
|
|
20672
20686
|
email: this.values.email,
|
|
20673
20687
|
officeTel: this.values.officeTel,
|
|
@@ -20734,7 +20748,7 @@ var default_userinfovue_type_script_lang_js_extends = Object.assign || function
|
|
|
20734
20748
|
var notify = _this4.values.notify.sort().join(',');
|
|
20735
20749
|
if (notify != _this4.notify.split(',').sort().join(',')) {
|
|
20736
20750
|
util["a" /* default */].ajax({
|
|
20737
|
-
url: api["
|
|
20751
|
+
url: api["Nc" /* updateUserCustomInfo */],
|
|
20738
20752
|
params: {
|
|
20739
20753
|
notify: notify
|
|
20740
20754
|
}
|
|
@@ -21089,7 +21103,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
|
|
|
21089
21103
|
if (this.pageNum <= this.pageCount) {
|
|
21090
21104
|
this.loading = true;
|
|
21091
21105
|
util["a" /* default */].ajax({
|
|
21092
|
-
url: api["
|
|
21106
|
+
url: api["ec" /* sysMsgPage */],
|
|
21093
21107
|
params: {
|
|
21094
21108
|
pageNum: reload ? 1 : this.pageNum,
|
|
21095
21109
|
pageSize: this.pageSize
|
|
@@ -21122,7 +21136,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
|
|
|
21122
21136
|
var _this2 = this;
|
|
21123
21137
|
|
|
21124
21138
|
util["a" /* default */].ajax({
|
|
21125
|
-
url: api["
|
|
21139
|
+
url: api["tb" /* ignoreSysMsg */],
|
|
21126
21140
|
params: {
|
|
21127
21141
|
id: res.id
|
|
21128
21142
|
}
|
|
@@ -21142,7 +21156,7 @@ messagevue_type_template_id_016a2883_render._withStripped = true
|
|
|
21142
21156
|
var _this3 = this;
|
|
21143
21157
|
|
|
21144
21158
|
util["a" /* default */].ajax({
|
|
21145
|
-
url: api["
|
|
21159
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
21146
21160
|
}).then(function (res) {
|
|
21147
21161
|
_this3.count = 0;
|
|
21148
21162
|
_this3.msgs = [];
|
|
@@ -21477,7 +21491,7 @@ noticevue_type_template_id_6c63684e_render._withStripped = true
|
|
|
21477
21491
|
var _this = this;
|
|
21478
21492
|
|
|
21479
21493
|
util["a" /* default */].ajax({
|
|
21480
|
-
url: api["
|
|
21494
|
+
url: api["sb" /* ignoreAllSysMsg */]
|
|
21481
21495
|
}).then(function (res) {
|
|
21482
21496
|
_this.count = 0;
|
|
21483
21497
|
_this.msgs = [];
|
|
@@ -21983,7 +21997,7 @@ var log = util["a" /* default */].getParams('console');
|
|
|
21983
21997
|
//获取用户信息的接口
|
|
21984
21998
|
mainConfig: {
|
|
21985
21999
|
type: String,
|
|
21986
|
-
default: api["
|
|
22000
|
+
default: api["Db" /* mainConfig */]
|
|
21987
22001
|
},
|
|
21988
22002
|
iframeId: {
|
|
21989
22003
|
type: String,
|
|
@@ -22092,9 +22106,9 @@ var log = util["a" /* default */].getParams('console');
|
|
|
22092
22106
|
return this.menuUrl;
|
|
22093
22107
|
}
|
|
22094
22108
|
if (this.application) {
|
|
22095
|
-
return api["
|
|
22109
|
+
return api["Q" /* getComplexApplicationsNew */];
|
|
22096
22110
|
}
|
|
22097
|
-
return api["
|
|
22111
|
+
return api["P" /* getComplexApplications */];
|
|
22098
22112
|
},
|
|
22099
22113
|
|
|
22100
22114
|
//是否双列右侧菜单
|
|
@@ -22410,7 +22424,7 @@ var log = util["a" /* default */].getParams('console');
|
|
|
22410
22424
|
return;
|
|
22411
22425
|
}
|
|
22412
22426
|
util["a" /* default */].ajax({
|
|
22413
|
-
url: api["
|
|
22427
|
+
url: api["Nc" /* updateUserCustomInfo */],
|
|
22414
22428
|
params: { color: escape(color.toLowerCase()) },
|
|
22415
22429
|
data: { color: escape(color.toLowerCase()) }
|
|
22416
22430
|
}).then(function (res) {
|
|
@@ -23632,8 +23646,8 @@ var log = util["a" /* default */].getParams('console');
|
|
|
23632
23646
|
var _this11 = this;
|
|
23633
23647
|
|
|
23634
23648
|
this.webSocket = util["a" /* default */].socket({
|
|
23635
|
-
url: api["
|
|
23636
|
-
take: api["
|
|
23649
|
+
url: api["Uc" /* wss */],
|
|
23650
|
+
take: api["Kc" /* topic */],
|
|
23637
23651
|
success: function success(res) {
|
|
23638
23652
|
var data = res.data || {};
|
|
23639
23653
|
var subSystemId = data.subSystemId || '';
|