eoss-ui 0.8.23 → 0.8.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/button-group.js +228 -231
- package/lib/button.js +166 -153
- package/lib/calendar.js +2 -2
- package/lib/calogin.js +393 -379
- package/lib/card.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +162 -148
- package/lib/clients.js +2 -2
- package/lib/config/api.js +5 -0
- package/lib/data-table-form.js +162 -148
- package/lib/data-table.js +165 -151
- package/lib/date-picker.js +159 -146
- package/lib/dialog.js +166 -153
- package/lib/enable-drag.js +2 -2
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +1362 -891
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +159 -146
- package/lib/flow-list.js +174 -161
- package/lib/flow.js +501 -487
- package/lib/form.js +161 -148
- package/lib/handle-user.js +160 -147
- package/lib/handler.js +160 -147
- package/lib/icon.js +160 -147
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +159 -146
- package/lib/input.js +159 -146
- package/lib/label.js +2 -2
- package/lib/layout.js +2 -2
- package/lib/login.js +174 -160
- package/lib/main.js +523 -509
- package/lib/menu.js +2 -2
- package/lib/nav.js +159 -146
- package/lib/notify.js +157 -148
- package/lib/page.js +159 -146
- package/lib/pagination.js +159 -146
- package/lib/player.js +164 -151
- package/lib/qr-code.js +174 -161
- package/lib/radio-group.js +161 -148
- package/lib/retrial-auth.js +163 -150
- package/lib/select-ganged.js +161 -148
- package/lib/select.js +161 -148
- package/lib/selector-panel.js +178 -164
- package/lib/selector.js +161 -148
- package/lib/sizer.js +168 -155
- package/lib/steps.js +159 -146
- package/lib/switch.js +159 -146
- package/lib/table-form.js +159 -146
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +159 -146
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/tips.js +160 -147
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +159 -146
- package/lib/tree.js +160 -147
- package/lib/upload.js +698 -223
- package/lib/utils/util.js +5 -1
- package/lib/wujie.js +159 -146
- package/lib/wxlogin.js +159 -146
- package/package.json +2 -1
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/calendar/index.js +5 -5
- package/packages/calogin/index.js +5 -5
- package/packages/calogin/src/plugin.js +915 -915
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +46 -46
- package/packages/data-table/src/main.vue +1876 -1876
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enable-drag/index.js +5 -5
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/Circulate.vue +420 -420
- package/packages/flow/src/component/CustomPreset.vue +324 -324
- package/packages/flow/src/component/FreeCirculation.vue +245 -245
- package/packages/flow/src/component/Preset.vue +257 -257
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +763 -763
- package/packages/flow/src/freeStartFlow.vue +2898 -2898
- package/packages/flow/src/main.vue +4248 -4248
- package/packages/flow/src/processForm.vue +1806 -1806
- package/packages/flow/src/processReject.vue +311 -311
- package/packages/flow/src/reset.vue +952 -952
- package/packages/flow/src/startTaskRead.vue +698 -698
- package/packages/flow/src/supervise.vue +162 -162
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +750 -750
- package/packages/flow-list/index.js +5 -5
- package/packages/form/index.js +5 -5
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +137 -137
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +499 -499
- package/packages/icon/index.js +5 -5
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +2088 -2088
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +513 -513
- package/packages/main/src/simplicity/index.vue +2403 -2403
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/userinfo.vue +408 -408
- package/packages/main/src/simplicityTop/index.vue +2688 -2688
- package/packages/main/src/simplicityTop/userinfo.vue +408 -408
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +597 -597
- package/packages/nav/index.js +5 -5
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +299 -299
- package/packages/select/index.js +5 -5
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/index.js +5 -5
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +257 -257
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/gulpfile.js +25 -0
- package/packages/theme-chalk/src/base.scss +261 -261
- package/packages/theme-chalk/src/button-group.scss +176 -176
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enable-drag.scss +181 -181
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow.scss +376 -376
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +111 -111
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +7 -5
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1813 -1345
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +356 -351
- package/src/config/image.js +2 -2
- package/src/index.js +1 -1
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/store.js +21 -21
- package/src/utils/util.js +6 -1
- package/src/utils/webSocket.js +107 -107
- package/packages/theme-chalk/lib/base.css +0 -1
- package/packages/theme-chalk/lib/button-group.css +0 -1
- package/packages/theme-chalk/lib/button.css +0 -1
- package/packages/theme-chalk/lib/calendar.css +0 -1
- package/packages/theme-chalk/lib/calogin.css +0 -0
- package/packages/theme-chalk/lib/card.css +0 -1
- package/packages/theme-chalk/lib/cascader.css +0 -0
- package/packages/theme-chalk/lib/checkbox-group.css +0 -1
- package/packages/theme-chalk/lib/clients.css +0 -1
- package/packages/theme-chalk/lib/data-table-form.css +0 -1
- package/packages/theme-chalk/lib/data-table.css +0 -1
- package/packages/theme-chalk/lib/date-picker.css +0 -1
- package/packages/theme-chalk/lib/dialog.css +0 -1
- package/packages/theme-chalk/lib/enable-drag.css +0 -1
- package/packages/theme-chalk/lib/enterprise.css +0 -1
- package/packages/theme-chalk/lib/error-page.css +0 -1
- package/packages/theme-chalk/lib/flow-chart.css +0 -0
- package/packages/theme-chalk/lib/flow-group.css +0 -1
- package/packages/theme-chalk/lib/flow-list.css +0 -1
- package/packages/theme-chalk/lib/flow.css +0 -1
- package/packages/theme-chalk/lib/fonts/iconfont.ttf +0 -0
- package/packages/theme-chalk/lib/fonts/iconfont.woff +0 -0
- package/packages/theme-chalk/lib/form.css +0 -1
- package/packages/theme-chalk/lib/handle-user.css +0 -1
- package/packages/theme-chalk/lib/handler.css +0 -1
- package/packages/theme-chalk/lib/icon.css +0 -1
- package/packages/theme-chalk/lib/icons.css +0 -1
- package/packages/theme-chalk/lib/index.css +0 -1
- package/packages/theme-chalk/lib/input-number.css +0 -0
- package/packages/theme-chalk/lib/input.css +0 -1
- package/packages/theme-chalk/lib/label.css +0 -1
- package/packages/theme-chalk/lib/layout.css +0 -1
- package/packages/theme-chalk/lib/login.css +0 -1
- package/packages/theme-chalk/lib/main.css +0 -1
- package/packages/theme-chalk/lib/menu.css +0 -1
- package/packages/theme-chalk/lib/nav.css +0 -1
- package/packages/theme-chalk/lib/notify.css +0 -0
- package/packages/theme-chalk/lib/page.css +0 -1
- package/packages/theme-chalk/lib/pagination.css +0 -1
- package/packages/theme-chalk/lib/player.css +0 -1
- package/packages/theme-chalk/lib/qr-code.css +0 -1
- package/packages/theme-chalk/lib/radio-group.css +0 -1
- package/packages/theme-chalk/lib/retrial-auth.css +0 -1
- package/packages/theme-chalk/lib/select-ganged.css +0 -1
- package/packages/theme-chalk/lib/select.css +0 -1
- package/packages/theme-chalk/lib/selector-panel.css +0 -1
- package/packages/theme-chalk/lib/selector.css +0 -1
- package/packages/theme-chalk/lib/simplicity-top.css +0 -1
- package/packages/theme-chalk/lib/simplicity.css +0 -1
- package/packages/theme-chalk/lib/sizer.css +0 -1
- package/packages/theme-chalk/lib/steps.css +0 -1
- package/packages/theme-chalk/lib/switch.css +0 -1
- package/packages/theme-chalk/lib/table-form.css +0 -0
- package/packages/theme-chalk/lib/tabs-panel.css +0 -0
- package/packages/theme-chalk/lib/tabs.css +0 -1
- package/packages/theme-chalk/lib/tips.css +0 -1
- package/packages/theme-chalk/lib/toolbar.css +0 -1
- package/packages/theme-chalk/lib/tree-group.css +0 -1
- package/packages/theme-chalk/lib/tree.css +0 -1
- package/packages/theme-chalk/lib/upload.css +0 -1
- package/packages/theme-chalk/lib/wujie.css +0 -0
- package/packages/theme-chalk/lib/wxlogin.css +0 -1
package/lib/flow.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 = 37);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ([
|
|
@@ -540,7 +540,11 @@ var util_ajax = function ajax(_ref) {
|
|
|
540
540
|
}
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
|
-
|
|
543
|
+
var isFormData = typeof FormData !== 'undefined' && data instanceof FormData;
|
|
544
|
+
if (isFormData) {
|
|
545
|
+
// FormData(如分片上传):不做序列化,也不强制 content-type,
|
|
546
|
+
// 交给浏览器/axios 自动设置 multipart/form-data 及 boundary
|
|
547
|
+
} else if (method === 'post' && format) {
|
|
544
548
|
data = external_qs_default.a.stringify(data, formatConfig);
|
|
545
549
|
if (!header['content-type'] && !header['Content-Type']) {
|
|
546
550
|
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
@@ -1704,7 +1708,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1704
1708
|
* @param {function} callback - 回调函数
|
|
1705
1709
|
**/
|
|
1706
1710
|
var util_getMainConfig = function getMainConfig(callback) {
|
|
1707
|
-
util_ajax({ url: api["
|
|
1711
|
+
util_ajax({ url: api["Db" /* mainConfig */] }).then(function (res) {
|
|
1708
1712
|
if (res && res.rCode === 0) {
|
|
1709
1713
|
callback(res.results);
|
|
1710
1714
|
}
|
|
@@ -2530,7 +2534,7 @@ var isLogined = function () {
|
|
|
2530
2534
|
break;
|
|
2531
2535
|
}
|
|
2532
2536
|
|
|
2533
|
-
util_ajax({ method: 'post', url: api["
|
|
2537
|
+
util_ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
2534
2538
|
if (res.rCode === 0) {
|
|
2535
2539
|
removeStorage();
|
|
2536
2540
|
}
|
|
@@ -3999,171 +4003,175 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
3999
4003
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4000
4004
|
|
|
4001
4005
|
"use strict";
|
|
4002
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4003
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4004
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4005
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4006
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4007
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4006
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doCaLogin; });
|
|
4007
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return doUserLogin; });
|
|
4008
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return doQrLogin; });
|
|
4009
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return logout; });
|
|
4010
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return initLogin; });
|
|
4011
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return switchUserTo; });
|
|
4008
4012
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return changeImg; });
|
|
4009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4010
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getLoginCode; });
|
|
4014
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return doCodeLogin; });
|
|
4011
4015
|
/* unused harmony export updateCode */
|
|
4012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4013
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getModifyPassCode; });
|
|
4017
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return codeModifyPass; });
|
|
4018
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return loginModifyPassword; });
|
|
4015
4019
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
4016
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4017
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4018
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4019
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4020
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4021
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4022
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4023
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4024
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4025
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4026
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4027
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4028
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4029
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4030
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return initModifyPassword; });
|
|
4021
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return doWechatQrLogin; });
|
|
4022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return getTwoFactorLoginCode; });
|
|
4023
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return doTwoFactorLogin; });
|
|
4024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return initRetrialAuth; });
|
|
4025
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getRetrialAuthCode; });
|
|
4026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return scanCodeRetrialAuth; });
|
|
4027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return codeRetrialAuth; });
|
|
4028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doAssistanceQrLogin; });
|
|
4029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tc", function() { return userOnline; });
|
|
4030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return getUserAppWithTag; });
|
|
4031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return recordUserApp; });
|
|
4032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return mainConfig; });
|
|
4033
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return initUserSet; });
|
|
4034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Oc", function() { return updateUserInfo; });
|
|
4031
4035
|
/* unused harmony export getUserImgUrl */
|
|
4032
4036
|
/* unused harmony export getDoorIndex */
|
|
4033
4037
|
/* unused harmony export refreshOnlineUsers */
|
|
4034
4038
|
/* unused harmony export getQuickMenuIds */
|
|
4035
4039
|
/* unused harmony export getApplicationIdArray */
|
|
4036
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4037
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4040
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getComplexApplications; });
|
|
4041
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getComplexApplicationsNew; });
|
|
4038
4042
|
/* unused harmony export getUserCustomInfo */
|
|
4039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4040
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4041
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4042
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4043
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4044
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4045
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4046
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4047
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4048
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4049
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4050
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4051
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4052
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4053
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4054
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4055
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nc", function() { return updateUserCustomInfo; });
|
|
4044
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return sysMsgPage; });
|
|
4045
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return ignoreSysMsg; });
|
|
4046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return ignoreAllSysMsg; });
|
|
4047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return searchType; });
|
|
4048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return getSysParam; });
|
|
4049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getAdjunctProperties; });
|
|
4050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sc", function() { return uploads; });
|
|
4051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qc", function() { return uploadOnlyOne; });
|
|
4052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getAdjunctFileInfos; });
|
|
4053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rc", function() { return uploadSort; });
|
|
4054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return downloadByAdjunctId; });
|
|
4055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pc", function() { return uploadDownloads; });
|
|
4056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return previewAdjunct; });
|
|
4057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return previewAdjunct2; });
|
|
4058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return previewAdjunctOffice; });
|
|
4059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return delAdjunct; });
|
|
4060
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return chunkCheckFile; });
|
|
4061
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return chunkUploadChunk; });
|
|
4062
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return chunkMergeChunk; });
|
|
4063
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getDochubBucket; });
|
|
4056
4064
|
/* unused harmony export upload_updateClassify */
|
|
4057
4065
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
4058
4066
|
/* unused harmony export getPictureBase64 */
|
|
4059
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4060
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4061
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4062
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4063
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4064
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4067
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return getSelectorOrgTree; });
|
|
4068
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return getSelectorOrgDetail; });
|
|
4069
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getOrgMainTree; });
|
|
4070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return getSelectOrgsubids; });
|
|
4071
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return findSysCode; });
|
|
4072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getDictList; });
|
|
4065
4073
|
/* unused harmony export findUserBaseInfo */
|
|
4066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return gethelpdoc; });
|
|
4067
4075
|
/* unused harmony export getCurrentuser */
|
|
4068
4076
|
/* unused harmony export mainDetail */
|
|
4069
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4070
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4071
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4077
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return toStartFlow; });
|
|
4078
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return tempSave; });
|
|
4079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return commonOpion; });
|
|
4072
4080
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
4073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4074
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4075
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4076
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4077
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4078
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4079
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4080
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4081
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4082
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4083
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4084
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return editCommonOpion; });
|
|
4082
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return saveCommonOpinion; });
|
|
4083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mc", function() { return updateCommonOpinion; });
|
|
4084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return deleteCommonOpion; });
|
|
4085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getProcessDefList; });
|
|
4086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getNodeInfo; });
|
|
4087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return findCodeValues; });
|
|
4088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return findSysParam; });
|
|
4089
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return findSysCodes; });
|
|
4090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getNotificationMsg; });
|
|
4091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getHandleInfoHtml; });
|
|
4092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return taskHandleHtml; });
|
|
4085
4093
|
/* unused harmony export getView */
|
|
4086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4087
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4088
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4089
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4090
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4091
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4092
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4093
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4094
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4095
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4096
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4097
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4098
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4099
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4100
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4101
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4102
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4103
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4104
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4105
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4106
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return register; });
|
|
4095
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return pendedhistoryList; });
|
|
4096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return toTaskRejectHtml; });
|
|
4097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return taskRejectHtml; });
|
|
4098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return toStartTaskRead; });
|
|
4099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return toStartTaskReadIndex; });
|
|
4100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return taskReadHtml; });
|
|
4101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return rejectAndEnd; });
|
|
4102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return toSendMsg; });
|
|
4103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return sendMsg; });
|
|
4104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return endFlowHtml; });
|
|
4105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return handleInfo; });
|
|
4106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return loginUserInfo; });
|
|
4107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Uc", function() { return wss; });
|
|
4108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kc", function() { return topic; });
|
|
4109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getPresetCustomInfo; });
|
|
4110
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getPresetNodeInfo; });
|
|
4111
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gc", function() { return toTaskTransferIndex; });
|
|
4112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return taskTransfer; });
|
|
4113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return toPresetInfoListIndex; });
|
|
4114
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return deletePresetInfo; });
|
|
4107
4115
|
/* unused harmony export historyListJson */
|
|
4108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4109
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4111
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4112
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4113
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4114
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4115
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4117
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4118
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4119
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4120
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4121
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4122
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4123
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4124
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4125
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4126
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4127
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4128
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4129
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4130
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4131
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4132
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return pendedhistoryListJson; });
|
|
4117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return pressListJson; });
|
|
4118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return deleteFlow; });
|
|
4119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return modifyFlow; });
|
|
4120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return isCanStartSubFlow; });
|
|
4121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hc", function() { return toTaskUnionExamine; });
|
|
4122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return taskUnionExamine; });
|
|
4123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fc", function() { return toTaskTakeAdvice; });
|
|
4124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return taskTakeAdvice; });
|
|
4125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return toTaskStartDraft; });
|
|
4126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return toTaskSupervise; });
|
|
4127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ec", function() { return toTaskSuperviseSub; });
|
|
4128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return taskStartDraft; });
|
|
4129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return toTaskReview; });
|
|
4130
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return taskReview; });
|
|
4131
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ic", function() { return toTaskUnionSeal; });
|
|
4132
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return taskUnionSeal; });
|
|
4133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jc", function() { return toTwoOfficesDispatch; });
|
|
4134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lc", function() { return twoOfficesDispatch; });
|
|
4135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return toResetProcessIndex; });
|
|
4136
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return resetProcess; });
|
|
4137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return toTaskContinuationIndex; });
|
|
4138
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return taskContinuation; });
|
|
4139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getFreeStartFlowParams; });
|
|
4140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return freeStartFlowWithSubmitTask; });
|
|
4133
4141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return checkForeignOrgStartedCircularRead; });
|
|
4134
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4135
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4136
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4137
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4138
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return pendedhistoryListWithCircularReadJson; });
|
|
4143
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return fyListJson; });
|
|
4144
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return resetJson; });
|
|
4145
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return deletedListJson; });
|
|
4146
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return restoredHistory; });
|
|
4139
4147
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return batchDelete; });
|
|
4140
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4141
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4142
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4148
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return circularReadWithdraw; });
|
|
4149
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return taskReadWithDraw; });
|
|
4150
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
|
|
4143
4151
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkBusinessIdStartedReadTransferHandle; });
|
|
4144
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4145
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4152
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return sendList; });
|
|
4153
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return sendInfo; });
|
|
4146
4154
|
/* unused harmony export sendSave */
|
|
4147
4155
|
/* unused harmony export sendUpdate */
|
|
4148
4156
|
/* unused harmony export sendDelete */
|
|
4149
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4150
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4151
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4152
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4153
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4154
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4155
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4156
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4157
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4158
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4159
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4161
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4162
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4163
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4164
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4165
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4166
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4157
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return sendBatch; });
|
|
4158
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return formContents; });
|
|
4159
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return directStartTaskCircularRead; });
|
|
4160
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return endFlowAndStartTaskCircularRead; });
|
|
4161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getNodeInfoForStart; });
|
|
4162
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return freeStartFlow; });
|
|
4163
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return getUrgencyLevelChangedNotificationType; });
|
|
4164
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toFreeTaskCircularRead; });
|
|
4165
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return isCancelSecondConfirmation; });
|
|
4166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return freeTaskCircularRead; });
|
|
4167
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toDefinitionChangeSort; });
|
|
4168
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return setSort; });
|
|
4169
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return queryUseCommonMenu; });
|
|
4170
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getIndexCount; });
|
|
4171
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return getVoteMeetingNum; });
|
|
4172
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return getUserTipsInstanceNum; });
|
|
4173
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return getShareFilesReceiveCountNew; });
|
|
4174
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return queryChildMenuUrl; });
|
|
4167
4175
|
var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
|
|
4168
4176
|
// 登录
|
|
4169
4177
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -4228,6 +4236,11 @@ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
|
|
|
4228
4236
|
var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
|
|
4229
4237
|
var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
|
|
4230
4238
|
var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
|
|
4239
|
+
// 分片上传(dochub v2),优先使用 dochubConfig 下发的同名 url,这里仅作兜底
|
|
4240
|
+
var chunkCheckFile = '/dochub/v2/chunk/checkFile'; // 秒传检测/断点续传查询
|
|
4241
|
+
var chunkUploadChunk = '/dochub/v2/chunk/uploadChunk'; // 上传单个分片
|
|
4242
|
+
var chunkMergeChunk = '/dochub/v2/chunk/mergeChunk'; // 合并分片并写入文档库
|
|
4243
|
+
var getDochubBucket = '/dochub/v2/getBucket'; // 根据桶编码获取文档中台桶配置(含分片上传开关/参数)
|
|
4231
4244
|
var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
|
|
4232
4245
|
var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
|
|
4233
4246
|
var getPictureBase64 = '/main2/mecpfileManagement/getPictureBase64'; // 获取图片的base64编码
|
|
@@ -4755,7 +4768,7 @@ var util = __webpack_require__(0);
|
|
|
4755
4768
|
|
|
4756
4769
|
var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
|
|
4757
4770
|
var params = {
|
|
4758
|
-
url: util["a" /* default */].getStorage('dochubConfig') ? JSON.parse(util["a" /* default */].getStorage('dochubConfig')).deleteDocumentUrl : api["
|
|
4771
|
+
url: util["a" /* default */].getStorage('dochubConfig') ? JSON.parse(util["a" /* default */].getStorage('dochubConfig')).deleteDocumentUrl : api["n" /* delAdjunct */],
|
|
4759
4772
|
params: { userName: userName, id: file.adjunctId || file.response.adjunctId, ownId: this.ownId, businessId: this.ownId, bucketCode: this.code, documentId: file.adjunctId || file.response.adjunctId }
|
|
4760
4773
|
};
|
|
4761
4774
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -4827,14 +4840,15 @@ module.exports = require("vuedraggable");
|
|
|
4827
4840
|
/* 33 */,
|
|
4828
4841
|
/* 34 */,
|
|
4829
4842
|
/* 35 */,
|
|
4830
|
-
/* 36
|
|
4843
|
+
/* 36 */,
|
|
4844
|
+
/* 37 */
|
|
4831
4845
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4832
4846
|
|
|
4833
4847
|
"use strict";
|
|
4834
4848
|
// ESM COMPAT FLAG
|
|
4835
4849
|
__webpack_require__.r(__webpack_exports__);
|
|
4836
4850
|
|
|
4837
|
-
// 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=
|
|
4851
|
+
// 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=accd59de&
|
|
4838
4852
|
var render = function () {
|
|
4839
4853
|
var _vm = this
|
|
4840
4854
|
var _h = _vm.$createElement
|
|
@@ -7918,7 +7932,7 @@ var staticRenderFns = []
|
|
|
7918
7932
|
render._withStripped = true
|
|
7919
7933
|
|
|
7920
7934
|
|
|
7921
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
7935
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=accd59de&
|
|
7922
7936
|
|
|
7923
7937
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
7924
7938
|
var regenerator_ = __webpack_require__(4);
|
|
@@ -8527,7 +8541,7 @@ var util = __webpack_require__(0);
|
|
|
8527
8541
|
|
|
8528
8542
|
this.loading = true;
|
|
8529
8543
|
util["a" /* default */].ajax({
|
|
8530
|
-
url: id ? api["
|
|
8544
|
+
url: id ? api["B" /* editCommonOpion */] : api["a" /* addCommonOpion */],
|
|
8531
8545
|
params: { id: id }
|
|
8532
8546
|
}).then(function (res) {
|
|
8533
8547
|
var status = res.status,
|
|
@@ -8806,7 +8820,7 @@ var _components;
|
|
|
8806
8820
|
var _this = this;
|
|
8807
8821
|
|
|
8808
8822
|
util["a" /* default */].ajax({
|
|
8809
|
-
url: api["
|
|
8823
|
+
url: api["m" /* commonOpion */],
|
|
8810
8824
|
params: {
|
|
8811
8825
|
userId: util["a" /* default */].getStorage('userId')
|
|
8812
8826
|
},
|
|
@@ -8853,7 +8867,7 @@ var _components;
|
|
|
8853
8867
|
|
|
8854
8868
|
var that = this;
|
|
8855
8869
|
util["a" /* default */].ajax({
|
|
8856
|
-
url: api["
|
|
8870
|
+
url: api["H" /* findSysParam */],
|
|
8857
8871
|
params: { cpName: 'commonOpinionsSelectType' }
|
|
8858
8872
|
}).then(function (res) {
|
|
8859
8873
|
if (res.status == 'success') {
|
|
@@ -8882,7 +8896,7 @@ var _components;
|
|
|
8882
8896
|
}).then(function () {
|
|
8883
8897
|
_this3.loading = util["a" /* default */].loading(_this3.$loading, '删除中...');
|
|
8884
8898
|
util["a" /* default */].ajax({
|
|
8885
|
-
url: api["
|
|
8899
|
+
url: api["o" /* deleteCommonOpion */],
|
|
8886
8900
|
params: {
|
|
8887
8901
|
id: val.id
|
|
8888
8902
|
}
|
|
@@ -8931,7 +8945,7 @@ var _components;
|
|
|
8931
8945
|
}
|
|
8932
8946
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
8933
8947
|
util["a" /* default */].ajax({
|
|
8934
|
-
url: data.id ? api["
|
|
8948
|
+
url: data.id ? api["Mc" /* updateCommonOpinion */] : api["Ub" /* saveCommonOpinion */],
|
|
8935
8949
|
data: info,
|
|
8936
8950
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
8937
8951
|
method: 'post'
|
|
@@ -10204,7 +10218,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
10204
10218
|
classify: true,
|
|
10205
10219
|
newOptions: [],
|
|
10206
10220
|
newSelectUserList: [],
|
|
10207
|
-
url: api["
|
|
10221
|
+
url: api["rb" /* handleInfo */],
|
|
10208
10222
|
newCheckboxList: [],
|
|
10209
10223
|
newPresetEdit: 0,
|
|
10210
10224
|
newMultiple: false,
|
|
@@ -10334,7 +10348,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
10334
10348
|
if (query !== '') {
|
|
10335
10349
|
this.searchLoading = true;
|
|
10336
10350
|
util["a" /* default */].ajax({
|
|
10337
|
-
url: api["
|
|
10351
|
+
url: api["rb" /* handleInfo */],
|
|
10338
10352
|
params: { searchKey: query, query: query, type: 'user' }
|
|
10339
10353
|
}).then(function (res) {
|
|
10340
10354
|
var status = res.status,
|
|
@@ -10767,7 +10781,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
10767
10781
|
nextNodeId: nodeId,
|
|
10768
10782
|
businessId: this.id
|
|
10769
10783
|
};
|
|
10770
|
-
util["a" /* default */].ajax({ url: api["
|
|
10784
|
+
util["a" /* default */].ajax({ url: api["Y" /* getNodeInfo */], params: params }).then(function (res) {
|
|
10771
10785
|
var status = res.status,
|
|
10772
10786
|
message = res.message,
|
|
10773
10787
|
_res$data = res.data,
|
|
@@ -10865,7 +10879,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
10865
10879
|
|
|
10866
10880
|
isNoStart && (this.newPresetList = []);
|
|
10867
10881
|
var params = {
|
|
10868
|
-
url: api["
|
|
10882
|
+
url: api["cb" /* getPresetCustomInfo */],
|
|
10869
10883
|
data: {
|
|
10870
10884
|
nodeId: nodeId,
|
|
10871
10885
|
processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
|
|
@@ -11222,7 +11236,7 @@ var Presetvue_type_script_lang_js_components;
|
|
|
11222
11236
|
nodeId = this.nodeId;
|
|
11223
11237
|
|
|
11224
11238
|
var params = {
|
|
11225
|
-
url: api["
|
|
11239
|
+
url: api["db" /* getPresetNodeInfo */],
|
|
11226
11240
|
data: {
|
|
11227
11241
|
nextNodeId: nextNodeId,
|
|
11228
11242
|
processDefinitionId: processDefinitionId,
|
|
@@ -12107,7 +12121,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12107
12121
|
this.foreignOrgSelectorParams.nofilid = this.userModel.orgId;
|
|
12108
12122
|
this.foreignOrgSelectorParams.roleid = this.currentOrgSelectorParams.roleid = this.selectorParams.roleid;
|
|
12109
12123
|
} else {
|
|
12110
|
-
util["a" /* default */].ajax({ url: api["
|
|
12124
|
+
util["a" /* default */].ajax({ url: api["Bb" /* loginUserInfo */] }).then(function (res) {
|
|
12111
12125
|
var status = res.status,
|
|
12112
12126
|
data = res.data;
|
|
12113
12127
|
|
|
@@ -12286,7 +12300,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12286
12300
|
var _this4 = this;
|
|
12287
12301
|
|
|
12288
12302
|
util["a" /* default */].ajax({
|
|
12289
|
-
url: api["
|
|
12303
|
+
url: api["E" /* findCodeValues */],
|
|
12290
12304
|
params: {
|
|
12291
12305
|
ccCode: 'notification_type',
|
|
12292
12306
|
userId: util["a" /* default */].getStorage('userId')
|
|
@@ -12322,7 +12336,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12322
12336
|
if (!this.showBtn) {
|
|
12323
12337
|
params.openMode = 'samepage';
|
|
12324
12338
|
}
|
|
12325
|
-
util["a" /* default */].ajax({ url: api["
|
|
12339
|
+
util["a" /* default */].ajax({ url: api["ab" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
12326
12340
|
if (res.status === 'success') {
|
|
12327
12341
|
if (!_this5.showBtn) {
|
|
12328
12342
|
_this5.oldMessage = res.message;
|
|
@@ -12467,7 +12481,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12467
12481
|
delete params.businessId;
|
|
12468
12482
|
}
|
|
12469
12483
|
util["a" /* default */].ajax({
|
|
12470
|
-
url: _this6.isFreeStartFlow ? api["
|
|
12484
|
+
url: _this6.isFreeStartFlow ? api["K" /* freeStartFlowWithSubmitTask */] : _this6.formType == 'readTransfer' ? api["cc" /* startReadTransferHandleFlowWithTaskReadEnd */] : _this6.copyHistory ? api["J" /* freeStartFlow */] : api["Pb" /* register */],
|
|
12471
12485
|
method: 'post',
|
|
12472
12486
|
data: params
|
|
12473
12487
|
}).then(function (res) {
|
|
@@ -12578,7 +12592,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12578
12592
|
delete params.businessId;
|
|
12579
12593
|
}
|
|
12580
12594
|
util["a" /* default */].ajax({
|
|
12581
|
-
url: _this6.isFreeStartFlow ? api["
|
|
12595
|
+
url: _this6.isFreeStartFlow ? api["K" /* freeStartFlowWithSubmitTask */] : _this6.formType == 'readTransfer' ? api["cc" /* startReadTransferHandleFlowWithTaskReadEnd */] : _this6.copyHistory ? api["J" /* freeStartFlow */] : api["Pb" /* register */],
|
|
12582
12596
|
method: 'post',
|
|
12583
12597
|
data: params
|
|
12584
12598
|
}).then(function (res) {
|
|
@@ -12620,7 +12634,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12620
12634
|
businessId: this.id,
|
|
12621
12635
|
userId: util["a" /* default */].getStorage('userId')
|
|
12622
12636
|
};
|
|
12623
|
-
util["a" /* default */].ajax({ url: api["
|
|
12637
|
+
util["a" /* default */].ajax({ url: api["Y" /* getNodeInfo */], params: params }).then(function (res) {
|
|
12624
12638
|
var status = res.status,
|
|
12625
12639
|
message = res.message,
|
|
12626
12640
|
_res$data = res.data,
|
|
@@ -12765,7 +12779,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12765
12779
|
var _this8 = this;
|
|
12766
12780
|
|
|
12767
12781
|
util["a" /* default */].ajax({
|
|
12768
|
-
url: api["
|
|
12782
|
+
url: api["G" /* findSysCodes */]
|
|
12769
12783
|
}).then(function (res) {
|
|
12770
12784
|
var status = res.status,
|
|
12771
12785
|
message = res.message;
|
|
@@ -12797,11 +12811,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12797
12811
|
});
|
|
12798
12812
|
},
|
|
12799
12813
|
|
|
12800
|
-
/**
|
|
12801
|
-
* isMultiple
|
|
12802
|
-
* @desc:是否多选
|
|
12803
|
-
* @author liufan
|
|
12804
|
-
* @date 2022年9月13日
|
|
12814
|
+
/**
|
|
12815
|
+
* isMultiple
|
|
12816
|
+
* @desc:是否多选
|
|
12817
|
+
* @author liufan
|
|
12818
|
+
* @date 2022年9月13日
|
|
12805
12819
|
**/
|
|
12806
12820
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
12807
12821
|
var multiple = false;
|
|
@@ -12855,7 +12869,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
12855
12869
|
params.taskAction = 'toStartFlowWithoutTempSave';
|
|
12856
12870
|
}
|
|
12857
12871
|
// 获取节点
|
|
12858
|
-
util["a" /* default */].ajax({ url: api["
|
|
12872
|
+
util["a" /* default */].ajax({ url: api["wc" /* toStartFlow */], params: params }).then(function (res) {
|
|
12859
12873
|
//pc接口返回数据处理
|
|
12860
12874
|
var status = res.status,
|
|
12861
12875
|
message = res.message,
|
|
@@ -13367,7 +13381,7 @@ SendMsgvue_type_template_id_9779cf84_render._withStripped = true
|
|
|
13367
13381
|
notificationType = _sendInfo.notificationType;
|
|
13368
13382
|
|
|
13369
13383
|
var params = {
|
|
13370
|
-
url: api["
|
|
13384
|
+
url: api["ac" /* sendMsg */],
|
|
13371
13385
|
headers: { Accept: 'application/json,text/plain' },
|
|
13372
13386
|
method: 'post',
|
|
13373
13387
|
data: {
|
|
@@ -13429,7 +13443,7 @@ SendMsgvue_type_template_id_9779cf84_render._withStripped = true
|
|
|
13429
13443
|
|
|
13430
13444
|
this.loading = true;
|
|
13431
13445
|
util["a" /* default */].ajax({
|
|
13432
|
-
url: api["
|
|
13446
|
+
url: api["vc" /* toSendMsg */],
|
|
13433
13447
|
params: { pendingId: this.$attrs.pendingId }
|
|
13434
13448
|
}).then(function (res) {
|
|
13435
13449
|
var status = res.status,
|
|
@@ -14274,7 +14288,7 @@ processRejectvue_type_template_id_d881d334_render._withStripped = true
|
|
|
14274
14288
|
var _this = this;
|
|
14275
14289
|
|
|
14276
14290
|
util["a" /* default */].ajax({
|
|
14277
|
-
url: api["
|
|
14291
|
+
url: api["E" /* findCodeValues */],
|
|
14278
14292
|
params: {
|
|
14279
14293
|
ccCode: 'notification_type',
|
|
14280
14294
|
userId: util["a" /* default */].getStorage('userId'),
|
|
@@ -14323,7 +14337,7 @@ processRejectvue_type_template_id_d881d334_render._withStripped = true
|
|
|
14323
14337
|
userId: util["a" /* default */].getStorage('userId'),
|
|
14324
14338
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
14325
14339
|
};
|
|
14326
|
-
util["a" /* default */].ajax({ url: api["
|
|
14340
|
+
util["a" /* default */].ajax({ url: api["jc" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
14327
14341
|
var status = res.status,
|
|
14328
14342
|
message = res.message;
|
|
14329
14343
|
|
|
@@ -14355,7 +14369,7 @@ processRejectvue_type_template_id_d881d334_render._withStripped = true
|
|
|
14355
14369
|
var _this3 = this;
|
|
14356
14370
|
|
|
14357
14371
|
util["a" /* default */].ajax({
|
|
14358
|
-
url: api["
|
|
14372
|
+
url: api["G" /* findSysCodes */]
|
|
14359
14373
|
}).then(function (res) {
|
|
14360
14374
|
var status = res.status,
|
|
14361
14375
|
message = res.message;
|
|
@@ -14389,7 +14403,7 @@ processRejectvue_type_template_id_d881d334_render._withStripped = true
|
|
|
14389
14403
|
isSinglePage: false,
|
|
14390
14404
|
opinion: this.option
|
|
14391
14405
|
};
|
|
14392
|
-
util["a" /* default */].ajax({ url: api["
|
|
14406
|
+
util["a" /* default */].ajax({ url: api["Ac" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
14393
14407
|
_this4.loading = false;
|
|
14394
14408
|
if (res.status === 'success') {
|
|
14395
14409
|
var _res$data = res.data,
|
|
@@ -15186,7 +15200,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15186
15200
|
} else {
|
|
15187
15201
|
params.appId = this.readParams.appId;
|
|
15188
15202
|
}
|
|
15189
|
-
util["a" /* default */].ajax({ url: api["
|
|
15203
|
+
util["a" /* default */].ajax({ url: api["ab" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
15190
15204
|
if (res.status === 'success') {
|
|
15191
15205
|
_this.newsNoice = res.message;
|
|
15192
15206
|
}
|
|
@@ -15205,7 +15219,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15205
15219
|
taskExamine = this.taskExamine;
|
|
15206
15220
|
|
|
15207
15221
|
var params = {
|
|
15208
|
-
url: api["
|
|
15222
|
+
url: api["Gc" /* toTaskTransferIndex */],
|
|
15209
15223
|
params: {
|
|
15210
15224
|
opinion: opinion,
|
|
15211
15225
|
pendingId: pendingId,
|
|
@@ -15331,7 +15345,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15331
15345
|
var _this4 = this;
|
|
15332
15346
|
|
|
15333
15347
|
var params = {
|
|
15334
|
-
url: api["
|
|
15348
|
+
url: api["xc" /* toStartTaskRead */],
|
|
15335
15349
|
params: startTaskReadvue_type_script_lang_js_extends({
|
|
15336
15350
|
pendingId: this.pendingId,
|
|
15337
15351
|
taskAction: this.type
|
|
@@ -15380,7 +15394,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15380
15394
|
var _this6 = this;
|
|
15381
15395
|
|
|
15382
15396
|
util["a" /* default */].ajax({
|
|
15383
|
-
url: api["
|
|
15397
|
+
url: api["E" /* findCodeValues */],
|
|
15384
15398
|
params: {
|
|
15385
15399
|
ccCode: 'fenyue_msg_type',
|
|
15386
15400
|
userId: util["a" /* default */].getStorage('userId')
|
|
@@ -15427,7 +15441,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15427
15441
|
type = this.type;
|
|
15428
15442
|
|
|
15429
15443
|
var params = {
|
|
15430
|
-
url: api["
|
|
15444
|
+
url: api["nc" /* taskTransfer */],
|
|
15431
15445
|
data: {
|
|
15432
15446
|
choiceDeptId: choiceDeptId,
|
|
15433
15447
|
choiceOrgId: choiceOrgId,
|
|
@@ -15530,7 +15544,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15530
15544
|
}
|
|
15531
15545
|
delete _this8.configInfo.taskExamine.taskExamineParam;
|
|
15532
15546
|
util["a" /* default */].ajax({
|
|
15533
|
-
url: api["
|
|
15547
|
+
url: api["hc" /* taskReadHtml */],
|
|
15534
15548
|
params: { taskAction: _this8.type },
|
|
15535
15549
|
headers: {
|
|
15536
15550
|
Accept: 'application/json,text/plain'
|
|
@@ -15569,7 +15583,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
15569
15583
|
|
|
15570
15584
|
this.loading = true;
|
|
15571
15585
|
util["a" /* default */].ajax({
|
|
15572
|
-
url: api["
|
|
15586
|
+
url: api["G" /* findSysCodes */]
|
|
15573
15587
|
}).then(function (res) {
|
|
15574
15588
|
var status = res.status,
|
|
15575
15589
|
message = res.message,
|
|
@@ -16515,7 +16529,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16515
16529
|
if (mainConfig) {
|
|
16516
16530
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
16517
16531
|
} else {
|
|
16518
|
-
util["a" /* default */].ajax({ url: api["
|
|
16532
|
+
util["a" /* default */].ajax({ url: api["Bb" /* loginUserInfo */] }).then(function (res) {
|
|
16519
16533
|
var status = res.status,
|
|
16520
16534
|
data = res.data;
|
|
16521
16535
|
|
|
@@ -16608,7 +16622,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16608
16622
|
var _this2 = this;
|
|
16609
16623
|
|
|
16610
16624
|
util["a" /* default */].ajax({
|
|
16611
|
-
url: api["
|
|
16625
|
+
url: api["E" /* findCodeValues */],
|
|
16612
16626
|
params: {
|
|
16613
16627
|
ccCode: 'notification_type',
|
|
16614
16628
|
userId: util["a" /* default */].getStorage('userId')
|
|
@@ -16638,7 +16652,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16638
16652
|
nodeId: this.nextNode.nextNode,
|
|
16639
16653
|
businessId: this.taskExamine.businessId
|
|
16640
16654
|
};
|
|
16641
|
-
util["a" /* default */].ajax({ url: api["
|
|
16655
|
+
util["a" /* default */].ajax({ url: api["ab" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
16642
16656
|
if (res.status === 'success') {
|
|
16643
16657
|
_this3.nextNode.noticeInfo = res.message;
|
|
16644
16658
|
}
|
|
@@ -16728,7 +16742,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16728
16742
|
}
|
|
16729
16743
|
if (_this4.activeNames != '1') delete params.customPresetUserJson;
|
|
16730
16744
|
util["a" /* default */].ajax({
|
|
16731
|
-
url: _this4.type == 'reset' ? api["
|
|
16745
|
+
url: _this4.type == 'reset' ? api["Sb" /* resetProcess */] : api["fc" /* taskContinuation */],
|
|
16732
16746
|
method: 'post',
|
|
16733
16747
|
data: params
|
|
16734
16748
|
}).then(function (res) {
|
|
@@ -16763,7 +16777,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16763
16777
|
pendingId: this.taskExamine.pendingId,
|
|
16764
16778
|
taskAction: this.type == 'reset' ? 'resetProcess' : this.type == 'continuation' ? 'continuation' : ''
|
|
16765
16779
|
};
|
|
16766
|
-
util["a" /* default */].ajax({ url: api["
|
|
16780
|
+
util["a" /* default */].ajax({ url: api["Y" /* getNodeInfo */], params: params }).then(function (res) {
|
|
16767
16781
|
var status = res.status,
|
|
16768
16782
|
message = res.message,
|
|
16769
16783
|
_res$data = res.data,
|
|
@@ -16867,7 +16881,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16867
16881
|
var _this6 = this;
|
|
16868
16882
|
|
|
16869
16883
|
util["a" /* default */].ajax({
|
|
16870
|
-
url: api["
|
|
16884
|
+
url: api["G" /* findSysCodes */]
|
|
16871
16885
|
}).then(function (res) {
|
|
16872
16886
|
var status = res.status,
|
|
16873
16887
|
message = res.message;
|
|
@@ -16896,11 +16910,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
16896
16910
|
});
|
|
16897
16911
|
},
|
|
16898
16912
|
|
|
16899
|
-
/**
|
|
16900
|
-
* isMultiple
|
|
16901
|
-
* @desc:是否多选
|
|
16902
|
-
* @author liufan
|
|
16903
|
-
* @date 2022年9月13日
|
|
16913
|
+
/**
|
|
16914
|
+
* isMultiple
|
|
16915
|
+
* @desc:是否多选
|
|
16916
|
+
* @author liufan
|
|
16917
|
+
* @date 2022年9月13日
|
|
16904
16918
|
**/
|
|
16905
16919
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
16906
16920
|
var multiple = false;
|
|
@@ -16937,7 +16951,7 @@ var resetvue_type_script_lang_js_components;
|
|
|
16937
16951
|
var _this7 = this;
|
|
16938
16952
|
|
|
16939
16953
|
var params = {
|
|
16940
|
-
url: this.type == 'continuation' ? api["
|
|
16954
|
+
url: this.type == 'continuation' ? api["zc" /* toTaskContinuationIndex */] : api["uc" /* toResetProcessIndex */],
|
|
16941
16955
|
params: resetvue_type_script_lang_js_extends({
|
|
16942
16956
|
appId: this.appId
|
|
16943
16957
|
}, this.flowParams)
|
|
@@ -17670,7 +17684,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17670
17684
|
pendingId = this.pendingId;
|
|
17671
17685
|
|
|
17672
17686
|
var params = {
|
|
17673
|
-
url: api["
|
|
17687
|
+
url: api["kc" /* taskReview */],
|
|
17674
17688
|
data: {
|
|
17675
17689
|
nextUserId: nextOtherOrgObj.join(','),
|
|
17676
17690
|
notificationType: noticeType.join(','),
|
|
@@ -17706,7 +17720,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17706
17720
|
var _this2 = this;
|
|
17707
17721
|
|
|
17708
17722
|
var params = {
|
|
17709
|
-
url: api["
|
|
17723
|
+
url: api["Bc" /* toTaskReview */],
|
|
17710
17724
|
params: { pendingId: this.pendingId }
|
|
17711
17725
|
};
|
|
17712
17726
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -17742,7 +17756,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17742
17756
|
var _this3 = this;
|
|
17743
17757
|
|
|
17744
17758
|
var params = {
|
|
17745
|
-
url: this.type == 'takeAdvice' ? api["
|
|
17759
|
+
url: this.type == 'takeAdvice' ? api["Fc" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Cc" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Ic" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Jc" /* toTwoOfficesDispatch */] : api["Hc" /* toTaskUnionExamine */],
|
|
17746
17760
|
params: { pendingId: this.pendingId },
|
|
17747
17761
|
headers: { Accept: 'application/json,text/plain' }
|
|
17748
17762
|
};
|
|
@@ -17894,7 +17908,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17894
17908
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
17895
17909
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
17896
17910
|
var param = {
|
|
17897
|
-
url: this.type === 'startDraf' ? api["
|
|
17911
|
+
url: this.type === 'startDraf' ? api["lc" /* taskStartDraft */] : this.type == 'unionSeal' ? api["pc" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Lc" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["mc" /* taskTakeAdvice */] : api["oc" /* taskUnionExamine */],
|
|
17898
17912
|
data: {
|
|
17899
17913
|
opinion: opinion,
|
|
17900
17914
|
pendingId: pendingId,
|
|
@@ -17968,7 +17982,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17968
17982
|
var _this5 = this;
|
|
17969
17983
|
|
|
17970
17984
|
util["a" /* default */].ajax({
|
|
17971
|
-
url: api["
|
|
17985
|
+
url: api["E" /* findCodeValues */],
|
|
17972
17986
|
params: {
|
|
17973
17987
|
ccCode: 'notification_type',
|
|
17974
17988
|
userId: util["a" /* default */].getStorage('userId'),
|
|
@@ -17997,7 +18011,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
17997
18011
|
var params = {
|
|
17998
18012
|
pendingId: this.pendingId
|
|
17999
18013
|
};
|
|
18000
|
-
util["a" /* default */].ajax({ url: api["
|
|
18014
|
+
util["a" /* default */].ajax({ url: api["ab" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
18001
18015
|
if (res.status === 'success') {
|
|
18002
18016
|
_this6.infoList.noticeInfo = res.message;
|
|
18003
18017
|
}
|
|
@@ -18013,7 +18027,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
18013
18027
|
var _this7 = this;
|
|
18014
18028
|
|
|
18015
18029
|
util["a" /* default */].ajax({
|
|
18016
|
-
url: api["
|
|
18030
|
+
url: api["G" /* findSysCodes */]
|
|
18017
18031
|
}).then(function (res) {
|
|
18018
18032
|
var status = res.status,
|
|
18019
18033
|
message = res.message;
|
|
@@ -21337,7 +21351,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21337
21351
|
var _this = this;
|
|
21338
21352
|
|
|
21339
21353
|
var params = {
|
|
21340
|
-
url: api["
|
|
21354
|
+
url: api["N" /* getAdjunctFileInfos */],
|
|
21341
21355
|
params: { ownId: ownId, code: code }
|
|
21342
21356
|
};
|
|
21343
21357
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -21425,7 +21439,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21425
21439
|
taskAction: 'complete'
|
|
21426
21440
|
};
|
|
21427
21441
|
util["a" /* default */].ajax({
|
|
21428
|
-
url: api["
|
|
21442
|
+
url: api["hc" /* taskReadHtml */],
|
|
21429
21443
|
params: { taskAction: 'complete' },
|
|
21430
21444
|
headers: {
|
|
21431
21445
|
Accept: 'application/json,text/plain'
|
|
@@ -21457,7 +21471,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21457
21471
|
|
|
21458
21472
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
21459
21473
|
util["a" /* default */].ajax({
|
|
21460
|
-
url: api["
|
|
21474
|
+
url: api["yc" /* toStartTaskReadIndex */],
|
|
21461
21475
|
params: { pendingId: this.pendingId }
|
|
21462
21476
|
}).then(function (res) {
|
|
21463
21477
|
var status = res.status,
|
|
@@ -21493,7 +21507,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21493
21507
|
if (mainConfig) {
|
|
21494
21508
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
21495
21509
|
} else {
|
|
21496
|
-
util["a" /* default */].ajax({ url: api["
|
|
21510
|
+
util["a" /* default */].ajax({ url: api["Bb" /* loginUserInfo */] }).then(function (res) {
|
|
21497
21511
|
var status = res.status,
|
|
21498
21512
|
data = res.data;
|
|
21499
21513
|
|
|
@@ -21528,7 +21542,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21528
21542
|
var _this5 = this;
|
|
21529
21543
|
|
|
21530
21544
|
util["a" /* default */].ajax({
|
|
21531
|
-
url: api["
|
|
21545
|
+
url: api["E" /* findCodeValues */],
|
|
21532
21546
|
params: {
|
|
21533
21547
|
ccCode: 'notification_type',
|
|
21534
21548
|
userId: util["a" /* default */].getStorage('userId'),
|
|
@@ -21548,11 +21562,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21548
21562
|
});
|
|
21549
21563
|
},
|
|
21550
21564
|
|
|
21551
|
-
/**
|
|
21552
|
-
* saveInfo
|
|
21553
|
-
* @desc:暂存
|
|
21554
|
-
* @author liufan
|
|
21555
|
-
* @date 2022年9月9日
|
|
21565
|
+
/**
|
|
21566
|
+
* saveInfo
|
|
21567
|
+
* @desc:暂存
|
|
21568
|
+
* @author liufan
|
|
21569
|
+
* @date 2022年9月9日
|
|
21556
21570
|
**/
|
|
21557
21571
|
saveInfo: function saveInfo(type, btn) {
|
|
21558
21572
|
var _this6 = this;
|
|
@@ -21595,7 +21609,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21595
21609
|
pendingId: this.pendingId
|
|
21596
21610
|
};
|
|
21597
21611
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
21598
|
-
util["a" /* default */].ajax({ url: api["
|
|
21612
|
+
util["a" /* default */].ajax({ url: api["qc" /* tempSave */], params: params }).then(function (res) {
|
|
21599
21613
|
var status = res.status,
|
|
21600
21614
|
message = res.message;
|
|
21601
21615
|
|
|
@@ -21614,11 +21628,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21614
21628
|
});
|
|
21615
21629
|
},
|
|
21616
21630
|
|
|
21617
|
-
/**
|
|
21618
|
-
* rejectBtn
|
|
21619
|
-
* @desc:点击驳回
|
|
21620
|
-
* @author liufan
|
|
21621
|
-
* @date 2022年5月25日
|
|
21631
|
+
/**
|
|
21632
|
+
* rejectBtn
|
|
21633
|
+
* @desc:点击驳回
|
|
21634
|
+
* @author liufan
|
|
21635
|
+
* @date 2022年5月25日
|
|
21622
21636
|
**/
|
|
21623
21637
|
rejectBtn: function rejectBtn() {
|
|
21624
21638
|
var _this8 = this;
|
|
@@ -21636,11 +21650,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21636
21650
|
}
|
|
21637
21651
|
},
|
|
21638
21652
|
|
|
21639
|
-
/**
|
|
21640
|
-
* taskReadBtn
|
|
21641
|
-
* @desc:点击分阅
|
|
21642
|
-
* @author liufan
|
|
21643
|
-
* @date 2022年5月25日
|
|
21653
|
+
/**
|
|
21654
|
+
* taskReadBtn
|
|
21655
|
+
* @desc:点击分阅
|
|
21656
|
+
* @author liufan
|
|
21657
|
+
* @date 2022年5月25日
|
|
21644
21658
|
**/
|
|
21645
21659
|
taskReadBtn: function taskReadBtn() {
|
|
21646
21660
|
var _this9 = this;
|
|
@@ -21659,17 +21673,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21659
21673
|
}
|
|
21660
21674
|
},
|
|
21661
21675
|
|
|
21662
|
-
/**
|
|
21663
|
-
* getFind
|
|
21664
|
-
* @desc:获取通知方式
|
|
21665
|
-
* @author liufan
|
|
21666
|
-
* @date 2022年5月25日
|
|
21676
|
+
/**
|
|
21677
|
+
* getFind
|
|
21678
|
+
* @desc:获取通知方式
|
|
21679
|
+
* @author liufan
|
|
21680
|
+
* @date 2022年5月25日
|
|
21667
21681
|
**/
|
|
21668
21682
|
getFind: function getFind() {
|
|
21669
21683
|
var _this10 = this;
|
|
21670
21684
|
|
|
21671
21685
|
util["a" /* default */].ajax({
|
|
21672
|
-
url: api["
|
|
21686
|
+
url: api["G" /* findSysCodes */]
|
|
21673
21687
|
}).then(function (res) {
|
|
21674
21688
|
var status = res.status,
|
|
21675
21689
|
message = res.message;
|
|
@@ -21702,7 +21716,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21702
21716
|
nodeId = _endFlowInfo.nodeId;
|
|
21703
21717
|
|
|
21704
21718
|
var param = {
|
|
21705
|
-
url: api["
|
|
21719
|
+
url: api["T" /* getFreeStartFlowParams */],
|
|
21706
21720
|
params: {
|
|
21707
21721
|
businessId: businessId,
|
|
21708
21722
|
processDefinitionId: processDefinitionId,
|
|
@@ -21719,12 +21733,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21719
21733
|
});
|
|
21720
21734
|
},
|
|
21721
21735
|
|
|
21722
|
-
/**
|
|
21723
|
-
* endFlows
|
|
21724
|
-
* @desc:直接办结
|
|
21725
|
-
* @author liufan
|
|
21726
|
-
* @param {Object} res 直接办结数据
|
|
21727
|
-
* @date 2022年5月25日
|
|
21736
|
+
/**
|
|
21737
|
+
* endFlows
|
|
21738
|
+
* @desc:直接办结
|
|
21739
|
+
* @author liufan
|
|
21740
|
+
* @param {Object} res 直接办结数据
|
|
21741
|
+
* @date 2022年5月25日
|
|
21728
21742
|
**/
|
|
21729
21743
|
endFlows: function endFlows(res) {
|
|
21730
21744
|
var _this12 = this;
|
|
@@ -21742,7 +21756,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21742
21756
|
|
|
21743
21757
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
21744
21758
|
var params = {
|
|
21745
|
-
url: api["
|
|
21759
|
+
url: api["D" /* endFlowHtml */],
|
|
21746
21760
|
headers: { Accept: 'application/json,text/plain' },
|
|
21747
21761
|
method: 'post',
|
|
21748
21762
|
data: freeStartFlowvue_type_script_lang_js_extends({}, _this13.endFlowInfo, _this13.nextNode, {
|
|
@@ -21778,12 +21792,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21778
21792
|
}).catch(function (e) {});
|
|
21779
21793
|
},
|
|
21780
21794
|
|
|
21781
|
-
/**
|
|
21782
|
-
* goView
|
|
21783
|
-
* @desc:更多流程按钮操作
|
|
21784
|
-
* @author liufan
|
|
21785
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
21786
|
-
* @date 2022年5月25日
|
|
21795
|
+
/**
|
|
21796
|
+
* goView
|
|
21797
|
+
* @desc:更多流程按钮操作
|
|
21798
|
+
* @author liufan
|
|
21799
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
21800
|
+
* @date 2022年5月25日
|
|
21787
21801
|
**/
|
|
21788
21802
|
goView: function goView(res) {
|
|
21789
21803
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -21868,11 +21882,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21868
21882
|
// isCanStartSubFlow
|
|
21869
21883
|
},
|
|
21870
21884
|
|
|
21871
|
-
/**
|
|
21872
|
-
* toTakeAdvice
|
|
21873
|
-
* @desc:征求意见
|
|
21874
|
-
* @author liufan
|
|
21875
|
-
* @date 2022年9月29日
|
|
21885
|
+
/**
|
|
21886
|
+
* toTakeAdvice
|
|
21887
|
+
* @desc:征求意见
|
|
21888
|
+
* @author liufan
|
|
21889
|
+
* @date 2022年9月29日
|
|
21876
21890
|
**/
|
|
21877
21891
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
21878
21892
|
var _this14 = this;
|
|
@@ -21890,7 +21904,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21890
21904
|
var _this15 = this;
|
|
21891
21905
|
|
|
21892
21906
|
var params = {
|
|
21893
|
-
url: api["
|
|
21907
|
+
url: api["yb" /* isCanStartSubFlow */],
|
|
21894
21908
|
data: {
|
|
21895
21909
|
appId: this.taskExamineInfo.appId,
|
|
21896
21910
|
inevitableNode: res.inevitableNode
|
|
@@ -21916,11 +21930,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21916
21930
|
});
|
|
21917
21931
|
},
|
|
21918
21932
|
|
|
21919
|
-
/**
|
|
21920
|
-
* toStartDraf
|
|
21921
|
-
* @desc: 稿件递送、联合审核、复核
|
|
21922
|
-
* @author liufan
|
|
21923
|
-
* @date 2022年9月29日
|
|
21933
|
+
/**
|
|
21934
|
+
* toStartDraf
|
|
21935
|
+
* @desc: 稿件递送、联合审核、复核
|
|
21936
|
+
* @author liufan
|
|
21937
|
+
* @date 2022年9月29日
|
|
21924
21938
|
**/
|
|
21925
21939
|
toStartDraf: function toStartDraf(res) {
|
|
21926
21940
|
var _this16 = this;
|
|
@@ -21934,11 +21948,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21934
21948
|
}
|
|
21935
21949
|
},
|
|
21936
21950
|
|
|
21937
|
-
/**
|
|
21938
|
-
* toSendMsg
|
|
21939
|
-
* @desc:核稿通知
|
|
21940
|
-
* @author liufan
|
|
21941
|
-
* @date 2022年9月29日
|
|
21951
|
+
/**
|
|
21952
|
+
* toSendMsg
|
|
21953
|
+
* @desc:核稿通知
|
|
21954
|
+
* @author liufan
|
|
21955
|
+
* @date 2022年9月29日
|
|
21942
21956
|
**/
|
|
21943
21957
|
toSendMsg: function toSendMsg(res) {
|
|
21944
21958
|
var _this17 = this;
|
|
@@ -21952,11 +21966,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21952
21966
|
}
|
|
21953
21967
|
},
|
|
21954
21968
|
|
|
21955
|
-
/**
|
|
21956
|
-
* toTaskReadAndEnd
|
|
21957
|
-
* @desc:分阅并办结
|
|
21958
|
-
* @author liufan
|
|
21959
|
-
* @date 2022年9月29日
|
|
21969
|
+
/**
|
|
21970
|
+
* toTaskReadAndEnd
|
|
21971
|
+
* @desc:分阅并办结
|
|
21972
|
+
* @author liufan
|
|
21973
|
+
* @date 2022年9月29日
|
|
21960
21974
|
**/
|
|
21961
21975
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
21962
21976
|
var _this18 = this;
|
|
@@ -21974,11 +21988,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
21974
21988
|
}
|
|
21975
21989
|
},
|
|
21976
21990
|
|
|
21977
|
-
/**
|
|
21978
|
-
* rejectAndEnd
|
|
21979
|
-
* @desc:驳回并办结
|
|
21980
|
-
* @author liufan
|
|
21981
|
-
* @date 2022年9月29日
|
|
21991
|
+
/**
|
|
21992
|
+
* rejectAndEnd
|
|
21993
|
+
* @desc:驳回并办结
|
|
21994
|
+
* @author liufan
|
|
21995
|
+
* @date 2022年9月29日
|
|
21982
21996
|
**/
|
|
21983
21997
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
21984
21998
|
var _this19 = this;
|
|
@@ -22000,7 +22014,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22000
22014
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
22001
22015
|
// return this.$message.warning('请填写意见');
|
|
22002
22016
|
var params = {
|
|
22003
|
-
url: api["
|
|
22017
|
+
url: api["Qb" /* rejectAndEnd */],
|
|
22004
22018
|
headers: { Accept: 'application/json,text/plain' },
|
|
22005
22019
|
method: 'post',
|
|
22006
22020
|
data: {
|
|
@@ -22033,11 +22047,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22033
22047
|
});
|
|
22034
22048
|
},
|
|
22035
22049
|
|
|
22036
|
-
/**
|
|
22037
|
-
* toTransfer
|
|
22038
|
-
* @desc:转办
|
|
22039
|
-
* @author liufan
|
|
22040
|
-
* @date 2022年9月29日
|
|
22050
|
+
/**
|
|
22051
|
+
* toTransfer
|
|
22052
|
+
* @desc:转办
|
|
22053
|
+
* @author liufan
|
|
22054
|
+
* @date 2022年9月29日
|
|
22041
22055
|
**/
|
|
22042
22056
|
toTransfer: function toTransfer(res) {
|
|
22043
22057
|
var _this21 = this;
|
|
@@ -22053,11 +22067,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22053
22067
|
}
|
|
22054
22068
|
},
|
|
22055
22069
|
|
|
22056
|
-
/**
|
|
22057
|
-
* getNodeInfo
|
|
22058
|
-
* @desc:获取节点信息
|
|
22059
|
-
* @author liufan
|
|
22060
|
-
* @date 2022年5月25日
|
|
22070
|
+
/**
|
|
22071
|
+
* getNodeInfo
|
|
22072
|
+
* @desc:获取节点信息
|
|
22073
|
+
* @author liufan
|
|
22074
|
+
* @date 2022年5月25日
|
|
22061
22075
|
**/
|
|
22062
22076
|
getNodeInfo: function getNodeInfo() {
|
|
22063
22077
|
var _this22 = this;
|
|
@@ -22070,7 +22084,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22070
22084
|
pendingId: this.pendingId,
|
|
22071
22085
|
businessId: this.businessIds
|
|
22072
22086
|
};
|
|
22073
|
-
util["a" /* default */].ajax({ url: api["
|
|
22087
|
+
util["a" /* default */].ajax({ url: api["Y" /* getNodeInfo */], params: params }).then(function (res) {
|
|
22074
22088
|
var status = res.status,
|
|
22075
22089
|
message = res.message,
|
|
22076
22090
|
data = res.data;
|
|
@@ -22156,12 +22170,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22156
22170
|
});
|
|
22157
22171
|
},
|
|
22158
22172
|
|
|
22159
|
-
/**
|
|
22160
|
-
* selecNext
|
|
22161
|
-
* @desc:下步节点变化时更新数据
|
|
22162
|
-
* @author liufan
|
|
22163
|
-
* @param {String} val 当前选中值
|
|
22164
|
-
* @date 2022年5月25日
|
|
22173
|
+
/**
|
|
22174
|
+
* selecNext
|
|
22175
|
+
* @desc:下步节点变化时更新数据
|
|
22176
|
+
* @author liufan
|
|
22177
|
+
* @param {String} val 当前选中值
|
|
22178
|
+
* @date 2022年5月25日
|
|
22165
22179
|
**/
|
|
22166
22180
|
selecNext: function selecNext(val, type, isDef) {
|
|
22167
22181
|
var _this23 = this;
|
|
@@ -22270,11 +22284,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22270
22284
|
if (isDef !== true) this.getNodeInfo();
|
|
22271
22285
|
},
|
|
22272
22286
|
|
|
22273
|
-
/**
|
|
22274
|
-
* isMultiple
|
|
22275
|
-
* @desc:是否多选
|
|
22276
|
-
* @author liufan
|
|
22277
|
-
* @date 2022年9月13日
|
|
22287
|
+
/**
|
|
22288
|
+
* isMultiple
|
|
22289
|
+
* @desc:是否多选
|
|
22290
|
+
* @author liufan
|
|
22291
|
+
* @date 2022年9月13日
|
|
22278
22292
|
**/
|
|
22279
22293
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
22280
22294
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -22306,11 +22320,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22306
22320
|
}
|
|
22307
22321
|
},
|
|
22308
22322
|
|
|
22309
|
-
/**
|
|
22310
|
-
* getHedInfo
|
|
22311
|
-
* @desc:获取审核页面数据
|
|
22312
|
-
* @author liufan
|
|
22313
|
-
* @date 2022年5月25日
|
|
22323
|
+
/**
|
|
22324
|
+
* getHedInfo
|
|
22325
|
+
* @desc:获取审核页面数据
|
|
22326
|
+
* @author liufan
|
|
22327
|
+
* @date 2022年5月25日
|
|
22314
22328
|
**/
|
|
22315
22329
|
getHedInfo: function getHedInfo() {
|
|
22316
22330
|
var _this24 = this;
|
|
@@ -22320,7 +22334,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22320
22334
|
pendingId: this.pendingId,
|
|
22321
22335
|
userId: util["a" /* default */].getStorage('userId')
|
|
22322
22336
|
};
|
|
22323
|
-
util["a" /* default */].ajax({ url: api["
|
|
22337
|
+
util["a" /* default */].ajax({ url: api["U" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
22324
22338
|
//pc返回数据
|
|
22325
22339
|
|
|
22326
22340
|
_this24.loading.close();
|
|
@@ -22546,13 +22560,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22546
22560
|
});
|
|
22547
22561
|
},
|
|
22548
22562
|
|
|
22549
|
-
/**
|
|
22550
|
-
* closeProcess
|
|
22551
|
-
* @desc:关闭弹窗
|
|
22552
|
-
* @author liufan
|
|
22553
|
-
* @param {boolean} val 当前是否办理流程
|
|
22554
|
-
* @param {String} type 当前点击的弹窗类型
|
|
22555
|
-
* @date 2022年5月25日
|
|
22563
|
+
/**
|
|
22564
|
+
* closeProcess
|
|
22565
|
+
* @desc:关闭弹窗
|
|
22566
|
+
* @author liufan
|
|
22567
|
+
* @param {boolean} val 当前是否办理流程
|
|
22568
|
+
* @param {String} type 当前点击的弹窗类型
|
|
22569
|
+
* @date 2022年5月25日
|
|
22556
22570
|
**/
|
|
22557
22571
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
22558
22572
|
if (closeParent) {
|
|
@@ -22569,23 +22583,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22569
22583
|
}
|
|
22570
22584
|
},
|
|
22571
22585
|
|
|
22572
|
-
/**
|
|
22573
|
-
* selectChange
|
|
22574
|
-
* @desc:常用语选择
|
|
22575
|
-
* @author liufan
|
|
22576
|
-
* @param {String} val 选中值
|
|
22577
|
-
* @date 2022年5月25日
|
|
22586
|
+
/**
|
|
22587
|
+
* selectChange
|
|
22588
|
+
* @desc:常用语选择
|
|
22589
|
+
* @author liufan
|
|
22590
|
+
* @param {String} val 选中值
|
|
22591
|
+
* @date 2022年5月25日
|
|
22578
22592
|
**/
|
|
22579
22593
|
selectChange: function selectChange(val) {
|
|
22580
22594
|
this.value = val;
|
|
22581
22595
|
},
|
|
22582
22596
|
|
|
22583
|
-
/**
|
|
22584
|
-
* upDate
|
|
22585
|
-
* @desc:修改常用语
|
|
22586
|
-
* @author liufan
|
|
22587
|
-
* @param {Object} val 修改值
|
|
22588
|
-
* @date 2022年5月25日
|
|
22597
|
+
/**
|
|
22598
|
+
* upDate
|
|
22599
|
+
* @desc:修改常用语
|
|
22600
|
+
* @author liufan
|
|
22601
|
+
* @param {Object} val 修改值
|
|
22602
|
+
* @date 2022年5月25日
|
|
22589
22603
|
**/
|
|
22590
22604
|
upDate: function upDate(val) {
|
|
22591
22605
|
this.FormData.id = val.id;
|
|
@@ -22593,11 +22607,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22593
22607
|
},
|
|
22594
22608
|
|
|
22595
22609
|
|
|
22596
|
-
/**
|
|
22597
|
-
* getProcess
|
|
22598
|
-
* @desc:获取选择流程
|
|
22599
|
-
* @author liufan
|
|
22600
|
-
* @date 2022年5月25日
|
|
22610
|
+
/**
|
|
22611
|
+
* getProcess
|
|
22612
|
+
* @desc:获取选择流程
|
|
22613
|
+
* @author liufan
|
|
22614
|
+
* @date 2022年5月25日
|
|
22601
22615
|
**/
|
|
22602
22616
|
getProcess: function getProcess() {
|
|
22603
22617
|
var _this25 = this;
|
|
@@ -22612,7 +22626,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22612
22626
|
// onlyFlag: true
|
|
22613
22627
|
};
|
|
22614
22628
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
22615
|
-
util["a" /* default */].ajax({ url: api["
|
|
22629
|
+
util["a" /* default */].ajax({ url: api["eb" /* getProcessDefList */], params: params }).then(function (res) {
|
|
22616
22630
|
var status = res.status,
|
|
22617
22631
|
message = res.message,
|
|
22618
22632
|
data = res.data;
|
|
@@ -22651,11 +22665,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22651
22665
|
});
|
|
22652
22666
|
},
|
|
22653
22667
|
|
|
22654
|
-
/**
|
|
22655
|
-
* getPendedhistoryList
|
|
22656
|
-
* @desc:获取流程列表
|
|
22657
|
-
* @author liufan
|
|
22658
|
-
* @date 2022年5月25日
|
|
22668
|
+
/**
|
|
22669
|
+
* getPendedhistoryList
|
|
22670
|
+
* @desc:获取流程列表
|
|
22671
|
+
* @author liufan
|
|
22672
|
+
* @date 2022年5月25日
|
|
22659
22673
|
**/
|
|
22660
22674
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
22661
22675
|
var _this26 = this;
|
|
@@ -22665,7 +22679,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22665
22679
|
userId: util["a" /* default */].getStorage('userId'),
|
|
22666
22680
|
type: 2
|
|
22667
22681
|
};
|
|
22668
|
-
util["a" /* default */].ajax({ url: api["
|
|
22682
|
+
util["a" /* default */].ajax({ url: api["Fb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
|
|
22669
22683
|
var rCode = res.rCode,
|
|
22670
22684
|
msg = res.msg,
|
|
22671
22685
|
results = res.results;
|
|
@@ -22687,12 +22701,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22687
22701
|
},
|
|
22688
22702
|
|
|
22689
22703
|
// 提交流程
|
|
22690
|
-
/**
|
|
22691
|
-
* subProcess
|
|
22692
|
-
* @desc:提交流程
|
|
22693
|
-
* @author liufan
|
|
22694
|
-
* @param {String} formName 当前form表单ref值
|
|
22695
|
-
* @date 2022年5月25日
|
|
22704
|
+
/**
|
|
22705
|
+
* subProcess
|
|
22706
|
+
* @desc:提交流程
|
|
22707
|
+
* @author liufan
|
|
22708
|
+
* @param {String} formName 当前form表单ref值
|
|
22709
|
+
* @date 2022年5月25日
|
|
22696
22710
|
**/
|
|
22697
22711
|
subProcess: function subProcess(val) {
|
|
22698
22712
|
var _this27 = this;
|
|
@@ -22861,7 +22875,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
22861
22875
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
22862
22876
|
params.nodeId = taskExamineInfo.nodeId;
|
|
22863
22877
|
params.needRetrialAuth = needRetrialAuth;
|
|
22864
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
22878
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["gc" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
22865
22879
|
var status = res.status,
|
|
22866
22880
|
message = res.message;
|
|
22867
22881
|
|
|
@@ -23245,7 +23259,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
23245
23259
|
pendingUserIds = _nextNode.pendingUserIds;
|
|
23246
23260
|
|
|
23247
23261
|
var params = {
|
|
23248
|
-
url: api["
|
|
23262
|
+
url: api["Ec" /* toTaskSuperviseSub */],
|
|
23249
23263
|
params: {
|
|
23250
23264
|
userId: util["a" /* default */].getStorage('userId'),
|
|
23251
23265
|
urgeUserIds: pendingUserIds,
|
|
@@ -23271,7 +23285,7 @@ var supervisevue_type_script_lang_js_extends = Object.assign || function (target
|
|
|
23271
23285
|
|
|
23272
23286
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
23273
23287
|
util["a" /* default */].ajax({
|
|
23274
|
-
url: api["
|
|
23288
|
+
url: api["Dc" /* toTaskSupervise */],
|
|
23275
23289
|
params: {
|
|
23276
23290
|
businessId: this.businessId,
|
|
23277
23291
|
appId: this.appId,
|
|
@@ -23757,7 +23771,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
23757
23771
|
return this.$message.warning('请选择处理对象!');
|
|
23758
23772
|
}
|
|
23759
23773
|
var param = {
|
|
23760
|
-
url: this.showBtn || this.startFlowPageEmbeddedIntoStartFlowIndex ? api["
|
|
23774
|
+
url: this.showBtn || this.startFlowPageEmbeddedIntoStartFlowIndex ? api["s" /* directStartTaskCircularRead */] : api["C" /* endFlowAndStartTaskCircularRead */],
|
|
23761
23775
|
data: {
|
|
23762
23776
|
opinion: opinion,
|
|
23763
23777
|
businessId: businessId,
|
|
@@ -23840,7 +23854,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
23840
23854
|
var _this2 = this;
|
|
23841
23855
|
|
|
23842
23856
|
util["a" /* default */].ajax({
|
|
23843
|
-
url: api["
|
|
23857
|
+
url: api["E" /* findCodeValues */],
|
|
23844
23858
|
params: {
|
|
23845
23859
|
ccCode: 'notification_type',
|
|
23846
23860
|
userId: util["a" /* default */].getStorage('userId'),
|
|
@@ -23876,7 +23890,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
23876
23890
|
if (!this.showBtn) {
|
|
23877
23891
|
params.openMode = 'samepage';
|
|
23878
23892
|
}
|
|
23879
|
-
util["a" /* default */].ajax({ url: api["
|
|
23893
|
+
util["a" /* default */].ajax({ url: api["ab" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
23880
23894
|
if (res.status === 'success') {
|
|
23881
23895
|
if (!_this3.showBtn) {
|
|
23882
23896
|
_this3.oldMessage = res.message;
|
|
@@ -23897,7 +23911,7 @@ var Circulatevue_type_script_lang_js_components;
|
|
|
23897
23911
|
var _this4 = this;
|
|
23898
23912
|
|
|
23899
23913
|
util["a" /* default */].ajax({
|
|
23900
|
-
url: api["
|
|
23914
|
+
url: api["G" /* findSysCodes */]
|
|
23901
23915
|
}).then(function (res) {
|
|
23902
23916
|
var status = res.status,
|
|
23903
23917
|
message = res.message;
|
|
@@ -24152,7 +24166,7 @@ var FreeCirculationvue_type_script_lang_js_extends = Object.assign || function (
|
|
|
24152
24166
|
|
|
24153
24167
|
if (!this.nextNode.nextCurrentOrgObj && !this.nextNode.nextOtherOrgObj) return this.$message.warning('请选择下步办理对象!');
|
|
24154
24168
|
var param = {
|
|
24155
|
-
url: api["
|
|
24169
|
+
url: api["L" /* freeTaskCircularRead */],
|
|
24156
24170
|
data: FreeCirculationvue_type_script_lang_js_extends({}, this.params, {
|
|
24157
24171
|
appId: this.appId || this.params.appId,
|
|
24158
24172
|
nextCurrentOrgObj: this.nextNode.nextCurrentOrgObj,
|
|
@@ -24184,7 +24198,7 @@ var FreeCirculationvue_type_script_lang_js_extends = Object.assign || function (
|
|
|
24184
24198
|
var _this2 = this;
|
|
24185
24199
|
|
|
24186
24200
|
var param = {
|
|
24187
|
-
url: api["
|
|
24201
|
+
url: api["sc" /* toFreeTaskCircularRead */],
|
|
24188
24202
|
params: FreeCirculationvue_type_script_lang_js_extends({}, this.params, { appId: this.appId || this.params.appId })
|
|
24189
24203
|
};
|
|
24190
24204
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
@@ -24435,7 +24449,7 @@ var external_vuedraggable_default = /*#__PURE__*/__webpack_require__.n(external_
|
|
|
24435
24449
|
});
|
|
24436
24450
|
});
|
|
24437
24451
|
var params = {
|
|
24438
|
-
url: api["
|
|
24452
|
+
url: api["bc" /* setSort */],
|
|
24439
24453
|
method: 'post',
|
|
24440
24454
|
format: false,
|
|
24441
24455
|
headers: {
|
|
@@ -24462,7 +24476,7 @@ var external_vuedraggable_default = /*#__PURE__*/__webpack_require__.n(external_
|
|
|
24462
24476
|
var _this2 = this;
|
|
24463
24477
|
|
|
24464
24478
|
var params = {
|
|
24465
|
-
url: api["
|
|
24479
|
+
url: api["rc" /* toDefinitionChangeSort */],
|
|
24466
24480
|
method: 'get',
|
|
24467
24481
|
params: {
|
|
24468
24482
|
flowTypeCode: this.flowTypeCode,
|
|
@@ -26185,7 +26199,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26185
26199
|
getIsCancelSecondConfirmation: function getIsCancelSecondConfirmation() {
|
|
26186
26200
|
var _this = this;
|
|
26187
26201
|
|
|
26188
|
-
util["a" /* default */].ajax({ url: api["
|
|
26202
|
+
util["a" /* default */].ajax({ url: api["zb" /* isCancelSecondConfirmation */] }).then(function (res) {
|
|
26189
26203
|
if (res.status == 'success') {
|
|
26190
26204
|
_this.isCancelSecondConfirmationType = res.data === false;
|
|
26191
26205
|
}
|
|
@@ -26214,7 +26228,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26214
26228
|
var _this2 = this;
|
|
26215
26229
|
|
|
26216
26230
|
var params = {
|
|
26217
|
-
url: api["
|
|
26231
|
+
url: api["mb" /* getUrgencyLevelChangedNotificationType */],
|
|
26218
26232
|
params: { urgencyLevel: this.urgencyLevel }
|
|
26219
26233
|
};
|
|
26220
26234
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -26266,7 +26280,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26266
26280
|
var _this4 = this;
|
|
26267
26281
|
|
|
26268
26282
|
var params = {
|
|
26269
|
-
url: api["
|
|
26283
|
+
url: api["Z" /* getNodeInfoForStart */],
|
|
26270
26284
|
params: { processDefinitionId: processDefinitionId }
|
|
26271
26285
|
};
|
|
26272
26286
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -26420,7 +26434,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26420
26434
|
var _this7 = this;
|
|
26421
26435
|
|
|
26422
26436
|
var params = {
|
|
26423
|
-
url: api["
|
|
26437
|
+
url: api["N" /* getAdjunctFileInfos */],
|
|
26424
26438
|
params: { ownId: ownId, code: code }
|
|
26425
26439
|
};
|
|
26426
26440
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -26500,7 +26514,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26500
26514
|
taskAction: 'complete'
|
|
26501
26515
|
};
|
|
26502
26516
|
util["a" /* default */].ajax({
|
|
26503
|
-
url: api["
|
|
26517
|
+
url: api["hc" /* taskReadHtml */],
|
|
26504
26518
|
params: { taskAction: 'complete' },
|
|
26505
26519
|
headers: {
|
|
26506
26520
|
Accept: 'application/json,text/plain'
|
|
@@ -26568,7 +26582,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26568
26582
|
|
|
26569
26583
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
26570
26584
|
util["a" /* default */].ajax({
|
|
26571
|
-
url: api["
|
|
26585
|
+
url: api["yc" /* toStartTaskReadIndex */],
|
|
26572
26586
|
params: { pendingId: this.pendingId }
|
|
26573
26587
|
}).then(function (res) {
|
|
26574
26588
|
var status = res.status,
|
|
@@ -26612,7 +26626,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26612
26626
|
if (mainConfig) {
|
|
26613
26627
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
26614
26628
|
} else {
|
|
26615
|
-
util["a" /* default */].ajax({ url: api["
|
|
26629
|
+
util["a" /* default */].ajax({ url: api["Bb" /* loginUserInfo */] }).then(function (res) {
|
|
26616
26630
|
var status = res.status,
|
|
26617
26631
|
data = res.data;
|
|
26618
26632
|
|
|
@@ -26647,7 +26661,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26647
26661
|
var _this13 = this;
|
|
26648
26662
|
|
|
26649
26663
|
var params = {
|
|
26650
|
-
url: api["
|
|
26664
|
+
url: api["E" /* findCodeValues */],
|
|
26651
26665
|
params: {
|
|
26652
26666
|
ccCode: 'notification_type',
|
|
26653
26667
|
userId: util["a" /* default */].getStorage('userId'),
|
|
@@ -26668,11 +26682,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26668
26682
|
});
|
|
26669
26683
|
},
|
|
26670
26684
|
|
|
26671
|
-
/**
|
|
26672
|
-
* saveInfo
|
|
26673
|
-
* @desc:暂存
|
|
26674
|
-
* @author liufan
|
|
26675
|
-
* @date 2022年9月9日
|
|
26685
|
+
/**
|
|
26686
|
+
* saveInfo
|
|
26687
|
+
* @desc:暂存
|
|
26688
|
+
* @author liufan
|
|
26689
|
+
* @date 2022年9月9日
|
|
26676
26690
|
**/
|
|
26677
26691
|
saveInfo: function saveInfo(type, btn) {
|
|
26678
26692
|
var _this14 = this;
|
|
@@ -26715,7 +26729,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26715
26729
|
pendingId: this.pendingId
|
|
26716
26730
|
};
|
|
26717
26731
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
26718
|
-
util["a" /* default */].ajax({ url: api["
|
|
26732
|
+
util["a" /* default */].ajax({ url: api["qc" /* tempSave */], data: params, method: 'post' }).then(function (res) {
|
|
26719
26733
|
var status = res.status,
|
|
26720
26734
|
message = res.message;
|
|
26721
26735
|
|
|
@@ -26734,11 +26748,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26734
26748
|
});
|
|
26735
26749
|
},
|
|
26736
26750
|
|
|
26737
|
-
/**
|
|
26738
|
-
* rejectBtn
|
|
26739
|
-
* @desc:点击驳回
|
|
26740
|
-
* @author liufan
|
|
26741
|
-
* @date 2022年5月25日
|
|
26751
|
+
/**
|
|
26752
|
+
* rejectBtn
|
|
26753
|
+
* @desc:点击驳回
|
|
26754
|
+
* @author liufan
|
|
26755
|
+
* @date 2022年5月25日
|
|
26742
26756
|
**/
|
|
26743
26757
|
rejectBtn: function rejectBtn() {
|
|
26744
26758
|
var _this16 = this;
|
|
@@ -26756,11 +26770,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26756
26770
|
}
|
|
26757
26771
|
},
|
|
26758
26772
|
|
|
26759
|
-
/**
|
|
26760
|
-
* taskReadBtn
|
|
26761
|
-
* @desc:点击分阅
|
|
26762
|
-
* @author liufan
|
|
26763
|
-
* @date 2022年5月25日
|
|
26773
|
+
/**
|
|
26774
|
+
* taskReadBtn
|
|
26775
|
+
* @desc:点击分阅
|
|
26776
|
+
* @author liufan
|
|
26777
|
+
* @date 2022年5月25日
|
|
26764
26778
|
**/
|
|
26765
26779
|
taskReadBtn: function taskReadBtn() {
|
|
26766
26780
|
var _this17 = this;
|
|
@@ -26779,17 +26793,17 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26779
26793
|
}
|
|
26780
26794
|
},
|
|
26781
26795
|
|
|
26782
|
-
/**
|
|
26783
|
-
* getFind
|
|
26784
|
-
* @desc:获取通知方式
|
|
26785
|
-
* @author liufan
|
|
26786
|
-
* @date 2022年5月25日
|
|
26796
|
+
/**
|
|
26797
|
+
* getFind
|
|
26798
|
+
* @desc:获取通知方式
|
|
26799
|
+
* @author liufan
|
|
26800
|
+
* @date 2022年5月25日
|
|
26787
26801
|
**/
|
|
26788
26802
|
getFind: function getFind() {
|
|
26789
26803
|
var _this18 = this;
|
|
26790
26804
|
|
|
26791
26805
|
util["a" /* default */].ajax({
|
|
26792
|
-
url: api["
|
|
26806
|
+
url: api["G" /* findSysCodes */]
|
|
26793
26807
|
}).then(function (res) {
|
|
26794
26808
|
var status = res.status,
|
|
26795
26809
|
message = res.message;
|
|
@@ -26822,7 +26836,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26822
26836
|
nodeId = _endFlowInfo.nodeId;
|
|
26823
26837
|
|
|
26824
26838
|
var param = {
|
|
26825
|
-
url: api["
|
|
26839
|
+
url: api["T" /* getFreeStartFlowParams */],
|
|
26826
26840
|
params: {
|
|
26827
26841
|
businessId: businessId,
|
|
26828
26842
|
processDefinitionId: processDefinitionId,
|
|
@@ -26850,12 +26864,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26850
26864
|
});
|
|
26851
26865
|
},
|
|
26852
26866
|
|
|
26853
|
-
/**
|
|
26854
|
-
* endFlows
|
|
26855
|
-
* @desc:直接办结
|
|
26856
|
-
* @author liufan
|
|
26857
|
-
* @param {Object} res 直接办结数据
|
|
26858
|
-
* @date 2022年5月25日
|
|
26867
|
+
/**
|
|
26868
|
+
* endFlows
|
|
26869
|
+
* @desc:直接办结
|
|
26870
|
+
* @author liufan
|
|
26871
|
+
* @param {Object} res 直接办结数据
|
|
26872
|
+
* @date 2022年5月25日
|
|
26859
26873
|
**/
|
|
26860
26874
|
endFlows: function endFlows(res) {
|
|
26861
26875
|
var _this20 = this;
|
|
@@ -26873,7 +26887,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26873
26887
|
|
|
26874
26888
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
26875
26889
|
var params = {
|
|
26876
|
-
url: api["
|
|
26890
|
+
url: api["D" /* endFlowHtml */],
|
|
26877
26891
|
headers: { Accept: 'application/json,text/plain' },
|
|
26878
26892
|
method: 'post',
|
|
26879
26893
|
data: mainvue_type_script_lang_js_extends({}, _this21.endFlowInfo, _this21.nextNode, {
|
|
@@ -26910,12 +26924,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
26910
26924
|
}).catch(function (e) {});
|
|
26911
26925
|
},
|
|
26912
26926
|
|
|
26913
|
-
/**
|
|
26914
|
-
* goView
|
|
26915
|
-
* @desc:更多流程按钮操作
|
|
26916
|
-
* @author liufan
|
|
26917
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
26918
|
-
* @date 2022年5月25日
|
|
26927
|
+
/**
|
|
26928
|
+
* goView
|
|
26929
|
+
* @desc:更多流程按钮操作
|
|
26930
|
+
* @author liufan
|
|
26931
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
26932
|
+
* @date 2022年5月25日
|
|
26919
26933
|
**/
|
|
26920
26934
|
goView: function goView(res) {
|
|
26921
26935
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -27002,11 +27016,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27002
27016
|
// isCanStartSubFlow
|
|
27003
27017
|
},
|
|
27004
27018
|
|
|
27005
|
-
/**
|
|
27006
|
-
* toTakeAdvice
|
|
27007
|
-
* @desc:征求意见
|
|
27008
|
-
* @author liufan
|
|
27009
|
-
* @date 2022年9月29日
|
|
27019
|
+
/**
|
|
27020
|
+
* toTakeAdvice
|
|
27021
|
+
* @desc:征求意见
|
|
27022
|
+
* @author liufan
|
|
27023
|
+
* @date 2022年9月29日
|
|
27010
27024
|
**/
|
|
27011
27025
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
27012
27026
|
var _this22 = this;
|
|
@@ -27024,7 +27038,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27024
27038
|
var _this23 = this;
|
|
27025
27039
|
|
|
27026
27040
|
var params = {
|
|
27027
|
-
url: api["
|
|
27041
|
+
url: api["yb" /* isCanStartSubFlow */],
|
|
27028
27042
|
data: {
|
|
27029
27043
|
appId: this.taskExamineInfo.appId,
|
|
27030
27044
|
inevitableNode: res.inevitableNode
|
|
@@ -27050,11 +27064,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27050
27064
|
});
|
|
27051
27065
|
},
|
|
27052
27066
|
|
|
27053
|
-
/**
|
|
27054
|
-
* toStartDraf
|
|
27055
|
-
* @desc: 稿件递送、联合审核、复核
|
|
27056
|
-
* @author liufan
|
|
27057
|
-
* @date 2022年9月29日
|
|
27067
|
+
/**
|
|
27068
|
+
* toStartDraf
|
|
27069
|
+
* @desc: 稿件递送、联合审核、复核
|
|
27070
|
+
* @author liufan
|
|
27071
|
+
* @date 2022年9月29日
|
|
27058
27072
|
**/
|
|
27059
27073
|
toStartDraf: function toStartDraf(res) {
|
|
27060
27074
|
var _this24 = this;
|
|
@@ -27068,11 +27082,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27068
27082
|
}
|
|
27069
27083
|
},
|
|
27070
27084
|
|
|
27071
|
-
/**
|
|
27072
|
-
* toSendMsg
|
|
27073
|
-
* @desc:核稿通知
|
|
27074
|
-
* @author liufan
|
|
27075
|
-
* @date 2022年9月29日
|
|
27085
|
+
/**
|
|
27086
|
+
* toSendMsg
|
|
27087
|
+
* @desc:核稿通知
|
|
27088
|
+
* @author liufan
|
|
27089
|
+
* @date 2022年9月29日
|
|
27076
27090
|
**/
|
|
27077
27091
|
toSendMsg: function toSendMsg(res) {
|
|
27078
27092
|
var _this25 = this;
|
|
@@ -27086,11 +27100,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27086
27100
|
}
|
|
27087
27101
|
},
|
|
27088
27102
|
|
|
27089
|
-
/**
|
|
27090
|
-
* toTaskReadAndEnd
|
|
27091
|
-
* @desc:分阅并办结
|
|
27092
|
-
* @author liufan
|
|
27093
|
-
* @date 2022年9月29日
|
|
27103
|
+
/**
|
|
27104
|
+
* toTaskReadAndEnd
|
|
27105
|
+
* @desc:分阅并办结
|
|
27106
|
+
* @author liufan
|
|
27107
|
+
* @date 2022年9月29日
|
|
27094
27108
|
**/
|
|
27095
27109
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
27096
27110
|
var _this26 = this;
|
|
@@ -27108,11 +27122,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27108
27122
|
}
|
|
27109
27123
|
},
|
|
27110
27124
|
|
|
27111
|
-
/**
|
|
27112
|
-
* rejectAndEnd
|
|
27113
|
-
* @desc:驳回并办结
|
|
27114
|
-
* @author liufan
|
|
27115
|
-
* @date 2022年9月29日
|
|
27125
|
+
/**
|
|
27126
|
+
* rejectAndEnd
|
|
27127
|
+
* @desc:驳回并办结
|
|
27128
|
+
* @author liufan
|
|
27129
|
+
* @date 2022年9月29日
|
|
27116
27130
|
**/
|
|
27117
27131
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
27118
27132
|
var _this27 = this;
|
|
@@ -27134,7 +27148,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27134
27148
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
27135
27149
|
// return this.$message.warning('请填写意见');
|
|
27136
27150
|
var params = {
|
|
27137
|
-
url: api["
|
|
27151
|
+
url: api["Qb" /* rejectAndEnd */],
|
|
27138
27152
|
headers: { Accept: 'application/json,text/plain' },
|
|
27139
27153
|
method: 'post',
|
|
27140
27154
|
data: {
|
|
@@ -27168,11 +27182,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27168
27182
|
});
|
|
27169
27183
|
},
|
|
27170
27184
|
|
|
27171
|
-
/**
|
|
27172
|
-
* toTransfer
|
|
27173
|
-
* @desc:转办
|
|
27174
|
-
* @author liufan
|
|
27175
|
-
* @date 2022年9月29日
|
|
27185
|
+
/**
|
|
27186
|
+
* toTransfer
|
|
27187
|
+
* @desc:转办
|
|
27188
|
+
* @author liufan
|
|
27189
|
+
* @date 2022年9月29日
|
|
27176
27190
|
**/
|
|
27177
27191
|
toTransfer: function toTransfer(res) {
|
|
27178
27192
|
var _this29 = this;
|
|
@@ -27191,11 +27205,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27191
27205
|
this.nextNode.customLimitTime = val;
|
|
27192
27206
|
},
|
|
27193
27207
|
|
|
27194
|
-
/**
|
|
27195
|
-
* getNodeInfo
|
|
27196
|
-
* @desc:获取节点信息
|
|
27197
|
-
* @author liufan
|
|
27198
|
-
* @date 2022年5月25日
|
|
27208
|
+
/**
|
|
27209
|
+
* getNodeInfo
|
|
27210
|
+
* @desc:获取节点信息
|
|
27211
|
+
* @author liufan
|
|
27212
|
+
* @date 2022年5月25日
|
|
27199
27213
|
**/
|
|
27200
27214
|
getNodeInfo: function getNodeInfo() {
|
|
27201
27215
|
var _this30 = this;
|
|
@@ -27208,7 +27222,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27208
27222
|
pendingId: this.pendingId,
|
|
27209
27223
|
businessId: this.businessIds
|
|
27210
27224
|
};
|
|
27211
|
-
util["a" /* default */].ajax({ url: api["
|
|
27225
|
+
util["a" /* default */].ajax({ url: api["Y" /* getNodeInfo */], params: params }).then(function (res) {
|
|
27212
27226
|
var status = res.status,
|
|
27213
27227
|
message = res.message,
|
|
27214
27228
|
data = res.data;
|
|
@@ -27326,12 +27340,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27326
27340
|
});
|
|
27327
27341
|
},
|
|
27328
27342
|
|
|
27329
|
-
/**
|
|
27330
|
-
* selecNext
|
|
27331
|
-
* @desc:下步节点变化时更新数据
|
|
27332
|
-
* @author liufan
|
|
27333
|
-
* @param {String} val 当前选中值
|
|
27334
|
-
* @date 2022年5月25日
|
|
27343
|
+
/**
|
|
27344
|
+
* selecNext
|
|
27345
|
+
* @desc:下步节点变化时更新数据
|
|
27346
|
+
* @author liufan
|
|
27347
|
+
* @param {String} val 当前选中值
|
|
27348
|
+
* @date 2022年5月25日
|
|
27335
27349
|
**/
|
|
27336
27350
|
selecNext: function selecNext(val, type, isDef) {
|
|
27337
27351
|
var _this31 = this;
|
|
@@ -27471,11 +27485,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27471
27485
|
}
|
|
27472
27486
|
},
|
|
27473
27487
|
|
|
27474
|
-
/**
|
|
27475
|
-
* isMultiple
|
|
27476
|
-
* @desc:是否多选
|
|
27477
|
-
* @author liufan
|
|
27478
|
-
* @date 2022年9月13日
|
|
27488
|
+
/**
|
|
27489
|
+
* isMultiple
|
|
27490
|
+
* @desc:是否多选
|
|
27491
|
+
* @author liufan
|
|
27492
|
+
* @date 2022年9月13日
|
|
27479
27493
|
**/
|
|
27480
27494
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
27481
27495
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -27507,11 +27521,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27507
27521
|
}
|
|
27508
27522
|
},
|
|
27509
27523
|
|
|
27510
|
-
/**
|
|
27511
|
-
* getHedInfo
|
|
27512
|
-
* @desc:获取审核页面数据
|
|
27513
|
-
* @author liufan
|
|
27514
|
-
* @date 2022年5月25日
|
|
27524
|
+
/**
|
|
27525
|
+
* getHedInfo
|
|
27526
|
+
* @desc:获取审核页面数据
|
|
27527
|
+
* @author liufan
|
|
27528
|
+
* @date 2022年5月25日
|
|
27515
27529
|
**/
|
|
27516
27530
|
getHedInfo: function getHedInfo() {
|
|
27517
27531
|
var _this32 = this;
|
|
@@ -27521,7 +27535,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27521
27535
|
pendingId: this.pendingId,
|
|
27522
27536
|
userId: util["a" /* default */].getStorage('userId')
|
|
27523
27537
|
};
|
|
27524
|
-
util["a" /* default */].ajax({ url: api["
|
|
27538
|
+
util["a" /* default */].ajax({ url: api["U" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
27525
27539
|
//pc返回数据
|
|
27526
27540
|
|
|
27527
27541
|
_this32.loading.close();
|
|
@@ -27654,7 +27668,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27654
27668
|
if (!_this32.isFlow) _this32.getFile(_this32.pendingId, attachedCode);
|
|
27655
27669
|
if (nextNodeList && nextNodeList.length != 0) {
|
|
27656
27670
|
_this32.nextNodeList = nextNodeList;
|
|
27657
|
-
if (nextNodeList[0].nodeType === 'endEvent') {
|
|
27671
|
+
if (nextNodeList[0].nodeType === 'endEvent' && nextNodeList.length == 1) {
|
|
27658
27672
|
_this32.isNextUser = nextNodeList[0].nodeType != 'endEvent';
|
|
27659
27673
|
nextNodeList[0].nodeType === 'endEvent' ? _this32.endFlow = true : '';
|
|
27660
27674
|
}
|
|
@@ -27828,13 +27842,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27828
27842
|
});
|
|
27829
27843
|
},
|
|
27830
27844
|
|
|
27831
|
-
/**
|
|
27832
|
-
* closeProcess
|
|
27833
|
-
* @desc:关闭弹窗
|
|
27834
|
-
* @author liufan
|
|
27835
|
-
* @param {boolean} val 当前是否办理流程
|
|
27836
|
-
* @param {String} type 当前点击的弹窗类型
|
|
27837
|
-
* @date 2022年5月25日
|
|
27845
|
+
/**
|
|
27846
|
+
* closeProcess
|
|
27847
|
+
* @desc:关闭弹窗
|
|
27848
|
+
* @author liufan
|
|
27849
|
+
* @param {boolean} val 当前是否办理流程
|
|
27850
|
+
* @param {String} type 当前点击的弹窗类型
|
|
27851
|
+
* @date 2022年5月25日
|
|
27838
27852
|
**/
|
|
27839
27853
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
27840
27854
|
if (this.closeParent && !this.startFlowPageEmbeddedIntoStartFlowIndex) {
|
|
@@ -27854,23 +27868,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27854
27868
|
}
|
|
27855
27869
|
},
|
|
27856
27870
|
|
|
27857
|
-
/**
|
|
27858
|
-
* selectChange
|
|
27859
|
-
* @desc:常用语选择
|
|
27860
|
-
* @author liufan
|
|
27861
|
-
* @param {String} val 选中值
|
|
27862
|
-
* @date 2022年5月25日
|
|
27871
|
+
/**
|
|
27872
|
+
* selectChange
|
|
27873
|
+
* @desc:常用语选择
|
|
27874
|
+
* @author liufan
|
|
27875
|
+
* @param {String} val 选中值
|
|
27876
|
+
* @date 2022年5月25日
|
|
27863
27877
|
**/
|
|
27864
27878
|
selectChange: function selectChange(val) {
|
|
27865
27879
|
this.value = val;
|
|
27866
27880
|
},
|
|
27867
27881
|
|
|
27868
|
-
/**
|
|
27869
|
-
* upDate
|
|
27870
|
-
* @desc:修改常用语
|
|
27871
|
-
* @author liufan
|
|
27872
|
-
* @param {Object} val 修改值
|
|
27873
|
-
* @date 2022年5月25日
|
|
27882
|
+
/**
|
|
27883
|
+
* upDate
|
|
27884
|
+
* @desc:修改常用语
|
|
27885
|
+
* @author liufan
|
|
27886
|
+
* @param {Object} val 修改值
|
|
27887
|
+
* @date 2022年5月25日
|
|
27874
27888
|
**/
|
|
27875
27889
|
upDate: function upDate(val) {
|
|
27876
27890
|
this.FormData.id = val.id;
|
|
@@ -27878,11 +27892,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27878
27892
|
},
|
|
27879
27893
|
|
|
27880
27894
|
|
|
27881
|
-
/**
|
|
27882
|
-
* getProcess
|
|
27883
|
-
* @desc:获取选择流程
|
|
27884
|
-
* @author liufan
|
|
27885
|
-
* @date 2022年5月25日
|
|
27895
|
+
/**
|
|
27896
|
+
* getProcess
|
|
27897
|
+
* @desc:获取选择流程
|
|
27898
|
+
* @author liufan
|
|
27899
|
+
* @date 2022年5月25日
|
|
27886
27900
|
**/
|
|
27887
27901
|
getProcess: function getProcess(val) {
|
|
27888
27902
|
var _this33 = this;
|
|
@@ -27895,7 +27909,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27895
27909
|
hideTempSave: true
|
|
27896
27910
|
}, this.param);
|
|
27897
27911
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
27898
|
-
util["a" /* default */].ajax({ url: api["
|
|
27912
|
+
util["a" /* default */].ajax({ url: api["eb" /* getProcessDefList */], params: params }).then(function (res) {
|
|
27899
27913
|
var status = res.status,
|
|
27900
27914
|
message = res.message,
|
|
27901
27915
|
data = res.data;
|
|
@@ -27942,11 +27956,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27942
27956
|
});
|
|
27943
27957
|
},
|
|
27944
27958
|
|
|
27945
|
-
/**
|
|
27946
|
-
* getPendedhistoryList
|
|
27947
|
-
* @desc:获取流程列表
|
|
27948
|
-
* @author liufan
|
|
27949
|
-
* @date 2022年5月25日
|
|
27959
|
+
/**
|
|
27960
|
+
* getPendedhistoryList
|
|
27961
|
+
* @desc:获取流程列表
|
|
27962
|
+
* @author liufan
|
|
27963
|
+
* @date 2022年5月25日
|
|
27950
27964
|
**/
|
|
27951
27965
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
27952
27966
|
var _this34 = this;
|
|
@@ -27956,7 +27970,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
27956
27970
|
userId: util["a" /* default */].getStorage('userId'),
|
|
27957
27971
|
type: 2
|
|
27958
27972
|
};
|
|
27959
|
-
util["a" /* default */].ajax({ url: api["
|
|
27973
|
+
util["a" /* default */].ajax({ url: api["Fb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
|
|
27960
27974
|
var rCode = res.rCode,
|
|
27961
27975
|
msg = res.msg,
|
|
27962
27976
|
results = res.results;
|
|
@@ -28017,12 +28031,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
28017
28031
|
beforeSubProcess: function beforeSubProcess() {},
|
|
28018
28032
|
|
|
28019
28033
|
// 提交流程
|
|
28020
|
-
/**
|
|
28021
|
-
* subProcess
|
|
28022
|
-
* @desc:提交流程
|
|
28023
|
-
* @author liufan
|
|
28024
|
-
* @param {String} formName 当前form表单ref值
|
|
28025
|
-
* @date 2022年5月25日
|
|
28034
|
+
/**
|
|
28035
|
+
* subProcess
|
|
28036
|
+
* @desc:提交流程
|
|
28037
|
+
* @author liufan
|
|
28038
|
+
* @param {String} formName 当前form表单ref值
|
|
28039
|
+
* @date 2022年5月25日
|
|
28026
28040
|
**/
|
|
28027
28041
|
subProcess: function subProcess(val, type) {
|
|
28028
28042
|
var _this36 = this;
|
|
@@ -28315,7 +28329,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
28315
28329
|
if (!currentNodeEnableItemHandleDescription) {
|
|
28316
28330
|
delete params.nextItemHandleDescription;
|
|
28317
28331
|
}
|
|
28318
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
28332
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["gc" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
28319
28333
|
var status = res.status,
|
|
28320
28334
|
message = res.message;
|
|
28321
28335
|
|
|
@@ -28423,7 +28437,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
28423
28437
|
if (!currentNodeEnableItemHandleDescription) {
|
|
28424
28438
|
delete params.nextItemHandleDescription;
|
|
28425
28439
|
}
|
|
28426
|
-
return _context2.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
28440
|
+
return _context2.abrupt('return', util["a" /* default */].ajax({ url: api["gc" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
28427
28441
|
var status = res.status,
|
|
28428
28442
|
message = res.message;
|
|
28429
28443
|
|