eoss-ui 0.6.76 → 0.6.78
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 +30 -8
- package/lib/button.js +30 -8
- package/lib/calogin.js +263 -241
- package/lib/checkbox-group.js +30 -8
- package/lib/data-table-form.js +30 -8
- package/lib/data-table.js +30 -8
- package/lib/date-picker.js +30 -8
- package/lib/dialog.js +30 -8
- package/lib/eoss-ui.common.js +1699 -1212
- package/lib/flow-group.js +30 -8
- package/lib/flow-list.js +111 -89
- package/lib/flow.js +965 -515
- package/lib/form.js +50 -10
- package/lib/handle-user.js +30 -8
- package/lib/handler.js +30 -8
- package/lib/icon.js +30 -8
- package/lib/index.js +1 -1
- package/lib/input-number.js +30 -8
- package/lib/input.js +30 -8
- package/lib/login.js +30 -8
- package/lib/main.js +373 -332
- package/lib/nav.js +30 -8
- package/lib/page.js +30 -8
- package/lib/pagination.js +30 -8
- package/lib/player.js +30 -8
- package/lib/qr-code.js +43 -21
- package/lib/radio-group.js +30 -8
- package/lib/retrial-auth.js +30 -8
- package/lib/select-ganged.js +30 -8
- package/lib/select.js +30 -8
- package/lib/selector-panel.js +30 -8
- package/lib/selector.js +30 -8
- package/lib/sizer.js +30 -8
- package/lib/steps.js +30 -8
- package/lib/switch.js +30 -8
- package/lib/table-form.js +30 -8
- package/lib/tabs.js +30 -8
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +30 -8
- package/lib/tree-group.js +30 -8
- package/lib/tree.js +30 -8
- package/lib/upload.js +30 -8
- package/lib/utils/util.js +26 -4
- package/lib/wujie.js +30 -8
- package/lib/wxlogin.js +30 -8
- package/package.json +160 -160
- 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/button-group/src/main.vue +298 -298
- package/packages/calendar/index.js +5 -5
- package/packages/calogin/index.js +5 -5
- package/packages/calogin/src/main.vue +412 -412
- 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/clients/src/main.vue +151 -151
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +39 -39
- package/packages/data-table/src/column.vue +989 -989
- package/packages/data-table/src/main.vue +1822 -1822
- 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 +370 -363
- package/packages/flow/src/component/CommonOpinions.vue +364 -346
- package/packages/flow/src/component/CustomPreset.vue +322 -322
- package/packages/flow/src/component/FileList.vue +99 -99
- package/packages/flow/src/component/Preset.vue +255 -255
- package/packages/flow/src/component/SendMsg.vue +241 -241
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +627 -627
- package/packages/flow/src/form.vue +121 -121
- package/packages/flow/src/freeStartFlow.vue +2843 -2843
- package/packages/flow/src/main.vue +3564 -3445
- package/packages/flow/src/processForm.vue +1177 -1096
- package/packages/flow/src/processReject.vue +294 -294
- package/packages/flow/src/reset.vue +906 -905
- package/packages/flow/src/startTaskRead.vue +677 -659
- package/packages/flow/src/supervise.vue +149 -149
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +688 -688
- package/packages/flow-list/index.js +5 -5
- package/packages/flow-list/src/main.vue +1770 -1770
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +3797 -3796
- package/packages/form/src/table.vue +1502 -1502
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +138 -138
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +493 -493
- package/packages/icon/index.js +5 -5
- package/packages/icon/src/main.vue +101 -101
- 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 +2001 -2001
- package/packages/login/src/resetPassword.vue +562 -562
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/index.vue +6 -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 +503 -503
- package/packages/main/src/main.vue +107 -84
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +458 -458
- package/packages/main/src/public/settings.vue +221 -221
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +259 -259
- package/packages/main/src/simplicity/index.vue +2102 -2099
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/menu-list.vue +135 -135
- package/packages/main/src/simplicity/message.vue +259 -259
- package/packages/main/src/simplicity/notice.vue +190 -190
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/sub-menu.vue +264 -264
- package/packages/main/src/simplicity/user.vue +260 -260
- package/packages/main/src/simplicity/userinfo.vue +312 -312
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +584 -584
- package/packages/nav/index.js +5 -5
- package/packages/nav/src/main.vue +351 -351
- 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 +280 -280
- package/packages/select/index.js +5 -5
- package/packages/select/src/main.vue +778 -778
- 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/src/main.vue +729 -729
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/main.vue +1027 -1027
- package/packages/selector-panel/src/selection.vue +170 -170
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +254 -254
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/switch/src/main.vue +154 -154
- 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/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/form.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- 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/data-table.scss +293 -293
- 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-list.scss +39 -39
- package/packages/theme-chalk/src/flow.scss +348 -343
- package/packages/theme-chalk/src/form.scss +499 -496
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/handler.scss +143 -143
- package/packages/theme-chalk/src/icon.scss +1792 -1792
- 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/login.scss +984 -984
- package/packages/theme-chalk/src/main.scss +663 -663
- package/packages/theme-chalk/src/menu.scss +222 -222
- 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/selector.scss +91 -91
- package/packages/theme-chalk/src/simplicity.scss +1355 -1355
- 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 +165 -165
- package/packages/theme-chalk/src/upload.scss +172 -172
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/tips/src/main.vue +141 -141
- 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 +1348 -1348
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wujie/src/main.vue +145 -145
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +294 -294
- package/src/config/image.js +2 -2
- package/src/index.js +163 -163
- 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/rules.js +18 -18
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +39 -3
- package/src/utils/webSocket.js +107 -107
- package/packages/.DS_Store +0 -0
- package/packages/autocomplete/.DS_Store +0 -0
- package/packages/calogin/.DS_Store +0 -0
- package/packages/date-picker/.DS_Store +0 -0
- package/packages/date-picker/src/.DS_Store +0 -0
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow-list/.DS_Store +0 -0
- package/packages/form/.DS_Store +0 -0
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/IcpItem.vue +0 -66
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/menu/.DS_Store +0 -0
- package/packages/scrollbar/.DS_Store +0 -0
- package/packages/select/.DS_Store +0 -0
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/upload/.DS_Store +0 -0
- package/src/.DS_Store +0 -0
- package/src/utils/.DS_Store +0 -0
package/lib/eoss-ui.common.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 = 20);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ([
|
|
@@ -93,14 +93,14 @@ module.exports =
|
|
|
93
93
|
/* harmony import */ var babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(2);
|
|
94
94
|
/* harmony import */ var babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0__);
|
|
95
95
|
/* harmony import */ var _config_api__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1);
|
|
96
|
-
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(
|
|
96
|
+
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9);
|
|
97
97
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_2__);
|
|
98
98
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(6);
|
|
99
99
|
/* harmony import */ var qs__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(qs__WEBPACK_IMPORTED_MODULE_3__);
|
|
100
|
-
/* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(
|
|
100
|
+
/* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(10);
|
|
101
101
|
/* harmony import */ var json_bigint__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(json_bigint__WEBPACK_IMPORTED_MODULE_4__);
|
|
102
|
-
/* harmony import */ var _webSocket__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(
|
|
103
|
-
/* harmony import */ var ua_parser_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(
|
|
102
|
+
/* harmony import */ var _webSocket__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(11);
|
|
103
|
+
/* harmony import */ var ua_parser_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(14);
|
|
104
104
|
/* harmony import */ var ua_parser_js__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(ua_parser_js__WEBPACK_IMPORTED_MODULE_6__);
|
|
105
105
|
/* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(7);
|
|
106
106
|
/* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_7__);
|
|
@@ -122,8 +122,8 @@ function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in ob
|
|
|
122
122
|
**/
|
|
123
123
|
|
|
124
124
|
/* eslint-disable indent */
|
|
125
|
-
var sm2 = __webpack_require__(
|
|
126
|
-
var lodash = __webpack_require__(
|
|
125
|
+
var sm2 = __webpack_require__(21).sm2;
|
|
126
|
+
var lodash = __webpack_require__(22);
|
|
127
127
|
|
|
128
128
|
|
|
129
129
|
|
|
@@ -2365,7 +2365,7 @@ var isLogined = function () {
|
|
|
2365
2365
|
cookie = _ref11.cookie,
|
|
2366
2366
|
loginPage = _ref11.loginPage,
|
|
2367
2367
|
redirect = _ref11.redirect;
|
|
2368
|
-
var quit, pathname, path, token, loadingInstance;
|
|
2368
|
+
var quit, pathname, path, token, loadingInstance, referrerUrl;
|
|
2369
2369
|
return babel_runtime_regenerator__WEBPACK_IMPORTED_MODULE_0___default.a.wrap(function _callee$(_context) {
|
|
2370
2370
|
while (1) {
|
|
2371
2371
|
switch (_context.prev = _context.next) {
|
|
@@ -2493,7 +2493,14 @@ var isLogined = function () {
|
|
|
2493
2493
|
if (loginPage) {
|
|
2494
2494
|
win.top.location.replace(loginPage);
|
|
2495
2495
|
} else if (document.referrer) {
|
|
2496
|
-
|
|
2496
|
+
var referrerUrl = new URL(document.referrer);
|
|
2497
|
+
if (referrerUrl.host !== win.top.location.host) {
|
|
2498
|
+
win.top.location.replace(document.referrer);
|
|
2499
|
+
} else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
|
|
2500
|
+
win.top.location.href = './login.html';
|
|
2501
|
+
} else {
|
|
2502
|
+
next('/login');
|
|
2503
|
+
}
|
|
2497
2504
|
} else if (win.top.location.href.indexOf('main.html') > -1) {
|
|
2498
2505
|
win.top.location.href = './login.html';
|
|
2499
2506
|
} else {
|
|
@@ -2516,7 +2523,14 @@ var isLogined = function () {
|
|
|
2516
2523
|
if (loginPage) {
|
|
2517
2524
|
win.top.location.replace(loginPage);
|
|
2518
2525
|
} else if (document.referrer) {
|
|
2519
|
-
|
|
2526
|
+
var referrerUrl = new URL(document.referrer);
|
|
2527
|
+
if (referrerUrl.host !== win.top.location.host) {
|
|
2528
|
+
win.top.location.replace(document.referrer);
|
|
2529
|
+
} else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
|
|
2530
|
+
win.top.location.href = './login.html';
|
|
2531
|
+
} else {
|
|
2532
|
+
next('/login');
|
|
2533
|
+
}
|
|
2520
2534
|
} else if (win.top.location.href.indexOf('main.html') > -1) {
|
|
2521
2535
|
win.top.location.href = './login.html';
|
|
2522
2536
|
} else {
|
|
@@ -2549,7 +2563,15 @@ var isLogined = function () {
|
|
|
2549
2563
|
if (loginPage) {
|
|
2550
2564
|
win.top.location.replace(loginPage);
|
|
2551
2565
|
} else if (document.referrer) {
|
|
2552
|
-
|
|
2566
|
+
referrerUrl = new URL(document.referrer);
|
|
2567
|
+
|
|
2568
|
+
if (referrerUrl.host !== win.top.location.host) {
|
|
2569
|
+
win.top.location.replace(document.referrer);
|
|
2570
|
+
} else if (win.top.location.href.indexOf('main.html') > -1 || win.top.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
|
|
2571
|
+
win.top.location.href = './login.html';
|
|
2572
|
+
} else {
|
|
2573
|
+
next('/login');
|
|
2574
|
+
}
|
|
2553
2575
|
} else if (win.top.location.href.indexOf('main.html') > -1) {
|
|
2554
2576
|
win.top.location.href = './login.html';
|
|
2555
2577
|
} else {
|
|
@@ -3988,28 +4010,22 @@ module.exports = require("video.js");
|
|
|
3988
4010
|
/* 9 */
|
|
3989
4011
|
/***/ (function(module, exports) {
|
|
3990
4012
|
|
|
3991
|
-
module.exports = require("lodash");
|
|
3992
|
-
|
|
3993
|
-
/***/ }),
|
|
3994
|
-
/* 10 */
|
|
3995
|
-
/***/ (function(module, exports) {
|
|
3996
|
-
|
|
3997
4013
|
module.exports = require("axios");
|
|
3998
4014
|
|
|
3999
4015
|
/***/ }),
|
|
4000
|
-
/*
|
|
4016
|
+
/* 10 */
|
|
4001
4017
|
/***/ (function(module, exports) {
|
|
4002
4018
|
|
|
4003
4019
|
module.exports = require("json-bigint");
|
|
4004
4020
|
|
|
4005
4021
|
/***/ }),
|
|
4006
|
-
/*
|
|
4022
|
+
/* 11 */
|
|
4007
4023
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4008
4024
|
|
|
4009
4025
|
"use strict";
|
|
4010
|
-
/* harmony import */ var sockjs_client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
4026
|
+
/* harmony import */ var sockjs_client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(12);
|
|
4011
4027
|
/* harmony import */ var sockjs_client__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(sockjs_client__WEBPACK_IMPORTED_MODULE_0__);
|
|
4012
|
-
/* harmony import */ var stompjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(
|
|
4028
|
+
/* harmony import */ var stompjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(13);
|
|
4013
4029
|
/* harmony import */ var stompjs__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(stompjs__WEBPACK_IMPORTED_MODULE_1__);
|
|
4014
4030
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
4015
4031
|
|
|
@@ -4145,66 +4161,72 @@ var WebSocket = function () {
|
|
|
4145
4161
|
/* harmony default export */ __webpack_exports__["a"] = (WebSocket);
|
|
4146
4162
|
|
|
4147
4163
|
/***/ }),
|
|
4148
|
-
/*
|
|
4164
|
+
/* 12 */
|
|
4149
4165
|
/***/ (function(module, exports) {
|
|
4150
4166
|
|
|
4151
4167
|
module.exports = require("sockjs-client");
|
|
4152
4168
|
|
|
4153
4169
|
/***/ }),
|
|
4154
|
-
/*
|
|
4170
|
+
/* 13 */
|
|
4155
4171
|
/***/ (function(module, exports) {
|
|
4156
4172
|
|
|
4157
4173
|
module.exports = require("stompjs");
|
|
4158
4174
|
|
|
4159
4175
|
/***/ }),
|
|
4160
|
-
/*
|
|
4176
|
+
/* 14 */
|
|
4161
4177
|
/***/ (function(module, exports) {
|
|
4162
4178
|
|
|
4163
4179
|
module.exports = require("ua-parser-js");
|
|
4164
4180
|
|
|
4165
4181
|
/***/ }),
|
|
4166
|
-
/*
|
|
4182
|
+
/* 15 */
|
|
4167
4183
|
/***/ (function(module) {
|
|
4168
4184
|
|
|
4169
4185
|
module.exports = JSON.parse("[\"zuomian\",\"monitor\",\"maximize\",\"pointer-up\",\"pointer-left\",\"pointer-down\",\"tri-down\",\"retrograde\",\"rainfall\",\"caveat\",\"print\",\"alarm\",\"table\",\"duigouquan\",\"bumen\",\"mm\",\"accelerate\",\"quanping\",\"password\",\"qing\",\"kaifa\",\"daoru\",\"piaochongicon\",\"instructions\",\"notice\",\"wifi\",\"tishicuo\",\"minganciguanli\",\"switch-off\",\"switch-on\",\"narrow\",\"yidongduan\",\"web\",\"upload\",\"message\",\"go-back\",\"close\",\"shujutongji\",\"folder\",\"edit\",\"enter\",\"dian\",\"wendu\",\"shangwu\",\"shenbao\",\"magnifier\",\"project-add\",\"xiexian\",\"caidan\",\"tupian\",\"yinyu\",\"wenhao\",\"template\",\"daiban\",\"set\",\"zhengwen\",\"cuowu\",\"chenggong\",\"indent\",\"increase\",\"ziliaoku\",\"tuichu\",\"quit\",\"leaf\",\"refresh\",\"statistic\",\"gengduo\",\"lvyou\",\"mail\",\"user\",\"zhishi\",\"weizhi\",\"jinggao\",\"zuzhijigou\",\"xue\",\"fenxiang\",\"jinrong\",\"shanchu\",\"jianhao\",\"jiahao\",\"yinzhang\",\"renyuanqiehuan\",\"gouxuanzhong1\",\"circle\",\"fuxuankuang1\",\"fangkuang\",\"application\",\"wenjianjia\",\"jiaren\",\"xiugai\",\"duanxinguanli\",\"workbench\",\"rizhi\",\"gongwen\",\"qingshi\",\"shiwu\",\"official\",\"baogao\",\"document\",\"wodeyouxiang\",\"ziliaojiaohuan\",\"denglu\",\"podium\",\"fangkuai\",\"xuewei\",\"duoyun\",\"pm\",\"xiajia\",\"huanbao\",\"dunpai\",\"shu\",\"gongzuozheng\",\"more\",\"fenlei\",\"delete\",\"fengsu\",\"bar\",\"yuanqu\",\"duomeiti\",\"youjian\",\"qiye\",\"zuixinzixun\",\"biaoge\",\"omit\",\"diaotou\",\"jiantou-left\",\"jiantou-right\",\"jiantou-up\",\"roles\",\"jiantou-next\",\"chijiuhuacunchu\",\"zhuanhuan\",\"cloudy\",\"form\",\"wuye\",\"tri-up\",\"pointer-right\",\"bianji\",\"tri-right\",\"tri-left\",\"daimaguanli\",\"jiankong\",\"kaifazhong\",\"fujian\",\"bingtu\",\"zhuzhuangtu\",\"lose\",\"rmb\",\"move\",\"xiazai\",\"yiban\",\"laoshi\",\"clear\",\"jinyong\",\"yunxing\",\"weihu\",\"chakan\",\"pifu\",\"ren\",\"gouwuche\",\"loading2\",\"yulan\",\"ziliao\",\"yidong\",\"fenxiang11\",\"kaoqin\",\"change\",\"shidu\",\"portfolio\",\"info\",\"yanjing\",\"laba\",\"camera\",\"xitongxiaoxi\",\"xitongguanli\",\"webduan\",\"wagnz\",\"group\",\"shengqian\",\"jiantou-prev\",\"attention\",\"look\",\"guanzhu\",\"daikuan\",\"tubiao\",\"duigou\",\"star\",\"dayin\",\"xinzeng\",\"reduce\",\"goup\",\"calendar\",\"tree\",\"yingyong\",\"caution\",\"zhuanfa\",\"add\",\"zongtiqixian\",\"daochu\",\"gongwu\",\"ihouse\",\"chilun\",\"weixiu\",\"chengguo\",\"trophy\",\"duiwu\",\"qiehuanjiaose\",\"door\",\"shebei\",\"fangjian\",\"microscope\",\"huaxue\",\"shiyanshianquan\",\"shiyan\",\"qiyexinxi\",\"yewuxinxi\",\"lab\",\"shiyanguanli\",\"yuqing\",\"big-screen\",\"signal-search\",\"database\",\"star-mark\",\"cng\",\"professor\",\"informatization\",\"code\",\"science\",\"price\",\"xunhuan\",\"savings\",\"administration\",\"aid\",\"biao\",\"line\",\"xietong\",\"jingzheng\",\"enterprise\",\"datatable\",\"toubiao\",\"bingdu\",\"keji2\",\"qiyeku5\",\"touzi5\",\"zijinliu\",\"zhishichanquan3\",\"kejifuwu2\",\"zhishichanquan2\",\"zijinanquan\",\"kejifuwu1\",\"geju\",\"yiqingfangkong\",\"kejifuwu\",\"anquanfangkong\",\"shujufuwu\",\"shujuceng\",\"shujugongxiang\",\"flows\",\"setup\",\"shujulian\",\"caiwujianguan\",\"caiwuliushui\",\"mubiaogeju\",\"juxing\",\"fuwuqi\",\"touzijigou\",\"xiezilou\",\"jianzhu\",\"logo\",\"touzhi\",\"zijin\",\"fintech\",\"touzixiangmu\",\"library\",\"touziguanli\",\"zhongda\",\"ziyuan\",\"shujutai\",\"shujudongtai\",\"bank\",\"shujuzhongxin\",\"zhongyaomubiao\",\"touzishijian\",\"caiwuguanli\",\"mingzhong\",\"touzishenpi\",\"jingzhenggeju\",\"property\",\"keji\",\"qiyeku\",\"zhongyaojihui\",\"touzilicai\",\"zhishichanquan\",\"touzi\",\"tzz\",\"menu\",\"xiangmushu\",\"pdf\",\"jiazai\",\"gongsi\",\"rise\",\"jbxx\",\"zwxx\",\"jypx\",\"jcgl\",\"ndkh\",\"grjl\",\"shgx\",\"gou\",\"shijian\",\"fukuan\",\"guoji\",\"shoukuan\",\"down\",\"gongzuotai\",\"gaigedongtai\",\"xitongshezhi\",\"relation\",\"zuzhirenshi\",\"kaohepingjia\",\"caiwujiandu\",\"sanzhongyida\",\"mima\",\"xianshi\",\"zhanghao\",\"bangongshi\",\"checked\",\"checke\",\"help\",\"kuoda\",\"banli\",\"xiaoxi\",\"shouqicaidan\",\"shouqicaidan-right\",\"smile\",\"tongzhi\",\"guanji\",\"shuaxin\",\"guiji\",\"tianjiawenjianjia\",\"yunxiazai\",\"del\",\"touzifangan\",\"zongheguanli\",\"sanzhongyida_mian\",\"gongwenguanli1\",\"heguiguanli\",\"jingyingfenxi\",\"txl\",\"diannao\",\"renliziyuan\",\"caiwuxitong\",\"shiwuguanli\",\"shouye\",\"bangongyongpin\",\"sidebar\",\"zhidulashi\",\"log\",\"fawenguanli\",\"huiyiguanli\",\"zuzhishishi\",\"gongwenqianshou\",\"jinxiupeixun\",\"gongwenbao\",\"jiaohuan\",\"daibanshixiang\",\"richeng\",\"tongxunlu\",\"yongche\",\"yanzheng\",\"daibanxinxi\",\"shuben\",\"fanfu\",\"guangbo\",\"shuzhuangtu\",\"bengqiye\",\"tongguo\",\"dengdai\",\"cross\",\"daichuli\",\"zhenggai\",\"shouli\",\"shujuhecha\",\"guanli\",\"paper-file\",\"wenjian\",\"dakaiwenjian\",\"yewu\",\"jiance\",\"jiheguanli\",\"jinru\",\"arrow-right\",\"lingdao\",\"rencai\",\"prev\",\"next\",\"jianpan\",\"qrcode\",\"bohui\",\"homepage\",\"download\",\"gantanhao\",\"dingding\",\"weixin\",\"pad\",\"ios\",\"android\",\"txt\",\"doc\",\"audioo\",\"video\",\"zip\",\"shuru\",\"duanxin\",\"saoma\",\"youxiang\",\"word\",\"excel\",\"fileword\",\"picture\",\"ppt\",\"ca\",\"usb-key\",\"wenjianjiadakai\",\"yingyonglan\",\"home\",\"tiyanxinban\",\"shiyongjiuban\",\"zhuomian\",\"scan\",\"youbian\",\"zuobian\",\"saomadenglu\",\"zhanghaodenglu\",\"zhengfangti\",\"tingzhi\",\"youxiangdenglu\",\"duanxindenglu\",\"liaotian\",\"zhixiangyou\",\"zhixiangshang\",\"zhixiangxia\",\"zhixiangzuo\",\"HarmonyOs\"]");
|
|
4170
4186
|
|
|
4171
4187
|
/***/ }),
|
|
4172
|
-
/*
|
|
4188
|
+
/* 16 */
|
|
4173
4189
|
/***/ (function(module, exports) {
|
|
4174
4190
|
|
|
4175
4191
|
module.exports = require("video.js/dist/lang/zh-CN.json");
|
|
4176
4192
|
|
|
4177
4193
|
/***/ }),
|
|
4178
|
-
/*
|
|
4194
|
+
/* 17 */
|
|
4179
4195
|
/***/ (function(module, exports) {
|
|
4180
4196
|
|
|
4181
4197
|
module.exports = require("eoss-element/src/utils/clickoutside");
|
|
4182
4198
|
|
|
4183
4199
|
/***/ }),
|
|
4184
|
-
/*
|
|
4200
|
+
/* 18 */
|
|
4185
4201
|
/***/ (function(module, exports) {
|
|
4186
4202
|
|
|
4187
4203
|
module.exports = require("sortablejs");
|
|
4188
4204
|
|
|
4189
4205
|
/***/ }),
|
|
4190
|
-
/*
|
|
4206
|
+
/* 19 */
|
|
4191
4207
|
/***/ (function(module, exports) {
|
|
4192
4208
|
|
|
4193
4209
|
module.exports = require("js-base64");
|
|
4194
4210
|
|
|
4195
4211
|
/***/ }),
|
|
4196
|
-
/*
|
|
4212
|
+
/* 20 */
|
|
4197
4213
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4198
4214
|
|
|
4199
4215
|
module.exports = __webpack_require__(25);
|
|
4200
4216
|
|
|
4201
4217
|
|
|
4202
4218
|
/***/ }),
|
|
4203
|
-
/*
|
|
4219
|
+
/* 21 */
|
|
4204
4220
|
/***/ (function(module, exports) {
|
|
4205
4221
|
|
|
4206
4222
|
module.exports = require("sm-crypto");
|
|
4207
4223
|
|
|
4224
|
+
/***/ }),
|
|
4225
|
+
/* 22 */
|
|
4226
|
+
/***/ (function(module, exports) {
|
|
4227
|
+
|
|
4228
|
+
module.exports = require("lodash");
|
|
4229
|
+
|
|
4208
4230
|
/***/ }),
|
|
4209
4231
|
/* 23 */
|
|
4210
4232
|
/***/ (function(module, exports) {
|
|
@@ -5927,8 +5949,8 @@ var plugin_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "
|
|
|
5927
5949
|
|
|
5928
5950
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
5929
5951
|
|
|
5930
|
-
/**
|
|
5931
|
-
* JIT_GW_ExtInterface 模块,提供与客户端交互的功能
|
|
5952
|
+
/**
|
|
5953
|
+
* JIT_GW_ExtInterface 模块,提供与客户端交互的功能
|
|
5932
5954
|
*/
|
|
5933
5955
|
var CA_ExtInterface = function () {
|
|
5934
5956
|
function CA_ExtInterface() {
|
|
@@ -5941,11 +5963,11 @@ var CA_ExtInterface = function () {
|
|
|
5941
5963
|
this.init();
|
|
5942
5964
|
}
|
|
5943
5965
|
|
|
5944
|
-
/**
|
|
5945
|
-
* 简单的 Object.assign 兼容 IE <= 11 的 polyfill
|
|
5946
|
-
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
|
5947
|
-
* @param {Object} target - 目标对象
|
|
5948
|
-
* @param {Object} options - 新的选项对象
|
|
5966
|
+
/**
|
|
5967
|
+
* 简单的 Object.assign 兼容 IE <= 11 的 polyfill
|
|
5968
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
|
5969
|
+
* @param {Object} target - 目标对象
|
|
5970
|
+
* @param {Object} options - 新的选项对象
|
|
5949
5971
|
*/
|
|
5950
5972
|
|
|
5951
5973
|
|
|
@@ -5960,8 +5982,8 @@ var CA_ExtInterface = function () {
|
|
|
5960
5982
|
}
|
|
5961
5983
|
};
|
|
5962
5984
|
|
|
5963
|
-
/**
|
|
5964
|
-
* 检查当前会话的 WebSocket URL
|
|
5985
|
+
/**
|
|
5986
|
+
* 检查当前会话的 WebSocket URL
|
|
5965
5987
|
*/
|
|
5966
5988
|
|
|
5967
5989
|
|
|
@@ -5975,8 +5997,8 @@ var CA_ExtInterface = function () {
|
|
|
5975
5997
|
}
|
|
5976
5998
|
};
|
|
5977
5999
|
|
|
5978
|
-
/**
|
|
5979
|
-
* 检查是否使用 ActiveX
|
|
6000
|
+
/**
|
|
6001
|
+
* 检查是否使用 ActiveX
|
|
5980
6002
|
*/
|
|
5981
6003
|
|
|
5982
6004
|
|
|
@@ -5988,11 +6010,11 @@ var CA_ExtInterface = function () {
|
|
|
5988
6010
|
}
|
|
5989
6011
|
};
|
|
5990
6012
|
|
|
5991
|
-
/**
|
|
5992
|
-
* 扩展发送消息并等待响应
|
|
5993
|
-
* @param {string} operatorCmd - 操作命令
|
|
5994
|
-
* @param {string} sendMsg - 发送的消息
|
|
5995
|
-
* @returns {string} 响应消息
|
|
6013
|
+
/**
|
|
6014
|
+
* 扩展发送消息并等待响应
|
|
6015
|
+
* @param {string} operatorCmd - 操作命令
|
|
6016
|
+
* @param {string} sendMsg - 发送的消息
|
|
6017
|
+
* @returns {string} 响应消息
|
|
5996
6018
|
*/
|
|
5997
6019
|
|
|
5998
6020
|
|
|
@@ -6002,11 +6024,11 @@ var CA_ExtInterface = function () {
|
|
|
6002
6024
|
return this.sendAndWaitMessage(this.currentSessionWSURL, strSendMsg);
|
|
6003
6025
|
};
|
|
6004
6026
|
|
|
6005
|
-
/**
|
|
6006
|
-
* 发送消息并等待响应
|
|
6007
|
-
* @param {string} wsurl - WebSocket URL
|
|
6008
|
-
* @param {string} sendMsg - 发送的消息
|
|
6009
|
-
* @returns {string} 响应消息
|
|
6027
|
+
/**
|
|
6028
|
+
* 发送消息并等待响应
|
|
6029
|
+
* @param {string} wsurl - WebSocket URL
|
|
6030
|
+
* @param {string} sendMsg - 发送的消息
|
|
6031
|
+
* @returns {string} 响应消息
|
|
6010
6032
|
*/
|
|
6011
6033
|
|
|
6012
6034
|
|
|
@@ -6030,9 +6052,9 @@ var CA_ExtInterface = function () {
|
|
|
6030
6052
|
return ResultMsg;
|
|
6031
6053
|
};
|
|
6032
6054
|
|
|
6033
|
-
/**
|
|
6034
|
-
* 配置选项
|
|
6035
|
-
* @param {Object} extendOption - 扩展选项
|
|
6055
|
+
/**
|
|
6056
|
+
* 配置选项
|
|
6057
|
+
* @param {Object} extendOption - 扩展选项
|
|
6036
6058
|
*/
|
|
6037
6059
|
|
|
6038
6060
|
|
|
@@ -6042,8 +6064,8 @@ var CA_ExtInterface = function () {
|
|
|
6042
6064
|
}
|
|
6043
6065
|
};
|
|
6044
6066
|
|
|
6045
|
-
/**
|
|
6046
|
-
* 初始化
|
|
6067
|
+
/**
|
|
6068
|
+
* 初始化
|
|
6047
6069
|
*/
|
|
6048
6070
|
|
|
6049
6071
|
|
|
@@ -6051,9 +6073,9 @@ var CA_ExtInterface = function () {
|
|
|
6051
6073
|
this.isUseActioveX();
|
|
6052
6074
|
};
|
|
6053
6075
|
|
|
6054
|
-
/**
|
|
6055
|
-
* 返回客户端的版本
|
|
6056
|
-
* @returns {string} 客户端版本
|
|
6076
|
+
/**
|
|
6077
|
+
* 返回客户端的版本
|
|
6078
|
+
* @returns {string} 客户端版本
|
|
6057
6079
|
*/
|
|
6058
6080
|
|
|
6059
6081
|
|
|
@@ -6066,13 +6088,13 @@ var CA_ExtInterface = function () {
|
|
|
6066
6088
|
}
|
|
6067
6089
|
};
|
|
6068
6090
|
|
|
6069
|
-
/**
|
|
6070
|
-
* 下载客户端程序并安装
|
|
6071
|
-
* @param {string} bstrURL - 下载地址
|
|
6072
|
-
* @param {string} bstrHashValue - 哈希值
|
|
6073
|
-
* @param {boolean} bSync - 是否同步安装
|
|
6074
|
-
* @param {boolean} bOnlySSO - 是否仅安装 SSO
|
|
6075
|
-
* @returns {number} 安装结果
|
|
6091
|
+
/**
|
|
6092
|
+
* 下载客户端程序并安装
|
|
6093
|
+
* @param {string} bstrURL - 下载地址
|
|
6094
|
+
* @param {string} bstrHashValue - 哈希值
|
|
6095
|
+
* @param {boolean} bSync - 是否同步安装
|
|
6096
|
+
* @param {boolean} bOnlySSO - 是否仅安装 SSO
|
|
6097
|
+
* @returns {number} 安装结果
|
|
6076
6098
|
*/
|
|
6077
6099
|
|
|
6078
6100
|
|
|
@@ -6086,11 +6108,11 @@ var CA_ExtInterface = function () {
|
|
|
6086
6108
|
}
|
|
6087
6109
|
};
|
|
6088
6110
|
|
|
6089
|
-
/**
|
|
6090
|
-
* 获取硬件指纹信息
|
|
6091
|
-
* @param {number} dwSign - 签名
|
|
6092
|
-
* @param {string} strGateWayIP - 网关 IP
|
|
6093
|
-
* @returns {string} 硬件指纹信息
|
|
6111
|
+
/**
|
|
6112
|
+
* 获取硬件指纹信息
|
|
6113
|
+
* @param {number} dwSign - 签名
|
|
6114
|
+
* @param {string} strGateWayIP - 网关 IP
|
|
6115
|
+
* @returns {string} 硬件指纹信息
|
|
6094
6116
|
*/
|
|
6095
6117
|
|
|
6096
6118
|
|
|
@@ -6104,12 +6126,12 @@ var CA_ExtInterface = function () {
|
|
|
6104
6126
|
}
|
|
6105
6127
|
};
|
|
6106
6128
|
|
|
6107
|
-
/**
|
|
6108
|
-
* 设置转发策略和代填策略
|
|
6109
|
-
* @param {string} strProxyPolicy - 转发策略
|
|
6110
|
-
* @param {string} strSSOPolicy - 代填策略
|
|
6111
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6112
|
-
* @returns {number} 设置结果
|
|
6129
|
+
/**
|
|
6130
|
+
* 设置转发策略和代填策略
|
|
6131
|
+
* @param {string} strProxyPolicy - 转发策略
|
|
6132
|
+
* @param {string} strSSOPolicy - 代填策略
|
|
6133
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6134
|
+
* @returns {number} 设置结果
|
|
6113
6135
|
*/
|
|
6114
6136
|
|
|
6115
6137
|
|
|
@@ -6123,11 +6145,11 @@ var CA_ExtInterface = function () {
|
|
|
6123
6145
|
}
|
|
6124
6146
|
};
|
|
6125
6147
|
|
|
6126
|
-
/**
|
|
6127
|
-
* 启动认证信息模块
|
|
6128
|
-
* @param {string} strFileName - 文件名
|
|
6129
|
-
* @param {string} strXmlData - XML 数据
|
|
6130
|
-
* @returns {string} 认证信息
|
|
6148
|
+
/**
|
|
6149
|
+
* 启动认证信息模块
|
|
6150
|
+
* @param {string} strFileName - 文件名
|
|
6151
|
+
* @param {string} strXmlData - XML 数据
|
|
6152
|
+
* @returns {string} 认证信息
|
|
6131
6153
|
*/
|
|
6132
6154
|
|
|
6133
6155
|
|
|
@@ -6141,10 +6163,10 @@ var CA_ExtInterface = function () {
|
|
|
6141
6163
|
}
|
|
6142
6164
|
};
|
|
6143
6165
|
|
|
6144
|
-
/**
|
|
6145
|
-
* 打开 BS 应用
|
|
6146
|
-
* @param {string} strUrl - 应用 URL
|
|
6147
|
-
* @returns {number} 打开结果
|
|
6166
|
+
/**
|
|
6167
|
+
* 打开 BS 应用
|
|
6168
|
+
* @param {string} strUrl - 应用 URL
|
|
6169
|
+
* @returns {number} 打开结果
|
|
6148
6170
|
*/
|
|
6149
6171
|
|
|
6150
6172
|
|
|
@@ -6158,12 +6180,12 @@ var CA_ExtInterface = function () {
|
|
|
6158
6180
|
}
|
|
6159
6181
|
};
|
|
6160
6182
|
|
|
6161
|
-
/**
|
|
6162
|
-
* 打开 CS 应用
|
|
6163
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6164
|
-
* @param {string} strAppFlag - 应用标识
|
|
6165
|
-
* @param {string} strAppPath - 应用路径
|
|
6166
|
-
* @returns {number} 打开结果
|
|
6183
|
+
/**
|
|
6184
|
+
* 打开 CS 应用
|
|
6185
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6186
|
+
* @param {string} strAppFlag - 应用标识
|
|
6187
|
+
* @param {string} strAppPath - 应用路径
|
|
6188
|
+
* @returns {number} 打开结果
|
|
6167
6189
|
*/
|
|
6168
6190
|
|
|
6169
6191
|
|
|
@@ -6177,13 +6199,13 @@ var CA_ExtInterface = function () {
|
|
|
6177
6199
|
}
|
|
6178
6200
|
};
|
|
6179
6201
|
|
|
6180
|
-
/**
|
|
6181
|
-
* 设置自动更新策略
|
|
6182
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6183
|
-
* @param {number} nGatewayPort - 网关端口
|
|
6184
|
-
* @param {string} strUserToken - 用户令牌
|
|
6185
|
-
* @param {number} updatedelay - 更新延迟
|
|
6186
|
-
* @returns {number} 设置结果
|
|
6202
|
+
/**
|
|
6203
|
+
* 设置自动更新策略
|
|
6204
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6205
|
+
* @param {number} nGatewayPort - 网关端口
|
|
6206
|
+
* @param {string} strUserToken - 用户令牌
|
|
6207
|
+
* @param {number} updatedelay - 更新延迟
|
|
6208
|
+
* @returns {number} 设置结果
|
|
6187
6209
|
*/
|
|
6188
6210
|
|
|
6189
6211
|
|
|
@@ -6197,10 +6219,10 @@ var CA_ExtInterface = function () {
|
|
|
6197
6219
|
}
|
|
6198
6220
|
};
|
|
6199
6221
|
|
|
6200
|
-
/**
|
|
6201
|
-
* 获取客户端 IP
|
|
6202
|
-
* @param {string} strGatewayIP - 网关 IP
|
|
6203
|
-
* @returns {string} 客户端 IP
|
|
6222
|
+
/**
|
|
6223
|
+
* 获取客户端 IP
|
|
6224
|
+
* @param {string} strGatewayIP - 网关 IP
|
|
6225
|
+
* @returns {string} 客户端 IP
|
|
6204
6226
|
*/
|
|
6205
6227
|
|
|
6206
6228
|
|
|
@@ -6214,10 +6236,10 @@ var CA_ExtInterface = function () {
|
|
|
6214
6236
|
}
|
|
6215
6237
|
};
|
|
6216
6238
|
|
|
6217
|
-
/**
|
|
6218
|
-
* 登出网关
|
|
6219
|
-
* @param {string} strServerIP - 服务器 IP
|
|
6220
|
-
* @returns {number} 登出结果
|
|
6239
|
+
/**
|
|
6240
|
+
* 登出网关
|
|
6241
|
+
* @param {string} strServerIP - 服务器 IP
|
|
6242
|
+
* @returns {number} 登出结果
|
|
6221
6243
|
*/
|
|
6222
6244
|
|
|
6223
6245
|
|
|
@@ -6231,11 +6253,11 @@ var CA_ExtInterface = function () {
|
|
|
6231
6253
|
}
|
|
6232
6254
|
};
|
|
6233
6255
|
|
|
6234
|
-
/**
|
|
6235
|
-
* 运行安装包
|
|
6236
|
-
* @param {number} lRunType - 运行类型
|
|
6237
|
-
* @param {boolean} bIsOnlySSO - 是否仅安装 SSO
|
|
6238
|
-
* @returns {number} 运行结果
|
|
6256
|
+
/**
|
|
6257
|
+
* 运行安装包
|
|
6258
|
+
* @param {number} lRunType - 运行类型
|
|
6259
|
+
* @param {boolean} bIsOnlySSO - 是否仅安装 SSO
|
|
6260
|
+
* @returns {number} 运行结果
|
|
6239
6261
|
*/
|
|
6240
6262
|
|
|
6241
6263
|
|
|
@@ -6249,9 +6271,9 @@ var CA_ExtInterface = function () {
|
|
|
6249
6271
|
}
|
|
6250
6272
|
};
|
|
6251
6273
|
|
|
6252
|
-
/**
|
|
6253
|
-
* 获取下载进度
|
|
6254
|
-
* @returns {number} 下载进度
|
|
6274
|
+
/**
|
|
6275
|
+
* 获取下载进度
|
|
6276
|
+
* @returns {number} 下载进度
|
|
6255
6277
|
*/
|
|
6256
6278
|
|
|
6257
6279
|
|
|
@@ -6265,9 +6287,9 @@ var CA_ExtInterface = function () {
|
|
|
6265
6287
|
}
|
|
6266
6288
|
};
|
|
6267
6289
|
|
|
6268
|
-
/**
|
|
6269
|
-
* 是否安装完成
|
|
6270
|
-
* @returns {boolean} 安装完成状态
|
|
6290
|
+
/**
|
|
6291
|
+
* 是否安装完成
|
|
6292
|
+
* @returns {boolean} 安装完成状态
|
|
6271
6293
|
*/
|
|
6272
6294
|
|
|
6273
6295
|
|
|
@@ -6281,11 +6303,11 @@ var CA_ExtInterface = function () {
|
|
|
6281
6303
|
}
|
|
6282
6304
|
};
|
|
6283
6305
|
|
|
6284
|
-
/**
|
|
6285
|
-
* 初始化签包对象
|
|
6286
|
-
* @param {string} strAlgType - 算法类型
|
|
6287
|
-
* @param {string} strAuxParam - 辅助参数
|
|
6288
|
-
* @returns {number} 初始化结果
|
|
6306
|
+
/**
|
|
6307
|
+
* 初始化签包对象
|
|
6308
|
+
* @param {string} strAlgType - 算法类型
|
|
6309
|
+
* @param {string} strAuxParam - 辅助参数
|
|
6310
|
+
* @returns {number} 初始化结果
|
|
6289
6311
|
*/
|
|
6290
6312
|
|
|
6291
6313
|
|
|
@@ -6299,10 +6321,10 @@ var CA_ExtInterface = function () {
|
|
|
6299
6321
|
}
|
|
6300
6322
|
};
|
|
6301
6323
|
|
|
6302
|
-
/**
|
|
6303
|
-
* 设置摘要算法
|
|
6304
|
-
* @param {string} strDigestAlg - 摘要算法
|
|
6305
|
-
* @returns {number} 设置结果
|
|
6324
|
+
/**
|
|
6325
|
+
* 设置摘要算法
|
|
6326
|
+
* @param {string} strDigestAlg - 摘要算法
|
|
6327
|
+
* @returns {number} 设置结果
|
|
6306
6328
|
*/
|
|
6307
6329
|
|
|
6308
6330
|
|
|
@@ -6316,10 +6338,10 @@ var CA_ExtInterface = function () {
|
|
|
6316
6338
|
}
|
|
6317
6339
|
};
|
|
6318
6340
|
|
|
6319
|
-
/**
|
|
6320
|
-
* 设置单证书是否弹出对话框
|
|
6321
|
-
* @param {number} isChoose - 是否弹出对话框
|
|
6322
|
-
* @returns {number} 设置结果
|
|
6341
|
+
/**
|
|
6342
|
+
* 设置单证书是否弹出对话框
|
|
6343
|
+
* @param {number} isChoose - 是否弹出对话框
|
|
6344
|
+
* @returns {number} 设置结果
|
|
6323
6345
|
*/
|
|
6324
6346
|
|
|
6325
6347
|
|
|
@@ -6333,11 +6355,11 @@ var CA_ExtInterface = function () {
|
|
|
6333
6355
|
}
|
|
6334
6356
|
};
|
|
6335
6357
|
|
|
6336
|
-
/**
|
|
6337
|
-
* 添加证书过滤条件
|
|
6338
|
-
* @param {number} ulType - 过滤类型
|
|
6339
|
-
* @param {string} strValue - 过滤值
|
|
6340
|
-
* @returns {number} 添加结果
|
|
6358
|
+
/**
|
|
6359
|
+
* 添加证书过滤条件
|
|
6360
|
+
* @param {number} ulType - 过滤类型
|
|
6361
|
+
* @param {string} strValue - 过滤值
|
|
6362
|
+
* @returns {number} 添加结果
|
|
6341
6363
|
*/
|
|
6342
6364
|
|
|
6343
6365
|
|
|
@@ -6351,9 +6373,9 @@ var CA_ExtInterface = function () {
|
|
|
6351
6373
|
}
|
|
6352
6374
|
};
|
|
6353
6375
|
|
|
6354
|
-
/**
|
|
6355
|
-
* 清除所有过滤条件
|
|
6356
|
-
* @returns {number} 清除结果
|
|
6376
|
+
/**
|
|
6377
|
+
* 清除所有过滤条件
|
|
6378
|
+
* @returns {number} 清除结果
|
|
6357
6379
|
*/
|
|
6358
6380
|
|
|
6359
6381
|
|
|
@@ -6367,10 +6389,10 @@ var CA_ExtInterface = function () {
|
|
|
6367
6389
|
}
|
|
6368
6390
|
};
|
|
6369
6391
|
|
|
6370
|
-
/**
|
|
6371
|
-
* P1 签名
|
|
6372
|
-
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
6373
|
-
* @returns {string} 签名结果
|
|
6392
|
+
/**
|
|
6393
|
+
* P1 签名
|
|
6394
|
+
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
6395
|
+
* @returns {string} 签名结果
|
|
6374
6396
|
*/
|
|
6375
6397
|
|
|
6376
6398
|
|
|
@@ -6384,10 +6406,10 @@ var CA_ExtInterface = function () {
|
|
|
6384
6406
|
}
|
|
6385
6407
|
};
|
|
6386
6408
|
|
|
6387
|
-
/**
|
|
6388
|
-
* P1 签名字符串
|
|
6389
|
-
* @param {string} strValue - 待签名的字符串
|
|
6390
|
-
* @returns {string} 签名结果
|
|
6409
|
+
/**
|
|
6410
|
+
* P1 签名字符串
|
|
6411
|
+
* @param {string} strValue - 待签名的字符串
|
|
6412
|
+
* @returns {string} 签名结果
|
|
6391
6413
|
*/
|
|
6392
6414
|
|
|
6393
6415
|
|
|
@@ -6401,12 +6423,12 @@ var CA_ExtInterface = function () {
|
|
|
6401
6423
|
}
|
|
6402
6424
|
};
|
|
6403
6425
|
|
|
6404
|
-
/**
|
|
6405
|
-
* P7 签名
|
|
6406
|
-
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
6407
|
-
* @param {boolean} isDetach - 是否分离签名
|
|
6408
|
-
* @param {boolean} isIncludeCert - 是否包含证书
|
|
6409
|
-
* @returns {string} 签名结果
|
|
6426
|
+
/**
|
|
6427
|
+
* P7 签名
|
|
6428
|
+
* @param {string} strValueBase64 - 待签名的 Base64 字符串
|
|
6429
|
+
* @param {boolean} isDetach - 是否分离签名
|
|
6430
|
+
* @param {boolean} isIncludeCert - 是否包含证书
|
|
6431
|
+
* @returns {string} 签名结果
|
|
6410
6432
|
*/
|
|
6411
6433
|
|
|
6412
6434
|
|
|
@@ -6420,12 +6442,12 @@ var CA_ExtInterface = function () {
|
|
|
6420
6442
|
}
|
|
6421
6443
|
};
|
|
6422
6444
|
|
|
6423
|
-
/**
|
|
6424
|
-
* P7 签名字符串
|
|
6425
|
-
* @param {string} strValue - 待签名的字符串
|
|
6426
|
-
* @param {boolean} isDetach - 是否分离签名
|
|
6427
|
-
* @param {boolean} isIncludeCert - 是否包含证书
|
|
6428
|
-
* @returns {string} 签名结果
|
|
6445
|
+
/**
|
|
6446
|
+
* P7 签名字符串
|
|
6447
|
+
* @param {string} strValue - 待签名的字符串
|
|
6448
|
+
* @param {boolean} isDetach - 是否分离签名
|
|
6449
|
+
* @param {boolean} isIncludeCert - 是否包含证书
|
|
6450
|
+
* @returns {string} 签名结果
|
|
6429
6451
|
*/
|
|
6430
6452
|
|
|
6431
6453
|
|
|
@@ -6439,9 +6461,9 @@ var CA_ExtInterface = function () {
|
|
|
6439
6461
|
}
|
|
6440
6462
|
};
|
|
6441
6463
|
|
|
6442
|
-
/**
|
|
6443
|
-
* 释放签名对象
|
|
6444
|
-
* @returns {number} 释放结果
|
|
6464
|
+
/**
|
|
6465
|
+
* 释放签名对象
|
|
6466
|
+
* @returns {number} 释放结果
|
|
6445
6467
|
*/
|
|
6446
6468
|
|
|
6447
6469
|
|
|
@@ -6455,9 +6477,9 @@ var CA_ExtInterface = function () {
|
|
|
6455
6477
|
}
|
|
6456
6478
|
};
|
|
6457
6479
|
|
|
6458
|
-
/**
|
|
6459
|
-
* 获取签名版本
|
|
6460
|
-
* @returns {string} 签名版本
|
|
6480
|
+
/**
|
|
6481
|
+
* 获取签名版本
|
|
6482
|
+
* @returns {string} 签名版本
|
|
6461
6483
|
*/
|
|
6462
6484
|
|
|
6463
6485
|
|
|
@@ -6471,9 +6493,9 @@ var CA_ExtInterface = function () {
|
|
|
6471
6493
|
}
|
|
6472
6494
|
};
|
|
6473
6495
|
|
|
6474
|
-
/**
|
|
6475
|
-
* 获取签名证书
|
|
6476
|
-
* @returns {string} 签名证书
|
|
6496
|
+
/**
|
|
6497
|
+
* 获取签名证书
|
|
6498
|
+
* @returns {string} 签名证书
|
|
6477
6499
|
*/
|
|
6478
6500
|
|
|
6479
6501
|
|
|
@@ -6487,9 +6509,9 @@ var CA_ExtInterface = function () {
|
|
|
6487
6509
|
}
|
|
6488
6510
|
};
|
|
6489
6511
|
|
|
6490
|
-
/**
|
|
6491
|
-
* 获取错误码
|
|
6492
|
-
* @returns {number} 错误码
|
|
6512
|
+
/**
|
|
6513
|
+
* 获取错误码
|
|
6514
|
+
* @returns {number} 错误码
|
|
6493
6515
|
*/
|
|
6494
6516
|
|
|
6495
6517
|
|
|
@@ -6503,9 +6525,9 @@ var CA_ExtInterface = function () {
|
|
|
6503
6525
|
}
|
|
6504
6526
|
};
|
|
6505
6527
|
|
|
6506
|
-
/**
|
|
6507
|
-
* 获取错误信息
|
|
6508
|
-
* @returns {string} 错误信息
|
|
6528
|
+
/**
|
|
6529
|
+
* 获取错误信息
|
|
6530
|
+
* @returns {string} 错误信息
|
|
6509
6531
|
*/
|
|
6510
6532
|
|
|
6511
6533
|
|
|
@@ -6519,9 +6541,9 @@ var CA_ExtInterface = function () {
|
|
|
6519
6541
|
}
|
|
6520
6542
|
};
|
|
6521
6543
|
|
|
6522
|
-
/**
|
|
6523
|
-
* 销毁认证对象
|
|
6524
|
-
* @returns {number} 销毁结果
|
|
6544
|
+
/**
|
|
6545
|
+
* 销毁认证对象
|
|
6546
|
+
* @returns {number} 销毁结果
|
|
6525
6547
|
*/
|
|
6526
6548
|
|
|
6527
6549
|
|
|
@@ -6535,9 +6557,9 @@ var CA_ExtInterface = function () {
|
|
|
6535
6557
|
}
|
|
6536
6558
|
};
|
|
6537
6559
|
|
|
6538
|
-
/**
|
|
6539
|
-
* 获取证书类型
|
|
6540
|
-
* @returns {string} 证书类型
|
|
6560
|
+
/**
|
|
6561
|
+
* 获取证书类型
|
|
6562
|
+
* @returns {string} 证书类型
|
|
6541
6563
|
*/
|
|
6542
6564
|
|
|
6543
6565
|
|
|
@@ -6551,9 +6573,9 @@ var CA_ExtInterface = function () {
|
|
|
6551
6573
|
}
|
|
6552
6574
|
};
|
|
6553
6575
|
|
|
6554
|
-
/**
|
|
6555
|
-
* 获取签名摘要算法
|
|
6556
|
-
* @returns {string} 签名摘要算法
|
|
6576
|
+
/**
|
|
6577
|
+
* 获取签名摘要算法
|
|
6578
|
+
* @returns {string} 签名摘要算法
|
|
6557
6579
|
*/
|
|
6558
6580
|
|
|
6559
6581
|
|
|
@@ -6567,11 +6589,11 @@ var CA_ExtInterface = function () {
|
|
|
6567
6589
|
}
|
|
6568
6590
|
};
|
|
6569
6591
|
|
|
6570
|
-
/**
|
|
6571
|
-
* 使能调用序列
|
|
6572
|
-
* @param {boolean} bCallQueueEnable - 是否使能调用序列
|
|
6573
|
-
* @param {boolean} bHeadInfoEnable - 是否使能头部信息
|
|
6574
|
-
* @returns {number} 使能结果
|
|
6592
|
+
/**
|
|
6593
|
+
* 使能调用序列
|
|
6594
|
+
* @param {boolean} bCallQueueEnable - 是否使能调用序列
|
|
6595
|
+
* @param {boolean} bHeadInfoEnable - 是否使能头部信息
|
|
6596
|
+
* @returns {number} 使能结果
|
|
6575
6597
|
*/
|
|
6576
6598
|
|
|
6577
6599
|
|
|
@@ -6585,9 +6607,9 @@ var CA_ExtInterface = function () {
|
|
|
6585
6607
|
}
|
|
6586
6608
|
};
|
|
6587
6609
|
|
|
6588
|
-
/**
|
|
6589
|
-
* 清空调用序列结果
|
|
6590
|
-
* @returns {number} 清空调用序列结果
|
|
6610
|
+
/**
|
|
6611
|
+
* 清空调用序列结果
|
|
6612
|
+
* @returns {number} 清空调用序列结果
|
|
6591
6613
|
*/
|
|
6592
6614
|
|
|
6593
6615
|
|
|
@@ -6601,9 +6623,9 @@ var CA_ExtInterface = function () {
|
|
|
6601
6623
|
}
|
|
6602
6624
|
};
|
|
6603
6625
|
|
|
6604
|
-
/**
|
|
6605
|
-
* 获取调用序列结果
|
|
6606
|
-
* @returns {string} 调用序列结果
|
|
6626
|
+
/**
|
|
6627
|
+
* 获取调用序列结果
|
|
6628
|
+
* @returns {string} 调用序列结果
|
|
6607
6629
|
*/
|
|
6608
6630
|
|
|
6609
6631
|
|
|
@@ -6617,12 +6639,12 @@ var CA_ExtInterface = function () {
|
|
|
6617
6639
|
}
|
|
6618
6640
|
};
|
|
6619
6641
|
|
|
6620
|
-
/**
|
|
6621
|
-
* 客户端安全策略检查
|
|
6622
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6623
|
-
* @param {number} usGatewayPort - 网关端口
|
|
6624
|
-
* @param {string} strSecurityPolicys - 安全策略
|
|
6625
|
-
* @returns {boolean} 检查结果
|
|
6642
|
+
/**
|
|
6643
|
+
* 客户端安全策略检查
|
|
6644
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6645
|
+
* @param {number} usGatewayPort - 网关端口
|
|
6646
|
+
* @param {string} strSecurityPolicys - 安全策略
|
|
6647
|
+
* @returns {boolean} 检查结果
|
|
6626
6648
|
*/
|
|
6627
6649
|
|
|
6628
6650
|
|
|
@@ -6636,9 +6658,9 @@ var CA_ExtInterface = function () {
|
|
|
6636
6658
|
}
|
|
6637
6659
|
};
|
|
6638
6660
|
|
|
6639
|
-
/**
|
|
6640
|
-
* 获取通讯协议版本
|
|
6641
|
-
* @returns {string} 通讯协议版本
|
|
6661
|
+
/**
|
|
6662
|
+
* 获取通讯协议版本
|
|
6663
|
+
* @returns {string} 通讯协议版本
|
|
6642
6664
|
*/
|
|
6643
6665
|
|
|
6644
6666
|
|
|
@@ -6652,13 +6674,13 @@ var CA_ExtInterface = function () {
|
|
|
6652
6674
|
}
|
|
6653
6675
|
};
|
|
6654
6676
|
|
|
6655
|
-
/**
|
|
6656
|
-
* 修改 Key 的 Pin 码
|
|
6657
|
-
* @param {string} strCertSn - 证书序列号
|
|
6658
|
-
* @param {number} lPinCodeType - Pin 码类型
|
|
6659
|
-
* @param {string} strCurPinCode - 当前 Pin 码
|
|
6660
|
-
* @param {string} strNewPinCode - 新 Pin 码
|
|
6661
|
-
* @returns {number} 修改结果
|
|
6677
|
+
/**
|
|
6678
|
+
* 修改 Key 的 Pin 码
|
|
6679
|
+
* @param {string} strCertSn - 证书序列号
|
|
6680
|
+
* @param {number} lPinCodeType - Pin 码类型
|
|
6681
|
+
* @param {string} strCurPinCode - 当前 Pin 码
|
|
6682
|
+
* @param {string} strNewPinCode - 新 Pin 码
|
|
6683
|
+
* @returns {number} 修改结果
|
|
6662
6684
|
*/
|
|
6663
6685
|
|
|
6664
6686
|
|
|
@@ -6672,10 +6694,10 @@ var CA_ExtInterface = function () {
|
|
|
6672
6694
|
}
|
|
6673
6695
|
};
|
|
6674
6696
|
|
|
6675
|
-
/**
|
|
6676
|
-
* 等待策略设置完毕
|
|
6677
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6678
|
-
* @returns {number} 等待结果
|
|
6697
|
+
/**
|
|
6698
|
+
* 等待策略设置完毕
|
|
6699
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6700
|
+
* @returns {number} 等待结果
|
|
6679
6701
|
*/
|
|
6680
6702
|
|
|
6681
6703
|
|
|
@@ -6689,10 +6711,10 @@ var CA_ExtInterface = function () {
|
|
|
6689
6711
|
}
|
|
6690
6712
|
};
|
|
6691
6713
|
|
|
6692
|
-
/**
|
|
6693
|
-
* 获取会话 Token
|
|
6694
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6695
|
-
* @returns {string} 会话 Token
|
|
6714
|
+
/**
|
|
6715
|
+
* 获取会话 Token
|
|
6716
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6717
|
+
* @returns {string} 会话 Token
|
|
6696
6718
|
*/
|
|
6697
6719
|
|
|
6698
6720
|
|
|
@@ -6706,9 +6728,9 @@ var CA_ExtInterface = function () {
|
|
|
6706
6728
|
}
|
|
6707
6729
|
};
|
|
6708
6730
|
|
|
6709
|
-
/**
|
|
6710
|
-
* 获取控件版本
|
|
6711
|
-
* @returns {string} 控件版本
|
|
6731
|
+
/**
|
|
6732
|
+
* 获取控件版本
|
|
6733
|
+
* @returns {string} 控件版本
|
|
6712
6734
|
*/
|
|
6713
6735
|
|
|
6714
6736
|
|
|
@@ -6722,10 +6744,10 @@ var CA_ExtInterface = function () {
|
|
|
6722
6744
|
}
|
|
6723
6745
|
};
|
|
6724
6746
|
|
|
6725
|
-
/**
|
|
6726
|
-
* 设置语言资源
|
|
6727
|
-
* @param {string} strLanguage - 语言资源
|
|
6728
|
-
* @returns {number} 设置结果
|
|
6747
|
+
/**
|
|
6748
|
+
* 设置语言资源
|
|
6749
|
+
* @param {string} strLanguage - 语言资源
|
|
6750
|
+
* @returns {number} 设置结果
|
|
6729
6751
|
*/
|
|
6730
6752
|
|
|
6731
6753
|
|
|
@@ -6739,12 +6761,12 @@ var CA_ExtInterface = function () {
|
|
|
6739
6761
|
}
|
|
6740
6762
|
};
|
|
6741
6763
|
|
|
6742
|
-
/**
|
|
6743
|
-
* 获取用户属性
|
|
6744
|
-
* @param {string} strGatewayAddress - 网关地址
|
|
6745
|
-
* @param {string} strAppFlag - 应用标识
|
|
6746
|
-
* @param {string} strAttributeName - 属性名称
|
|
6747
|
-
* @returns {string} 用户属性值
|
|
6764
|
+
/**
|
|
6765
|
+
* 获取用户属性
|
|
6766
|
+
* @param {string} strGatewayAddress - 网关地址
|
|
6767
|
+
* @param {string} strAppFlag - 应用标识
|
|
6768
|
+
* @param {string} strAttributeName - 属性名称
|
|
6769
|
+
* @returns {string} 用户属性值
|
|
6748
6770
|
*/
|
|
6749
6771
|
|
|
6750
6772
|
|
|
@@ -6758,9 +6780,9 @@ var CA_ExtInterface = function () {
|
|
|
6758
6780
|
}
|
|
6759
6781
|
};
|
|
6760
6782
|
|
|
6761
|
-
/**
|
|
6762
|
-
* 获取签名加密 PIN 码
|
|
6763
|
-
* @returns {string} 签名加密 PIN 码
|
|
6783
|
+
/**
|
|
6784
|
+
* 获取签名加密 PIN 码
|
|
6785
|
+
* @returns {string} 签名加密 PIN 码
|
|
6764
6786
|
*/
|
|
6765
6787
|
|
|
6766
6788
|
|
|
@@ -6773,20 +6795,20 @@ var CA_ExtInterface = function () {
|
|
|
6773
6795
|
return result.value;
|
|
6774
6796
|
}
|
|
6775
6797
|
};
|
|
6776
|
-
/*
|
|
6777
|
-
*曙光四川CA
|
|
6778
|
-
*'SOF_GetUserList' 证书列表
|
|
6779
|
-
*'SOF_ExportUserCert' 导出证书
|
|
6780
|
-
*'SOF_GetCertInfo': 获取证书信息
|
|
6781
|
-
*'SOF_GenRandom': 生成随机数
|
|
6782
|
-
*'SOF_SignData': 获取证书签名
|
|
6783
|
-
*'SOF_Login': 登录证书
|
|
6784
|
-
*'SOF_GetPinRetryCount': 剩余次数
|
|
6798
|
+
/*
|
|
6799
|
+
*曙光四川CA
|
|
6800
|
+
*'SOF_GetUserList' 证书列表
|
|
6801
|
+
*'SOF_ExportUserCert' 导出证书
|
|
6802
|
+
*'SOF_GetCertInfo': 获取证书信息
|
|
6803
|
+
*'SOF_GenRandom': 生成随机数
|
|
6804
|
+
*'SOF_SignData': 获取证书签名
|
|
6805
|
+
*'SOF_Login': 登录证书
|
|
6806
|
+
*'SOF_GetPinRetryCount': 剩余次数
|
|
6785
6807
|
*/
|
|
6786
|
-
/**
|
|
6787
|
-
*
|
|
6788
|
-
* 获取webSocket消息
|
|
6789
|
-
* @returns {string}
|
|
6808
|
+
/**
|
|
6809
|
+
*
|
|
6810
|
+
* 获取webSocket消息
|
|
6811
|
+
* @returns {string}
|
|
6790
6812
|
*/
|
|
6791
6813
|
|
|
6792
6814
|
|
|
@@ -6822,10 +6844,10 @@ var CA_ExtInterface = function () {
|
|
|
6822
6844
|
};
|
|
6823
6845
|
});
|
|
6824
6846
|
};
|
|
6825
|
-
/**
|
|
6826
|
-
*
|
|
6827
|
-
* base64解码
|
|
6828
|
-
* @returns {string} base64解码后的字符串
|
|
6847
|
+
/**
|
|
6848
|
+
*
|
|
6849
|
+
* base64解码
|
|
6850
|
+
* @returns {string} base64解码后的字符串
|
|
6829
6851
|
*/
|
|
6830
6852
|
|
|
6831
6853
|
|
|
@@ -6860,10 +6882,10 @@ var CA_ExtInterface = function () {
|
|
|
6860
6882
|
val = this.utf8_decode(val);
|
|
6861
6883
|
return val;
|
|
6862
6884
|
};
|
|
6863
|
-
/**
|
|
6864
|
-
*
|
|
6865
|
-
* base64编码
|
|
6866
|
-
* @returns {string} base64编码后的字符串
|
|
6885
|
+
/**
|
|
6886
|
+
*
|
|
6887
|
+
* base64编码
|
|
6888
|
+
* @returns {string} base64编码后的字符串
|
|
6867
6889
|
*/
|
|
6868
6890
|
|
|
6869
6891
|
|
|
@@ -6896,10 +6918,10 @@ var CA_ExtInterface = function () {
|
|
|
6896
6918
|
}
|
|
6897
6919
|
return val;
|
|
6898
6920
|
};
|
|
6899
|
-
/**
|
|
6900
|
-
*
|
|
6901
|
-
* utf8解码
|
|
6902
|
-
* @returns {string} utf8解码后的字符串
|
|
6921
|
+
/**
|
|
6922
|
+
*
|
|
6923
|
+
* utf8解码
|
|
6924
|
+
* @returns {string} utf8解码后的字符串
|
|
6903
6925
|
*/
|
|
6904
6926
|
|
|
6905
6927
|
|
|
@@ -6928,10 +6950,10 @@ var CA_ExtInterface = function () {
|
|
|
6928
6950
|
}
|
|
6929
6951
|
return string;
|
|
6930
6952
|
};
|
|
6931
|
-
/**
|
|
6932
|
-
*
|
|
6933
|
-
* utf8编码
|
|
6934
|
-
* @returns {string} utf8编码后的字符串
|
|
6953
|
+
/**
|
|
6954
|
+
*
|
|
6955
|
+
* utf8编码
|
|
6956
|
+
* @returns {string} utf8编码后的字符串
|
|
6935
6957
|
*/
|
|
6936
6958
|
|
|
6937
6959
|
|
|
@@ -17184,8 +17206,8 @@ error_page_src_main.install = function (Vue) {
|
|
|
17184
17206
|
};
|
|
17185
17207
|
|
|
17186
17208
|
/* harmony default export */ var error_page = (error_page_src_main);
|
|
17187
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=
|
|
17188
|
-
var
|
|
17209
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=0b9762be&
|
|
17210
|
+
var mainvue_type_template_id_0b9762be_render = function () {
|
|
17189
17211
|
var _vm = this
|
|
17190
17212
|
var _h = _vm.$createElement
|
|
17191
17213
|
var _c = _vm._self._c || _h
|
|
@@ -21384,6 +21406,23 @@ var mainvue_type_template_id_2c951876_render = function () {
|
|
|
21384
21406
|
)
|
|
21385
21407
|
},
|
|
21386
21408
|
},
|
|
21409
|
+
model: {
|
|
21410
|
+
value:
|
|
21411
|
+
_vm.models[
|
|
21412
|
+
item.name
|
|
21413
|
+
],
|
|
21414
|
+
callback: function (
|
|
21415
|
+
$$v
|
|
21416
|
+
) {
|
|
21417
|
+
_vm.$set(
|
|
21418
|
+
_vm.models,
|
|
21419
|
+
item.name,
|
|
21420
|
+
$$v
|
|
21421
|
+
)
|
|
21422
|
+
},
|
|
21423
|
+
expression:
|
|
21424
|
+
"models[item.name]",
|
|
21425
|
+
},
|
|
21387
21426
|
},
|
|
21388
21427
|
"es-upload",
|
|
21389
21428
|
_vm.handleExclAttribute(
|
|
@@ -23361,11 +23400,11 @@ var mainvue_type_template_id_2c951876_render = function () {
|
|
|
23361
23400
|
)
|
|
23362
23401
|
: _vm._e()
|
|
23363
23402
|
}
|
|
23364
|
-
var
|
|
23365
|
-
|
|
23403
|
+
var mainvue_type_template_id_0b9762be_staticRenderFns = []
|
|
23404
|
+
mainvue_type_template_id_0b9762be_render._withStripped = true
|
|
23366
23405
|
|
|
23367
23406
|
|
|
23368
|
-
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=
|
|
23407
|
+
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=0b9762be&
|
|
23369
23408
|
|
|
23370
23409
|
// CONCATENATED MODULE: ./src/utils/rules.js
|
|
23371
23410
|
// 手机号
|
|
@@ -25788,6 +25827,7 @@ function form_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
25788
25827
|
//
|
|
25789
25828
|
//
|
|
25790
25829
|
//
|
|
25830
|
+
//
|
|
25791
25831
|
|
|
25792
25832
|
|
|
25793
25833
|
|
|
@@ -27122,8 +27162,8 @@ var mainvue_type_script_lang_js_pageView = utils_util["a" /* default */].getPara
|
|
|
27122
27162
|
|
|
27123
27163
|
var form_src_main_component = normalizeComponent(
|
|
27124
27164
|
packages_form_src_mainvue_type_script_lang_js_,
|
|
27125
|
-
|
|
27126
|
-
|
|
27165
|
+
mainvue_type_template_id_0b9762be_render,
|
|
27166
|
+
mainvue_type_template_id_0b9762be_staticRenderFns,
|
|
27127
27167
|
false,
|
|
27128
27168
|
null,
|
|
27129
27169
|
null,
|
|
@@ -27140,8 +27180,8 @@ form_src_main.install = function (Vue) {
|
|
|
27140
27180
|
};
|
|
27141
27181
|
|
|
27142
27182
|
/* harmony default export */ var packages_form = (form_src_main);
|
|
27143
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
27144
|
-
var
|
|
27183
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=1ebfbd3f&
|
|
27184
|
+
var mainvue_type_template_id_1ebfbd3f_render = function () {
|
|
27145
27185
|
var _vm = this
|
|
27146
27186
|
var _h = _vm.$createElement
|
|
27147
27187
|
var _c = _vm._self._c || _h
|
|
@@ -27157,6 +27197,13 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27157
27197
|
_vm.showCirculate
|
|
27158
27198
|
? _c(
|
|
27159
27199
|
"div",
|
|
27200
|
+
{
|
|
27201
|
+
staticStyle: {
|
|
27202
|
+
height: "100%",
|
|
27203
|
+
display: "flex",
|
|
27204
|
+
"flex-direction": "column",
|
|
27205
|
+
},
|
|
27206
|
+
},
|
|
27160
27207
|
[
|
|
27161
27208
|
_c("div", { staticClass: "es-flow-top" }, [
|
|
27162
27209
|
_c(
|
|
@@ -27240,6 +27287,7 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27240
27287
|
attrs: {
|
|
27241
27288
|
opinion: _vm.value,
|
|
27242
27289
|
rows: _vm.rows,
|
|
27290
|
+
placeholder: _vm.pendingItemHandleDescription,
|
|
27243
27291
|
required: _vm.isOpinionRequired == 1,
|
|
27244
27292
|
isBanInputOpinion: _vm.isBanInputOpinion,
|
|
27245
27293
|
nodeFixedOpinionSelectList:
|
|
@@ -27252,93 +27300,106 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27252
27300
|
},
|
|
27253
27301
|
}),
|
|
27254
27302
|
_c(
|
|
27255
|
-
"
|
|
27303
|
+
"div",
|
|
27256
27304
|
{
|
|
27257
|
-
|
|
27258
|
-
|
|
27259
|
-
|
|
27260
|
-
"label-width": "120px",
|
|
27261
|
-
"label-position": _vm.formLabelPosition,
|
|
27262
|
-
},
|
|
27305
|
+
class:
|
|
27306
|
+
"es-info " +
|
|
27307
|
+
(_vm.formLabelPosition == "left" ? "form-left" : ""),
|
|
27263
27308
|
},
|
|
27264
27309
|
[
|
|
27265
27310
|
_c(
|
|
27266
|
-
"el-form
|
|
27311
|
+
"el-form",
|
|
27267
27312
|
{
|
|
27268
|
-
|
|
27269
|
-
attrs: {
|
|
27313
|
+
ref: "form",
|
|
27314
|
+
attrs: {
|
|
27315
|
+
model: _vm.circulateForm,
|
|
27316
|
+
"label-width": "120px",
|
|
27317
|
+
"label-position": _vm.formLabelPosition,
|
|
27318
|
+
},
|
|
27270
27319
|
},
|
|
27271
27320
|
[
|
|
27272
|
-
|
|
27273
|
-
|
|
27274
|
-
|
|
27275
|
-
|
|
27276
|
-
|
|
27277
|
-
|
|
27278
|
-
|
|
27279
|
-
|
|
27280
|
-
|
|
27281
|
-
|
|
27282
|
-
|
|
27283
|
-
|
|
27284
|
-
|
|
27285
|
-
|
|
27321
|
+
_c(
|
|
27322
|
+
"el-form-item",
|
|
27323
|
+
{
|
|
27324
|
+
staticStyle: { "margin-top": "20px" },
|
|
27325
|
+
attrs: { prop: "nextNodeId", label: "下步节点" },
|
|
27326
|
+
},
|
|
27327
|
+
[
|
|
27328
|
+
_vm.nextNodeCheckType == "select"
|
|
27329
|
+
? _c(
|
|
27330
|
+
"el-select",
|
|
27331
|
+
{
|
|
27332
|
+
staticStyle: { width: "100% !important" },
|
|
27333
|
+
attrs: { placeholder: "请选择下步节点" },
|
|
27334
|
+
model: {
|
|
27335
|
+
value: _vm.circulateForm.nextNodeId,
|
|
27336
|
+
callback: function ($$v) {
|
|
27337
|
+
_vm.$set(
|
|
27338
|
+
_vm.circulateForm,
|
|
27339
|
+
"nextNodeId",
|
|
27340
|
+
$$v
|
|
27341
|
+
)
|
|
27342
|
+
},
|
|
27343
|
+
expression: "circulateForm.nextNodeId",
|
|
27344
|
+
},
|
|
27286
27345
|
},
|
|
27287
|
-
|
|
27288
|
-
|
|
27289
|
-
|
|
27290
|
-
|
|
27291
|
-
|
|
27292
|
-
|
|
27293
|
-
|
|
27294
|
-
|
|
27295
|
-
|
|
27296
|
-
|
|
27297
|
-
|
|
27298
|
-
|
|
27299
|
-
|
|
27300
|
-
|
|
27301
|
-
|
|
27302
|
-
|
|
27303
|
-
|
|
27304
|
-
|
|
27305
|
-
|
|
27306
|
-
|
|
27307
|
-
|
|
27308
|
-
|
|
27309
|
-
|
|
27310
|
-
|
|
27311
|
-
|
|
27312
|
-
|
|
27313
|
-
|
|
27314
|
-
|
|
27315
|
-
|
|
27316
|
-
|
|
27346
|
+
[
|
|
27347
|
+
_c("el-option", {
|
|
27348
|
+
attrs: { label: "传阅", value: "111" },
|
|
27349
|
+
}),
|
|
27350
|
+
],
|
|
27351
|
+
1
|
|
27352
|
+
)
|
|
27353
|
+
: _vm.nextNodeCheckType == "radio"
|
|
27354
|
+
? _c("es-radio-group", {
|
|
27355
|
+
attrs: {
|
|
27356
|
+
data: [
|
|
27357
|
+
{ nodeId: "111", nodeName: "传阅" },
|
|
27358
|
+
],
|
|
27359
|
+
"value-key": "nodeId",
|
|
27360
|
+
"label-key": "nodeName",
|
|
27361
|
+
},
|
|
27362
|
+
model: {
|
|
27363
|
+
value: _vm.circulateForm.nextNodeId,
|
|
27364
|
+
callback: function ($$v) {
|
|
27365
|
+
_vm.$set(
|
|
27366
|
+
_vm.circulateForm,
|
|
27367
|
+
"nextNodeId",
|
|
27368
|
+
$$v
|
|
27369
|
+
)
|
|
27370
|
+
},
|
|
27371
|
+
expression: "circulateForm.nextNodeId",
|
|
27372
|
+
},
|
|
27373
|
+
})
|
|
27374
|
+
: _vm._e(),
|
|
27375
|
+
],
|
|
27376
|
+
1
|
|
27377
|
+
),
|
|
27317
27378
|
],
|
|
27318
27379
|
1
|
|
27319
27380
|
),
|
|
27381
|
+
_c("circulate", {
|
|
27382
|
+
ref: "circulate",
|
|
27383
|
+
staticStyle: { "margin-top": "10px" },
|
|
27384
|
+
attrs: {
|
|
27385
|
+
businessId: _vm.businessIds,
|
|
27386
|
+
"label-position": _vm.formLabelPosition,
|
|
27387
|
+
selectorParams: _vm.params,
|
|
27388
|
+
"pending-id": _vm.pendingId,
|
|
27389
|
+
showBtn: false,
|
|
27390
|
+
processDefinitionId: _vm.nodeInfo.nextNode,
|
|
27391
|
+
simpleTips: _vm.simpleTips,
|
|
27392
|
+
oldOption: _vm.value,
|
|
27393
|
+
},
|
|
27394
|
+
on: {
|
|
27395
|
+
cancel: function ($event) {
|
|
27396
|
+
_vm.closeProcess($event, "circulateVisible")
|
|
27397
|
+
},
|
|
27398
|
+
},
|
|
27399
|
+
}),
|
|
27320
27400
|
],
|
|
27321
27401
|
1
|
|
27322
27402
|
),
|
|
27323
|
-
_c("circulate", {
|
|
27324
|
-
ref: "circulate",
|
|
27325
|
-
staticStyle: { "margin-top": "10px" },
|
|
27326
|
-
attrs: {
|
|
27327
|
-
businessId: _vm.businessIds,
|
|
27328
|
-
"label-position": _vm.formLabelPosition,
|
|
27329
|
-
selectorParams: _vm.params,
|
|
27330
|
-
"pending-id": _vm.pendingId,
|
|
27331
|
-
showBtn: false,
|
|
27332
|
-
processDefinitionId: _vm.nodeInfo.nextNode,
|
|
27333
|
-
simpleTips: _vm.simpleTips,
|
|
27334
|
-
oldOption: _vm.value,
|
|
27335
|
-
},
|
|
27336
|
-
on: {
|
|
27337
|
-
cancel: function ($event) {
|
|
27338
|
-
_vm.closeProcess($event, "circulateVisible")
|
|
27339
|
-
},
|
|
27340
|
-
},
|
|
27341
|
-
}),
|
|
27342
27403
|
_c(
|
|
27343
27404
|
"el-button",
|
|
27344
27405
|
{
|
|
@@ -27365,6 +27426,7 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27365
27426
|
simpleTips: _vm.simpleTips,
|
|
27366
27427
|
typeCode: "read",
|
|
27367
27428
|
param: _vm.param,
|
|
27429
|
+
selectorConfig: _vm.selectorConfig,
|
|
27368
27430
|
resetAppId: _vm.resetAppId,
|
|
27369
27431
|
taskExamine: _vm.taskExamineInfo,
|
|
27370
27432
|
"news-info": _vm.nextNode.notificationMsg,
|
|
@@ -27531,6 +27593,9 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27531
27593
|
attrs: {
|
|
27532
27594
|
opinion: _vm.value,
|
|
27533
27595
|
rows: _vm.rows,
|
|
27596
|
+
pendingItemHandleDescription:
|
|
27597
|
+
_vm.pendingItemHandleDescription,
|
|
27598
|
+
placeholder: _vm.pendingItemHandleDescription,
|
|
27534
27599
|
required: _vm.isOpinionRequired == 1,
|
|
27535
27600
|
isBanInputOpinion: _vm.isBanInputOpinion,
|
|
27536
27601
|
nodeFixedOpinionSelectList:
|
|
@@ -27648,7 +27713,9 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27648
27713
|
},
|
|
27649
27714
|
],
|
|
27650
27715
|
ref: "esContent",
|
|
27651
|
-
|
|
27716
|
+
class:
|
|
27717
|
+
"es-info " +
|
|
27718
|
+
(_vm.formLabelPosition == "left" ? "form-left" : ""),
|
|
27652
27719
|
},
|
|
27653
27720
|
[
|
|
27654
27721
|
_c(
|
|
@@ -27658,7 +27725,10 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27658
27725
|
staticClass: "demo-dynamic",
|
|
27659
27726
|
attrs: {
|
|
27660
27727
|
model: _vm.isFlow ? _vm.nodeInfo : _vm.nextNode,
|
|
27661
|
-
"label-width":
|
|
27728
|
+
"label-width":
|
|
27729
|
+
_vm.startFlowPageEmbeddedIntoStartFlowIndex
|
|
27730
|
+
? "100px"
|
|
27731
|
+
: "120px",
|
|
27662
27732
|
"label-position": _vm.formLabelPosition,
|
|
27663
27733
|
},
|
|
27664
27734
|
},
|
|
@@ -27724,7 +27794,9 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
27724
27794
|
key: items.id,
|
|
27725
27795
|
attrs: {
|
|
27726
27796
|
label: items.name,
|
|
27727
|
-
disabled:
|
|
27797
|
+
disabled:
|
|
27798
|
+
_vm.flowListDisabled ||
|
|
27799
|
+
items.disabled,
|
|
27728
27800
|
value: items.processDefId,
|
|
27729
27801
|
},
|
|
27730
27802
|
})
|
|
@@ -28784,6 +28856,50 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
28784
28856
|
1
|
|
28785
28857
|
)
|
|
28786
28858
|
: _vm._e(),
|
|
28859
|
+
_vm.currentNodeEnableItemHandleDescription &&
|
|
28860
|
+
!_vm.isReject &&
|
|
28861
|
+
_vm.nodeInfos.length != 0 &&
|
|
28862
|
+
_vm.isShowNode &&
|
|
28863
|
+
_vm.isNextUser
|
|
28864
|
+
? _c(
|
|
28865
|
+
"el-form-item",
|
|
28866
|
+
{
|
|
28867
|
+
attrs: {
|
|
28868
|
+
prop: "handleExplain",
|
|
28869
|
+
label: "下步说明",
|
|
28870
|
+
},
|
|
28871
|
+
},
|
|
28872
|
+
[
|
|
28873
|
+
_c("el-input", {
|
|
28874
|
+
attrs: {
|
|
28875
|
+
placeholder:
|
|
28876
|
+
"请输入下步说明",
|
|
28877
|
+
type: "textarea",
|
|
28878
|
+
autosize: {
|
|
28879
|
+
minRows: 2,
|
|
28880
|
+
},
|
|
28881
|
+
},
|
|
28882
|
+
model: {
|
|
28883
|
+
value:
|
|
28884
|
+
_vm.nextNode
|
|
28885
|
+
.nextItemHandleDescription,
|
|
28886
|
+
callback: function (
|
|
28887
|
+
$$v
|
|
28888
|
+
) {
|
|
28889
|
+
_vm.$set(
|
|
28890
|
+
_vm.nextNode,
|
|
28891
|
+
"nextItemHandleDescription",
|
|
28892
|
+
$$v
|
|
28893
|
+
)
|
|
28894
|
+
},
|
|
28895
|
+
expression:
|
|
28896
|
+
"nextNode.nextItemHandleDescription",
|
|
28897
|
+
},
|
|
28898
|
+
}),
|
|
28899
|
+
],
|
|
28900
|
+
1
|
|
28901
|
+
)
|
|
28902
|
+
: _vm._e(),
|
|
28787
28903
|
],
|
|
28788
28904
|
1
|
|
28789
28905
|
),
|
|
@@ -28848,6 +28964,68 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
28848
28964
|
],
|
|
28849
28965
|
1
|
|
28850
28966
|
),
|
|
28967
|
+
_vm.isFlow &&
|
|
28968
|
+
_vm.nodeInfo.nextNode &&
|
|
28969
|
+
_vm.startFlowPageEmbeddedIntoStartFlowIndex &&
|
|
28970
|
+
!_vm.directCreateCircularReadWhenFlowStarted
|
|
28971
|
+
? _c("ProcessForm", {
|
|
28972
|
+
ref: "processFormIndex",
|
|
28973
|
+
attrs: {
|
|
28974
|
+
id:
|
|
28975
|
+
_vm.freeStartFlowParams.startFlowBusinessId ||
|
|
28976
|
+
_vm.businessIds,
|
|
28977
|
+
simpleTips: _vm.simpleTips,
|
|
28978
|
+
"is-free-start-flow":
|
|
28979
|
+
_vm.freeStartFlowParams.useScene ===
|
|
28980
|
+
"multiInsMidwayWithSubmitScene",
|
|
28981
|
+
"label-position": _vm.formLabelPosition,
|
|
28982
|
+
showBtn: false,
|
|
28983
|
+
"copy-history":
|
|
28984
|
+
_vm.freeStartFlowParams.pendedHistoryHandle,
|
|
28985
|
+
"process-definition-id":
|
|
28986
|
+
_vm.freeStartFlowNextNode ||
|
|
28987
|
+
_vm.nodeInfo.nextNode,
|
|
28988
|
+
opinion: _vm.value,
|
|
28989
|
+
taskExamineParam:
|
|
28990
|
+
_vm.freeStartFlowParams
|
|
28991
|
+
.newFlowStartNodeItemName,
|
|
28992
|
+
taskParams: _vm.taskParams,
|
|
28993
|
+
formType: _vm.processFormType,
|
|
28994
|
+
},
|
|
28995
|
+
on: {
|
|
28996
|
+
cancel: function ($event) {
|
|
28997
|
+
_vm.closeProcess(
|
|
28998
|
+
$event,
|
|
28999
|
+
"handleVisible",
|
|
29000
|
+
_vm.closeParent
|
|
29001
|
+
)
|
|
29002
|
+
},
|
|
29003
|
+
},
|
|
29004
|
+
})
|
|
29005
|
+
: _vm.isFlow &&
|
|
29006
|
+
_vm.nodeInfo.nextNode &&
|
|
29007
|
+
_vm.startFlowPageEmbeddedIntoStartFlowIndex &&
|
|
29008
|
+
_vm.directCreateCircularReadWhenFlowStarted
|
|
29009
|
+
? _c("circulate", {
|
|
29010
|
+
ref: "flowCirculate",
|
|
29011
|
+
attrs: {
|
|
29012
|
+
"label-position": _vm.formLabelPosition,
|
|
29013
|
+
businessId: _vm.businessId,
|
|
29014
|
+
startFlowPageEmbeddedIntoStartFlowIndex:
|
|
29015
|
+
_vm.startFlowPageEmbeddedIntoStartFlowIndex,
|
|
29016
|
+
processDefinitionId: _vm.nodeInfo.nextNode,
|
|
29017
|
+
simpleTips: _vm.simpleTips,
|
|
29018
|
+
showBtn: false,
|
|
29019
|
+
selectorParams: _vm.params,
|
|
29020
|
+
oldOption: _vm.value,
|
|
29021
|
+
},
|
|
29022
|
+
on: {
|
|
29023
|
+
cancel: function ($event) {
|
|
29024
|
+
_vm.closeProcess($event, "circulateVisible")
|
|
29025
|
+
},
|
|
29026
|
+
},
|
|
29027
|
+
})
|
|
29028
|
+
: _vm._e(),
|
|
28851
29029
|
!_vm.isFlow && _vm.isSpecial
|
|
28852
29030
|
? _c(
|
|
28853
29031
|
"div",
|
|
@@ -29629,6 +29807,7 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
29629
29807
|
"pending-id": _vm.pendingId,
|
|
29630
29808
|
opinion: _vm.value,
|
|
29631
29809
|
type: _vm.taskReadType,
|
|
29810
|
+
selectorConfig: _vm.selectorConfig,
|
|
29632
29811
|
simpleTips: _vm.simpleTips,
|
|
29633
29812
|
taskExamine: _vm.taskExamineInfo,
|
|
29634
29813
|
"news-info": _vm.nextNode.notificationMsg,
|
|
@@ -29813,14 +29992,14 @@ var mainvue_type_template_id_89ea98c6_render = function () {
|
|
|
29813
29992
|
)
|
|
29814
29993
|
: _vm._e()
|
|
29815
29994
|
}
|
|
29816
|
-
var
|
|
29817
|
-
|
|
29995
|
+
var mainvue_type_template_id_1ebfbd3f_staticRenderFns = []
|
|
29996
|
+
mainvue_type_template_id_1ebfbd3f_render._withStripped = true
|
|
29818
29997
|
|
|
29819
29998
|
|
|
29820
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
29999
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=1ebfbd3f&
|
|
29821
30000
|
|
|
29822
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=
|
|
29823
|
-
var
|
|
30001
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=19364a89&
|
|
30002
|
+
var CommonOpinionsvue_type_template_id_19364a89_render = function () {
|
|
29824
30003
|
var _vm = this
|
|
29825
30004
|
var _h = _vm.$createElement
|
|
29826
30005
|
var _c = _vm._self._c || _h
|
|
@@ -29843,23 +30022,44 @@ var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
|
|
|
29843
30022
|
"el-form-item",
|
|
29844
30023
|
{ attrs: { label: "", prop: "value" } },
|
|
29845
30024
|
[
|
|
29846
|
-
_c(
|
|
29847
|
-
|
|
29848
|
-
|
|
29849
|
-
|
|
29850
|
-
|
|
29851
|
-
|
|
29852
|
-
|
|
29853
|
-
},
|
|
29854
|
-
on: { change: _vm.changeOpinion },
|
|
29855
|
-
model: {
|
|
29856
|
-
value: _vm.form.value,
|
|
29857
|
-
callback: function ($$v) {
|
|
29858
|
-
_vm.$set(_vm.form, "value", $$v)
|
|
30025
|
+
_c(
|
|
30026
|
+
"el-tooltip",
|
|
30027
|
+
{
|
|
30028
|
+
attrs: {
|
|
30029
|
+
disabled:
|
|
30030
|
+
_vm.tooltipDisabled || !_vm.pendingItemHandleDescription,
|
|
30031
|
+
placement: "top",
|
|
29859
30032
|
},
|
|
29860
|
-
expression: "form.value",
|
|
29861
30033
|
},
|
|
29862
|
-
|
|
30034
|
+
[
|
|
30035
|
+
_c("div", { attrs: { slot: "content" }, slot: "content" }, [
|
|
30036
|
+
_vm._v(_vm._s(_vm.pendingItemHandleDescription)),
|
|
30037
|
+
]),
|
|
30038
|
+
_c("el-input", {
|
|
30039
|
+
attrs: {
|
|
30040
|
+
disabled: _vm.isBanInputOpinion == "1" || _vm.disabled,
|
|
30041
|
+
type: "textarea",
|
|
30042
|
+
clear: "inp",
|
|
30043
|
+
placeholder:
|
|
30044
|
+
_vm.pendingItemHandleDescription || "请输入意见",
|
|
30045
|
+
rows: _vm.rows,
|
|
30046
|
+
},
|
|
30047
|
+
on: {
|
|
30048
|
+
change: _vm.changeOpinion,
|
|
30049
|
+
blur: _vm.handleBlur,
|
|
30050
|
+
focus: _vm.handleFocus,
|
|
30051
|
+
},
|
|
30052
|
+
model: {
|
|
30053
|
+
value: _vm.form.value,
|
|
30054
|
+
callback: function ($$v) {
|
|
30055
|
+
_vm.$set(_vm.form, "value", $$v)
|
|
30056
|
+
},
|
|
30057
|
+
expression: "form.value",
|
|
30058
|
+
},
|
|
30059
|
+
}),
|
|
30060
|
+
],
|
|
30061
|
+
1
|
|
30062
|
+
),
|
|
29863
30063
|
],
|
|
29864
30064
|
1
|
|
29865
30065
|
),
|
|
@@ -30010,11 +30210,11 @@ var CommonOpinionsvue_type_template_id_fdf49dec_render = function () {
|
|
|
30010
30210
|
1
|
|
30011
30211
|
)
|
|
30012
30212
|
}
|
|
30013
|
-
var
|
|
30014
|
-
|
|
30213
|
+
var CommonOpinionsvue_type_template_id_19364a89_staticRenderFns = []
|
|
30214
|
+
CommonOpinionsvue_type_template_id_19364a89_render._withStripped = true
|
|
30015
30215
|
|
|
30016
30216
|
|
|
30017
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=
|
|
30217
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=19364a89&
|
|
30018
30218
|
|
|
30019
30219
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/table.vue?vue&type=template&id=67f38db6&
|
|
30020
30220
|
var tablevue_type_template_id_67f38db6_render = function () {
|
|
@@ -30544,6 +30744,11 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30544
30744
|
//
|
|
30545
30745
|
//
|
|
30546
30746
|
//
|
|
30747
|
+
//
|
|
30748
|
+
//
|
|
30749
|
+
//
|
|
30750
|
+
//
|
|
30751
|
+
//
|
|
30547
30752
|
|
|
30548
30753
|
|
|
30549
30754
|
|
|
@@ -30555,6 +30760,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30555
30760
|
data: function data() {
|
|
30556
30761
|
return {
|
|
30557
30762
|
value: '',
|
|
30763
|
+
tooltipDisabled: false,
|
|
30558
30764
|
form: {
|
|
30559
30765
|
value: ''
|
|
30560
30766
|
},
|
|
@@ -30582,6 +30788,10 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30582
30788
|
type: String,
|
|
30583
30789
|
default: ''
|
|
30584
30790
|
},
|
|
30791
|
+
pendingItemHandleDescription: {
|
|
30792
|
+
type: String,
|
|
30793
|
+
default: ''
|
|
30794
|
+
},
|
|
30585
30795
|
nodeFixedOpinionSelectList: {
|
|
30586
30796
|
type: Array,
|
|
30587
30797
|
default: function _default() {
|
|
@@ -30610,6 +30820,14 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30610
30820
|
}
|
|
30611
30821
|
},
|
|
30612
30822
|
methods: {
|
|
30823
|
+
handleBlur: function handleBlur() {
|
|
30824
|
+
this.$emit('blur', this.form.value);
|
|
30825
|
+
this.tooltipDisabled = false;
|
|
30826
|
+
},
|
|
30827
|
+
handleFocus: function handleFocus() {
|
|
30828
|
+
this.$emit('focus', this.form.value);
|
|
30829
|
+
this.tooltipDisabled = true;
|
|
30830
|
+
},
|
|
30613
30831
|
validate: function validate() {
|
|
30614
30832
|
var validSate = true;
|
|
30615
30833
|
this.$refs.ruleForm.validate(function (valid) {
|
|
@@ -30622,21 +30840,21 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30622
30840
|
return validSate;
|
|
30623
30841
|
},
|
|
30624
30842
|
|
|
30625
|
-
/**
|
|
30626
|
-
* changeOpinion
|
|
30627
|
-
* @desc:监听意见变化
|
|
30628
|
-
* @author liufan
|
|
30629
|
-
* @date 2022年10月28日
|
|
30843
|
+
/**
|
|
30844
|
+
* changeOpinion
|
|
30845
|
+
* @desc:监听意见变化
|
|
30846
|
+
* @author liufan
|
|
30847
|
+
* @date 2022年10月28日
|
|
30630
30848
|
**/
|
|
30631
30849
|
changeOpinion: function changeOpinion() {
|
|
30632
30850
|
this.$emit('change', this.form.value);
|
|
30633
30851
|
},
|
|
30634
30852
|
|
|
30635
|
-
/**
|
|
30636
|
-
* getCommonOpion
|
|
30637
|
-
* @desc:获取意见
|
|
30638
|
-
* @author liufan
|
|
30639
|
-
* @date 2022年5月25日
|
|
30853
|
+
/**
|
|
30854
|
+
* getCommonOpion
|
|
30855
|
+
* @desc:获取意见
|
|
30856
|
+
* @author liufan
|
|
30857
|
+
* @date 2022年5月25日
|
|
30640
30858
|
**/
|
|
30641
30859
|
getCommonOpion: function getCommonOpion() {
|
|
30642
30860
|
var _this = this;
|
|
@@ -30665,24 +30883,24 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30665
30883
|
});
|
|
30666
30884
|
},
|
|
30667
30885
|
|
|
30668
|
-
/**
|
|
30669
|
-
* upDate
|
|
30670
|
-
* @desc:修改常用语
|
|
30671
|
-
* @author liufan
|
|
30672
|
-
* @param {Object} val 修改值
|
|
30673
|
-
* @date 2022年5月25日
|
|
30886
|
+
/**
|
|
30887
|
+
* upDate
|
|
30888
|
+
* @desc:修改常用语
|
|
30889
|
+
* @author liufan
|
|
30890
|
+
* @param {Object} val 修改值
|
|
30891
|
+
* @date 2022年5月25日
|
|
30674
30892
|
**/
|
|
30675
30893
|
upDate: function upDate(val) {
|
|
30676
30894
|
this.FormData.id = val.id;
|
|
30677
30895
|
this.addVisible = true;
|
|
30678
30896
|
},
|
|
30679
30897
|
|
|
30680
|
-
/**
|
|
30681
|
-
* selectChange
|
|
30682
|
-
* @desc:常用语选择
|
|
30683
|
-
* @author liufan
|
|
30684
|
-
* @param {String} val 选中值
|
|
30685
|
-
* @date 2022年5月25日
|
|
30898
|
+
/**
|
|
30899
|
+
* selectChange
|
|
30900
|
+
* @desc:常用语选择
|
|
30901
|
+
* @author liufan
|
|
30902
|
+
* @param {String} val 选中值
|
|
30903
|
+
* @date 2022年5月25日
|
|
30686
30904
|
**/
|
|
30687
30905
|
selectChange: function selectChange(val) {
|
|
30688
30906
|
var _this2 = this;
|
|
@@ -30701,12 +30919,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30701
30919
|
});
|
|
30702
30920
|
},
|
|
30703
30921
|
|
|
30704
|
-
/**
|
|
30705
|
-
* del
|
|
30706
|
-
* @desc:删除常用语
|
|
30707
|
-
* @author liufan
|
|
30708
|
-
* @param {Object} val 删除的数据
|
|
30709
|
-
* @date 2022年5月25日
|
|
30922
|
+
/**
|
|
30923
|
+
* del
|
|
30924
|
+
* @desc:删除常用语
|
|
30925
|
+
* @author liufan
|
|
30926
|
+
* @param {Object} val 删除的数据
|
|
30927
|
+
* @date 2022年5月25日
|
|
30710
30928
|
**/
|
|
30711
30929
|
del: function del(val) {
|
|
30712
30930
|
var _this3 = this;
|
|
@@ -30748,12 +30966,12 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30748
30966
|
}).catch(function (e) {});
|
|
30749
30967
|
},
|
|
30750
30968
|
|
|
30751
|
-
/**
|
|
30752
|
-
* submit
|
|
30753
|
-
* @desc:新增/编辑意见保存
|
|
30754
|
-
* @author liufan
|
|
30755
|
-
* @param {Object} val 保存数据
|
|
30756
|
-
* @date 2022年5月25日
|
|
30969
|
+
/**
|
|
30970
|
+
* submit
|
|
30971
|
+
* @desc:新增/编辑意见保存
|
|
30972
|
+
* @author liufan
|
|
30973
|
+
* @param {Object} val 保存数据
|
|
30974
|
+
* @date 2022年5月25日
|
|
30757
30975
|
**/
|
|
30758
30976
|
submit: function submit(val) {
|
|
30759
30977
|
var _this4 = this;
|
|
@@ -30808,8 +31026,8 @@ var CommonOpinionsvue_type_script_lang_js_components;
|
|
|
30808
31026
|
|
|
30809
31027
|
var CommonOpinions_component = normalizeComponent(
|
|
30810
31028
|
component_CommonOpinionsvue_type_script_lang_js_,
|
|
30811
|
-
|
|
30812
|
-
|
|
31029
|
+
CommonOpinionsvue_type_template_id_19364a89_render,
|
|
31030
|
+
CommonOpinionsvue_type_template_id_19364a89_staticRenderFns,
|
|
30813
31031
|
false,
|
|
30814
31032
|
null,
|
|
30815
31033
|
null,
|
|
@@ -30818,8 +31036,8 @@ var CommonOpinions_component = normalizeComponent(
|
|
|
30818
31036
|
)
|
|
30819
31037
|
|
|
30820
31038
|
/* harmony default export */ var CommonOpinions = (CommonOpinions_component.exports);
|
|
30821
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
30822
|
-
var
|
|
31039
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/processForm.vue?vue&type=template&id=972ab99a&
|
|
31040
|
+
var processFormvue_type_template_id_972ab99a_render = function () {
|
|
30823
31041
|
var _vm = this
|
|
30824
31042
|
var _h = _vm.$createElement
|
|
30825
31043
|
var _c = _vm._self._c || _h
|
|
@@ -30850,18 +31068,17 @@ var processFormvue_type_template_id_39873a24_render = function () {
|
|
|
30850
31068
|
attrs: {
|
|
30851
31069
|
model: _vm.nextNode,
|
|
30852
31070
|
"label-width": "100px",
|
|
30853
|
-
"label-position":
|
|
31071
|
+
"label-position": _vm.labelPosition,
|
|
30854
31072
|
},
|
|
30855
31073
|
},
|
|
30856
31074
|
[
|
|
30857
31075
|
_c(
|
|
30858
31076
|
"div",
|
|
30859
31077
|
{
|
|
30860
|
-
|
|
30861
|
-
height:
|
|
30862
|
-
"
|
|
30863
|
-
"margin-bottom
|
|
30864
|
-
},
|
|
31078
|
+
style:
|
|
31079
|
+
"height:" +
|
|
31080
|
+
(_vm.showBtn ? "430px" : "auto") +
|
|
31081
|
+
"; overflow-y: auto; margin-bottom: 10px",
|
|
30865
31082
|
},
|
|
30866
31083
|
[
|
|
30867
31084
|
_c(
|
|
@@ -30944,27 +31161,49 @@ var processFormvue_type_template_id_39873a24_render = function () {
|
|
|
30944
31161
|
},
|
|
30945
31162
|
},
|
|
30946
31163
|
[
|
|
30947
|
-
|
|
30948
|
-
|
|
30949
|
-
|
|
30950
|
-
|
|
30951
|
-
|
|
30952
|
-
|
|
30953
|
-
|
|
30954
|
-
|
|
30955
|
-
|
|
31164
|
+
_vm.nextOperateCheckType == "select"
|
|
31165
|
+
? _c(
|
|
31166
|
+
"el-select",
|
|
31167
|
+
{
|
|
31168
|
+
attrs: { placeholder: "请选择下步操作" },
|
|
31169
|
+
on: { change: _vm.selecNext },
|
|
31170
|
+
model: {
|
|
31171
|
+
value: _vm.nextNode.nextOperate,
|
|
31172
|
+
callback: function ($$v) {
|
|
31173
|
+
_vm.$set(_vm.nextNode, "nextOperate", $$v)
|
|
31174
|
+
},
|
|
31175
|
+
expression: "nextNode.nextOperate",
|
|
31176
|
+
},
|
|
31177
|
+
},
|
|
31178
|
+
_vm._l(_vm.operationList, function (items) {
|
|
31179
|
+
return _c("el-option", {
|
|
31180
|
+
key: items.key,
|
|
31181
|
+
attrs: { label: items.value, value: items.key },
|
|
31182
|
+
})
|
|
31183
|
+
}),
|
|
31184
|
+
1
|
|
31185
|
+
)
|
|
31186
|
+
: _vm.nextOperateCheckType == "radio"
|
|
31187
|
+
? _c("es-radio-group", {
|
|
31188
|
+
attrs: {
|
|
31189
|
+
data: _vm.operationList,
|
|
31190
|
+
"value-key": "key",
|
|
31191
|
+
"label-key": "value",
|
|
31192
|
+
},
|
|
31193
|
+
on: {
|
|
31194
|
+
change: function ($event) {
|
|
31195
|
+
_vm.selecNext($event, true)
|
|
31196
|
+
},
|
|
31197
|
+
},
|
|
31198
|
+
model: {
|
|
31199
|
+
value: _vm.nextNode.nextOperate,
|
|
31200
|
+
callback: function ($$v) {
|
|
31201
|
+
_vm.$set(_vm.nextNode, "nextOperate", $$v)
|
|
31202
|
+
},
|
|
31203
|
+
expression: "nextNode.nextOperate",
|
|
30956
31204
|
},
|
|
30957
|
-
expression: "nextNode.nextOperate",
|
|
30958
|
-
},
|
|
30959
|
-
},
|
|
30960
|
-
_vm._l(_vm.operationList, function (items) {
|
|
30961
|
-
return _c("el-option", {
|
|
30962
|
-
key: items.key,
|
|
30963
|
-
attrs: { label: items.value, value: items.key },
|
|
30964
31205
|
})
|
|
30965
|
-
|
|
30966
|
-
1
|
|
30967
|
-
),
|
|
31206
|
+
: _vm._e(),
|
|
30968
31207
|
],
|
|
30969
31208
|
1
|
|
30970
31209
|
)
|
|
@@ -31017,6 +31256,7 @@ var processFormvue_type_template_id_39873a24_render = function () {
|
|
|
31017
31256
|
"value-key": "nodeId",
|
|
31018
31257
|
"label-key": "nodeName",
|
|
31019
31258
|
},
|
|
31259
|
+
on: { change: _vm.changeSel },
|
|
31020
31260
|
model: {
|
|
31021
31261
|
value: _vm.nextNode.nextNode,
|
|
31022
31262
|
callback: function ($$v) {
|
|
@@ -31396,32 +31636,46 @@ var processFormvue_type_template_id_39873a24_render = function () {
|
|
|
31396
31636
|
],
|
|
31397
31637
|
1
|
|
31398
31638
|
),
|
|
31399
|
-
_c(
|
|
31400
|
-
|
|
31401
|
-
|
|
31402
|
-
|
|
31403
|
-
|
|
31404
|
-
|
|
31405
|
-
"
|
|
31406
|
-
|
|
31407
|
-
|
|
31408
|
-
|
|
31409
|
-
|
|
31410
|
-
|
|
31639
|
+
_c(
|
|
31640
|
+
"el-form-item",
|
|
31641
|
+
{
|
|
31642
|
+
directives: [
|
|
31643
|
+
{
|
|
31644
|
+
name: "show",
|
|
31645
|
+
rawName: "v-show",
|
|
31646
|
+
value: _vm.showBtn,
|
|
31647
|
+
expression: "showBtn",
|
|
31648
|
+
},
|
|
31649
|
+
],
|
|
31650
|
+
staticStyle: { "margin-bottom": "0px" },
|
|
31651
|
+
},
|
|
31652
|
+
[
|
|
31653
|
+
_c(
|
|
31654
|
+
"div",
|
|
31655
|
+
{ staticStyle: { "text-align": "right" } },
|
|
31656
|
+
[
|
|
31657
|
+
_c(
|
|
31658
|
+
"el-button",
|
|
31659
|
+
{
|
|
31660
|
+
attrs: { type: "primary", size: "small" },
|
|
31661
|
+
on: {
|
|
31662
|
+
click: function ($event) {
|
|
31663
|
+
_vm.subProcess("nextNode")
|
|
31664
|
+
},
|
|
31411
31665
|
},
|
|
31412
31666
|
},
|
|
31413
|
-
|
|
31414
|
-
|
|
31415
|
-
|
|
31416
|
-
|
|
31417
|
-
|
|
31418
|
-
|
|
31419
|
-
|
|
31420
|
-
|
|
31421
|
-
|
|
31422
|
-
|
|
31423
|
-
|
|
31424
|
-
|
|
31667
|
+
[_vm._v("\n 确认\n ")]
|
|
31668
|
+
),
|
|
31669
|
+
_c(
|
|
31670
|
+
"el-button",
|
|
31671
|
+
{ attrs: { size: "small" }, on: { click: _vm.quit } },
|
|
31672
|
+
[_vm._v(" 取消 ")]
|
|
31673
|
+
),
|
|
31674
|
+
],
|
|
31675
|
+
1
|
|
31676
|
+
),
|
|
31677
|
+
]
|
|
31678
|
+
),
|
|
31425
31679
|
],
|
|
31426
31680
|
1
|
|
31427
31681
|
),
|
|
@@ -31429,11 +31683,11 @@ var processFormvue_type_template_id_39873a24_render = function () {
|
|
|
31429
31683
|
1
|
|
31430
31684
|
)
|
|
31431
31685
|
}
|
|
31432
|
-
var
|
|
31433
|
-
|
|
31686
|
+
var processFormvue_type_template_id_972ab99a_staticRenderFns = []
|
|
31687
|
+
processFormvue_type_template_id_972ab99a_render._withStripped = true
|
|
31434
31688
|
|
|
31435
31689
|
|
|
31436
|
-
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=
|
|
31690
|
+
// CONCATENATED MODULE: ./packages/flow/src/processForm.vue?vue&type=template&id=972ab99a&
|
|
31437
31691
|
|
|
31438
31692
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/selectUser.vue?vue&type=template&id=49031d93&
|
|
31439
31693
|
var selectUservue_type_template_id_49031d93_render = function () {
|
|
@@ -33219,6 +33473,16 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33219
33473
|
//
|
|
33220
33474
|
//
|
|
33221
33475
|
//
|
|
33476
|
+
//
|
|
33477
|
+
//
|
|
33478
|
+
//
|
|
33479
|
+
//
|
|
33480
|
+
//
|
|
33481
|
+
//
|
|
33482
|
+
//
|
|
33483
|
+
//
|
|
33484
|
+
//
|
|
33485
|
+
//
|
|
33222
33486
|
|
|
33223
33487
|
|
|
33224
33488
|
|
|
@@ -33266,17 +33530,24 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33266
33530
|
taskExamineParam: {
|
|
33267
33531
|
type: String,
|
|
33268
33532
|
default: ''
|
|
33269
|
-
}
|
|
33533
|
+
},
|
|
33534
|
+
labelPosition: {
|
|
33535
|
+
type: String,
|
|
33536
|
+
default: 'left'
|
|
33537
|
+
},
|
|
33538
|
+
showBtn: { type: Boolean, default: true }
|
|
33270
33539
|
},
|
|
33271
33540
|
data: function data() {
|
|
33272
33541
|
return {
|
|
33273
33542
|
loading: false,
|
|
33274
33543
|
isCustomUser: 0,
|
|
33544
|
+
allLoading: null,
|
|
33275
33545
|
selectUser: false,
|
|
33276
33546
|
multiple: false,
|
|
33277
33547
|
readMultiple: true,
|
|
33278
33548
|
customPresetHintMessage: '', //流程预设标题
|
|
33279
33549
|
nextNodeCheckType: 'select',
|
|
33550
|
+
nextOperateCheckType: 'select',
|
|
33280
33551
|
notificationMessageReadOnly: false,
|
|
33281
33552
|
readOnlyNotificationType: '',
|
|
33282
33553
|
show: true,
|
|
@@ -33359,7 +33630,19 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33359
33630
|
|
|
33360
33631
|
watch: {
|
|
33361
33632
|
processDefinitionId: function processDefinitionId(val) {
|
|
33633
|
+
Object.assign(this.$data, this.$options.data());
|
|
33634
|
+
this.getUserInfo();
|
|
33635
|
+
this.getNodeType();
|
|
33362
33636
|
this.getStartFlow(val);
|
|
33637
|
+
if (this.copyHistory) {
|
|
33638
|
+
this.nextNode.newOpinion = this.opinion;
|
|
33639
|
+
} else if (this.formType != 'readTransfer') {
|
|
33640
|
+
this.newOpinion = this.opinion;
|
|
33641
|
+
}
|
|
33642
|
+
// this.getStartFlow(val);
|
|
33643
|
+
},
|
|
33644
|
+
opinion: function opinion(val) {
|
|
33645
|
+
this.newOpinion = this.opinion;
|
|
33363
33646
|
}
|
|
33364
33647
|
},
|
|
33365
33648
|
computed: {
|
|
@@ -33484,7 +33767,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33484
33767
|
this.options = [];
|
|
33485
33768
|
this.selectUserList = [];
|
|
33486
33769
|
this.radioList = [];
|
|
33487
|
-
this.
|
|
33770
|
+
if (this.showBtn) {
|
|
33771
|
+
this.loading = true;
|
|
33772
|
+
} else {
|
|
33773
|
+
this.allLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
33774
|
+
}
|
|
33488
33775
|
this.nextNode.nodeInfo = this.operationList[val].list;
|
|
33489
33776
|
if (this.nextNode.nodeInfo.length > 0) {
|
|
33490
33777
|
this.nextNode.nextNode = this.defaultNextNode || this.nextNode.nodeInfo[0].nodeId;
|
|
@@ -33516,7 +33803,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33516
33803
|
_this2.nextNode.noticeList = data;
|
|
33517
33804
|
}
|
|
33518
33805
|
}).catch(function (err) {
|
|
33519
|
-
_this2.
|
|
33806
|
+
if (_this2.showBtn) {
|
|
33807
|
+
_this2.loading = false;
|
|
33808
|
+
} else {
|
|
33809
|
+
_this2.allLoading.close();
|
|
33810
|
+
}
|
|
33520
33811
|
if (err.message && err.message !== 'canceled') {
|
|
33521
33812
|
_this2.$message.error(err.message);
|
|
33522
33813
|
}
|
|
@@ -33537,7 +33828,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33537
33828
|
_this3.nextNode.noticeInfo = res.message;
|
|
33538
33829
|
}
|
|
33539
33830
|
}).catch(function (err) {
|
|
33540
|
-
_this3.
|
|
33831
|
+
if (_this3.showBtn) {
|
|
33832
|
+
_this3.loading = false;
|
|
33833
|
+
} else {
|
|
33834
|
+
_this3.allLoading.close();
|
|
33835
|
+
}
|
|
33541
33836
|
if (err.message && err.message !== 'canceled') {
|
|
33542
33837
|
_this3.$message.error(err.message);
|
|
33543
33838
|
}
|
|
@@ -33577,7 +33872,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33577
33872
|
return _this4.$message.warning('请选择办理对象');
|
|
33578
33873
|
}
|
|
33579
33874
|
}
|
|
33580
|
-
_this4.
|
|
33875
|
+
if (_this4.showBtn) {
|
|
33876
|
+
_this4.loading = true;
|
|
33877
|
+
} else {
|
|
33878
|
+
_this4.allLoading = utils_util["a" /* default */].loading(_this4.$loading, '加载中...');
|
|
33879
|
+
}
|
|
33581
33880
|
var newNextUser = [];
|
|
33582
33881
|
if (_this4.multiple) {
|
|
33583
33882
|
nextUser && nextUser.map(function (item) {
|
|
@@ -33611,7 +33910,9 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33611
33910
|
newParm.copyHistory = _this4.copyHistory === 'needCopyPendedHistory';
|
|
33612
33911
|
newParm.startFlowParamJson = params;
|
|
33613
33912
|
newParm.startFlowParamJson.businessId = _this4.id; //this.id
|
|
33614
|
-
newParm.startFlowParamJson.taskExamineParam = {
|
|
33913
|
+
newParm.startFlowParamJson.taskExamineParam = {
|
|
33914
|
+
startFlowFirstNodeName: _this4.taskExamineParam
|
|
33915
|
+
};
|
|
33615
33916
|
newParm.startFlowParamJson = JSON.stringify(newParm.startFlowParamJson);
|
|
33616
33917
|
for (var key in _this4.taskParams) {
|
|
33617
33918
|
if (Array.isArray(_this4.taskParams[key])) {
|
|
@@ -33637,7 +33938,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33637
33938
|
var status = res.status,
|
|
33638
33939
|
message = res.message;
|
|
33639
33940
|
|
|
33640
|
-
_this4.
|
|
33941
|
+
if (_this4.showBtn) {
|
|
33942
|
+
_this4.loading = false;
|
|
33943
|
+
} else {
|
|
33944
|
+
_this4.allLoading.close();
|
|
33945
|
+
}
|
|
33641
33946
|
if (status === 'success' || res.rCode == 0) {
|
|
33642
33947
|
_this4.quit(true);
|
|
33643
33948
|
_this4.simpleTips && _this4.$message.success('操作成功');
|
|
@@ -33645,7 +33950,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33645
33950
|
_this4.$message.error(message || '系统错误,请联系管理员!');
|
|
33646
33951
|
}
|
|
33647
33952
|
}).catch(function (err) {
|
|
33648
|
-
_this4.
|
|
33953
|
+
if (_this4.showBtn) {
|
|
33954
|
+
_this4.loading = false;
|
|
33955
|
+
} else {
|
|
33956
|
+
_this4.allLoading.close();
|
|
33957
|
+
}
|
|
33649
33958
|
if (err.message && err.message !== 'canceled') {
|
|
33650
33959
|
_this4.$message.error(err.message);
|
|
33651
33960
|
}
|
|
@@ -33673,7 +33982,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33673
33982
|
countersignaturetypeText = _res$data.countersignaturetypeText,
|
|
33674
33983
|
countersignaturetypeCode = _res$data.countersignaturetypeCode;
|
|
33675
33984
|
|
|
33676
|
-
_this5.
|
|
33985
|
+
if (_this5.showBtn) {
|
|
33986
|
+
_this5.loading = false;
|
|
33987
|
+
} else {
|
|
33988
|
+
_this5.allLoading.close();
|
|
33989
|
+
}
|
|
33677
33990
|
if (status === 'success') {
|
|
33678
33991
|
_this5.nextNode.userInfo = nextUserList;
|
|
33679
33992
|
_this5.countersignaturetypeCode = countersignaturetypeCode;
|
|
@@ -33728,7 +34041,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33728
34041
|
}
|
|
33729
34042
|
nodeId && _this5.$refs.selectUser[index].changeInfo();
|
|
33730
34043
|
}).catch(function (err) {
|
|
33731
|
-
_this5.
|
|
34044
|
+
if (_this5.showBtn) {
|
|
34045
|
+
_this5.loading = false;
|
|
34046
|
+
} else {
|
|
34047
|
+
_this5.allLoading.close();
|
|
34048
|
+
}
|
|
33732
34049
|
if (err.message && err.message !== 'canceled') {
|
|
33733
34050
|
_this5.$message.error(err.message);
|
|
33734
34051
|
}
|
|
@@ -33739,7 +34056,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33739
34056
|
this.options = [];
|
|
33740
34057
|
this.selectUserList = [];
|
|
33741
34058
|
this.radioList = [];
|
|
33742
|
-
this.
|
|
34059
|
+
if (this.showBtn) {
|
|
34060
|
+
this.loading = true;
|
|
34061
|
+
} else {
|
|
34062
|
+
this.allLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
34063
|
+
}
|
|
33743
34064
|
this.getNodeInfos();
|
|
33744
34065
|
},
|
|
33745
34066
|
|
|
@@ -33772,18 +34093,22 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33772
34093
|
_this6.$message.error(message || '系统错误,请联系管理员!');
|
|
33773
34094
|
}
|
|
33774
34095
|
}).catch(function (err) {
|
|
33775
|
-
_this6.
|
|
34096
|
+
if (_this6.showBtn) {
|
|
34097
|
+
_this6.loading = false;
|
|
34098
|
+
} else {
|
|
34099
|
+
_this6.allLoading.close();
|
|
34100
|
+
}
|
|
33776
34101
|
if (err.message && err.message !== 'canceled') {
|
|
33777
34102
|
_this6.$message.error(err.message);
|
|
33778
34103
|
}
|
|
33779
34104
|
});
|
|
33780
34105
|
},
|
|
33781
34106
|
|
|
33782
|
-
/**
|
|
33783
|
-
* isMultiple
|
|
33784
|
-
* @desc:是否多选
|
|
33785
|
-
* @author liufan
|
|
33786
|
-
* @date 2022年9月13日
|
|
34107
|
+
/**
|
|
34108
|
+
* isMultiple
|
|
34109
|
+
* @desc:是否多选
|
|
34110
|
+
* @author liufan
|
|
34111
|
+
* @date 2022年9月13日
|
|
33787
34112
|
**/
|
|
33788
34113
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
33789
34114
|
var multiple = false;
|
|
@@ -33822,7 +34147,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33822
34147
|
if (!processId) {
|
|
33823
34148
|
return false;
|
|
33824
34149
|
}
|
|
33825
|
-
this.
|
|
34150
|
+
if (this.showBtn) {
|
|
34151
|
+
this.loading = true;
|
|
34152
|
+
} else {
|
|
34153
|
+
this.allLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
34154
|
+
}
|
|
33826
34155
|
this.businessId = this.id;
|
|
33827
34156
|
var params = {
|
|
33828
34157
|
processDefinitionId: processId, // processId || this.processDefinitionId,
|
|
@@ -33845,6 +34174,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33845
34174
|
_this7.quit();
|
|
33846
34175
|
});
|
|
33847
34176
|
data.nextNodeCheckType && (_this7.nextNodeCheckType = data.nextNodeCheckType);
|
|
34177
|
+
data.nextOperateCheckType && (_this7.nextOperateCheckType = data.nextOperateCheckType);
|
|
33848
34178
|
_this7.customPresetHintMessage = data.customPresetHintMessage;
|
|
33849
34179
|
_this7.readOnlyNotificationType = data.readOnlyNotificationType;
|
|
33850
34180
|
_this7.notificationMessageReadOnly = data.notificationMessageReadOnly == 'true';
|
|
@@ -33916,7 +34246,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33916
34246
|
_this7.$message.error(message || '系统错误,请联系管理员!');
|
|
33917
34247
|
}
|
|
33918
34248
|
}).catch(function (err) {
|
|
33919
|
-
_this7.
|
|
34249
|
+
if (_this7.showBtn) {
|
|
34250
|
+
_this7.loading = false;
|
|
34251
|
+
} else {
|
|
34252
|
+
_this7.allLoading.close();
|
|
34253
|
+
}
|
|
33920
34254
|
if (err.message && err.message !== 'canceled') {
|
|
33921
34255
|
_this7.$message.error(err.message);
|
|
33922
34256
|
}
|
|
@@ -33936,8 +34270,8 @@ var processFormvue_type_script_lang_js_components;
|
|
|
33936
34270
|
|
|
33937
34271
|
var processForm_component = normalizeComponent(
|
|
33938
34272
|
src_processFormvue_type_script_lang_js_,
|
|
33939
|
-
|
|
33940
|
-
|
|
34273
|
+
processFormvue_type_template_id_972ab99a_render,
|
|
34274
|
+
processFormvue_type_template_id_972ab99a_staticRenderFns,
|
|
33941
34275
|
false,
|
|
33942
34276
|
null,
|
|
33943
34277
|
null,
|
|
@@ -35524,8 +35858,8 @@ var processReject_component = normalizeComponent(
|
|
|
35524
35858
|
)
|
|
35525
35859
|
|
|
35526
35860
|
/* harmony default export */ var processReject = (processReject_component.exports);
|
|
35527
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=
|
|
35528
|
-
var
|
|
35861
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=6faa6bf1&
|
|
35862
|
+
var startTaskReadvue_type_template_id_6faa6bf1_render = function () {
|
|
35529
35863
|
var _vm = this
|
|
35530
35864
|
var _h = _vm.$createElement
|
|
35531
35865
|
var _c = _vm._self._c || _h
|
|
@@ -35624,16 +35958,18 @@ var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
|
|
|
35624
35958
|
multiple: _vm.type != "transfer" ? _vm.multiple : false,
|
|
35625
35959
|
mix: _vm.type != "transfer",
|
|
35626
35960
|
selectUserList: _vm.selectUserList,
|
|
35627
|
-
types:
|
|
35628
|
-
_vm.
|
|
35629
|
-
|
|
35630
|
-
|
|
35631
|
-
|
|
35632
|
-
|
|
35633
|
-
|
|
35634
|
-
|
|
35635
|
-
|
|
35961
|
+
types: _vm.selectorTabs
|
|
35962
|
+
? _vm.selectorTabs
|
|
35963
|
+
: _vm.type == "transfer"
|
|
35964
|
+
? ["employee", "persongroup"]
|
|
35965
|
+
: [
|
|
35966
|
+
"employee",
|
|
35967
|
+
"enterprise",
|
|
35968
|
+
"department",
|
|
35969
|
+
"persongroup",
|
|
35970
|
+
],
|
|
35636
35971
|
tabs: _vm.tabs,
|
|
35972
|
+
params: _vm.selectorParams,
|
|
35637
35973
|
where: { type: "user" },
|
|
35638
35974
|
},
|
|
35639
35975
|
on: {
|
|
@@ -35949,11 +36285,11 @@ var startTaskReadvue_type_template_id_f3f6be4e_render = function () {
|
|
|
35949
36285
|
1
|
|
35950
36286
|
)
|
|
35951
36287
|
}
|
|
35952
|
-
var
|
|
35953
|
-
|
|
36288
|
+
var startTaskReadvue_type_template_id_6faa6bf1_staticRenderFns = []
|
|
36289
|
+
startTaskReadvue_type_template_id_6faa6bf1_render._withStripped = true
|
|
35954
36290
|
|
|
35955
36291
|
|
|
35956
|
-
// CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=
|
|
36292
|
+
// CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=6faa6bf1&
|
|
35957
36293
|
|
|
35958
36294
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=script&lang=js&
|
|
35959
36295
|
var startTaskReadvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -36127,6 +36463,9 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36127
36463
|
//
|
|
36128
36464
|
//
|
|
36129
36465
|
//
|
|
36466
|
+
//
|
|
36467
|
+
//
|
|
36468
|
+
//
|
|
36130
36469
|
|
|
36131
36470
|
|
|
36132
36471
|
|
|
@@ -36142,6 +36481,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36142
36481
|
option: { type: String, default: '' },
|
|
36143
36482
|
typeCode: { type: String, default: '' },
|
|
36144
36483
|
resetAppId: { type: String, default: '' },
|
|
36484
|
+
selectorConfig: { type: [Object, undefined], default: undefined },
|
|
36145
36485
|
param: { type: Object, default: function _default() {} },
|
|
36146
36486
|
taskExamine: { type: Object, default: function _default() {} },
|
|
36147
36487
|
readParams: {
|
|
@@ -36155,6 +36495,8 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36155
36495
|
newsNoice: '',
|
|
36156
36496
|
readOnlyNotificationType: '',
|
|
36157
36497
|
notificationMessageReadOnly: false,
|
|
36498
|
+
selectorTabs: null,
|
|
36499
|
+
selectorParams: null,
|
|
36158
36500
|
nextNode: {
|
|
36159
36501
|
nextUser: [],
|
|
36160
36502
|
userInfo: [],
|
|
@@ -36213,9 +36555,17 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36213
36555
|
if (utils_util["a" /* default */].getStorage('mainConfig')) {
|
|
36214
36556
|
this.orgId = JSON.parse(utils_util["a" /* default */].getStorage('mainConfig')).userModel.orgId;
|
|
36215
36557
|
}
|
|
36558
|
+
if (this.selectorConfig) {
|
|
36559
|
+
this.getSelectorConfig();
|
|
36560
|
+
}
|
|
36216
36561
|
},
|
|
36217
36562
|
|
|
36218
36563
|
methods: {
|
|
36564
|
+
getSelectorConfig: function getSelectorConfig() {
|
|
36565
|
+
this.selectorTabs = this.selectorConfig.type.split(',');
|
|
36566
|
+
this.selectorParams = this.selectorConfig.params;
|
|
36567
|
+
},
|
|
36568
|
+
|
|
36219
36569
|
//获取通知信息
|
|
36220
36570
|
getMessage: function getMessage() {
|
|
36221
36571
|
var _this = this;
|
|
@@ -36377,7 +36727,10 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36377
36727
|
|
|
36378
36728
|
var params = {
|
|
36379
36729
|
url: api["bc" /* toStartTaskRead */],
|
|
36380
|
-
params: startTaskReadvue_type_script_lang_js_extends({
|
|
36730
|
+
params: startTaskReadvue_type_script_lang_js_extends({
|
|
36731
|
+
pendingId: this.pendingId,
|
|
36732
|
+
taskAction: this.type
|
|
36733
|
+
}, this.param)
|
|
36381
36734
|
};
|
|
36382
36735
|
if (this.typeCode == 'read') {
|
|
36383
36736
|
delete params.params.pendingId;
|
|
@@ -36646,8 +36999,8 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
36646
36999
|
|
|
36647
37000
|
var startTaskRead_component = normalizeComponent(
|
|
36648
37001
|
src_startTaskReadvue_type_script_lang_js_,
|
|
36649
|
-
|
|
36650
|
-
|
|
37002
|
+
startTaskReadvue_type_template_id_6faa6bf1_render,
|
|
37003
|
+
startTaskReadvue_type_template_id_6faa6bf1_staticRenderFns,
|
|
36651
37004
|
false,
|
|
36652
37005
|
null,
|
|
36653
37006
|
null,
|
|
@@ -36656,8 +37009,8 @@ var startTaskRead_component = normalizeComponent(
|
|
|
36656
37009
|
)
|
|
36657
37010
|
|
|
36658
37011
|
/* harmony default export */ var startTaskRead = (startTaskRead_component.exports);
|
|
36659
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=
|
|
36660
|
-
var
|
|
37012
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=template&id=803e1634&
|
|
37013
|
+
var resetvue_type_template_id_803e1634_render = function () {
|
|
36661
37014
|
var _vm = this
|
|
36662
37015
|
var _h = _vm.$createElement
|
|
36663
37016
|
var _c = _vm._self._c || _h
|
|
@@ -37083,11 +37436,11 @@ var resetvue_type_template_id_5d246dae_render = function () {
|
|
|
37083
37436
|
1
|
|
37084
37437
|
)
|
|
37085
37438
|
}
|
|
37086
|
-
var
|
|
37087
|
-
|
|
37439
|
+
var resetvue_type_template_id_803e1634_staticRenderFns = []
|
|
37440
|
+
resetvue_type_template_id_803e1634_render._withStripped = true
|
|
37088
37441
|
|
|
37089
37442
|
|
|
37090
|
-
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=
|
|
37443
|
+
// CONCATENATED MODULE: ./packages/flow/src/reset.vue?vue&type=template&id=803e1634&
|
|
37091
37444
|
|
|
37092
37445
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/reset.vue?vue&type=script&lang=js&
|
|
37093
37446
|
var resetvue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
@@ -37636,6 +37989,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
37636
37989
|
processDefinitionId: _this4.processDefinitionId,
|
|
37637
37990
|
nextUserId: _this4.multiple ? newNextUser.join(',') : nextUser,
|
|
37638
37991
|
nextNodeId: nextNode,
|
|
37992
|
+
appId: _this4.appId,
|
|
37639
37993
|
nextOperate: nextOperate,
|
|
37640
37994
|
businessId: _this4.taskExamine.businessId,
|
|
37641
37995
|
pendingId: _this4.taskExamine.pendingId,
|
|
@@ -37815,11 +38169,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
37815
38169
|
});
|
|
37816
38170
|
},
|
|
37817
38171
|
|
|
37818
|
-
/**
|
|
37819
|
-
* isMultiple
|
|
37820
|
-
* @desc:是否多选
|
|
37821
|
-
* @author liufan
|
|
37822
|
-
* @date 2022年9月13日
|
|
38172
|
+
/**
|
|
38173
|
+
* isMultiple
|
|
38174
|
+
* @desc:是否多选
|
|
38175
|
+
* @author liufan
|
|
38176
|
+
* @date 2022年9月13日
|
|
37823
38177
|
**/
|
|
37824
38178
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
37825
38179
|
var multiple = false;
|
|
@@ -37952,8 +38306,8 @@ var resetvue_type_script_lang_js_components;
|
|
|
37952
38306
|
|
|
37953
38307
|
var reset_component = normalizeComponent(
|
|
37954
38308
|
src_resetvue_type_script_lang_js_,
|
|
37955
|
-
|
|
37956
|
-
|
|
38309
|
+
resetvue_type_template_id_803e1634_render,
|
|
38310
|
+
resetvue_type_template_id_803e1634_staticRenderFns,
|
|
37957
38311
|
false,
|
|
37958
38312
|
null,
|
|
37959
38313
|
null,
|
|
@@ -42201,11 +42555,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42201
42555
|
});
|
|
42202
42556
|
},
|
|
42203
42557
|
|
|
42204
|
-
/**
|
|
42205
|
-
* saveInfo
|
|
42206
|
-
* @desc:暂存
|
|
42207
|
-
* @author liufan
|
|
42208
|
-
* @date 2022年9月9日
|
|
42558
|
+
/**
|
|
42559
|
+
* saveInfo
|
|
42560
|
+
* @desc:暂存
|
|
42561
|
+
* @author liufan
|
|
42562
|
+
* @date 2022年9月9日
|
|
42209
42563
|
**/
|
|
42210
42564
|
saveInfo: function saveInfo(type, btn) {
|
|
42211
42565
|
var _this6 = this;
|
|
@@ -42267,11 +42621,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42267
42621
|
});
|
|
42268
42622
|
},
|
|
42269
42623
|
|
|
42270
|
-
/**
|
|
42271
|
-
* rejectBtn
|
|
42272
|
-
* @desc:点击驳回
|
|
42273
|
-
* @author liufan
|
|
42274
|
-
* @date 2022年5月25日
|
|
42624
|
+
/**
|
|
42625
|
+
* rejectBtn
|
|
42626
|
+
* @desc:点击驳回
|
|
42627
|
+
* @author liufan
|
|
42628
|
+
* @date 2022年5月25日
|
|
42275
42629
|
**/
|
|
42276
42630
|
rejectBtn: function rejectBtn() {
|
|
42277
42631
|
var _this8 = this;
|
|
@@ -42289,11 +42643,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42289
42643
|
}
|
|
42290
42644
|
},
|
|
42291
42645
|
|
|
42292
|
-
/**
|
|
42293
|
-
* taskReadBtn
|
|
42294
|
-
* @desc:点击分阅
|
|
42295
|
-
* @author liufan
|
|
42296
|
-
* @date 2022年5月25日
|
|
42646
|
+
/**
|
|
42647
|
+
* taskReadBtn
|
|
42648
|
+
* @desc:点击分阅
|
|
42649
|
+
* @author liufan
|
|
42650
|
+
* @date 2022年5月25日
|
|
42297
42651
|
**/
|
|
42298
42652
|
taskReadBtn: function taskReadBtn() {
|
|
42299
42653
|
var _this9 = this;
|
|
@@ -42312,11 +42666,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42312
42666
|
}
|
|
42313
42667
|
},
|
|
42314
42668
|
|
|
42315
|
-
/**
|
|
42316
|
-
* getFind
|
|
42317
|
-
* @desc:获取通知方式
|
|
42318
|
-
* @author liufan
|
|
42319
|
-
* @date 2022年5月25日
|
|
42669
|
+
/**
|
|
42670
|
+
* getFind
|
|
42671
|
+
* @desc:获取通知方式
|
|
42672
|
+
* @author liufan
|
|
42673
|
+
* @date 2022年5月25日
|
|
42320
42674
|
**/
|
|
42321
42675
|
getFind: function getFind() {
|
|
42322
42676
|
var _this10 = this;
|
|
@@ -42371,12 +42725,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42371
42725
|
});
|
|
42372
42726
|
},
|
|
42373
42727
|
|
|
42374
|
-
/**
|
|
42375
|
-
* endFlows
|
|
42376
|
-
* @desc:直接办结
|
|
42377
|
-
* @author liufan
|
|
42378
|
-
* @param {Object} res 直接办结数据
|
|
42379
|
-
* @date 2022年5月25日
|
|
42728
|
+
/**
|
|
42729
|
+
* endFlows
|
|
42730
|
+
* @desc:直接办结
|
|
42731
|
+
* @author liufan
|
|
42732
|
+
* @param {Object} res 直接办结数据
|
|
42733
|
+
* @date 2022年5月25日
|
|
42380
42734
|
**/
|
|
42381
42735
|
endFlows: function endFlows(res) {
|
|
42382
42736
|
var _this12 = this;
|
|
@@ -42430,12 +42784,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42430
42784
|
}).catch(function (e) {});
|
|
42431
42785
|
},
|
|
42432
42786
|
|
|
42433
|
-
/**
|
|
42434
|
-
* goView
|
|
42435
|
-
* @desc:更多流程按钮操作
|
|
42436
|
-
* @author liufan
|
|
42437
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
42438
|
-
* @date 2022年5月25日
|
|
42787
|
+
/**
|
|
42788
|
+
* goView
|
|
42789
|
+
* @desc:更多流程按钮操作
|
|
42790
|
+
* @author liufan
|
|
42791
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
42792
|
+
* @date 2022年5月25日
|
|
42439
42793
|
**/
|
|
42440
42794
|
goView: function goView(res) {
|
|
42441
42795
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -42520,11 +42874,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42520
42874
|
// isCanStartSubFlow
|
|
42521
42875
|
},
|
|
42522
42876
|
|
|
42523
|
-
/**
|
|
42524
|
-
* toTakeAdvice
|
|
42525
|
-
* @desc:征求意见
|
|
42526
|
-
* @author liufan
|
|
42527
|
-
* @date 2022年9月29日
|
|
42877
|
+
/**
|
|
42878
|
+
* toTakeAdvice
|
|
42879
|
+
* @desc:征求意见
|
|
42880
|
+
* @author liufan
|
|
42881
|
+
* @date 2022年9月29日
|
|
42528
42882
|
**/
|
|
42529
42883
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
42530
42884
|
var _this14 = this;
|
|
@@ -42568,11 +42922,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42568
42922
|
});
|
|
42569
42923
|
},
|
|
42570
42924
|
|
|
42571
|
-
/**
|
|
42572
|
-
* toStartDraf
|
|
42573
|
-
* @desc: 稿件递送、联合审核、复核
|
|
42574
|
-
* @author liufan
|
|
42575
|
-
* @date 2022年9月29日
|
|
42925
|
+
/**
|
|
42926
|
+
* toStartDraf
|
|
42927
|
+
* @desc: 稿件递送、联合审核、复核
|
|
42928
|
+
* @author liufan
|
|
42929
|
+
* @date 2022年9月29日
|
|
42576
42930
|
**/
|
|
42577
42931
|
toStartDraf: function toStartDraf(res) {
|
|
42578
42932
|
var _this16 = this;
|
|
@@ -42586,11 +42940,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42586
42940
|
}
|
|
42587
42941
|
},
|
|
42588
42942
|
|
|
42589
|
-
/**
|
|
42590
|
-
* toSendMsg
|
|
42591
|
-
* @desc:核稿通知
|
|
42592
|
-
* @author liufan
|
|
42593
|
-
* @date 2022年9月29日
|
|
42943
|
+
/**
|
|
42944
|
+
* toSendMsg
|
|
42945
|
+
* @desc:核稿通知
|
|
42946
|
+
* @author liufan
|
|
42947
|
+
* @date 2022年9月29日
|
|
42594
42948
|
**/
|
|
42595
42949
|
toSendMsg: function toSendMsg(res) {
|
|
42596
42950
|
var _this17 = this;
|
|
@@ -42604,11 +42958,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42604
42958
|
}
|
|
42605
42959
|
},
|
|
42606
42960
|
|
|
42607
|
-
/**
|
|
42608
|
-
* toTaskReadAndEnd
|
|
42609
|
-
* @desc:分阅并办结
|
|
42610
|
-
* @author liufan
|
|
42611
|
-
* @date 2022年9月29日
|
|
42961
|
+
/**
|
|
42962
|
+
* toTaskReadAndEnd
|
|
42963
|
+
* @desc:分阅并办结
|
|
42964
|
+
* @author liufan
|
|
42965
|
+
* @date 2022年9月29日
|
|
42612
42966
|
**/
|
|
42613
42967
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
42614
42968
|
var _this18 = this;
|
|
@@ -42626,11 +42980,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42626
42980
|
}
|
|
42627
42981
|
},
|
|
42628
42982
|
|
|
42629
|
-
/**
|
|
42630
|
-
* rejectAndEnd
|
|
42631
|
-
* @desc:驳回并办结
|
|
42632
|
-
* @author liufan
|
|
42633
|
-
* @date 2022年9月29日
|
|
42983
|
+
/**
|
|
42984
|
+
* rejectAndEnd
|
|
42985
|
+
* @desc:驳回并办结
|
|
42986
|
+
* @author liufan
|
|
42987
|
+
* @date 2022年9月29日
|
|
42634
42988
|
**/
|
|
42635
42989
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
42636
42990
|
var _this19 = this;
|
|
@@ -42685,11 +43039,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42685
43039
|
});
|
|
42686
43040
|
},
|
|
42687
43041
|
|
|
42688
|
-
/**
|
|
42689
|
-
* toTransfer
|
|
42690
|
-
* @desc:转办
|
|
42691
|
-
* @author liufan
|
|
42692
|
-
* @date 2022年9月29日
|
|
43042
|
+
/**
|
|
43043
|
+
* toTransfer
|
|
43044
|
+
* @desc:转办
|
|
43045
|
+
* @author liufan
|
|
43046
|
+
* @date 2022年9月29日
|
|
42693
43047
|
**/
|
|
42694
43048
|
toTransfer: function toTransfer(res) {
|
|
42695
43049
|
var _this21 = this;
|
|
@@ -42705,11 +43059,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42705
43059
|
}
|
|
42706
43060
|
},
|
|
42707
43061
|
|
|
42708
|
-
/**
|
|
42709
|
-
* getNodeInfo
|
|
42710
|
-
* @desc:获取节点信息
|
|
42711
|
-
* @author liufan
|
|
42712
|
-
* @date 2022年5月25日
|
|
43062
|
+
/**
|
|
43063
|
+
* getNodeInfo
|
|
43064
|
+
* @desc:获取节点信息
|
|
43065
|
+
* @author liufan
|
|
43066
|
+
* @date 2022年5月25日
|
|
42713
43067
|
**/
|
|
42714
43068
|
getNodeInfo: function getNodeInfo() {
|
|
42715
43069
|
var _this22 = this;
|
|
@@ -42808,12 +43162,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42808
43162
|
});
|
|
42809
43163
|
},
|
|
42810
43164
|
|
|
42811
|
-
/**
|
|
42812
|
-
* selecNext
|
|
42813
|
-
* @desc:下步节点变化时更新数据
|
|
42814
|
-
* @author liufan
|
|
42815
|
-
* @param {String} val 当前选中值
|
|
42816
|
-
* @date 2022年5月25日
|
|
43165
|
+
/**
|
|
43166
|
+
* selecNext
|
|
43167
|
+
* @desc:下步节点变化时更新数据
|
|
43168
|
+
* @author liufan
|
|
43169
|
+
* @param {String} val 当前选中值
|
|
43170
|
+
* @date 2022年5月25日
|
|
42817
43171
|
**/
|
|
42818
43172
|
selecNext: function selecNext(val, type, isDef) {
|
|
42819
43173
|
var _this23 = this;
|
|
@@ -42922,11 +43276,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42922
43276
|
if (isDef !== true) this.getNodeInfo();
|
|
42923
43277
|
},
|
|
42924
43278
|
|
|
42925
|
-
/**
|
|
42926
|
-
* isMultiple
|
|
42927
|
-
* @desc:是否多选
|
|
42928
|
-
* @author liufan
|
|
42929
|
-
* @date 2022年9月13日
|
|
43279
|
+
/**
|
|
43280
|
+
* isMultiple
|
|
43281
|
+
* @desc:是否多选
|
|
43282
|
+
* @author liufan
|
|
43283
|
+
* @date 2022年9月13日
|
|
42930
43284
|
**/
|
|
42931
43285
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
42932
43286
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -42958,11 +43312,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
42958
43312
|
}
|
|
42959
43313
|
},
|
|
42960
43314
|
|
|
42961
|
-
/**
|
|
42962
|
-
* getHedInfo
|
|
42963
|
-
* @desc:获取审核页面数据
|
|
42964
|
-
* @author liufan
|
|
42965
|
-
* @date 2022年5月25日
|
|
43315
|
+
/**
|
|
43316
|
+
* getHedInfo
|
|
43317
|
+
* @desc:获取审核页面数据
|
|
43318
|
+
* @author liufan
|
|
43319
|
+
* @date 2022年5月25日
|
|
42966
43320
|
**/
|
|
42967
43321
|
getHedInfo: function getHedInfo() {
|
|
42968
43322
|
var _this24 = this;
|
|
@@ -43198,13 +43552,13 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
43198
43552
|
});
|
|
43199
43553
|
},
|
|
43200
43554
|
|
|
43201
|
-
/**
|
|
43202
|
-
* closeProcess
|
|
43203
|
-
* @desc:关闭弹窗
|
|
43204
|
-
* @author liufan
|
|
43205
|
-
* @param {boolean} val 当前是否办理流程
|
|
43206
|
-
* @param {String} type 当前点击的弹窗类型
|
|
43207
|
-
* @date 2022年5月25日
|
|
43555
|
+
/**
|
|
43556
|
+
* closeProcess
|
|
43557
|
+
* @desc:关闭弹窗
|
|
43558
|
+
* @author liufan
|
|
43559
|
+
* @param {boolean} val 当前是否办理流程
|
|
43560
|
+
* @param {String} type 当前点击的弹窗类型
|
|
43561
|
+
* @date 2022年5月25日
|
|
43208
43562
|
**/
|
|
43209
43563
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
43210
43564
|
if (closeParent) {
|
|
@@ -43221,23 +43575,23 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
43221
43575
|
}
|
|
43222
43576
|
},
|
|
43223
43577
|
|
|
43224
|
-
/**
|
|
43225
|
-
* selectChange
|
|
43226
|
-
* @desc:常用语选择
|
|
43227
|
-
* @author liufan
|
|
43228
|
-
* @param {String} val 选中值
|
|
43229
|
-
* @date 2022年5月25日
|
|
43578
|
+
/**
|
|
43579
|
+
* selectChange
|
|
43580
|
+
* @desc:常用语选择
|
|
43581
|
+
* @author liufan
|
|
43582
|
+
* @param {String} val 选中值
|
|
43583
|
+
* @date 2022年5月25日
|
|
43230
43584
|
**/
|
|
43231
43585
|
selectChange: function selectChange(val) {
|
|
43232
43586
|
this.value = val;
|
|
43233
43587
|
},
|
|
43234
43588
|
|
|
43235
|
-
/**
|
|
43236
|
-
* upDate
|
|
43237
|
-
* @desc:修改常用语
|
|
43238
|
-
* @author liufan
|
|
43239
|
-
* @param {Object} val 修改值
|
|
43240
|
-
* @date 2022年5月25日
|
|
43589
|
+
/**
|
|
43590
|
+
* upDate
|
|
43591
|
+
* @desc:修改常用语
|
|
43592
|
+
* @author liufan
|
|
43593
|
+
* @param {Object} val 修改值
|
|
43594
|
+
* @date 2022年5月25日
|
|
43241
43595
|
**/
|
|
43242
43596
|
upDate: function upDate(val) {
|
|
43243
43597
|
this.FormData.id = val.id;
|
|
@@ -43245,11 +43599,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
43245
43599
|
},
|
|
43246
43600
|
|
|
43247
43601
|
|
|
43248
|
-
/**
|
|
43249
|
-
* getProcess
|
|
43250
|
-
* @desc:获取选择流程
|
|
43251
|
-
* @author liufan
|
|
43252
|
-
* @date 2022年5月25日
|
|
43602
|
+
/**
|
|
43603
|
+
* getProcess
|
|
43604
|
+
* @desc:获取选择流程
|
|
43605
|
+
* @author liufan
|
|
43606
|
+
* @date 2022年5月25日
|
|
43253
43607
|
**/
|
|
43254
43608
|
getProcess: function getProcess() {
|
|
43255
43609
|
var _this25 = this;
|
|
@@ -43303,11 +43657,11 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
43303
43657
|
});
|
|
43304
43658
|
},
|
|
43305
43659
|
|
|
43306
|
-
/**
|
|
43307
|
-
* getPendedhistoryList
|
|
43308
|
-
* @desc:获取流程列表
|
|
43309
|
-
* @author liufan
|
|
43310
|
-
* @date 2022年5月25日
|
|
43660
|
+
/**
|
|
43661
|
+
* getPendedhistoryList
|
|
43662
|
+
* @desc:获取流程列表
|
|
43663
|
+
* @author liufan
|
|
43664
|
+
* @date 2022年5月25日
|
|
43311
43665
|
**/
|
|
43312
43666
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
43313
43667
|
var _this26 = this;
|
|
@@ -43339,12 +43693,12 @@ function freeStartFlowvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
43339
43693
|
},
|
|
43340
43694
|
|
|
43341
43695
|
// 提交流程
|
|
43342
|
-
/**
|
|
43343
|
-
* subProcess
|
|
43344
|
-
* @desc:提交流程
|
|
43345
|
-
* @author liufan
|
|
43346
|
-
* @param {String} formName 当前form表单ref值
|
|
43347
|
-
* @date 2022年5月25日
|
|
43696
|
+
/**
|
|
43697
|
+
* subProcess
|
|
43698
|
+
* @desc:提交流程
|
|
43699
|
+
* @author liufan
|
|
43700
|
+
* @param {String} formName 当前form表单ref值
|
|
43701
|
+
* @date 2022年5月25日
|
|
43348
43702
|
**/
|
|
43349
43703
|
subProcess: function subProcess(val) {
|
|
43350
43704
|
var _this27 = this;
|
|
@@ -43940,8 +44294,8 @@ var supervise_component = normalizeComponent(
|
|
|
43940
44294
|
)
|
|
43941
44295
|
|
|
43942
44296
|
/* harmony default export */ var supervise = (supervise_component.exports);
|
|
43943
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=template&id=
|
|
43944
|
-
var
|
|
44297
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=template&id=43730f28&
|
|
44298
|
+
var Circulatevue_type_template_id_43730f28_render = function () {
|
|
43945
44299
|
var _vm = this
|
|
43946
44300
|
var _h = _vm.$createElement
|
|
43947
44301
|
var _c = _vm._self._c || _h
|
|
@@ -43965,7 +44319,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
|
|
|
43965
44319
|
ref: "infoList",
|
|
43966
44320
|
attrs: {
|
|
43967
44321
|
model: _vm.infoList,
|
|
43968
|
-
"label-width": "
|
|
44322
|
+
"label-width": "100px",
|
|
43969
44323
|
"label-position": _vm.labelPosition,
|
|
43970
44324
|
},
|
|
43971
44325
|
},
|
|
@@ -43980,7 +44334,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
|
|
|
43980
44334
|
nextUser: _vm.infoList.nextCurrentOrgObj,
|
|
43981
44335
|
multiple: _vm.newMultiple,
|
|
43982
44336
|
mix: "",
|
|
43983
|
-
types: ["
|
|
44337
|
+
types: ["employee", "persongroup"],
|
|
43984
44338
|
params: _vm.params,
|
|
43985
44339
|
},
|
|
43986
44340
|
on: {
|
|
@@ -44002,7 +44356,7 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
|
|
|
44002
44356
|
nextUser: _vm.infoList.nextOtherOrgObj,
|
|
44003
44357
|
multiple: _vm.newMultiple,
|
|
44004
44358
|
mix: "",
|
|
44005
|
-
types: ["enterprise", "
|
|
44359
|
+
types: ["enterprise", "filgroup"],
|
|
44006
44360
|
params: _vm.otherParams,
|
|
44007
44361
|
},
|
|
44008
44362
|
on: {
|
|
@@ -44133,11 +44487,11 @@ var Circulatevue_type_template_id_e4a9ba50_render = function () {
|
|
|
44133
44487
|
1
|
|
44134
44488
|
)
|
|
44135
44489
|
}
|
|
44136
|
-
var
|
|
44137
|
-
|
|
44490
|
+
var Circulatevue_type_template_id_43730f28_staticRenderFns = []
|
|
44491
|
+
Circulatevue_type_template_id_43730f28_render._withStripped = true
|
|
44138
44492
|
|
|
44139
44493
|
|
|
44140
|
-
// CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=
|
|
44494
|
+
// CONCATENATED MODULE: ./packages/flow/src/component/Circulate.vue?vue&type=template&id=43730f28&
|
|
44141
44495
|
|
|
44142
44496
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/Circulate.vue?vue&type=script&lang=js&
|
|
44143
44497
|
var Circulatevue_type_script_lang_js_components;
|
|
@@ -44249,7 +44603,8 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44249
44603
|
labelPosition: {
|
|
44250
44604
|
type: String,
|
|
44251
44605
|
default: 'left'
|
|
44252
|
-
}
|
|
44606
|
+
},
|
|
44607
|
+
startFlowPageEmbeddedIntoStartFlowIndex: { type: Boolean, default: false }
|
|
44253
44608
|
},
|
|
44254
44609
|
inheritAttrs: false,
|
|
44255
44610
|
data: function data() {
|
|
@@ -44344,7 +44699,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44344
44699
|
}
|
|
44345
44700
|
|
|
44346
44701
|
var param = {
|
|
44347
|
-
url: this.showBtn ? api["n" /* directStartTaskCircularRead */] : api["x" /* endFlowAndStartTaskCircularRead */],
|
|
44702
|
+
url: this.showBtn || this.startFlowPageEmbeddedIntoStartFlowIndex ? api["n" /* directStartTaskCircularRead */] : api["x" /* endFlowAndStartTaskCircularRead */],
|
|
44348
44703
|
data: {
|
|
44349
44704
|
opinion: opinion,
|
|
44350
44705
|
businessId: businessId,
|
|
@@ -44358,10 +44713,12 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44358
44713
|
headers: { Accept: 'application/json,text/plain' },
|
|
44359
44714
|
method: 'POST'
|
|
44360
44715
|
};
|
|
44361
|
-
if (!this.showBtn) {
|
|
44716
|
+
if (!this.showBtn && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
44362
44717
|
param.data.pendingId = this.pendingId;
|
|
44363
44718
|
delete param.data.processDefinitionId;
|
|
44364
44719
|
this.subLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
44720
|
+
} else if (this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
44721
|
+
this.subLoading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
|
|
44365
44722
|
} else {
|
|
44366
44723
|
this.loading = true;
|
|
44367
44724
|
}
|
|
@@ -44370,7 +44727,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44370
44727
|
status = res.status,
|
|
44371
44728
|
rCode = res.rCode;
|
|
44372
44729
|
|
|
44373
|
-
if (!_this.showBtn) {
|
|
44730
|
+
if (!_this.showBtn || _this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
44374
44731
|
_this.subLoading.close();
|
|
44375
44732
|
} else {
|
|
44376
44733
|
_this.loading = false;
|
|
@@ -44382,7 +44739,11 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44382
44739
|
_this.$message.error(message || '系统错误,请联系管理员!');
|
|
44383
44740
|
}
|
|
44384
44741
|
}).catch(function (err) {
|
|
44385
|
-
_this.
|
|
44742
|
+
if (!_this.showBtn || _this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
44743
|
+
_this.subLoading.close();
|
|
44744
|
+
} else {
|
|
44745
|
+
_this.loading = false;
|
|
44746
|
+
}
|
|
44386
44747
|
if (err.message && err.message !== 'canceled') {
|
|
44387
44748
|
_this.$message.error(err.message);
|
|
44388
44749
|
}
|
|
@@ -44505,8 +44866,8 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
44505
44866
|
|
|
44506
44867
|
var Circulate_component = normalizeComponent(
|
|
44507
44868
|
component_Circulatevue_type_script_lang_js_,
|
|
44508
|
-
|
|
44509
|
-
|
|
44869
|
+
Circulatevue_type_template_id_43730f28_render,
|
|
44870
|
+
Circulatevue_type_template_id_43730f28_staticRenderFns,
|
|
44510
44871
|
false,
|
|
44511
44872
|
null,
|
|
44512
44873
|
null,
|
|
@@ -45511,6 +45872,81 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45511
45872
|
//
|
|
45512
45873
|
//
|
|
45513
45874
|
//
|
|
45875
|
+
//
|
|
45876
|
+
//
|
|
45877
|
+
//
|
|
45878
|
+
//
|
|
45879
|
+
//
|
|
45880
|
+
//
|
|
45881
|
+
//
|
|
45882
|
+
//
|
|
45883
|
+
//
|
|
45884
|
+
//
|
|
45885
|
+
//
|
|
45886
|
+
//
|
|
45887
|
+
//
|
|
45888
|
+
//
|
|
45889
|
+
//
|
|
45890
|
+
//
|
|
45891
|
+
//
|
|
45892
|
+
//
|
|
45893
|
+
//
|
|
45894
|
+
//
|
|
45895
|
+
//
|
|
45896
|
+
//
|
|
45897
|
+
//
|
|
45898
|
+
//
|
|
45899
|
+
//
|
|
45900
|
+
//
|
|
45901
|
+
//
|
|
45902
|
+
//
|
|
45903
|
+
//
|
|
45904
|
+
//
|
|
45905
|
+
//
|
|
45906
|
+
//
|
|
45907
|
+
//
|
|
45908
|
+
//
|
|
45909
|
+
//
|
|
45910
|
+
//
|
|
45911
|
+
//
|
|
45912
|
+
//
|
|
45913
|
+
//
|
|
45914
|
+
//
|
|
45915
|
+
//
|
|
45916
|
+
//
|
|
45917
|
+
//
|
|
45918
|
+
//
|
|
45919
|
+
//
|
|
45920
|
+
//
|
|
45921
|
+
//
|
|
45922
|
+
//
|
|
45923
|
+
//
|
|
45924
|
+
//
|
|
45925
|
+
//
|
|
45926
|
+
//
|
|
45927
|
+
//
|
|
45928
|
+
//
|
|
45929
|
+
//
|
|
45930
|
+
//
|
|
45931
|
+
//
|
|
45932
|
+
//
|
|
45933
|
+
//
|
|
45934
|
+
//
|
|
45935
|
+
//
|
|
45936
|
+
//
|
|
45937
|
+
//
|
|
45938
|
+
//
|
|
45939
|
+
//
|
|
45940
|
+
//
|
|
45941
|
+
//
|
|
45942
|
+
//
|
|
45943
|
+
//
|
|
45944
|
+
//
|
|
45945
|
+
//
|
|
45946
|
+
//
|
|
45947
|
+
//
|
|
45948
|
+
//
|
|
45949
|
+
//
|
|
45514
45950
|
|
|
45515
45951
|
|
|
45516
45952
|
|
|
@@ -45540,6 +45976,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45540
45976
|
pendingId: { type: String, default: '' },
|
|
45541
45977
|
nodeName: { type: String, default: '' },
|
|
45542
45978
|
typeCode: { type: String, default: '' },
|
|
45979
|
+
selectorConfig: { type: [Object, undefined], default: undefined },
|
|
45543
45980
|
flowTypeCode: { type: String, default: '' },
|
|
45544
45981
|
defaultProcessKey: { type: String, default: '' },
|
|
45545
45982
|
hideBtn: { type: Boolean, default: false },
|
|
@@ -45548,6 +45985,10 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45548
45985
|
type: String,
|
|
45549
45986
|
default: 'left'
|
|
45550
45987
|
},
|
|
45988
|
+
flowListDisabled: {
|
|
45989
|
+
type: Boolean,
|
|
45990
|
+
default: false
|
|
45991
|
+
},
|
|
45551
45992
|
btnList: {
|
|
45552
45993
|
type: Array,
|
|
45553
45994
|
default: function _default() {
|
|
@@ -45589,6 +46030,9 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45589
46030
|
return _ref = {
|
|
45590
46031
|
styles: {},
|
|
45591
46032
|
optionsKey: 0,
|
|
46033
|
+
currentNodeEnableItemHandleDescription: false,
|
|
46034
|
+
startFlowPageEmbeddedIntoStartFlowIndex: false,
|
|
46035
|
+
pendingItemHandleDescription: '',
|
|
45592
46036
|
currentOrgSelectorParams: { filid: '' },
|
|
45593
46037
|
currentOrgSelectorTabs: ['employee', 'persongroup'],
|
|
45594
46038
|
foreignOrgSelectorTabs: ['enterprise', 'filgroupobj'],
|
|
@@ -45725,6 +46169,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45725
46169
|
nextReadUserId: [], //分阅用户
|
|
45726
46170
|
presetReadUserId: [], //自动分阅
|
|
45727
46171
|
handleExplain: '', //办理意见
|
|
46172
|
+
nextItemHandleDescription: '', //下步说明
|
|
45728
46173
|
notificationType: [], // 通知方式
|
|
45729
46174
|
isLimitedTime: '2', // 是否限时办理
|
|
45730
46175
|
mainSubId: ''
|
|
@@ -45881,15 +46326,15 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
45881
46326
|
_this.isBanInputOpinion = res.data.nodeExtAttr.isBanInputOpinion;
|
|
45882
46327
|
_this.directCreateCircularReadWhenFlowStarted = res.data.nodeExtAttr.directCreateCircularReadWhenFlowStarted == 1;
|
|
45883
46328
|
|
|
45884
|
-
if (
|
|
45885
|
-
|
|
45886
|
-
|
|
45887
|
-
|
|
45888
|
-
} else {
|
|
45889
|
-
|
|
45890
|
-
|
|
45891
|
-
|
|
45892
|
-
}
|
|
46329
|
+
// if (this.directCreateCircularReadWhenFlowStarted) {
|
|
46330
|
+
// this.nodeInfo.option.map((item) => {
|
|
46331
|
+
// item.disabled = item.processDefId != processDefinitionId;
|
|
46332
|
+
// });
|
|
46333
|
+
// } else {
|
|
46334
|
+
// this.nodeInfo.option.map((item) => {
|
|
46335
|
+
// item.disabled = false;
|
|
46336
|
+
// });
|
|
46337
|
+
// }
|
|
45893
46338
|
_this.optionsKey++;
|
|
45894
46339
|
_this.isOpinionRequired = res.data.nodeExtAttr.isOpinionRequired == 1;
|
|
45895
46340
|
}
|
|
@@ -46129,7 +46574,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46129
46574
|
|
|
46130
46575
|
var params = {
|
|
46131
46576
|
url: api["d" /* checkBusinessIdStartedReadTransferHandle */],
|
|
46132
|
-
params: {
|
|
46577
|
+
params: {
|
|
46578
|
+
readTransferHandleBusinessId: readTransferHandleBusinessId,
|
|
46579
|
+
readTransferHandleProcessKey: readTransferHandleProcessKey,
|
|
46580
|
+
pendingId: this.pendingId
|
|
46581
|
+
}
|
|
46133
46582
|
};
|
|
46134
46583
|
utils_util["a" /* default */].ajax(params).then(function (res) {
|
|
46135
46584
|
_this5.loading.close();
|
|
@@ -46241,11 +46690,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46241
46690
|
});
|
|
46242
46691
|
},
|
|
46243
46692
|
|
|
46244
|
-
/**
|
|
46245
|
-
* saveInfo
|
|
46246
|
-
* @desc:暂存
|
|
46247
|
-
* @author liufan
|
|
46248
|
-
* @date 2022年9月9日
|
|
46693
|
+
/**
|
|
46694
|
+
* saveInfo
|
|
46695
|
+
* @desc:暂存
|
|
46696
|
+
* @author liufan
|
|
46697
|
+
* @date 2022年9月9日
|
|
46249
46698
|
**/
|
|
46250
46699
|
saveInfo: function saveInfo(type, btn) {
|
|
46251
46700
|
var _this9 = this;
|
|
@@ -46307,11 +46756,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46307
46756
|
});
|
|
46308
46757
|
},
|
|
46309
46758
|
|
|
46310
|
-
/**
|
|
46311
|
-
* rejectBtn
|
|
46312
|
-
* @desc:点击驳回
|
|
46313
|
-
* @author liufan
|
|
46314
|
-
* @date 2022年5月25日
|
|
46759
|
+
/**
|
|
46760
|
+
* rejectBtn
|
|
46761
|
+
* @desc:点击驳回
|
|
46762
|
+
* @author liufan
|
|
46763
|
+
* @date 2022年5月25日
|
|
46315
46764
|
**/
|
|
46316
46765
|
rejectBtn: function rejectBtn() {
|
|
46317
46766
|
var _this11 = this;
|
|
@@ -46329,11 +46778,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46329
46778
|
}
|
|
46330
46779
|
},
|
|
46331
46780
|
|
|
46332
|
-
/**
|
|
46333
|
-
* taskReadBtn
|
|
46334
|
-
* @desc:点击分阅
|
|
46335
|
-
* @author liufan
|
|
46336
|
-
* @date 2022年5月25日
|
|
46781
|
+
/**
|
|
46782
|
+
* taskReadBtn
|
|
46783
|
+
* @desc:点击分阅
|
|
46784
|
+
* @author liufan
|
|
46785
|
+
* @date 2022年5月25日
|
|
46337
46786
|
**/
|
|
46338
46787
|
taskReadBtn: function taskReadBtn() {
|
|
46339
46788
|
var _this12 = this;
|
|
@@ -46352,11 +46801,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46352
46801
|
}
|
|
46353
46802
|
},
|
|
46354
46803
|
|
|
46355
|
-
/**
|
|
46356
|
-
* getFind
|
|
46357
|
-
* @desc:获取通知方式
|
|
46358
|
-
* @author liufan
|
|
46359
|
-
* @date 2022年5月25日
|
|
46804
|
+
/**
|
|
46805
|
+
* getFind
|
|
46806
|
+
* @desc:获取通知方式
|
|
46807
|
+
* @author liufan
|
|
46808
|
+
* @date 2022年5月25日
|
|
46360
46809
|
**/
|
|
46361
46810
|
getFind: function getFind() {
|
|
46362
46811
|
var _this13 = this;
|
|
@@ -46422,12 +46871,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46422
46871
|
});
|
|
46423
46872
|
},
|
|
46424
46873
|
|
|
46425
|
-
/**
|
|
46426
|
-
* endFlows
|
|
46427
|
-
* @desc:直接办结
|
|
46428
|
-
* @author liufan
|
|
46429
|
-
* @param {Object} res 直接办结数据
|
|
46430
|
-
* @date 2022年5月25日
|
|
46874
|
+
/**
|
|
46875
|
+
* endFlows
|
|
46876
|
+
* @desc:直接办结
|
|
46877
|
+
* @author liufan
|
|
46878
|
+
* @param {Object} res 直接办结数据
|
|
46879
|
+
* @date 2022年5月25日
|
|
46431
46880
|
**/
|
|
46432
46881
|
endFlows: function endFlows(res) {
|
|
46433
46882
|
var _this15 = this;
|
|
@@ -46482,12 +46931,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46482
46931
|
}).catch(function (e) {});
|
|
46483
46932
|
},
|
|
46484
46933
|
|
|
46485
|
-
/**
|
|
46486
|
-
* goView
|
|
46487
|
-
* @desc:更多流程按钮操作
|
|
46488
|
-
* @author liufan
|
|
46489
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
46490
|
-
* @date 2022年5月25日
|
|
46934
|
+
/**
|
|
46935
|
+
* goView
|
|
46936
|
+
* @desc:更多流程按钮操作
|
|
46937
|
+
* @author liufan
|
|
46938
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
46939
|
+
* @date 2022年5月25日
|
|
46491
46940
|
**/
|
|
46492
46941
|
goView: function goView(res) {
|
|
46493
46942
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -46572,11 +47021,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46572
47021
|
// isCanStartSubFlow
|
|
46573
47022
|
},
|
|
46574
47023
|
|
|
46575
|
-
/**
|
|
46576
|
-
* toTakeAdvice
|
|
46577
|
-
* @desc:征求意见
|
|
46578
|
-
* @author liufan
|
|
46579
|
-
* @date 2022年9月29日
|
|
47024
|
+
/**
|
|
47025
|
+
* toTakeAdvice
|
|
47026
|
+
* @desc:征求意见
|
|
47027
|
+
* @author liufan
|
|
47028
|
+
* @date 2022年9月29日
|
|
46580
47029
|
**/
|
|
46581
47030
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
46582
47031
|
var _this17 = this;
|
|
@@ -46620,11 +47069,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46620
47069
|
});
|
|
46621
47070
|
},
|
|
46622
47071
|
|
|
46623
|
-
/**
|
|
46624
|
-
* toStartDraf
|
|
46625
|
-
* @desc: 稿件递送、联合审核、复核
|
|
46626
|
-
* @author liufan
|
|
46627
|
-
* @date 2022年9月29日
|
|
47072
|
+
/**
|
|
47073
|
+
* toStartDraf
|
|
47074
|
+
* @desc: 稿件递送、联合审核、复核
|
|
47075
|
+
* @author liufan
|
|
47076
|
+
* @date 2022年9月29日
|
|
46628
47077
|
**/
|
|
46629
47078
|
toStartDraf: function toStartDraf(res) {
|
|
46630
47079
|
var _this19 = this;
|
|
@@ -46638,11 +47087,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46638
47087
|
}
|
|
46639
47088
|
},
|
|
46640
47089
|
|
|
46641
|
-
/**
|
|
46642
|
-
* toSendMsg
|
|
46643
|
-
* @desc:核稿通知
|
|
46644
|
-
* @author liufan
|
|
46645
|
-
* @date 2022年9月29日
|
|
47090
|
+
/**
|
|
47091
|
+
* toSendMsg
|
|
47092
|
+
* @desc:核稿通知
|
|
47093
|
+
* @author liufan
|
|
47094
|
+
* @date 2022年9月29日
|
|
46646
47095
|
**/
|
|
46647
47096
|
toSendMsg: function toSendMsg(res) {
|
|
46648
47097
|
var _this20 = this;
|
|
@@ -46656,11 +47105,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46656
47105
|
}
|
|
46657
47106
|
},
|
|
46658
47107
|
|
|
46659
|
-
/**
|
|
46660
|
-
* toTaskReadAndEnd
|
|
46661
|
-
* @desc:分阅并办结
|
|
46662
|
-
* @author liufan
|
|
46663
|
-
* @date 2022年9月29日
|
|
47108
|
+
/**
|
|
47109
|
+
* toTaskReadAndEnd
|
|
47110
|
+
* @desc:分阅并办结
|
|
47111
|
+
* @author liufan
|
|
47112
|
+
* @date 2022年9月29日
|
|
46664
47113
|
**/
|
|
46665
47114
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
46666
47115
|
var _this21 = this;
|
|
@@ -46678,11 +47127,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46678
47127
|
}
|
|
46679
47128
|
},
|
|
46680
47129
|
|
|
46681
|
-
/**
|
|
46682
|
-
* rejectAndEnd
|
|
46683
|
-
* @desc:驳回并办结
|
|
46684
|
-
* @author liufan
|
|
46685
|
-
* @date 2022年9月29日
|
|
47130
|
+
/**
|
|
47131
|
+
* rejectAndEnd
|
|
47132
|
+
* @desc:驳回并办结
|
|
47133
|
+
* @author liufan
|
|
47134
|
+
* @date 2022年9月29日
|
|
46686
47135
|
**/
|
|
46687
47136
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
46688
47137
|
var _this22 = this;
|
|
@@ -46738,11 +47187,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46738
47187
|
});
|
|
46739
47188
|
},
|
|
46740
47189
|
|
|
46741
|
-
/**
|
|
46742
|
-
* toTransfer
|
|
46743
|
-
* @desc:转办
|
|
46744
|
-
* @author liufan
|
|
46745
|
-
* @date 2022年9月29日
|
|
47190
|
+
/**
|
|
47191
|
+
* toTransfer
|
|
47192
|
+
* @desc:转办
|
|
47193
|
+
* @author liufan
|
|
47194
|
+
* @date 2022年9月29日
|
|
46746
47195
|
**/
|
|
46747
47196
|
toTransfer: function toTransfer(res) {
|
|
46748
47197
|
var _this24 = this;
|
|
@@ -46758,11 +47207,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46758
47207
|
}
|
|
46759
47208
|
},
|
|
46760
47209
|
|
|
46761
|
-
/**
|
|
46762
|
-
* getNodeInfo
|
|
46763
|
-
* @desc:获取节点信息
|
|
46764
|
-
* @author liufan
|
|
46765
|
-
* @date 2022年5月25日
|
|
47210
|
+
/**
|
|
47211
|
+
* getNodeInfo
|
|
47212
|
+
* @desc:获取节点信息
|
|
47213
|
+
* @author liufan
|
|
47214
|
+
* @date 2022年5月25日
|
|
46766
47215
|
**/
|
|
46767
47216
|
getNodeInfo: function getNodeInfo() {
|
|
46768
47217
|
var _this25 = this;
|
|
@@ -46782,6 +47231,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46782
47231
|
|
|
46783
47232
|
_this25.loading.close();
|
|
46784
47233
|
if (status === 'success') {
|
|
47234
|
+
_this25.currentNodeEnableItemHandleDescription = data.nodeExtAttr.currentNodeEnableItemHandleDescription == 1;
|
|
46785
47235
|
_this25.enableCustomLimitTimeSetting = data.nodeExtAttr.enableCustomLimitTimeSetting == 1;
|
|
46786
47236
|
data.otherOrgDisabledObjId && (_this25.otherOrgDisabledObjId = data.otherOrgDisabledObjId.split(','));
|
|
46787
47237
|
data.currentOrgDisabledObjId && (_this25.currentOrgDisabledObjId = data.currentOrgDisabledObjId.split(','));
|
|
@@ -46865,12 +47315,12 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46865
47315
|
});
|
|
46866
47316
|
},
|
|
46867
47317
|
|
|
46868
|
-
/**
|
|
46869
|
-
* selecNext
|
|
46870
|
-
* @desc:下步节点变化时更新数据
|
|
46871
|
-
* @author liufan
|
|
46872
|
-
* @param {String} val 当前选中值
|
|
46873
|
-
* @date 2022年5月25日
|
|
47318
|
+
/**
|
|
47319
|
+
* selecNext
|
|
47320
|
+
* @desc:下步节点变化时更新数据
|
|
47321
|
+
* @author liufan
|
|
47322
|
+
* @param {String} val 当前选中值
|
|
47323
|
+
* @date 2022年5月25日
|
|
46874
47324
|
**/
|
|
46875
47325
|
selecNext: function selecNext(val, type, isDef) {
|
|
46876
47326
|
var _this26 = this;
|
|
@@ -46980,11 +47430,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
46980
47430
|
this.getNodeInfo();
|
|
46981
47431
|
},
|
|
46982
47432
|
|
|
46983
|
-
/**
|
|
46984
|
-
* isMultiple
|
|
46985
|
-
* @desc:是否多选
|
|
46986
|
-
* @author liufan
|
|
46987
|
-
* @date 2022年9月13日
|
|
47433
|
+
/**
|
|
47434
|
+
* isMultiple
|
|
47435
|
+
* @desc:是否多选
|
|
47436
|
+
* @author liufan
|
|
47437
|
+
* @date 2022年9月13日
|
|
46988
47438
|
**/
|
|
46989
47439
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
46990
47440
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -47016,11 +47466,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47016
47466
|
}
|
|
47017
47467
|
},
|
|
47018
47468
|
|
|
47019
|
-
/**
|
|
47020
|
-
* getHedInfo
|
|
47021
|
-
* @desc:获取审核页面数据
|
|
47022
|
-
* @author liufan
|
|
47023
|
-
* @date 2022年5月25日
|
|
47469
|
+
/**
|
|
47470
|
+
* getHedInfo
|
|
47471
|
+
* @desc:获取审核页面数据
|
|
47472
|
+
* @author liufan
|
|
47473
|
+
* @date 2022年5月25日
|
|
47024
47474
|
**/
|
|
47025
47475
|
getHedInfo: function getHedInfo() {
|
|
47026
47476
|
var _this27 = this;
|
|
@@ -47051,6 +47501,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47051
47501
|
nextNodeCheckType = _res$data2.nextNodeCheckType,
|
|
47052
47502
|
pOrgId = _res$data2.pOrgId,
|
|
47053
47503
|
currentOrgName = _res$data2.currentOrgName,
|
|
47504
|
+
pendingItemHandleDescription = _res$data2.pendingItemHandleDescription,
|
|
47054
47505
|
currentOrgSelectorParams = _res$data2.currentOrgSelectorParams,
|
|
47055
47506
|
otherOrgName = _res$data2.otherOrgName,
|
|
47056
47507
|
taskExamine = _res$data2.taskExamine,
|
|
@@ -47073,18 +47524,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47073
47524
|
}
|
|
47074
47525
|
_this27.$emit('startTaskRead', res);
|
|
47075
47526
|
_this27.$emit('start-task-read', res);
|
|
47527
|
+
_this27.pendingItemHandleDescription = pendingItemHandleDescription;
|
|
47076
47528
|
if (currentOrgSelectorParams.enableCurrentOrgConfig == 'true') {
|
|
47077
47529
|
_this27.currentOrgSelectorTabs = currentOrgSelectorParams.currentOrgType.split(',');
|
|
47078
47530
|
var currentOrgparams = currentOrgSelectorParams.currentOrgRange.split(',');
|
|
47079
47531
|
_this27.currentOrgSelectorTabs.map(function (x, i) {
|
|
47080
|
-
_this27.currentOrgSelectorParams[x] = {
|
|
47532
|
+
_this27.currentOrgSelectorParams[x] = {
|
|
47533
|
+
filid: currentOrgparams[i] == 'my' ? choiceOrgId : param[i]
|
|
47534
|
+
};
|
|
47081
47535
|
});
|
|
47082
47536
|
}
|
|
47083
47537
|
if (currentOrgSelectorParams.enableForeignOrgConfig == 'true') {
|
|
47084
47538
|
_this27.foreignOrgSelectorTabs = currentOrgSelectorParams.foreignOrgType.split(',');
|
|
47085
47539
|
var foreignOrgparams = currentOrgSelectorParams.foreignOrgRange.split(',');
|
|
47086
47540
|
_this27.foreignOrgSelectorTabs.map(function (x, i) {
|
|
47087
|
-
_this27.foreignOrgSelectorParams[x] = {
|
|
47541
|
+
_this27.foreignOrgSelectorParams[x] = {
|
|
47542
|
+
filid: foreignOrgparams[i] == 'my' ? choiceOrgId : foreignOrgparams[i]
|
|
47543
|
+
};
|
|
47088
47544
|
});
|
|
47089
47545
|
}
|
|
47090
47546
|
_this27.circularReadParamsMap = circularReadParamsMap || {};
|
|
@@ -47094,6 +47550,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47094
47550
|
_this27.currentOrgName = currentOrgName;
|
|
47095
47551
|
_this27.nextOperateCheckType = nextOperateCheckType;
|
|
47096
47552
|
_this27.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
|
|
47553
|
+
|
|
47097
47554
|
_this27.readOnlyNotificationType = readOnlyNotificationType;
|
|
47098
47555
|
_this27.isSpecial = isSpecial;
|
|
47099
47556
|
_this27.notificationMessageReadOnly = notificationMessageReadOnly == 'true';
|
|
@@ -47286,13 +47743,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47286
47743
|
});
|
|
47287
47744
|
},
|
|
47288
47745
|
|
|
47289
|
-
/**
|
|
47290
|
-
* closeProcess
|
|
47291
|
-
* @desc:关闭弹窗
|
|
47292
|
-
* @author liufan
|
|
47293
|
-
* @param {boolean} val 当前是否办理流程
|
|
47294
|
-
* @param {String} type 当前点击的弹窗类型
|
|
47295
|
-
* @date 2022年5月25日
|
|
47746
|
+
/**
|
|
47747
|
+
* closeProcess
|
|
47748
|
+
* @desc:关闭弹窗
|
|
47749
|
+
* @author liufan
|
|
47750
|
+
* @param {boolean} val 当前是否办理流程
|
|
47751
|
+
* @param {String} type 当前点击的弹窗类型
|
|
47752
|
+
* @date 2022年5月25日
|
|
47296
47753
|
**/
|
|
47297
47754
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
47298
47755
|
if (closeParent) {
|
|
@@ -47312,23 +47769,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47312
47769
|
}
|
|
47313
47770
|
},
|
|
47314
47771
|
|
|
47315
|
-
/**
|
|
47316
|
-
* selectChange
|
|
47317
|
-
* @desc:常用语选择
|
|
47318
|
-
* @author liufan
|
|
47319
|
-
* @param {String} val 选中值
|
|
47320
|
-
* @date 2022年5月25日
|
|
47772
|
+
/**
|
|
47773
|
+
* selectChange
|
|
47774
|
+
* @desc:常用语选择
|
|
47775
|
+
* @author liufan
|
|
47776
|
+
* @param {String} val 选中值
|
|
47777
|
+
* @date 2022年5月25日
|
|
47321
47778
|
**/
|
|
47322
47779
|
selectChange: function selectChange(val) {
|
|
47323
47780
|
this.value = val;
|
|
47324
47781
|
},
|
|
47325
47782
|
|
|
47326
|
-
/**
|
|
47327
|
-
* upDate
|
|
47328
|
-
* @desc:修改常用语
|
|
47329
|
-
* @author liufan
|
|
47330
|
-
* @param {Object} val 修改值
|
|
47331
|
-
* @date 2022年5月25日
|
|
47783
|
+
/**
|
|
47784
|
+
* upDate
|
|
47785
|
+
* @desc:修改常用语
|
|
47786
|
+
* @author liufan
|
|
47787
|
+
* @param {Object} val 修改值
|
|
47788
|
+
* @date 2022年5月25日
|
|
47332
47789
|
**/
|
|
47333
47790
|
upDate: function upDate(val) {
|
|
47334
47791
|
this.FormData.id = val.id;
|
|
@@ -47336,11 +47793,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47336
47793
|
},
|
|
47337
47794
|
|
|
47338
47795
|
|
|
47339
|
-
/**
|
|
47340
|
-
* getProcess
|
|
47341
|
-
* @desc:获取选择流程
|
|
47342
|
-
* @author liufan
|
|
47343
|
-
* @date 2022年5月25日
|
|
47796
|
+
/**
|
|
47797
|
+
* getProcess
|
|
47798
|
+
* @desc:获取选择流程
|
|
47799
|
+
* @author liufan
|
|
47800
|
+
* @date 2022年5月25日
|
|
47344
47801
|
**/
|
|
47345
47802
|
getProcess: function getProcess(val) {
|
|
47346
47803
|
var _this28 = this;
|
|
@@ -47367,6 +47824,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47367
47824
|
if (!Object.keys(data).length || data.definitionList && !data.definitionList.length) {
|
|
47368
47825
|
_this28.$message.error('流程不存在或未关联对应流程!');
|
|
47369
47826
|
} else {
|
|
47827
|
+
_this28.startFlowPageEmbeddedIntoStartFlowIndex = data.startFlowPageEmbeddedIntoStartFlowIndex;
|
|
47370
47828
|
_this28.nodeInfo.option = data.definitionList;
|
|
47371
47829
|
_this28.nodeInfo.nextNode = data.definitionList.filter(function (item) {
|
|
47372
47830
|
return item.processDefKey == _this28.defaultProcessKey;
|
|
@@ -47395,11 +47853,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47395
47853
|
});
|
|
47396
47854
|
},
|
|
47397
47855
|
|
|
47398
|
-
/**
|
|
47399
|
-
* getPendedhistoryList
|
|
47400
|
-
* @desc:获取流程列表
|
|
47401
|
-
* @author liufan
|
|
47402
|
-
* @date 2022年5月25日
|
|
47856
|
+
/**
|
|
47857
|
+
* getPendedhistoryList
|
|
47858
|
+
* @desc:获取流程列表
|
|
47859
|
+
* @author liufan
|
|
47860
|
+
* @date 2022年5月25日
|
|
47403
47861
|
**/
|
|
47404
47862
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
47405
47863
|
var _this29 = this;
|
|
@@ -47467,16 +47925,24 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47467
47925
|
},
|
|
47468
47926
|
|
|
47469
47927
|
// 提交流程
|
|
47470
|
-
/**
|
|
47471
|
-
* subProcess
|
|
47472
|
-
* @desc:提交流程
|
|
47473
|
-
* @author liufan
|
|
47474
|
-
* @param {String} formName 当前form表单ref值
|
|
47475
|
-
* @date 2022年5月25日
|
|
47928
|
+
/**
|
|
47929
|
+
* subProcess
|
|
47930
|
+
* @desc:提交流程
|
|
47931
|
+
* @author liufan
|
|
47932
|
+
* @param {String} formName 当前form表单ref值
|
|
47933
|
+
* @date 2022年5月25日
|
|
47476
47934
|
**/
|
|
47477
47935
|
subProcess: function subProcess(val, type) {
|
|
47478
47936
|
var _this31 = this;
|
|
47479
47937
|
|
|
47938
|
+
if (this.isFlow && this.nodeInfo.nextNode && this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
47939
|
+
if (this.directCreateCircularReadWhenFlowStarted) {
|
|
47940
|
+
this.$refs.flowCirculate.subMit();
|
|
47941
|
+
} else {
|
|
47942
|
+
this.$refs.processFormIndex.subProcess('nextNode');
|
|
47943
|
+
}
|
|
47944
|
+
return;
|
|
47945
|
+
}
|
|
47480
47946
|
return this.$refs['nextNode'].validate(function (valid) {
|
|
47481
47947
|
if (valid) {
|
|
47482
47948
|
if (_this31.isSubmitButtonShowAgreeAndDisagree == 1) {
|
|
@@ -47572,13 +48038,13 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47572
48038
|
|
|
47573
48039
|
this.$refs['nextNode'].validate(function () {
|
|
47574
48040
|
var _ref2 = flow_src_mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
|
|
47575
|
-
var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap;
|
|
48041
|
+
var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap, currentNodeEnableItemHandleDescription;
|
|
47576
48042
|
return regenerator_default.a.wrap(function _callee$(_context) {
|
|
47577
48043
|
while (1) {
|
|
47578
48044
|
switch (_context.prev = _context.next) {
|
|
47579
48045
|
case 0:
|
|
47580
48046
|
if (!valid) {
|
|
47581
|
-
_context.next =
|
|
48047
|
+
_context.next = 52;
|
|
47582
48048
|
break;
|
|
47583
48049
|
}
|
|
47584
48050
|
|
|
@@ -47692,7 +48158,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47692
48158
|
|
|
47693
48159
|
case 33:
|
|
47694
48160
|
_this33.loading = utils_util["a" /* default */].loading(_this33.$loading, '提交中...');
|
|
47695
|
-
isEndUserTask = _this33.isEndUserTask, choiceOrgId = _this33.choiceOrgId, choiceDeptId = _this33.choiceDeptId, pOrgId = _this33.pOrgId, taskExamineInfo = _this33.taskExamineInfo, currentNodeIsCircularReadNode = _this33.currentNodeIsCircularReadNode, needRetrialAuth = _this33.needRetrialAuth, circularReadParamsMap = _this33.circularReadParamsMap;
|
|
48161
|
+
isEndUserTask = _this33.isEndUserTask, choiceOrgId = _this33.choiceOrgId, choiceDeptId = _this33.choiceDeptId, pOrgId = _this33.pOrgId, taskExamineInfo = _this33.taskExamineInfo, currentNodeIsCircularReadNode = _this33.currentNodeIsCircularReadNode, needRetrialAuth = _this33.needRetrialAuth, circularReadParamsMap = _this33.circularReadParamsMap, currentNodeEnableItemHandleDescription = _this33.currentNodeEnableItemHandleDescription;
|
|
47696
48162
|
|
|
47697
48163
|
params.isEndUserTask = isEndUserTask;
|
|
47698
48164
|
params.choiceOrgId = choiceOrgId;
|
|
@@ -47709,7 +48175,9 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47709
48175
|
if (currentNodeIsCircularReadNode) {
|
|
47710
48176
|
params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
|
|
47711
48177
|
}
|
|
47712
|
-
|
|
48178
|
+
if (!currentNodeEnableItemHandleDescription) {
|
|
48179
|
+
delete params.nextItemHandleDescription;
|
|
48180
|
+
}
|
|
47713
48181
|
return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["Mb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
47714
48182
|
var status = res.status,
|
|
47715
48183
|
message = res.message;
|
|
@@ -47728,10 +48196,10 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47728
48196
|
}
|
|
47729
48197
|
}));
|
|
47730
48198
|
|
|
47731
|
-
case
|
|
48199
|
+
case 52:
|
|
47732
48200
|
return _context.abrupt('return', false);
|
|
47733
48201
|
|
|
47734
|
-
case
|
|
48202
|
+
case 53:
|
|
47735
48203
|
case 'end':
|
|
47736
48204
|
return _context.stop();
|
|
47737
48205
|
}
|
|
@@ -47792,8 +48260,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
|
|
|
47792
48260
|
|
|
47793
48261
|
var flow_src_main_component = normalizeComponent(
|
|
47794
48262
|
packages_flow_src_mainvue_type_script_lang_js_,
|
|
47795
|
-
|
|
47796
|
-
|
|
48263
|
+
mainvue_type_template_id_1ebfbd3f_render,
|
|
48264
|
+
mainvue_type_template_id_1ebfbd3f_staticRenderFns,
|
|
47797
48265
|
false,
|
|
47798
48266
|
null,
|
|
47799
48267
|
null,
|
|
@@ -51211,12 +51679,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51211
51679
|
}
|
|
51212
51680
|
},
|
|
51213
51681
|
|
|
51214
|
-
/**
|
|
51215
|
-
* handleFormSubmit
|
|
51216
|
-
* @desc:删除节点点击事件
|
|
51217
|
-
* @param {Object} formData 点击删除的form数据
|
|
51218
|
-
* @author liufan
|
|
51219
|
-
* @date 2022年11月29日
|
|
51682
|
+
/**
|
|
51683
|
+
* handleFormSubmit
|
|
51684
|
+
* @desc:删除节点点击事件
|
|
51685
|
+
* @param {Object} formData 点击删除的form数据
|
|
51686
|
+
* @author liufan
|
|
51687
|
+
* @date 2022年11月29日
|
|
51220
51688
|
**/
|
|
51221
51689
|
handleFormSubmit: function handleFormSubmit(formData) {
|
|
51222
51690
|
var _this9 = this;
|
|
@@ -51247,48 +51715,48 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51247
51715
|
});
|
|
51248
51716
|
},
|
|
51249
51717
|
|
|
51250
|
-
/**
|
|
51251
|
-
* del
|
|
51252
|
-
* @desc:展示删除弹窗
|
|
51253
|
-
* @param {String} id 当前点击数据id
|
|
51254
|
-
* @author liufan
|
|
51255
|
-
* @date 2022年11月29日
|
|
51718
|
+
/**
|
|
51719
|
+
* del
|
|
51720
|
+
* @desc:展示删除弹窗
|
|
51721
|
+
* @param {String} id 当前点击数据id
|
|
51722
|
+
* @author liufan
|
|
51723
|
+
* @date 2022年11月29日
|
|
51256
51724
|
**/
|
|
51257
51725
|
del: function del(id) {
|
|
51258
51726
|
this.historyId = id;
|
|
51259
51727
|
this.showDel = true;
|
|
51260
51728
|
},
|
|
51261
51729
|
|
|
51262
|
-
/**
|
|
51263
|
-
* handleCurrentChange
|
|
51264
|
-
* @desc:监听页码变化
|
|
51265
|
-
* @param {String} val 当前页
|
|
51266
|
-
* @author liufan
|
|
51267
|
-
* @date 2022年11月29日
|
|
51730
|
+
/**
|
|
51731
|
+
* handleCurrentChange
|
|
51732
|
+
* @desc:监听页码变化
|
|
51733
|
+
* @param {String} val 当前页
|
|
51734
|
+
* @author liufan
|
|
51735
|
+
* @date 2022年11月29日
|
|
51268
51736
|
**/
|
|
51269
51737
|
handleCurrentChange: function handleCurrentChange(val) {
|
|
51270
51738
|
this.currentPage = val;
|
|
51271
51739
|
this.getPressList();
|
|
51272
51740
|
},
|
|
51273
51741
|
|
|
51274
|
-
/**
|
|
51275
|
-
* handleSizeChange
|
|
51276
|
-
* @desc:监听每页数据显示数量变化
|
|
51277
|
-
* @param {String} val 每页展示数量
|
|
51278
|
-
* @author liufan
|
|
51279
|
-
* @date 2022年11月29日
|
|
51742
|
+
/**
|
|
51743
|
+
* handleSizeChange
|
|
51744
|
+
* @desc:监听每页数据显示数量变化
|
|
51745
|
+
* @param {String} val 每页展示数量
|
|
51746
|
+
* @author liufan
|
|
51747
|
+
* @date 2022年11月29日
|
|
51280
51748
|
**/
|
|
51281
51749
|
handleSizeChange: function handleSizeChange(val) {
|
|
51282
51750
|
this.pageSize = val;
|
|
51283
51751
|
this.getPressList();
|
|
51284
51752
|
},
|
|
51285
51753
|
|
|
51286
|
-
/**
|
|
51287
|
-
* sortChange
|
|
51288
|
-
* @desc:监听排序变化
|
|
51289
|
-
* @param {Object} info 需要排序的字段及排序方式
|
|
51290
|
-
* @author liufan
|
|
51291
|
-
* @date 2022年11月29日
|
|
51754
|
+
/**
|
|
51755
|
+
* sortChange
|
|
51756
|
+
* @desc:监听排序变化
|
|
51757
|
+
* @param {Object} info 需要排序的字段及排序方式
|
|
51758
|
+
* @author liufan
|
|
51759
|
+
* @date 2022年11月29日
|
|
51292
51760
|
**/
|
|
51293
51761
|
sortChange: function sortChange(info) {
|
|
51294
51762
|
var prop = info.prop,
|
|
@@ -51299,11 +51767,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51299
51767
|
this.getPressList();
|
|
51300
51768
|
},
|
|
51301
51769
|
|
|
51302
|
-
/**
|
|
51303
|
-
* getPressList
|
|
51304
|
-
* @desc:催办列表数据
|
|
51305
|
-
* @author liufan
|
|
51306
|
-
* @date 2022年11月29日
|
|
51770
|
+
/**
|
|
51771
|
+
* getPressList
|
|
51772
|
+
* @desc:催办列表数据
|
|
51773
|
+
* @author liufan
|
|
51774
|
+
* @date 2022年11月29日
|
|
51307
51775
|
**/
|
|
51308
51776
|
getPressList: function getPressList() {
|
|
51309
51777
|
var _this10 = this;
|
|
@@ -51333,12 +51801,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51333
51801
|
});
|
|
51334
51802
|
},
|
|
51335
51803
|
|
|
51336
|
-
/**
|
|
51337
|
-
* goPress
|
|
51338
|
-
* @desc:催办列表查看
|
|
51339
|
-
* @param {String} id 催办列表id
|
|
51340
|
-
* @author liufan
|
|
51341
|
-
* @date 2022年11月29日
|
|
51804
|
+
/**
|
|
51805
|
+
* goPress
|
|
51806
|
+
* @desc:催办列表查看
|
|
51807
|
+
* @param {String} id 催办列表id
|
|
51808
|
+
* @author liufan
|
|
51809
|
+
* @date 2022年11月29日
|
|
51342
51810
|
**/
|
|
51343
51811
|
goPress: function goPress(id) {
|
|
51344
51812
|
this.historyId = id;
|
|
@@ -51346,23 +51814,23 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51346
51814
|
this.getPressList();
|
|
51347
51815
|
},
|
|
51348
51816
|
|
|
51349
|
-
/**
|
|
51350
|
-
* showFile
|
|
51351
|
-
* @desc:附件查看
|
|
51352
|
-
* @param {String} ownId 附件id
|
|
51353
|
-
* @author liufan
|
|
51354
|
-
* @date 2022年11月29日
|
|
51817
|
+
/**
|
|
51818
|
+
* showFile
|
|
51819
|
+
* @desc:附件查看
|
|
51820
|
+
* @param {String} ownId 附件id
|
|
51821
|
+
* @author liufan
|
|
51822
|
+
* @date 2022年11月29日
|
|
51355
51823
|
**/
|
|
51356
51824
|
showFile: function showFile(ownId) {
|
|
51357
51825
|
this.wfpendingid = ownId;
|
|
51358
51826
|
this.showFileList = true;
|
|
51359
51827
|
},
|
|
51360
51828
|
|
|
51361
|
-
/**
|
|
51362
|
-
* handleChange
|
|
51363
|
-
* @desc:切换排序方式
|
|
51364
|
-
* @author liufan
|
|
51365
|
-
* @date 2022年11月22日
|
|
51829
|
+
/**
|
|
51830
|
+
* handleChange
|
|
51831
|
+
* @desc:切换排序方式
|
|
51832
|
+
* @author liufan
|
|
51833
|
+
* @date 2022年11月22日
|
|
51366
51834
|
**/
|
|
51367
51835
|
handleChange: function handleChange(key, value) {
|
|
51368
51836
|
if (value) {
|
|
@@ -51412,11 +51880,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51412
51880
|
}))();
|
|
51413
51881
|
},
|
|
51414
51882
|
|
|
51415
|
-
/**
|
|
51416
|
-
* getFlowList
|
|
51417
|
-
* @desc:获取流程列表
|
|
51418
|
-
* @author liufan
|
|
51419
|
-
* @date 2022年11月22日
|
|
51883
|
+
/**
|
|
51884
|
+
* getFlowList
|
|
51885
|
+
* @desc:获取流程列表
|
|
51886
|
+
* @author liufan
|
|
51887
|
+
* @date 2022年11月22日
|
|
51420
51888
|
**/
|
|
51421
51889
|
getFlowList: function getFlowList() {
|
|
51422
51890
|
var _this12 = this;
|
|
@@ -51488,12 +51956,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51488
51956
|
});
|
|
51489
51957
|
},
|
|
51490
51958
|
|
|
51491
|
-
/**
|
|
51492
|
-
* handleClick
|
|
51493
|
-
* @desc:表单点击事件
|
|
51494
|
-
* @param {Object} val 当前点击行数据及按钮
|
|
51495
|
-
* @author liufan
|
|
51496
|
-
* @date 2022年11月10日
|
|
51959
|
+
/**
|
|
51960
|
+
* handleClick
|
|
51961
|
+
* @desc:表单点击事件
|
|
51962
|
+
* @param {Object} val 当前点击行数据及按钮
|
|
51963
|
+
* @author liufan
|
|
51964
|
+
* @date 2022年11月10日
|
|
51497
51965
|
**/
|
|
51498
51966
|
handleClick: function handleClick(val) {
|
|
51499
51967
|
var _this13 = this;
|
|
@@ -51539,13 +52007,13 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51539
52007
|
}
|
|
51540
52008
|
},
|
|
51541
52009
|
|
|
51542
|
-
/**
|
|
51543
|
-
* getCodeValue
|
|
51544
|
-
* @desc:获取代码表过滤后的值
|
|
51545
|
-
* @param {String} value 展示数据的代码值
|
|
51546
|
-
* @param {String} type 代码表类型
|
|
51547
|
-
* @author liufan
|
|
51548
|
-
* @date 2022年11月10日
|
|
52010
|
+
/**
|
|
52011
|
+
* getCodeValue
|
|
52012
|
+
* @desc:获取代码表过滤后的值
|
|
52013
|
+
* @param {String} value 展示数据的代码值
|
|
52014
|
+
* @param {String} type 代码表类型
|
|
52015
|
+
* @author liufan
|
|
52016
|
+
* @date 2022年11月10日
|
|
51549
52017
|
**/
|
|
51550
52018
|
getCodeValue: function getCodeValue(value, type) {
|
|
51551
52019
|
var val = this[type].filter(function (item) {
|
|
@@ -51554,12 +52022,12 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51554
52022
|
return val[0].shortName;
|
|
51555
52023
|
},
|
|
51556
52024
|
|
|
51557
|
-
/**
|
|
51558
|
-
* getSysInfo
|
|
51559
|
-
* @desc:获取代码表
|
|
51560
|
-
* @param {String} code 编码code值
|
|
51561
|
-
* @author liufan
|
|
51562
|
-
* @date 2022年11月10日
|
|
52025
|
+
/**
|
|
52026
|
+
* getSysInfo
|
|
52027
|
+
* @desc:获取代码表
|
|
52028
|
+
* @param {String} code 编码code值
|
|
52029
|
+
* @author liufan
|
|
52030
|
+
* @date 2022年11月10日
|
|
51563
52031
|
**/
|
|
51564
52032
|
getSysInfo: function getSysInfo(code) {
|
|
51565
52033
|
var _this14 = this;
|
|
@@ -51581,11 +52049,11 @@ function flow_list_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return
|
|
|
51581
52049
|
}).catch(function (e) {});
|
|
51582
52050
|
},
|
|
51583
52051
|
|
|
51584
|
-
/**
|
|
51585
|
-
* getListInfo
|
|
51586
|
-
* @desc:获取预设列表数据
|
|
51587
|
-
* @author liufan
|
|
51588
|
-
* @date 2022年11月10日
|
|
52052
|
+
/**
|
|
52053
|
+
* getListInfo
|
|
52054
|
+
* @desc:获取预设列表数据
|
|
52055
|
+
* @author liufan
|
|
52056
|
+
* @date 2022年11月10日
|
|
51589
52057
|
**/
|
|
51590
52058
|
getListInfo: function getListInfo() {
|
|
51591
52059
|
var _this15 = this;
|
|
@@ -52910,7 +53378,7 @@ mainvue_type_template_id_32c03886_render._withStripped = true
|
|
|
52910
53378
|
// CONCATENATED MODULE: ./packages/icons/src/main.vue?vue&type=template&id=32c03886&
|
|
52911
53379
|
|
|
52912
53380
|
// EXTERNAL MODULE: ./packages/icons/src/icon.json
|
|
52913
|
-
var src_icon = __webpack_require__(
|
|
53381
|
+
var src_icon = __webpack_require__(15);
|
|
52914
53382
|
|
|
52915
53383
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/icons/src/main.vue?vue&type=script&lang=js&
|
|
52916
53384
|
//
|
|
@@ -57966,8 +58434,8 @@ login_src_main.install = function (Vue) {
|
|
|
57966
58434
|
};
|
|
57967
58435
|
|
|
57968
58436
|
/* harmony default export */ var login = (login_src_main);
|
|
57969
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=
|
|
57970
|
-
var
|
|
58437
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=88d82eac&
|
|
58438
|
+
var mainvue_type_template_id_88d82eac_render = function () {
|
|
57971
58439
|
var _vm = this
|
|
57972
58440
|
var _h = _vm.$createElement
|
|
57973
58441
|
var _c = _vm._self._c || _h
|
|
@@ -58060,14 +58528,14 @@ var mainvue_type_template_id_7d366933_render = function () {
|
|
|
58060
58528
|
)
|
|
58061
58529
|
: _vm._e()
|
|
58062
58530
|
}
|
|
58063
|
-
var
|
|
58064
|
-
|
|
58531
|
+
var mainvue_type_template_id_88d82eac_staticRenderFns = []
|
|
58532
|
+
mainvue_type_template_id_88d82eac_render._withStripped = true
|
|
58065
58533
|
|
|
58066
58534
|
|
|
58067
|
-
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=
|
|
58535
|
+
// CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=88d82eac&
|
|
58068
58536
|
|
|
58069
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
58070
|
-
var
|
|
58537
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/index.vue?vue&type=template&id=634782ec&scoped=true&
|
|
58538
|
+
var simplicityvue_type_template_id_634782ec_scoped_true_render = function () {
|
|
58071
58539
|
var _vm = this
|
|
58072
58540
|
var _h = _vm.$createElement
|
|
58073
58541
|
var _c = _vm._self._c || _h
|
|
@@ -58733,11 +59201,11 @@ var simplicityvue_type_template_id_532a2b35_scoped_true_render = function () {
|
|
|
58733
59201
|
),
|
|
58734
59202
|
])
|
|
58735
59203
|
}
|
|
58736
|
-
var
|
|
58737
|
-
|
|
59204
|
+
var simplicityvue_type_template_id_634782ec_scoped_true_staticRenderFns = []
|
|
59205
|
+
simplicityvue_type_template_id_634782ec_scoped_true_render._withStripped = true
|
|
58738
59206
|
|
|
58739
59207
|
|
|
58740
|
-
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=
|
|
59208
|
+
// CONCATENATED MODULE: ./packages/main/src/simplicity/index.vue?vue&type=template&id=634782ec&scoped=true&
|
|
58741
59209
|
|
|
58742
59210
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/simplicity/avatar.vue?vue&type=template&id=e722b45c&scoped=true&
|
|
58743
59211
|
var avatarvue_type_template_id_e722b45c_scoped_true_render = function () {
|
|
@@ -60809,10 +61277,10 @@ appsvue_type_template_id_71b9cb14_scoped_true_render._withStripped = true
|
|
|
60809
61277
|
this.$emit('click', res);
|
|
60810
61278
|
},
|
|
60811
61279
|
|
|
60812
|
-
/**
|
|
60813
|
-
* @desc:获取气泡提醒
|
|
60814
|
-
* @author huangbo
|
|
60815
|
-
* @date 2024年9月7日
|
|
61280
|
+
/**
|
|
61281
|
+
* @desc:获取气泡提醒
|
|
61282
|
+
* @author huangbo
|
|
61283
|
+
* @date 2024年9月7日
|
|
60816
61284
|
**/
|
|
60817
61285
|
getBadge: function getBadge(res) {
|
|
60818
61286
|
var num = res.tips || 0;
|
|
@@ -64838,10 +65306,10 @@ var events = [function (tabs, index, that) {
|
|
|
64838
65306
|
},
|
|
64839
65307
|
|
|
64840
65308
|
methods: {
|
|
64841
|
-
/**
|
|
64842
|
-
* @desc:匹配路由
|
|
64843
|
-
* @author huangbo
|
|
64844
|
-
* @date 2024年9月7日
|
|
65309
|
+
/**
|
|
65310
|
+
* @desc:匹配路由
|
|
65311
|
+
* @author huangbo
|
|
65312
|
+
* @date 2024年9月7日
|
|
64845
65313
|
**/
|
|
64846
65314
|
hasRouter: function hasRouter(res, url, code) {
|
|
64847
65315
|
if (!url) {
|
|
@@ -64885,10 +65353,10 @@ var events = [function (tabs, index, that) {
|
|
|
64885
65353
|
return false;
|
|
64886
65354
|
},
|
|
64887
65355
|
|
|
64888
|
-
/**
|
|
64889
|
-
* @desc:获取初始数据
|
|
64890
|
-
* @author huangbo
|
|
64891
|
-
* @date 2024年9月7日
|
|
65356
|
+
/**
|
|
65357
|
+
* @desc:获取初始数据
|
|
65358
|
+
* @author huangbo
|
|
65359
|
+
* @date 2024年9月7日
|
|
64892
65360
|
**/
|
|
64893
65361
|
init: function init(results, first) {
|
|
64894
65362
|
this.setConfig(results);
|
|
@@ -64897,10 +65365,10 @@ var events = [function (tabs, index, that) {
|
|
|
64897
65365
|
}
|
|
64898
65366
|
},
|
|
64899
65367
|
|
|
64900
|
-
/**
|
|
64901
|
-
* @desc:设置用户配置及信息
|
|
64902
|
-
* @author huangbo
|
|
64903
|
-
* @date 2024年9月7日
|
|
65368
|
+
/**
|
|
65369
|
+
* @desc:设置用户配置及信息
|
|
65370
|
+
* @author huangbo
|
|
65371
|
+
* @date 2024年9月7日
|
|
64904
65372
|
**/
|
|
64905
65373
|
setConfig: function setConfig(results) {
|
|
64906
65374
|
localStorage.setItem('mainConfig', JSON.stringify(results));
|
|
@@ -65034,10 +65502,10 @@ var events = [function (tabs, index, that) {
|
|
|
65034
65502
|
}
|
|
65035
65503
|
},
|
|
65036
65504
|
|
|
65037
|
-
/**
|
|
65038
|
-
* @desc:获取所有应用
|
|
65039
|
-
* @author huangbo
|
|
65040
|
-
* @date 2024年9月7日
|
|
65505
|
+
/**
|
|
65506
|
+
* @desc:获取所有应用
|
|
65507
|
+
* @author huangbo
|
|
65508
|
+
* @date 2024年9月7日
|
|
65041
65509
|
**/
|
|
65042
65510
|
getApplications: function getApplications() {
|
|
65043
65511
|
var _this = this;
|
|
@@ -65085,10 +65553,10 @@ var events = [function (tabs, index, that) {
|
|
|
65085
65553
|
});
|
|
65086
65554
|
},
|
|
65087
65555
|
|
|
65088
|
-
/**
|
|
65089
|
-
* @desc:获取菜单列表
|
|
65090
|
-
* @author huangbo
|
|
65091
|
-
* @date 2024年9月7日
|
|
65556
|
+
/**
|
|
65557
|
+
* @desc:获取菜单列表
|
|
65558
|
+
* @author huangbo
|
|
65559
|
+
* @date 2024年9月7日
|
|
65092
65560
|
**/
|
|
65093
65561
|
getMenus: function getMenus(loading) {
|
|
65094
65562
|
var _this2 = this;
|
|
@@ -65121,10 +65589,10 @@ var events = [function (tabs, index, that) {
|
|
|
65121
65589
|
});
|
|
65122
65590
|
},
|
|
65123
65591
|
|
|
65124
|
-
/**
|
|
65125
|
-
* @desc:处理菜单列表
|
|
65126
|
-
* @author huangbo
|
|
65127
|
-
* @date 2024年9月7日
|
|
65592
|
+
/**
|
|
65593
|
+
* @desc:处理菜单列表
|
|
65594
|
+
* @author huangbo
|
|
65595
|
+
* @date 2024年9月7日
|
|
65128
65596
|
**/
|
|
65129
65597
|
renderMenus: function renderMenus(res) {
|
|
65130
65598
|
this.menus = res;
|
|
@@ -65185,6 +65653,7 @@ var events = [function (tabs, index, that) {
|
|
|
65185
65653
|
} else {
|
|
65186
65654
|
this.subMenus = null;
|
|
65187
65655
|
this.showMenu = false;
|
|
65656
|
+
this.$message.error('未分配菜单权限,请联系管理员!');
|
|
65188
65657
|
}
|
|
65189
65658
|
} else {
|
|
65190
65659
|
var _subMenus = this.getMenu(this.menus, this.appCode, 'appCode');
|
|
@@ -65206,6 +65675,7 @@ var events = [function (tabs, index, that) {
|
|
|
65206
65675
|
} else {
|
|
65207
65676
|
this.subMenus = null;
|
|
65208
65677
|
this.showMenu = false;
|
|
65678
|
+
this.$message.error('未分配菜单权限,请联系管理员!');
|
|
65209
65679
|
}
|
|
65210
65680
|
}
|
|
65211
65681
|
} else if (this.initApps && this.initApps.length && !this.indexUrl) {
|
|
@@ -65218,10 +65688,10 @@ var events = [function (tabs, index, that) {
|
|
|
65218
65688
|
}
|
|
65219
65689
|
},
|
|
65220
65690
|
|
|
65221
|
-
/**
|
|
65222
|
-
* @desc:设置页面加载类型
|
|
65223
|
-
* @author huangbo
|
|
65224
|
-
* @date 2024年9月7日
|
|
65691
|
+
/**
|
|
65692
|
+
* @desc:设置页面加载类型
|
|
65693
|
+
* @author huangbo
|
|
65694
|
+
* @date 2024年9月7日
|
|
65225
65695
|
**/
|
|
65226
65696
|
setIframeType: function setIframeType(res) {
|
|
65227
65697
|
var url = res.url;
|
|
@@ -65277,10 +65747,10 @@ var events = [function (tabs, index, that) {
|
|
|
65277
65747
|
return res;
|
|
65278
65748
|
},
|
|
65279
65749
|
|
|
65280
|
-
/**
|
|
65281
|
-
* @desc:获取菜单
|
|
65282
|
-
* @author huangbo
|
|
65283
|
-
* @date 2024年9月7日
|
|
65750
|
+
/**
|
|
65751
|
+
* @desc:获取菜单
|
|
65752
|
+
* @author huangbo
|
|
65753
|
+
* @date 2024年9月7日
|
|
65284
65754
|
**/
|
|
65285
65755
|
getMenu: function getMenu(menus, res, key) {
|
|
65286
65756
|
if (Array.isArray(menus)) {
|
|
@@ -65309,10 +65779,10 @@ var events = [function (tabs, index, that) {
|
|
|
65309
65779
|
return false;
|
|
65310
65780
|
},
|
|
65311
65781
|
|
|
65312
|
-
/**
|
|
65313
|
-
* @desc:获取菜单第一条数据
|
|
65314
|
-
* @author huangbo
|
|
65315
|
-
* @date 2024年9月7日
|
|
65782
|
+
/**
|
|
65783
|
+
* @desc:获取菜单第一条数据
|
|
65784
|
+
* @author huangbo
|
|
65785
|
+
* @date 2024年9月7日
|
|
65316
65786
|
**/
|
|
65317
65787
|
getFirst: function getFirst(obj) {
|
|
65318
65788
|
if (!obj) {
|
|
@@ -65331,10 +65801,10 @@ var events = [function (tabs, index, that) {
|
|
|
65331
65801
|
}
|
|
65332
65802
|
},
|
|
65333
65803
|
|
|
65334
|
-
/**
|
|
65335
|
-
* @desc:遍历设置菜单气泡提醒
|
|
65336
|
-
* @author huangbo
|
|
65337
|
-
* @date 2024年9月7日
|
|
65804
|
+
/**
|
|
65805
|
+
* @desc:遍历设置菜单气泡提醒
|
|
65806
|
+
* @author huangbo
|
|
65807
|
+
* @date 2024年9月7日
|
|
65338
65808
|
**/
|
|
65339
65809
|
setTips: function setTips(obj) {
|
|
65340
65810
|
var _this3 = this;
|
|
@@ -65397,10 +65867,10 @@ var events = [function (tabs, index, that) {
|
|
|
65397
65867
|
}
|
|
65398
65868
|
},
|
|
65399
65869
|
|
|
65400
|
-
/**
|
|
65401
|
-
* @desc:获取气泡提醒
|
|
65402
|
-
* @author huangbo
|
|
65403
|
-
* @date 2024年9月7日
|
|
65870
|
+
/**
|
|
65871
|
+
* @desc:获取气泡提醒
|
|
65872
|
+
* @author huangbo
|
|
65873
|
+
* @date 2024年9月7日
|
|
65404
65874
|
**/
|
|
65405
65875
|
getBadge: function getBadge(res) {
|
|
65406
65876
|
var num = res.tips || 0;
|
|
@@ -65414,10 +65884,10 @@ var events = [function (tabs, index, that) {
|
|
|
65414
65884
|
};
|
|
65415
65885
|
},
|
|
65416
65886
|
|
|
65417
|
-
/**
|
|
65418
|
-
* @desc:开启weosocket
|
|
65419
|
-
* @author huangbo
|
|
65420
|
-
* @date 2024年9月7日
|
|
65887
|
+
/**
|
|
65888
|
+
* @desc:开启weosocket
|
|
65889
|
+
* @author huangbo
|
|
65890
|
+
* @date 2024年9月7日
|
|
65421
65891
|
**/
|
|
65422
65892
|
initWebSocket: function initWebSocket() {
|
|
65423
65893
|
var _this5 = this;
|
|
@@ -65455,8 +65925,9 @@ var events = [function (tabs, index, that) {
|
|
|
65455
65925
|
_this5.$store.commit('websocket', data);
|
|
65456
65926
|
} catch (error) {}
|
|
65457
65927
|
}
|
|
65458
|
-
|
|
65459
|
-
|
|
65928
|
+
var bus = _this5.bus || _this5.$eventBus || _this5.$root.Bus;
|
|
65929
|
+
if (bus) {
|
|
65930
|
+
bus.$emit('websocket', data);
|
|
65460
65931
|
}
|
|
65461
65932
|
if (utils_util["a" /* default */].win.eventBus) {
|
|
65462
65933
|
utils_util["a" /* default */].win.eventBus.$emit('websocket', data);
|
|
@@ -65465,10 +65936,10 @@ var events = [function (tabs, index, that) {
|
|
|
65465
65936
|
});
|
|
65466
65937
|
},
|
|
65467
65938
|
|
|
65468
|
-
/**
|
|
65469
|
-
* @desc:显示用户信息
|
|
65470
|
-
* @author huangbo
|
|
65471
|
-
* @date 2024年9月7日
|
|
65939
|
+
/**
|
|
65940
|
+
* @desc:显示用户信息
|
|
65941
|
+
* @author huangbo
|
|
65942
|
+
* @date 2024年9月7日
|
|
65472
65943
|
**/
|
|
65473
65944
|
showUserInfo: function showUserInfo() {
|
|
65474
65945
|
if (this.showUser === false) {
|
|
@@ -65476,19 +65947,19 @@ var events = [function (tabs, index, that) {
|
|
|
65476
65947
|
}
|
|
65477
65948
|
},
|
|
65478
65949
|
|
|
65479
|
-
/**
|
|
65480
|
-
* @desc:删除更多应用菜单点击
|
|
65481
|
-
* @author huangbo
|
|
65482
|
-
* @date 2024年9月7日
|
|
65950
|
+
/**
|
|
65951
|
+
* @desc:删除更多应用菜单点击
|
|
65952
|
+
* @author huangbo
|
|
65953
|
+
* @date 2024年9月7日
|
|
65483
65954
|
**/
|
|
65484
65955
|
handleDelete: function handleDelete(index) {
|
|
65485
65956
|
this.newApps.splice(index, 1);
|
|
65486
65957
|
},
|
|
65487
65958
|
|
|
65488
|
-
/**
|
|
65489
|
-
* @desc:储存更多应用菜单点击
|
|
65490
|
-
* @author huangbo
|
|
65491
|
-
* @date 2024年9月7日
|
|
65959
|
+
/**
|
|
65960
|
+
* @desc:储存更多应用菜单点击
|
|
65961
|
+
* @author huangbo
|
|
65962
|
+
* @date 2024年9月7日
|
|
65492
65963
|
**/
|
|
65493
65964
|
handlerClickApps: function handlerClickApps(res) {
|
|
65494
65965
|
if (res.permission === false) {
|
|
@@ -65501,10 +65972,10 @@ var events = [function (tabs, index, that) {
|
|
|
65501
65972
|
this.handlerClickApp(res);
|
|
65502
65973
|
},
|
|
65503
65974
|
|
|
65504
|
-
/**
|
|
65505
|
-
* @desc:侧边应用菜单点击
|
|
65506
|
-
* @author huangbo
|
|
65507
|
-
* @date 2024年9月7日
|
|
65975
|
+
/**
|
|
65976
|
+
* @desc:侧边应用菜单点击
|
|
65977
|
+
* @author huangbo
|
|
65978
|
+
* @date 2024年9月7日
|
|
65508
65979
|
**/
|
|
65509
65980
|
handlerClickApp: function handlerClickApp(res) {
|
|
65510
65981
|
this.showMsg = false;
|
|
@@ -65593,10 +66064,10 @@ var events = [function (tabs, index, that) {
|
|
|
65593
66064
|
}
|
|
65594
66065
|
},
|
|
65595
66066
|
|
|
65596
|
-
/**
|
|
65597
|
-
* @desc:显示Drawer界面
|
|
65598
|
-
* @author huangbo
|
|
65599
|
-
* @date 2024年9月7日
|
|
66067
|
+
/**
|
|
66068
|
+
* @desc:显示Drawer界面
|
|
66069
|
+
* @author huangbo
|
|
66070
|
+
* @date 2024年9月7日
|
|
65600
66071
|
**/
|
|
65601
66072
|
handlerSetDrawer: function handlerSetDrawer(res, type) {
|
|
65602
66073
|
var direction = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'ltr';
|
|
@@ -65616,19 +66087,19 @@ var events = [function (tabs, index, that) {
|
|
|
65616
66087
|
}
|
|
65617
66088
|
},
|
|
65618
66089
|
|
|
65619
|
-
/**
|
|
65620
|
-
* @desc:关闭Drawer界面
|
|
65621
|
-
* @author huangbo
|
|
65622
|
-
* @date 2024年9月7日
|
|
66090
|
+
/**
|
|
66091
|
+
* @desc:关闭Drawer界面
|
|
66092
|
+
* @author huangbo
|
|
66093
|
+
* @date 2024年9月7日
|
|
65623
66094
|
**/
|
|
65624
66095
|
handleCloseDrawer: function handleCloseDrawer() {
|
|
65625
66096
|
this.drawer = { visible: false };
|
|
65626
66097
|
},
|
|
65627
66098
|
|
|
65628
|
-
/**
|
|
65629
|
-
* @desc:菜单点击
|
|
65630
|
-
* @author huangbo
|
|
65631
|
-
* @date 2024年9月7日
|
|
66099
|
+
/**
|
|
66100
|
+
* @desc:菜单点击
|
|
66101
|
+
* @author huangbo
|
|
66102
|
+
* @date 2024年9月7日
|
|
65632
66103
|
**/
|
|
65633
66104
|
handlerClickMenu: function handlerClickMenu(res) {
|
|
65634
66105
|
utils_util["a" /* default */].ajax({
|
|
@@ -65677,19 +66148,19 @@ var events = [function (tabs, index, that) {
|
|
|
65677
66148
|
},
|
|
65678
66149
|
|
|
65679
66150
|
|
|
65680
|
-
/**
|
|
65681
|
-
* @desc:用户详情请求成功
|
|
65682
|
-
* @author huangbo
|
|
65683
|
-
* @date 2024年9月7日
|
|
66151
|
+
/**
|
|
66152
|
+
* @desc:用户详情请求成功
|
|
66153
|
+
* @author huangbo
|
|
66154
|
+
* @date 2024年9月7日
|
|
65684
66155
|
**/
|
|
65685
66156
|
handleSuccess: function handleSuccess(res) {
|
|
65686
66157
|
this.simpleUserInfo = res.simpleUserInfo;
|
|
65687
66158
|
},
|
|
65688
66159
|
|
|
65689
|
-
/**
|
|
65690
|
-
* @desc:修改用户配置
|
|
65691
|
-
* @author huangbo
|
|
65692
|
-
* @date 2024年9月7日
|
|
66160
|
+
/**
|
|
66161
|
+
* @desc:修改用户配置
|
|
66162
|
+
* @author huangbo
|
|
66163
|
+
* @date 2024年9月7日
|
|
65693
66164
|
**/
|
|
65694
66165
|
handleChangeConfig: function handleChangeConfig(name, res) {
|
|
65695
66166
|
if (name == 'userHeadUrl') {
|
|
@@ -65705,10 +66176,10 @@ var events = [function (tabs, index, that) {
|
|
|
65705
66176
|
}
|
|
65706
66177
|
},
|
|
65707
66178
|
|
|
65708
|
-
/**
|
|
65709
|
-
* @desc:关闭webSocket
|
|
65710
|
-
* @author huangbo
|
|
65711
|
-
* @date 2024年9月7日
|
|
66179
|
+
/**
|
|
66180
|
+
* @desc:关闭webSocket
|
|
66181
|
+
* @author huangbo
|
|
66182
|
+
* @date 2024年9月7日
|
|
65712
66183
|
**/
|
|
65713
66184
|
handlerClose: function handlerClose() {
|
|
65714
66185
|
if (this.webSocket) {
|
|
@@ -65716,10 +66187,10 @@ var events = [function (tabs, index, that) {
|
|
|
65716
66187
|
}
|
|
65717
66188
|
},
|
|
65718
66189
|
|
|
65719
|
-
/**
|
|
65720
|
-
* @desc:刷新选中iframe页签
|
|
65721
|
-
* @author huangbo
|
|
65722
|
-
* @date 2024年9月7日
|
|
66190
|
+
/**
|
|
66191
|
+
* @desc:刷新选中iframe页签
|
|
66192
|
+
* @author huangbo
|
|
66193
|
+
* @date 2024年9月7日
|
|
65723
66194
|
**/
|
|
65724
66195
|
handleRefresh: function handleRefresh() {
|
|
65725
66196
|
var i = utils_util["a" /* default */].indexOfObj(this.tabs, this.activeName, 'id');
|
|
@@ -65740,10 +66211,10 @@ var events = [function (tabs, index, that) {
|
|
|
65740
66211
|
}
|
|
65741
66212
|
},
|
|
65742
66213
|
|
|
65743
|
-
/**
|
|
65744
|
-
* @desc:删除iframe
|
|
65745
|
-
* @author huangbo
|
|
65746
|
-
* @date 2024年9月7日
|
|
66214
|
+
/**
|
|
66215
|
+
* @desc:删除iframe
|
|
66216
|
+
* @author huangbo
|
|
66217
|
+
* @date 2024年9月7日
|
|
65747
66218
|
**/
|
|
65748
66219
|
handleRemove: function handleRemove(name) {
|
|
65749
66220
|
var len = this.tabs.length - 1;
|
|
@@ -65760,10 +66231,10 @@ var events = [function (tabs, index, that) {
|
|
|
65760
66231
|
}
|
|
65761
66232
|
},
|
|
65762
66233
|
|
|
65763
|
-
/**
|
|
65764
|
-
* @desc:tabs鼠标右键事件
|
|
65765
|
-
* @author huangbo
|
|
65766
|
-
* @date 2024年9月7日
|
|
66234
|
+
/**
|
|
66235
|
+
* @desc:tabs鼠标右键事件
|
|
66236
|
+
* @author huangbo
|
|
66237
|
+
* @date 2024年9月7日
|
|
65767
66238
|
**/
|
|
65768
66239
|
handleContextmenu: function handleContextmenu(tabs, e) {
|
|
65769
66240
|
var disabled = {};
|
|
@@ -65788,10 +66259,10 @@ var events = [function (tabs, index, that) {
|
|
|
65788
66259
|
window.addEventListener('click', this.closeTabsEvents);
|
|
65789
66260
|
},
|
|
65790
66261
|
|
|
65791
|
-
/**
|
|
65792
|
-
* @desc:tabs页签事件
|
|
65793
|
-
* @author huangbo
|
|
65794
|
-
* @date 2024年9月7日
|
|
66262
|
+
/**
|
|
66263
|
+
* @desc:tabs页签事件
|
|
66264
|
+
* @author huangbo
|
|
66265
|
+
* @date 2024年9月7日
|
|
65795
66266
|
**/
|
|
65796
66267
|
handleTabsEvents: function handleTabsEvents(num) {
|
|
65797
66268
|
if (this.pane !== null) {
|
|
@@ -65809,10 +66280,10 @@ var events = [function (tabs, index, that) {
|
|
|
65809
66280
|
window.removeEventListener('click', this.closeTabsEvents);
|
|
65810
66281
|
},
|
|
65811
66282
|
|
|
65812
|
-
/**
|
|
65813
|
-
* @desc:handler工具栏点击事件
|
|
65814
|
-
* @author huangbo
|
|
65815
|
-
* @date 2024年9月7日
|
|
66283
|
+
/**
|
|
66284
|
+
* @desc:handler工具栏点击事件
|
|
66285
|
+
* @author huangbo
|
|
66286
|
+
* @date 2024年9月7日
|
|
65816
66287
|
**/
|
|
65817
66288
|
handleClick: function handleClick(res) {
|
|
65818
66289
|
var type = res.type,
|
|
@@ -65890,10 +66361,10 @@ var events = [function (tabs, index, that) {
|
|
|
65890
66361
|
this.$emit('handler-click', res);
|
|
65891
66362
|
},
|
|
65892
66363
|
|
|
65893
|
-
/**
|
|
65894
|
-
* @desc:退出登录
|
|
65895
|
-
* @author huangbo
|
|
65896
|
-
* @date 2024年9月7日
|
|
66364
|
+
/**
|
|
66365
|
+
* @desc:退出登录
|
|
66366
|
+
* @author huangbo
|
|
66367
|
+
* @date 2024年9月7日
|
|
65897
66368
|
**/
|
|
65898
66369
|
handleQuit: function handleQuit() {
|
|
65899
66370
|
var _this6 = this;
|
|
@@ -65968,10 +66439,10 @@ var events = [function (tabs, index, that) {
|
|
|
65968
66439
|
}).catch(function (e) {});
|
|
65969
66440
|
},
|
|
65970
66441
|
|
|
65971
|
-
/**
|
|
65972
|
-
* @desc:主题、消息回调
|
|
65973
|
-
* @author huangbo
|
|
65974
|
-
* @date 2024年9月7日
|
|
66442
|
+
/**
|
|
66443
|
+
* @desc:主题、消息回调
|
|
66444
|
+
* @author huangbo
|
|
66445
|
+
* @date 2024年9月7日
|
|
65975
66446
|
**/
|
|
65976
66447
|
handleChange: function handleChange(res) {
|
|
65977
66448
|
var type = res.type,
|
|
@@ -65987,10 +66458,10 @@ var events = [function (tabs, index, that) {
|
|
|
65987
66458
|
}
|
|
65988
66459
|
},
|
|
65989
66460
|
|
|
65990
|
-
/**
|
|
65991
|
-
* @desc:菜单布局样式切换
|
|
65992
|
-
* @author huangbo
|
|
65993
|
-
* @date 2024年9月7日
|
|
66461
|
+
/**
|
|
66462
|
+
* @desc:菜单布局样式切换
|
|
66463
|
+
* @author huangbo
|
|
66464
|
+
* @date 2024年9月7日
|
|
65994
66465
|
**/
|
|
65995
66466
|
handleLayout: function handleLayout(res, active) {
|
|
65996
66467
|
if (active) {
|
|
@@ -65999,10 +66470,10 @@ var events = [function (tabs, index, that) {
|
|
|
65999
66470
|
this.$emit('chang-layout', res, active);
|
|
66000
66471
|
},
|
|
66001
66472
|
|
|
66002
|
-
/**
|
|
66003
|
-
* @desc:消息修改总数
|
|
66004
|
-
* @author huangbo
|
|
66005
|
-
* @date 2024年9月7日
|
|
66473
|
+
/**
|
|
66474
|
+
* @desc:消息修改总数
|
|
66475
|
+
* @author huangbo
|
|
66476
|
+
* @date 2024年9月7日
|
|
66006
66477
|
**/
|
|
66007
66478
|
handleMenuTips: function handleMenuTips(id, num) {
|
|
66008
66479
|
if (num) {
|
|
@@ -66013,10 +66484,10 @@ var events = [function (tabs, index, that) {
|
|
|
66013
66484
|
}
|
|
66014
66485
|
},
|
|
66015
66486
|
|
|
66016
|
-
/**
|
|
66017
|
-
* @desc:处理即时消息
|
|
66018
|
-
* @author huangbo
|
|
66019
|
-
* @date 2024年9月7日
|
|
66487
|
+
/**
|
|
66488
|
+
* @desc:处理即时消息
|
|
66489
|
+
* @author huangbo
|
|
66490
|
+
* @date 2024年9月7日
|
|
66020
66491
|
**/
|
|
66021
66492
|
handleOpened: function handleOpened(res) {
|
|
66022
66493
|
var _this7 = this;
|
|
@@ -66140,18 +66611,18 @@ var events = [function (tabs, index, that) {
|
|
|
66140
66611
|
|
|
66141
66612
|
var simplicity_component = normalizeComponent(
|
|
66142
66613
|
src_simplicityvue_type_script_lang_js_,
|
|
66143
|
-
|
|
66144
|
-
|
|
66614
|
+
simplicityvue_type_template_id_634782ec_scoped_true_render,
|
|
66615
|
+
simplicityvue_type_template_id_634782ec_scoped_true_staticRenderFns,
|
|
66145
66616
|
false,
|
|
66146
66617
|
null,
|
|
66147
|
-
"
|
|
66618
|
+
"634782ec",
|
|
66148
66619
|
null
|
|
66149
66620
|
|
|
66150
66621
|
)
|
|
66151
66622
|
|
|
66152
66623
|
/* harmony default export */ var simplicity = (simplicity_component.exports);
|
|
66153
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=
|
|
66154
|
-
var
|
|
66624
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/index.vue?vue&type=template&id=377c361a&
|
|
66625
|
+
var defaultvue_type_template_id_377c361a_render = function () {
|
|
66155
66626
|
var _vm = this
|
|
66156
66627
|
var _h = _vm.$createElement
|
|
66157
66628
|
var _c = _vm._self._c || _h
|
|
@@ -66702,11 +67173,11 @@ var defaultvue_type_template_id_0d60331a_render = function () {
|
|
|
66702
67173
|
1
|
|
66703
67174
|
)
|
|
66704
67175
|
}
|
|
66705
|
-
var
|
|
66706
|
-
|
|
67176
|
+
var defaultvue_type_template_id_377c361a_staticRenderFns = []
|
|
67177
|
+
defaultvue_type_template_id_377c361a_render._withStripped = true
|
|
66707
67178
|
|
|
66708
67179
|
|
|
66709
|
-
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=
|
|
67180
|
+
// CONCATENATED MODULE: ./packages/main/src/default/index.vue?vue&type=template&id=377c361a&
|
|
66710
67181
|
|
|
66711
67182
|
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/default/userinfo.vue?vue&type=template&id=516cb128&
|
|
66712
67183
|
var userinfovue_type_template_id_516cb128_render = function () {
|
|
@@ -68744,8 +69215,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
68744
69215
|
},
|
|
68745
69216
|
setTitle: function setTitle(id) {
|
|
68746
69217
|
var node = void 0;
|
|
68747
|
-
for (var
|
|
68748
|
-
var item = this.menus[
|
|
69218
|
+
for (var i = 0; i < this.menus.length; i++) {
|
|
69219
|
+
var item = this.menus[i];
|
|
68749
69220
|
if (item.id == id) {
|
|
68750
69221
|
this.title = item.text;
|
|
68751
69222
|
node = item;
|
|
@@ -68855,88 +69326,88 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
68855
69326
|
useCaseCodes: results.resourceCodes || results.userModel.resourceCodes
|
|
68856
69327
|
}
|
|
68857
69328
|
});
|
|
68858
|
-
for (var
|
|
68859
|
-
if (
|
|
68860
|
-
this.mainLogo = results[
|
|
69329
|
+
for (var i in results) {
|
|
69330
|
+
if (i === 'mainLogoUrl' && results[i]) {
|
|
69331
|
+
this.mainLogo = results[i];
|
|
68861
69332
|
}
|
|
68862
|
-
if (
|
|
68863
|
-
this.headerImg = results[
|
|
69333
|
+
if (i === 'mainBannerUrl' && results[i] && this.headerImage === undefined) {
|
|
69334
|
+
this.headerImg = results[i];
|
|
68864
69335
|
}
|
|
68865
|
-
if (
|
|
68866
|
-
this.results[
|
|
69336
|
+
if (i === 'initApplication' && results[i]) {
|
|
69337
|
+
this.results[i] = results[i].split(',');
|
|
68867
69338
|
}
|
|
68868
|
-
if (
|
|
68869
|
-
this.homePage = results[
|
|
69339
|
+
if (i === 'indexUrl' && results[i]) {
|
|
69340
|
+
this.homePage = results[i];
|
|
68870
69341
|
}
|
|
68871
|
-
if (
|
|
68872
|
-
window.open(results[
|
|
68873
|
-
this.doorIndex = results[
|
|
69342
|
+
if (i === 'doorIndex' && results[i]) {
|
|
69343
|
+
window.open(results[i]);
|
|
69344
|
+
this.doorIndex = results[i];
|
|
68874
69345
|
}
|
|
68875
|
-
if (
|
|
68876
|
-
document.title = results[
|
|
69346
|
+
if (i === 'subsystemName' && results[i]) {
|
|
69347
|
+
document.title = results[i];
|
|
68877
69348
|
}
|
|
68878
|
-
if (
|
|
68879
|
-
utils_util["a" /* default */].setStorage('loginPage', results[
|
|
69349
|
+
if (i === 'loginPage' && results[i]) {
|
|
69350
|
+
utils_util["a" /* default */].setStorage('loginPage', results[i]);
|
|
68880
69351
|
}
|
|
68881
|
-
if (
|
|
68882
|
-
localStorage.setItem('sysLogoIco', results[
|
|
68883
|
-
utils_util["a" /* default */].setFavicon(results[
|
|
69352
|
+
if (i === 'sysLogoIco' && results[i]) {
|
|
69353
|
+
localStorage.setItem('sysLogoIco', results[i]);
|
|
69354
|
+
utils_util["a" /* default */].setFavicon(results[i]);
|
|
68884
69355
|
}
|
|
68885
|
-
if (
|
|
68886
|
-
if (results[
|
|
68887
|
-
var color = unescape(results[
|
|
69356
|
+
if (i === 'userStyle' && results[i]) {
|
|
69357
|
+
if (results[i].color) {
|
|
69358
|
+
var color = unescape(results[i].color).toLowerCase();
|
|
68888
69359
|
if (utils_util["a" /* default */].startWith(color, '#')) {
|
|
68889
69360
|
this.color = color;
|
|
68890
69361
|
}
|
|
68891
69362
|
}
|
|
68892
|
-
if (results[
|
|
68893
|
-
this.homePage = results[
|
|
69363
|
+
if (results[i].indexUrl) {
|
|
69364
|
+
this.homePage = results[i].indexUrl;
|
|
68894
69365
|
}
|
|
68895
69366
|
}
|
|
68896
|
-
if (
|
|
68897
|
-
if (results[
|
|
68898
|
-
this.singleLogout = results[
|
|
69367
|
+
if (i === 'subsystemExtend' && results[i]) {
|
|
69368
|
+
if (results[i].singleLogout) {
|
|
69369
|
+
this.singleLogout = results[i].singleLogout.split(',');
|
|
68899
69370
|
}
|
|
68900
|
-
if (results[
|
|
68901
|
-
this.color = unescape(results[
|
|
69371
|
+
if (results[i].themeColor) {
|
|
69372
|
+
this.color = unescape(results[i].themeColor).toLowerCase();
|
|
68902
69373
|
}
|
|
68903
|
-
if (results[
|
|
68904
|
-
this.userInfoContents = results[
|
|
69374
|
+
if (results[i].userInfoContents) {
|
|
69375
|
+
this.userInfoContents = results[i].userInfoContents;
|
|
68905
69376
|
}
|
|
68906
|
-
if (results[
|
|
69377
|
+
if (results[i].webPageWatermark) {
|
|
68907
69378
|
try {
|
|
68908
|
-
utils_util["a" /* default */].win.webPageWatermark = results[
|
|
68909
|
-
utils_util["a" /* default */].watermark(results[
|
|
69379
|
+
utils_util["a" /* default */].win.webPageWatermark = results[i].webPageWatermark;
|
|
69380
|
+
utils_util["a" /* default */].watermark(results[i].webPageWatermark);
|
|
68910
69381
|
} catch (error) {}
|
|
68911
69382
|
}
|
|
68912
|
-
if (results[
|
|
68913
|
-
utils_util["a" /* default */].setStorage('loginPage', results[
|
|
69383
|
+
if (results[i].loginPage) {
|
|
69384
|
+
utils_util["a" /* default */].setStorage('loginPage', results[i].loginPage);
|
|
68914
69385
|
}
|
|
68915
|
-
if (results[
|
|
68916
|
-
this.doorIndex = results[
|
|
69386
|
+
if (results[i].portalPage || results[i].portalpage) {
|
|
69387
|
+
this.doorIndex = results[i].portalPage || results[i].portalpage;
|
|
68917
69388
|
}
|
|
68918
|
-
if (results[
|
|
69389
|
+
if (results[i].multipleVersion) {
|
|
68919
69390
|
this.showSet = true;
|
|
68920
69391
|
}
|
|
68921
|
-
if (results[
|
|
68922
|
-
this.topRightToolHide = results[
|
|
69392
|
+
if (results[i].topRightToolHide) {
|
|
69393
|
+
this.topRightToolHide = results[i].topRightToolHide;
|
|
68923
69394
|
}
|
|
68924
|
-
if (results[
|
|
68925
|
-
var contact = JSON.parse(results[
|
|
69395
|
+
if (results[i].contact) {
|
|
69396
|
+
var contact = JSON.parse(results[i].contact);
|
|
68926
69397
|
var content = contact.content.split(',');
|
|
68927
69398
|
this.contact = defaultvue_type_script_lang_js_extends({}, contact, {
|
|
68928
69399
|
content: content
|
|
68929
69400
|
});
|
|
68930
69401
|
}
|
|
68931
|
-
if (results[
|
|
68932
|
-
if (typeof results[
|
|
69402
|
+
if (results[i].aiConfig) {
|
|
69403
|
+
if (typeof results[i].aiConfig == 'string') {
|
|
68933
69404
|
try {
|
|
68934
|
-
this.aiConfig = JSON.parse(results[
|
|
69405
|
+
this.aiConfig = JSON.parse(results[i].aiConfig);
|
|
68935
69406
|
} catch (error) {
|
|
68936
|
-
this.aiConfig = { url: results[
|
|
69407
|
+
this.aiConfig = { url: results[i].aiConfig };
|
|
68937
69408
|
}
|
|
68938
69409
|
} else {
|
|
68939
|
-
this.aiConfig = results[
|
|
69410
|
+
this.aiConfig = results[i].aiConfig;
|
|
68940
69411
|
}
|
|
68941
69412
|
this.$nextTick(function () {
|
|
68942
69413
|
// util.draggableMove({
|
|
@@ -68946,19 +69417,19 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
68946
69417
|
// });
|
|
68947
69418
|
});
|
|
68948
69419
|
}
|
|
68949
|
-
if (results[
|
|
68950
|
-
if (typeof results[
|
|
69420
|
+
if (results[i].imConfig) {
|
|
69421
|
+
if (typeof results[i].imConfig == 'string') {
|
|
68951
69422
|
try {
|
|
68952
|
-
this.imConfig = JSON.parse(results[
|
|
69423
|
+
this.imConfig = JSON.parse(results[i].imConfig);
|
|
68953
69424
|
} catch (error) {
|
|
68954
|
-
this.imConfig = { url: results[
|
|
69425
|
+
this.imConfig = { url: results[i].imConfig };
|
|
68955
69426
|
}
|
|
68956
69427
|
} else {
|
|
68957
|
-
this.imConfig = results[
|
|
69428
|
+
this.imConfig = results[i].imConfig;
|
|
68958
69429
|
}
|
|
68959
69430
|
}
|
|
68960
69431
|
}
|
|
68961
|
-
utils_store.set(
|
|
69432
|
+
utils_store.set(i, results[i]);
|
|
68962
69433
|
}
|
|
68963
69434
|
if (this.isLoadHomePage && this.homePage) {
|
|
68964
69435
|
var applicationid = utils_util["a" /* default */].getParams('applicationid') || utils_util["a" /* default */].getParams('applicationId');
|
|
@@ -68967,7 +69438,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
68967
69438
|
hash = hash.split('?')[0];
|
|
68968
69439
|
}
|
|
68969
69440
|
var jump = sessionStorage.getItem('jump');
|
|
68970
|
-
if (!applicationid && !this.menuCode && (!jump || !this.isHistory) && (hash === '#/' || hash === '#/main') || jump ==
|
|
69441
|
+
if (!applicationid && !this.menuCode && (!jump || !this.isHistory) && (hash === '#/' || hash === '#/main') || jump == this.homePage) {
|
|
68971
69442
|
if (this.isHomePage) {
|
|
68972
69443
|
if (this.menus && this.menus.length) {
|
|
68973
69444
|
var ids = ids = this.getId(this.menus, this.homePage);
|
|
@@ -68987,9 +69458,9 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
68987
69458
|
},
|
|
68988
69459
|
|
|
68989
69460
|
//初始用户配置及信息
|
|
68990
|
-
init: function init(results) {
|
|
69461
|
+
init: function init(results, first) {
|
|
68991
69462
|
this.setConfig(results);
|
|
68992
|
-
if (this.remote) {
|
|
69463
|
+
if (this.remote && first) {
|
|
68993
69464
|
this.getMenu();
|
|
68994
69465
|
} else {
|
|
68995
69466
|
this.renderMenu();
|
|
@@ -69101,8 +69572,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69101
69572
|
if (!url) {
|
|
69102
69573
|
return false;
|
|
69103
69574
|
}
|
|
69104
|
-
for (var
|
|
69105
|
-
var item = menus[
|
|
69575
|
+
for (var i = 0; i < menus.length; i++) {
|
|
69576
|
+
var item = menus[i];
|
|
69106
69577
|
if (item.id === url || item.appCode && item.appCode === url) {
|
|
69107
69578
|
if (item.url) {
|
|
69108
69579
|
if (Object.prototype.hasOwnProperty.call(item, 'children') && item.children.length) {
|
|
@@ -69289,10 +69760,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69289
69760
|
}
|
|
69290
69761
|
}
|
|
69291
69762
|
if (this.application) {
|
|
69292
|
-
for (var
|
|
69293
|
-
if (res[
|
|
69294
|
-
this.menu = res[
|
|
69295
|
-
this.title = res[
|
|
69763
|
+
for (var i = 0; i < res.length; i++) {
|
|
69764
|
+
if (res[i].hasPermission) {
|
|
69765
|
+
this.menu = res[i].children;
|
|
69766
|
+
this.title = res[i].text;
|
|
69296
69767
|
break;
|
|
69297
69768
|
}
|
|
69298
69769
|
}
|
|
@@ -69455,10 +69926,10 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69455
69926
|
} else {
|
|
69456
69927
|
this.active = active.slice(1);
|
|
69457
69928
|
}
|
|
69458
|
-
for (var
|
|
69459
|
-
if (res[
|
|
69460
|
-
this.menu = res[
|
|
69461
|
-
this.title = res[
|
|
69929
|
+
for (var i = 0; i < res.length; i++) {
|
|
69930
|
+
if (res[i].id === active[0]) {
|
|
69931
|
+
this.menu = res[i].children;
|
|
69932
|
+
this.title = res[i].text;
|
|
69462
69933
|
break;
|
|
69463
69934
|
}
|
|
69464
69935
|
}
|
|
@@ -69478,8 +69949,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69478
69949
|
|
|
69479
69950
|
//获取页面类型及地址
|
|
69480
69951
|
getUrl: function getUrl(res, active, param) {
|
|
69481
|
-
for (var
|
|
69482
|
-
var item = res[
|
|
69952
|
+
for (var i = 0; i < res.length; i++) {
|
|
69953
|
+
var item = res[i];
|
|
69483
69954
|
if (item.id === active) {
|
|
69484
69955
|
if (item.url) {
|
|
69485
69956
|
this.handleJump(item.url, item.urlopenmode, item, param);
|
|
@@ -69507,9 +69978,9 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69507
69978
|
setUrl: function setUrl(url, param) {
|
|
69508
69979
|
var obj = param ? param : {};
|
|
69509
69980
|
var params = utils_util["a" /* default */].getParams({ url: url }, true);
|
|
69510
|
-
for (var
|
|
69511
|
-
if (
|
|
69512
|
-
obj[
|
|
69981
|
+
for (var i in params) {
|
|
69982
|
+
if (i != 'model' && i != 'view' && i != '_baseUrl') {
|
|
69983
|
+
obj[i] = params[i];
|
|
69513
69984
|
}
|
|
69514
69985
|
}
|
|
69515
69986
|
var _url = params._baseUrl ? params._baseUrl : './primary.html';
|
|
@@ -69685,8 +70156,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69685
70156
|
return false;
|
|
69686
70157
|
}
|
|
69687
70158
|
if (Array.isArray(res)) {
|
|
69688
|
-
for (var
|
|
69689
|
-
var path = this.hasRouter(res[
|
|
70159
|
+
for (var i in res) {
|
|
70160
|
+
var path = this.hasRouter(res[i], url);
|
|
69690
70161
|
if (path) {
|
|
69691
70162
|
return path;
|
|
69692
70163
|
}
|
|
@@ -69905,8 +70376,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69905
70376
|
},
|
|
69906
70377
|
getFourthTabs: function getFourthTabs(menus, id) {
|
|
69907
70378
|
if (Array.isArray(menus)) {
|
|
69908
|
-
for (var
|
|
69909
|
-
var fourth = this.getFourthTabs(menus[
|
|
70379
|
+
for (var i = 0; i < menus.length; i++) {
|
|
70380
|
+
var fourth = this.getFourthTabs(menus[i], id);
|
|
69910
70381
|
if (fourth) {
|
|
69911
70382
|
return fourth;
|
|
69912
70383
|
}
|
|
@@ -69916,8 +70387,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
69916
70387
|
return menus;
|
|
69917
70388
|
}
|
|
69918
70389
|
if (menus.children && menus.children.length) {
|
|
69919
|
-
for (var
|
|
69920
|
-
var _fourth = this.getFourthTabs(menus.children[
|
|
70390
|
+
for (var _i = 0; _i < menus.children.length; _i++) {
|
|
70391
|
+
var _fourth = this.getFourthTabs(menus.children[_i], id);
|
|
69921
70392
|
if (_fourth) {
|
|
69922
70393
|
return _fourth;
|
|
69923
70394
|
}
|
|
@@ -70022,26 +70493,26 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
70022
70493
|
take: api["oc" /* topic */],
|
|
70023
70494
|
success: function success(res) {
|
|
70024
70495
|
var data = res.data || {};
|
|
70025
|
-
for (var
|
|
70026
|
-
if (data[
|
|
70027
|
-
if (
|
|
70028
|
-
_this11.online = data[
|
|
70496
|
+
for (var i in data) {
|
|
70497
|
+
if (data[i] !== null && data[i] !== undefined) {
|
|
70498
|
+
if (i === 'onlineUserNums' && data[i] > 0) {
|
|
70499
|
+
_this11.online = data[i];
|
|
70029
70500
|
}
|
|
70030
|
-
if (
|
|
70031
|
-
_this11.notice = data[
|
|
70501
|
+
if (i === 'sysMsgNums' && data[i] !== null) {
|
|
70502
|
+
_this11.notice = data[i];
|
|
70032
70503
|
if (_this11.showMsg) {
|
|
70033
70504
|
_this11.$refs.message.getMsg(true);
|
|
70034
70505
|
}
|
|
70035
70506
|
}
|
|
70036
|
-
if (
|
|
70037
|
-
_this11.menuTips = data[
|
|
70507
|
+
if (i === 'menuTipsMap' && data[i] !== null) {
|
|
70508
|
+
_this11.menuTips = data[i];
|
|
70038
70509
|
}
|
|
70039
|
-
if (
|
|
70040
|
-
_this11.sysMsg = data[
|
|
70041
|
-
data[
|
|
70510
|
+
if (i === 'sysMsgList' && data[i] !== null) {
|
|
70511
|
+
_this11.sysMsg = data[i];
|
|
70512
|
+
data[i] && data[i].length && _this11.$emit('bus-emit', 'waitdone');
|
|
70042
70513
|
}
|
|
70043
|
-
if (
|
|
70044
|
-
_this11.extraData = data[
|
|
70514
|
+
if (i === 'extraData' && data[i] !== null) {
|
|
70515
|
+
_this11.extraData = data[i];
|
|
70045
70516
|
}
|
|
70046
70517
|
}
|
|
70047
70518
|
}
|
|
@@ -70050,8 +70521,9 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
70050
70521
|
_this11.$store.commit('websocket', data);
|
|
70051
70522
|
} catch (error) {}
|
|
70052
70523
|
}
|
|
70053
|
-
|
|
70054
|
-
|
|
70524
|
+
var bus = _this11.bus || _this11.$eventBus || _this11.$root.Bus;
|
|
70525
|
+
if (bus) {
|
|
70526
|
+
bus.$emit('websocket', data);
|
|
70055
70527
|
}
|
|
70056
70528
|
if (utils_util["a" /* default */].win.eventBus) {
|
|
70057
70529
|
utils_util["a" /* default */].win.eventBus.$emit('websocket', data);
|
|
@@ -70148,8 +70620,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
|
|
|
70148
70620
|
|
|
70149
70621
|
var default_component = normalizeComponent(
|
|
70150
70622
|
src_defaultvue_type_script_lang_js_,
|
|
70151
|
-
|
|
70152
|
-
|
|
70623
|
+
defaultvue_type_template_id_377c361a_render,
|
|
70624
|
+
defaultvue_type_template_id_377c361a_staticRenderFns,
|
|
70153
70625
|
false,
|
|
70154
70626
|
null,
|
|
70155
70627
|
null,
|
|
@@ -70158,9 +70630,6 @@ var default_component = normalizeComponent(
|
|
|
70158
70630
|
)
|
|
70159
70631
|
|
|
70160
70632
|
/* harmony default export */ var src_default = (default_component.exports);
|
|
70161
|
-
// EXTERNAL MODULE: external "lodash"
|
|
70162
|
-
var external_lodash_ = __webpack_require__(9);
|
|
70163
|
-
|
|
70164
70633
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=script&lang=js&
|
|
70165
70634
|
function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
|
70166
70635
|
|
|
@@ -70218,7 +70687,6 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
|
|
|
70218
70687
|
|
|
70219
70688
|
|
|
70220
70689
|
|
|
70221
|
-
|
|
70222
70690
|
/* harmony default export */ var main_src_mainvue_type_script_lang_js_ = ({
|
|
70223
70691
|
name: 'EsMain',
|
|
70224
70692
|
inheritAttrs: false,
|
|
@@ -70285,83 +70753,109 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
|
|
|
70285
70753
|
mounted: function mounted() {
|
|
70286
70754
|
var _this = this;
|
|
70287
70755
|
|
|
70288
|
-
|
|
70756
|
+
console.log('params', this.$refs, this.$refs.main);
|
|
70757
|
+
|
|
70758
|
+
var token = utils_util["a" /* default */].getStorage('token') || utils_util["a" /* default */].getStorage('Authorization');
|
|
70759
|
+
this.isLogin = token ? true : this.isLogin;
|
|
70760
|
+
if (!token && Object.prototype.hasOwnProperty.call(this.params, 'serverId') && Object.prototype.hasOwnProperty.call(this.params, 'authType')) {
|
|
70761
|
+
return false;
|
|
70762
|
+
}
|
|
70289
70763
|
if (this.isLogin) {
|
|
70290
70764
|
if (utils_util["a" /* default */].win.$wujie) {
|
|
70291
70765
|
utils_util["a" /* default */].win.$wujie.bus.$on('changeTheme', function (res) {
|
|
70292
70766
|
utils_util["a" /* default */].updateTheme(res);
|
|
70293
70767
|
});
|
|
70294
70768
|
}
|
|
70295
|
-
|
|
70296
|
-
|
|
70297
|
-
|
|
70298
|
-
bus
|
|
70299
|
-
|
|
70300
|
-
|
|
70301
|
-
|
|
70769
|
+
this.$nextTick(function () {
|
|
70770
|
+
_this.getConfig();
|
|
70771
|
+
var bus = _this.bus || _this.$root.Bus;
|
|
70772
|
+
if (bus) {
|
|
70773
|
+
bus.$on('reLogin', _this.handleReLogin);
|
|
70774
|
+
bus.$on('refresh', _this.$refs.main.handleRefresh);
|
|
70775
|
+
bus.$on('jumpMenu', _this.$refs.main.jumpMenu);
|
|
70776
|
+
bus.$on('emit', function (method, args) {
|
|
70777
|
+
// 主应用发送事件
|
|
70778
|
+
bus.$emit(method, args);
|
|
70779
|
+
});
|
|
70780
|
+
}
|
|
70781
|
+
utils_util["a" /* default */].win.reLogin = _this.handleReLogin;
|
|
70782
|
+
utils_util["a" /* default */].win.windowOpen = _this.openPage;
|
|
70783
|
+
utils_util["a" /* default */].win.refresh = _this.$refs.main.handleRefresh;
|
|
70784
|
+
utils_util["a" /* default */].win.jumpMenu = _this.$refs.main.jumpMenu;
|
|
70785
|
+
external_wujie_vue2_default.a.bus.$on('reLogin', _this.handleReLogin);
|
|
70786
|
+
external_wujie_vue2_default.a.bus.$on('refresh', _this.$refs.main.handleRefresh);
|
|
70787
|
+
external_wujie_vue2_default.a.bus.$on('jumpMenu', _this.$refs.main.jumpMenu);
|
|
70788
|
+
external_wujie_vue2_default.a.bus.$on('emit', function (method, args) {
|
|
70302
70789
|
// 主应用发送事件
|
|
70303
|
-
bus.$emit(method, args);
|
|
70790
|
+
external_wujie_vue2_default.a.bus.$emit(method, args);
|
|
70304
70791
|
});
|
|
70305
|
-
}
|
|
70306
|
-
utils_util["a" /* default */].win.reLogin = this.handleReLogin;
|
|
70307
|
-
utils_util["a" /* default */].win.windowOpen = this.openPage;
|
|
70308
|
-
utils_util["a" /* default */].win.refresh = this.$refs.main.handleRefresh;
|
|
70309
|
-
utils_util["a" /* default */].win.jumpMenu = this.$refs.main.jumpMenu;
|
|
70310
|
-
external_wujie_vue2_default.a.bus.$on('reLogin', this.handleReLogin);
|
|
70311
|
-
external_wujie_vue2_default.a.bus.$on('refresh', this.$refs.main.handleRefresh);
|
|
70312
|
-
external_wujie_vue2_default.a.bus.$on('jumpMenu', this.$refs.main.jumpMenu);
|
|
70313
|
-
external_wujie_vue2_default.a.bus.$on('emit', function (method, args) {
|
|
70314
|
-
// 主应用发送事件
|
|
70315
|
-
external_wujie_vue2_default.a.bus.$emit(method, args);
|
|
70316
|
-
});
|
|
70317
70792
|
|
|
70318
|
-
|
|
70319
|
-
|
|
70793
|
+
window.addEventListener('message', function (e) {
|
|
70794
|
+
var _$refs$main;
|
|
70320
70795
|
|
|
70321
|
-
|
|
70322
|
-
|
|
70323
|
-
|
|
70796
|
+
var _e$data = e.data,
|
|
70797
|
+
method = _e$data.method,
|
|
70798
|
+
args = _e$data.args;
|
|
70324
70799
|
|
|
70325
|
-
|
|
70326
|
-
|
|
70327
|
-
|
|
70328
|
-
|
|
70329
|
-
|
|
70330
|
-
|
|
70331
|
-
|
|
70332
|
-
|
|
70333
|
-
|
|
70334
|
-
|
|
70335
|
-
|
|
70336
|
-
|
|
70337
|
-
|
|
70800
|
+
switch (method) {
|
|
70801
|
+
case 'reLogin':
|
|
70802
|
+
_this.handleReLogin(args);
|
|
70803
|
+
break;
|
|
70804
|
+
case 'refresh':
|
|
70805
|
+
_this.$refs.main.handleRefresh(args);
|
|
70806
|
+
break;
|
|
70807
|
+
case 'jumpMenu':
|
|
70808
|
+
Array.isArray(args) ? (_$refs$main = _this.$refs.main).jumpMenu.apply(_$refs$main, args) : _this.$refs.main.jumpMenu(args);
|
|
70809
|
+
break;
|
|
70810
|
+
case 'emit':
|
|
70811
|
+
var origin = args.origin,
|
|
70812
|
+
data = src_mainvue_type_script_lang_js_objectWithoutProperties(args, ['origin']);
|
|
70338
70813
|
|
|
70339
|
-
|
|
70340
|
-
|
|
70341
|
-
|
|
70342
|
-
|
|
70343
|
-
|
|
70344
|
-
|
|
70345
|
-
}
|
|
70346
|
-
break;
|
|
70347
|
-
case 'openDialog':
|
|
70348
|
-
_this.dialogs.push(args);
|
|
70349
|
-
var index = _this.visibles.length;
|
|
70350
|
-
_this.visibles.push(false);
|
|
70351
|
-
_this.$nextTick(function () {
|
|
70352
|
-
_this.$set(_this.visibles, index, true);
|
|
70353
|
-
});
|
|
70354
|
-
break;
|
|
70355
|
-
case 'closeDialog':
|
|
70356
|
-
for (var _i = 0; _i < _this.dialogs.length; _i++) {
|
|
70357
|
-
var item = _this.dialogs[_i];
|
|
70358
|
-
if (item.url == args.url) {
|
|
70359
|
-
_this.$set(_this.visibles, _i, false);
|
|
70814
|
+
var iframes = document.getElementsByTagName('iframe');
|
|
70815
|
+
iframes = iframes.filter(function (item) {
|
|
70816
|
+
return origin ? item.src.indexOf(origin) > -1 : item.src.indexOf(e.origin) == -1;
|
|
70817
|
+
});
|
|
70818
|
+
for (var i = 0; i < iframes.length; i++) {
|
|
70819
|
+
iframes[i] && iframes[i].contentWindow.postMessage(data, origin ? origin : '*');
|
|
70360
70820
|
}
|
|
70361
|
-
|
|
70362
|
-
|
|
70363
|
-
|
|
70821
|
+
break;
|
|
70822
|
+
case 'openDialog':
|
|
70823
|
+
_this.dialogs.push(args);
|
|
70824
|
+
var index = _this.visibles.length;
|
|
70825
|
+
_this.visibles.push(false);
|
|
70826
|
+
_this.$nextTick(function () {
|
|
70827
|
+
_this.$set(_this.visibles, index, true);
|
|
70828
|
+
});
|
|
70829
|
+
break;
|
|
70830
|
+
case 'closeDialog':
|
|
70831
|
+
for (var _i = 0; _i < _this.dialogs.length; _i++) {
|
|
70832
|
+
var item = _this.dialogs[_i];
|
|
70833
|
+
if (item.url == args.url) {
|
|
70834
|
+
_this.$set(_this.visibles, _i, false);
|
|
70835
|
+
}
|
|
70836
|
+
}
|
|
70837
|
+
break;
|
|
70838
|
+
}
|
|
70839
|
+
});
|
|
70364
70840
|
});
|
|
70841
|
+
} else {
|
|
70842
|
+
var loginPage = utils_util["a" /* default */].getStorage('login') || utils_util["a" /* default */].getStorage('loginPage');
|
|
70843
|
+
if (loginPage) {
|
|
70844
|
+
window.location.replace(loginPage);
|
|
70845
|
+
} else if (document.referrer) {
|
|
70846
|
+
var referrerUrl = new URL(document.referrer);
|
|
70847
|
+
if (referrerUrl.host !== window.location.host) {
|
|
70848
|
+
window.location.replace(document.referrer);
|
|
70849
|
+
} else if (window.location.href.indexOf('main.html') > -1 || window.location.href.indexOf('index.html') > -1 || document.referrer.indexOf('main.html') > -1 || document.referrer.indexOf('index.html') > -1) {
|
|
70850
|
+
window.location.href = './login.html';
|
|
70851
|
+
} else {
|
|
70852
|
+
next('/login');
|
|
70853
|
+
}
|
|
70854
|
+
} else if (window.location.href.indexOf('main.html') > -1) {
|
|
70855
|
+
window.location.href = './login.html';
|
|
70856
|
+
} else {
|
|
70857
|
+
next('/login');
|
|
70858
|
+
}
|
|
70365
70859
|
}
|
|
70366
70860
|
},
|
|
70367
70861
|
|
|
@@ -70476,22 +70970,15 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
|
|
|
70476
70970
|
* @author huangbo
|
|
70477
70971
|
* @date 2024年9月7日
|
|
70478
70972
|
**/
|
|
70479
|
-
getConfig: function getConfig(
|
|
70973
|
+
getConfig: function getConfig() {
|
|
70480
70974
|
var _this4 = this;
|
|
70481
70975
|
|
|
70482
|
-
var token = utils_util["a" /* default */].getStorage('token') || utils_util["a" /* default */].getStorage('Authorization');
|
|
70483
|
-
this.isLogin = token ? true : this.isLogin;
|
|
70484
|
-
if (!token && Object.prototype.hasOwnProperty.call(query, 'serverId') && Object.prototype.hasOwnProperty.call(query, 'authType')) {
|
|
70485
|
-
return false;
|
|
70486
|
-
}
|
|
70487
70976
|
var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
|
|
70488
70977
|
if (mainConfig) {
|
|
70489
70978
|
mainConfig = JSON.parse(mainConfig);
|
|
70490
|
-
this.$
|
|
70491
|
-
|
|
70492
|
-
|
|
70493
|
-
_this4.$refs.main.init(res, false);
|
|
70494
|
-
});
|
|
70979
|
+
this.$refs.main.init(mainConfig, true);
|
|
70980
|
+
utils_util["a" /* default */].getMainConfig(function (res) {
|
|
70981
|
+
_this4.$refs.main.init(res, false);
|
|
70495
70982
|
});
|
|
70496
70983
|
} else {
|
|
70497
70984
|
utils_util["a" /* default */].getMainConfig(function (res) {
|
|
@@ -70593,8 +71080,8 @@ function src_mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { va
|
|
|
70593
71080
|
|
|
70594
71081
|
var main_src_main_component = normalizeComponent(
|
|
70595
71082
|
packages_main_src_mainvue_type_script_lang_js_,
|
|
70596
|
-
|
|
70597
|
-
|
|
71083
|
+
mainvue_type_template_id_88d82eac_render,
|
|
71084
|
+
mainvue_type_template_id_88d82eac_staticRenderFns,
|
|
70598
71085
|
false,
|
|
70599
71086
|
null,
|
|
70600
71087
|
null,
|
|
@@ -72760,7 +73247,7 @@ var external_video_js_ = __webpack_require__(8);
|
|
|
72760
73247
|
var external_video_js_default = /*#__PURE__*/__webpack_require__.n(external_video_js_);
|
|
72761
73248
|
|
|
72762
73249
|
// EXTERNAL MODULE: external "video.js/dist/lang/zh-CN.json"
|
|
72763
|
-
var zh_CN_json_ = __webpack_require__(
|
|
73250
|
+
var zh_CN_json_ = __webpack_require__(16);
|
|
72764
73251
|
var zh_CN_json_default = /*#__PURE__*/__webpack_require__.n(zh_CN_json_);
|
|
72765
73252
|
|
|
72766
73253
|
// EXTERNAL MODULE: external "video.js/dist/video-js.css"
|
|
@@ -73163,19 +73650,19 @@ var QRCode = __webpack_require__(24);
|
|
|
73163
73650
|
//设置logo大小
|
|
73164
73651
|
var logoPosition = (_this3.mwidth - 46) / 2; //logo相对于canvas居中定位
|
|
73165
73652
|
//设置获取的logo将其变为圆角以及添加白色背景
|
|
73166
|
-
/* ctx.fillStyle = "#fff";
|
|
73167
|
-
ctx.beginPath();
|
|
73168
|
-
let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
|
|
73169
|
-
let w = 46; //圆角宽
|
|
73170
|
-
let x = logoPosition - 5;
|
|
73171
|
-
let y = logoPosition - 5;
|
|
73172
|
-
let r = 5; //圆角半径
|
|
73173
|
-
ctx.moveTo(x + r, y);
|
|
73174
|
-
ctx.arcTo(x + w, y, x + w, y + h, r);
|
|
73175
|
-
ctx.arcTo(x + w, y + h, x, y + h, r);
|
|
73176
|
-
ctx.arcTo(x, y + h, x, y, r);
|
|
73177
|
-
ctx.arcTo(x, y, x + w, y, r);
|
|
73178
|
-
ctx.closePath();
|
|
73653
|
+
/* ctx.fillStyle = "#fff";
|
|
73654
|
+
ctx.beginPath();
|
|
73655
|
+
let h = 46; //圆角高 10为基数(logo四周白色背景为10/2)
|
|
73656
|
+
let w = 46; //圆角宽
|
|
73657
|
+
let x = logoPosition - 5;
|
|
73658
|
+
let y = logoPosition - 5;
|
|
73659
|
+
let r = 5; //圆角半径
|
|
73660
|
+
ctx.moveTo(x + r, y);
|
|
73661
|
+
ctx.arcTo(x + w, y, x + w, y + h, r);
|
|
73662
|
+
ctx.arcTo(x + w, y + h, x, y + h, r);
|
|
73663
|
+
ctx.arcTo(x, y + h, x, y, r);
|
|
73664
|
+
ctx.arcTo(x, y, x + w, y, r);
|
|
73665
|
+
ctx.closePath();
|
|
73179
73666
|
ctx.fill(); */
|
|
73180
73667
|
logo.onload = function () {
|
|
73181
73668
|
ctx.drawImage(logo, logoPosition, logoPosition, 46, 46);
|
|
@@ -76131,7 +76618,7 @@ mainvue_type_template_id_03999292_render._withStripped = true
|
|
|
76131
76618
|
// CONCATENATED MODULE: ./packages/selector/src/main.vue?vue&type=template&id=03999292&
|
|
76132
76619
|
|
|
76133
76620
|
// EXTERNAL MODULE: external "eoss-element/src/utils/clickoutside"
|
|
76134
|
-
var clickoutside_ = __webpack_require__(
|
|
76621
|
+
var clickoutside_ = __webpack_require__(17);
|
|
76135
76622
|
var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
|
76136
76623
|
|
|
76137
76624
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector/src/main.vue?vue&type=script&lang=js&
|
|
@@ -77599,7 +78086,7 @@ selectionvue_type_template_id_c92fc4ae_render._withStripped = true
|
|
|
77599
78086
|
// CONCATENATED MODULE: ./packages/selector-panel/src/selection.vue?vue&type=template&id=c92fc4ae&
|
|
77600
78087
|
|
|
77601
78088
|
// EXTERNAL MODULE: external "sortablejs"
|
|
77602
|
-
var external_sortablejs_ = __webpack_require__(
|
|
78089
|
+
var external_sortablejs_ = __webpack_require__(18);
|
|
77603
78090
|
var external_sortablejs_default = /*#__PURE__*/__webpack_require__.n(external_sortablejs_);
|
|
77604
78091
|
|
|
77605
78092
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/selector-panel/src/selection.vue?vue&type=script&lang=js&
|
|
@@ -89614,7 +90101,7 @@ mainvue_type_template_id_8bdc905c_render._withStripped = true
|
|
|
89614
90101
|
pdf: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJQAAACUCAYAAAB1PADUAAAAAXNSR0IArs4c6QAAEAlJREFUeF7tnQl0FEUax/81wxCIucRogCCHaMZAOm8lkJBgFA8UPBYFd/WpeN8HHuu1Xhvv++l68RAVBfEgoqhZbyUxkEAkgCgCGkCEBIQACQkQEtK1rzokJKSTrunp6ulMV72XF2C++qq+f//4qrq6appAlk4VmDFyZDJphEI8UFRKFAIoAI7ik43mTCpZ+BCfbXhYkfAII/goZqZl9yHdGhWoUECoogKpBGQIQCPMe5dAmdeui9ScmpYW2dPnU4gKhRCWdaA0gYME60OQQFmvaQg9zhw+yk+8VIFKFRAoFGDg+O3rkgTKPq0tbGn6iBG9u3k8Ctgch4FDSTIo/CCIs7AZE64kUCZEs6/K9NGje/h21SvwsKwDRSVIJkASgEH29SKQliRQgagl1HZWRsYxaiNS4fEqoKofhLChiv1ECm3YUucSKEvl5HE2IyvrCE8DVeCBwoYpFdRPKGHDVV+e+s62kUAJuz6zhwzp3hAdrUAlSqOH+Amb4wB+NmRRoJuwhkPqWAJlifwzMzOPRiNSAOJnwxXxkCTKsg5ovCUNdBknEqiALtW7aWnxjT5fClQGC0kCaPM85+iAHIWtsQRK99JOTUvzRXkihqpQk7Sso02QNXjYHVZM2PIQdGASKEwfOXKgj3qS2FClUuInLPMQDZ7+QevrOgcuBGpGRtYkBo8HhE2O/ZTCTwiCeH7lOmo6CZjmQEVBuCni8dKa2n37Vl5bWrr74NjIzPRMGm4By3hsU2ApQL6YVFJ0X3OLEijbtA/rhuqhelInLV6wWgIV1tfZxuAIFkxaVHy8BMpGzcO9KUrp5RKocL/KNsZHQV6SQAkUPPWqK5F69ZUCWwit63cystp0gAC5EiiB18RtQIEiXwIlgTKtwMEZCkCBBMq0nMYVXZehJFDGUARj4UKgfpAZKhhiDOq6EKhCCZQEyrQCOnMoCZRpNTkqui9DkfkyQ3GAYdbEdUBRLJBAmaWFo57rgCISKA4szJvYAVT5giLs2rQZ3ojuOCz5WMQdbd/ua505VJHMUOZ5MawpGqjlr7+B5dPeaOlHj169kHHPXTjyxBMM+2aFgQTKChUD8CESqJqN5fhk4j/a9SZh2DCMmfJyAL00b6rzLK9YZijzehrWFAnUhvwCFNz975Y+jH1zGr684mrt7xfOL4DH5zPsX7AG7TMUXSiBClbVTuqLBOrg4e7iRUXIPf0M7K2qwjlz5yCqTx+BkTW5bg8UkUCJVF0kUH988y3m3/9gS/cZUN9cfxP+WrIEY19/DfFKisjQOgAKi2SGEii7SKC2r/4Nn19y2YEh741p+Pq6G6A2NIQsQ1GKEglUFwVqX10dPh4/QRviWFGuuAw/v/kWuvXsiQvyvxMY1QHX7SblRAIlVHiRGYp1vOTpZ/HbnI+0GHr5k8Cy1mFDkjFu+oGlBJEB6iwb/CgzlEDFRQP1V+kSfHPDTW0iSJo4Ael33SEwqo4zFAUWS6AESi8aKNb1vIsuQVVZWUsUmQ/ch8FnnSkwqo6BggRKrO52APXrrHex5MUDC5lnf/AuYgcOFBvYfu86Q16pzFACpbcDqLrt2/HhuLNaojhnTi6i+iUKjKqTSTkggRKpvB1AbSopwXc339oSRr/sbIx+9imRYbX4bpehKJbIDCVQejuAKnroEaz9/Is2UZz4zFM48oRsgZE1uT4YKAoslUAJlF00UPU1tcg9bSyoqraJopffj7FvvCb8eZ7OHMo+oPpkpKNbRAQ8ERHaby/76RGBbj16oHtUFLrHxCAiNhYRMTHoHhvT9DsmBo11ddhbvVNbwKvdvBnVa9ehtrwc1evXY9uvKwXiELxr0UCVffIpFj7+pG5H2Yll1r7IogPUMtsyFHvWZHXZtKgEf87Lx4b8fNTtaFoxdlIRDdT3t96OiuKFiEpMxNBLLsaiJ9rOnYZNvglDLrpQmCQ6uw1+6tJANStVW1GBZVOm4o+vvxEmnhnHIoFi2fmLy5syUPqddyDpvAlY9OTT+P3juW26yjbcHXPuOWa6b1hHZ7dBeADVHPnKWe+h9MWXDIWwy0AkUCwb/T73Ey2Ui4rng3g82p/ZA+ItS5e1CXHUwzlIzMxE7aYK1FZsAvsPyKYN7M+HJCQg7ujBiBnQH33S0wOSRmdSvjwsMlRrFVa8PRNLX50SkDCijEUBVb1uHT674CKt230zM3HyC8+1hMCe531/y62mpgD9so9H1n8eRPfoKC5JdOZQ4QdUY30DvrrqGmxfvZpLFJFGooBqnZ1GP/MU+u1fImA3LpW/rMC2lavANuCZKckXnI+0227hqqqzDvVz2GUopsS6L77CgpzQv5lVBFD1O3di9pix2gVn23zHvPISNpcuQeWKFdi+ahX2VG7rFIZukZHoNyoLfUdlITErE4319doQ+PU112v1AtmTrpOhfglLoJgw826/A+yIUSiLCKDYHJHNFVnpGR+PPZWV7UKMPOIIHK6koPfwNPROT9eydekLL2L3li1tbNm869CkJOyt2oG9VdVge6yCylBA+AL1x1dfY/6DOaHkSVsHsvIb7DYWFiL/jrt1Y0oYdpw29MWnpGgw6RUG1cr33u9QE1/Pnsh+/FH0zcrk0k1nUr7CURmqo3G//0knIW4w54vIW0kx54yzsWdb50MAl3ImjawCiu0fX/NpHthzu9bFd8ghGDDmFAw89VT0HjGcq5csS239+RdsWfYTKoqKUbNxo1aPbXk55tzxGpC8RWfI+9VRQLEtrD9NfU03nvihQ5F262Qcnsrecs9X2N0eu+sLVQkWqDWf5aHsszxs/Wl5mxCiEvvCP3Ei+p96snbbH6rieKCMbvl9UVHIeuA+HDn6RC4N2R3Pl1c2nVULRTELVN22bViQ8zA2lfyo2+0Tnnwc/U8aHYqQ2rSpA9RKR2WogzeL6SnGFt9OeekFLjHZhHXOmX/nshVhZAYoto707Y03o76mpk2X4o4ahKq16zDg1FOQ/dgjIrobsE/HA7Xq/Q+w+Pn/GgZ2xoy3tE35PGVWVjZoYyOPqeU2gQK1a/Nf+Hj8uW36wTLRzvXrNZi6R0fjtKlTTM0nLQ9Ob/sKwSpHZahVs3Ox+LnnDWMP5En63Annoba8wtCnCINAgWq91BE7aBBOeOJRFN57vwYTK+wObMApJ4voqimfOhnKvne98Ow2YEeC2NEgo8IeEYx+9mkjM+3z5tO0XMYWGwUCVOsTLGxPOJsnrsnLa1modBpMTCrHA1U291MsfEJ/f0/rax15eDwm5H3KdfnZ6Vo2LwlFCQQo1r+550zUvudp99ZKNOza1dLlQDKynXHqbF/5zVFD3pq8/6H4kccMNWELcOdzno7tSkMeWyYofvTxlvgP6Z2Av113LQaNa3rU4rSik6F+dxRQbG802yNtVKL7JWL8nFwjM+3z3NPGYW91NZet1UaBZijWfvn8Bahe/6c28WYr3mzx0qnF8UDxPi5hi5unT5vKpXNXusvjCshBRjpAlTkqQ63/9jsU3veAoWS8cwr29P3zS68w9CfKwEyGEtUXEX4dD9SGefkouOdew9jPfn8W2G21UVkx4x0sfeVVIzNhn7sQqDWOylAbfyhE/p36T9Obrzpbh2G30Dyl4K57sKHgBx5TITYuBGqto4AqLyrCvNs6/uaQQGBihHx01njs3rpVCCw8Tt0GFAGcBRQ7FvXd5APHqpsvGlvoGzTudKRcdinPddRseJcguB2aMHQbUGyzrKMy1ObFpVid+yGiE/uiZ/zhiDg0Dj3i4rSdh4F+q63e6Q8TTARVxW1AUeAPRwEV1NVrVZkd/vyBY3JvVXsd+XEbUCRcgZr3rzu1BcJQF7cBBWB92GUotv2FbYNxQnEdUCTMgGLvPTF7Hk0EgK4DCvgzbDKU02BigLoNKAq6ocsDtW/PHnx742TtoKPTSkdAOSmL8mjW0dcCtX95EOnaQLGJ96Knnml3gJFHJDtsOgIqlJv+zMTd0eZInWd5G7tchmLn9zcWzseGgkKwg49OLm4DigLljgKq9csEDwZlR1mZ9n3c7D1xXaW4DSi2nctxQHW1+UVncLsOKIoKCZTAdOc6oIBNEigJlKECAUzKJVCGagZh4LZlAwpslhkqCGCMqrptYRMSKCMkgvvchUD9JTNUcMx0WtuFQG2RQEmgTCugs1IugTKtJkdFt03KQbFVZigOMMyauG8dilZKoMzSwlHPfUARCRQHF6ZN3AcUtskMZRoX44oSKGONTFvwfOGYE3ddmg64kx2b4bofigDbZYYKhhiDui7MUDskUCEAin39YVcqCWnDdLursw4lgRJ5YV24Ul5lW4YadvONiIhrOlredMT8UETExbb5hja3zKFEQmynb50MVW0bUJ0FykCLYC+ujotr9xoKOwWyui23ZSgCOAMoqy+kU/y5DSgAOx2RoZwCgNX96Owuz+q2RPobM+Vl3km5BErkhXDhskGNzFACiXIhULUSKAmUoQK8hxQIIIEyVDMIAxdmqF0yQwUBjFFVtwFFgd0SKCMqgvjcbUBBAhUELRxVXbgOtUdmKA4wzJq4DSgCSKDMwsJTz21AAaiTGYqHDJM2bgOKUuyVQJmEhaea24ACJFA8XLjehndhE0C9zFCux8VYgACAapBAGevpegsJlOsRsFaAAIDaJzOUtdqHpbcAgGqUQIUlAtYGJYGyVk/Xe+MGilJVZiiBuLhwHUoCJZAn1708CACVGUogUS7MUJBASaBMK6Bz0FMCZVpNjooyQ3GIJE34FZBA8WslLTkUkEBxiCRN+BWQQPFrJS05FJBAcYgkTfgVcCFQpXLZgJ8PaWmkAMVrEigjkeTn3ApQ4J8SKG65pGFnChBgxcUlxSkSKMmJFQrUAfTJSSULH5JAWSGnO31UAcgH6DJvY8MrF5aWVjIZyIyMrEmgqp+A+AEkAWC/I9ypkdVR0xyoKLDaayj8Ea+3TiWN1T6vt7qhpqb6kuXLd+n1gxz8j9NHjhzoVYkflPgJVD8I+02SKOiRoQika7dJc9gw0LVjCKz37YDSqz57yJDueyJjhxIv8ROq+gEGWVM2o0BUYE26yVoCFdDVnpaRkRBBvUObIQOBBhoFjgrIUdgaS6AsubQzh4/yw0tT2NyMZTOKJtAAHGpJA13GiQRK2KX6LC0tcofPpxAVCpufsWzW6iZAWLuhdSyBsl3/tzMzEz37oIBAaZqTUe0mAMARtnfG8gYlUJZLatbhuyNGDd3noQpUmgoP/KAtw6bPrE/760mg7Nc8gBbfyciIaQRSPSpRQDwKhXrs/myWGIAbG00lUDaKbV1Ts47LGkB9VBs2VZWmEkKO3T8/i7SuFTOeJFBmVHNknRzAMzj9eIUSNZVQyuZn7CcZwAD7OiyBsk/rELU0OzOz194Gmko8TTcClHoUAppMgVjruySBsl7TLuLxrbSswV5v07AJitT9GY0tbQRRJFBBiBd+Vdkjp4boaEVVvakgVCFaRtOGzgS+aN0H1P8Bsc7nGJl4EGkAAAAASUVORK5CYII='
|
|
89615
90102
|
});
|
|
89616
90103
|
// EXTERNAL MODULE: external "js-base64"
|
|
89617
|
-
var external_js_base64_ = __webpack_require__(
|
|
90104
|
+
var external_js_base64_ = __webpack_require__(19);
|
|
89618
90105
|
|
|
89619
90106
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=script&lang=js&
|
|
89620
90107
|
var upload_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
@@ -91260,7 +91747,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
91260
91747
|
}
|
|
91261
91748
|
|
|
91262
91749
|
/* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
|
|
91263
|
-
version: '0.6.
|
|
91750
|
+
version: '0.6.78',
|
|
91264
91751
|
install: install,
|
|
91265
91752
|
Button: packages_button,
|
|
91266
91753
|
ButtonGroup: button_group,
|