eoss-ui 0.8.22 → 0.8.24
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 +160 -146
- 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 +732 -256
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +159 -146
- package/lib/flow-list.js +270 -257
- package/lib/flow.js +286 -272
- 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 +263 -244
- 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 +161 -148
- 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 +162 -161
- package/packages/.DS_Store +0 -0
- package/packages/button-group/src/main.vue +346 -346
- package/packages/calogin/.DS_Store +0 -0
- package/packages/calogin/src/main.vue +412 -412
- package/packages/clients/src/main.vue +151 -151
- package/packages/date-picker/.DS_Store +0 -0
- package/packages/date-picker/src/.DS_Store +0 -0
- package/packages/dialog/.DS_Store +0 -0
- package/packages/flow/.DS_Store +0 -0
- package/packages/flow/src/.DS_Store +0 -0
- package/packages/flow/src/component/CommonOpinions.vue +376 -376
- package/packages/flow/src/component/FileList.vue +97 -97
- package/packages/flow/src/component/SendMsg.vue +242 -242
- package/packages/flow/src/component/SortFlow.vue +110 -110
- package/packages/flow/src/form.vue +123 -123
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-list/.DS_Store +0 -0
- package/packages/flow-list/src/main.vue +2337 -2337
- package/packages/form/.DS_Store +0 -0
- package/packages/form/src/table.vue +1512 -1512
- package/packages/icon/.DS_Store +0 -0
- package/packages/icon/src/main.vue +104 -104
- package/packages/login/.DS_Store +0 -0
- package/packages/login/src/resetPassword.vue +557 -557
- package/packages/main/.DS_Store +0 -0
- package/packages/main/src/.DS_Store +0 -0
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +464 -464
- package/packages/main/src/public/settings.vue +273 -273
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +158 -158
- package/packages/main/src/simplicity/index.vue +11 -5
- package/packages/main/src/simplicity/menu-list.vue +135 -135
- package/packages/main/src/simplicity/message.vue +293 -293
- package/packages/main/src/simplicity/notice.vue +222 -222
- package/packages/main/src/simplicity/sub-menu.vue +276 -276
- package/packages/main/src/simplicity/user.vue +259 -259
- package/packages/main/src/simplicityTop/apps.vue +388 -388
- package/packages/main/src/simplicityTop/avatar.vue +82 -82
- package/packages/main/src/simplicityTop/handler.vue +215 -215
- package/packages/main/src/simplicityTop/lists.vue +84 -84
- package/packages/main/src/simplicityTop/menu-list.vue +135 -135
- package/packages/main/src/simplicityTop/message.vue +293 -293
- package/packages/main/src/simplicityTop/notice.vue +222 -222
- package/packages/main/src/simplicityTop/router-page.vue +45 -45
- package/packages/main/src/simplicityTop/sub-menu.vue +274 -274
- package/packages/main/src/simplicityTop/user.vue +259 -259
- package/packages/menu/.DS_Store +0 -0
- package/packages/nav/src/main.vue +351 -351
- package/packages/player/src/main.vue +1 -1
- package/packages/select/.DS_Store +0 -0
- package/packages/selector/.DS_Store +0 -0
- package/packages/selector/src/main.vue +761 -761
- package/packages/selector-panel/.DS_Store +0 -0
- package/packages/selector-panel/src/main.vue +1036 -1036
- package/packages/selector-panel/src/selection.vue +174 -174
- package/packages/switch/src/main.vue +170 -170
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/lib/tree.css +1 -1
- package/packages/theme-chalk/src/.DS_Store +0 -0
- package/packages/theme-chalk/src/data-table.scss +297 -297
- package/packages/theme-chalk/src/flow-list.scss +55 -55
- package/packages/theme-chalk/src/form.scss +501 -501
- package/packages/theme-chalk/src/handler.scss +148 -148
- package/packages/theme-chalk/src/icon.scss +3452 -3452
- package/packages/theme-chalk/src/login.scss +1006 -1006
- package/packages/theme-chalk/src/main.scss +664 -664
- package/packages/theme-chalk/src/menu.scss +224 -224
- package/packages/theme-chalk/src/selector.scss +114 -114
- package/packages/theme-chalk/src/simplicity-top.scss +1845 -1845
- package/packages/theme-chalk/src/simplicity.scss +1403 -1403
- package/packages/theme-chalk/src/tree.scss +167 -165
- package/packages/theme-chalk/src/upload.scss +172 -172
- package/packages/tips/src/main.vue +141 -141
- package/packages/upload/.DS_Store +0 -0
- package/packages/upload/src/main.vue +482 -14
- package/packages/wujie/src/main.vue +146 -146
- package/src/.DS_Store +0 -0
- package/src/config/api.js +5 -0
- package/src/index.js +163 -163
- package/src/utils/.DS_Store +0 -0
- package/src/utils/rules.js +18 -18
- package/src/utils/util.js +6 -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,7 +4840,8 @@ 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";
|
|
@@ -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,
|
|
@@ -8786,27 +8800,27 @@ var _components;
|
|
|
8786
8800
|
return validSate;
|
|
8787
8801
|
},
|
|
8788
8802
|
|
|
8789
|
-
/**
|
|
8790
|
-
* changeOpinion
|
|
8791
|
-
* @desc:监听意见变化
|
|
8792
|
-
* @author liufan
|
|
8793
|
-
* @date 2022年10月28日
|
|
8803
|
+
/**
|
|
8804
|
+
* changeOpinion
|
|
8805
|
+
* @desc:监听意见变化
|
|
8806
|
+
* @author liufan
|
|
8807
|
+
* @date 2022年10月28日
|
|
8794
8808
|
**/
|
|
8795
8809
|
changeOpinion: function changeOpinion() {
|
|
8796
8810
|
this.$emit('change', this.form.value);
|
|
8797
8811
|
},
|
|
8798
8812
|
|
|
8799
|
-
/**
|
|
8800
|
-
* getCommonOpion
|
|
8801
|
-
* @desc:获取意见
|
|
8802
|
-
* @author liufan
|
|
8803
|
-
* @date 2022年5月25日
|
|
8813
|
+
/**
|
|
8814
|
+
* getCommonOpion
|
|
8815
|
+
* @desc:获取意见
|
|
8816
|
+
* @author liufan
|
|
8817
|
+
* @date 2022年5月25日
|
|
8804
8818
|
**/
|
|
8805
8819
|
getCommonOpion: function getCommonOpion() {
|
|
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
|
},
|
|
@@ -8829,31 +8843,31 @@ var _components;
|
|
|
8829
8843
|
});
|
|
8830
8844
|
},
|
|
8831
8845
|
|
|
8832
|
-
/**
|
|
8833
|
-
* upDate
|
|
8834
|
-
* @desc:修改常用语
|
|
8835
|
-
* @author liufan
|
|
8836
|
-
* @param {Object} val 修改值
|
|
8837
|
-
* @date 2022年5月25日
|
|
8846
|
+
/**
|
|
8847
|
+
* upDate
|
|
8848
|
+
* @desc:修改常用语
|
|
8849
|
+
* @author liufan
|
|
8850
|
+
* @param {Object} val 修改值
|
|
8851
|
+
* @date 2022年5月25日
|
|
8838
8852
|
**/
|
|
8839
8853
|
upDate: function upDate(val) {
|
|
8840
8854
|
this.FormData.id = val.id;
|
|
8841
8855
|
this.addVisible = true;
|
|
8842
8856
|
},
|
|
8843
8857
|
|
|
8844
|
-
/**
|
|
8845
|
-
* selectChange
|
|
8846
|
-
* @desc:常用语选择
|
|
8847
|
-
* @author liufan
|
|
8848
|
-
* @param {String} val 选中值
|
|
8849
|
-
* @date 2022年5月25日
|
|
8858
|
+
/**
|
|
8859
|
+
* selectChange
|
|
8860
|
+
* @desc:常用语选择
|
|
8861
|
+
* @author liufan
|
|
8862
|
+
* @param {String} val 选中值
|
|
8863
|
+
* @date 2022年5月25日
|
|
8850
8864
|
**/
|
|
8851
8865
|
selectChange: function selectChange(val) {
|
|
8852
8866
|
var _this2 = this;
|
|
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') {
|
|
@@ -8865,12 +8879,12 @@ var _components;
|
|
|
8865
8879
|
});
|
|
8866
8880
|
},
|
|
8867
8881
|
|
|
8868
|
-
/**
|
|
8869
|
-
* del
|
|
8870
|
-
* @desc:删除常用语
|
|
8871
|
-
* @author liufan
|
|
8872
|
-
* @param {Object} val 删除的数据
|
|
8873
|
-
* @date 2022年5月25日
|
|
8882
|
+
/**
|
|
8883
|
+
* del
|
|
8884
|
+
* @desc:删除常用语
|
|
8885
|
+
* @author liufan
|
|
8886
|
+
* @param {Object} val 删除的数据
|
|
8887
|
+
* @date 2022年5月25日
|
|
8874
8888
|
**/
|
|
8875
8889
|
del: function del(val) {
|
|
8876
8890
|
var _this3 = this;
|
|
@@ -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
|
}
|
|
@@ -8912,12 +8926,12 @@ var _components;
|
|
|
8912
8926
|
}).catch(function (e) {});
|
|
8913
8927
|
},
|
|
8914
8928
|
|
|
8915
|
-
/**
|
|
8916
|
-
* submit
|
|
8917
|
-
* @desc:新增/编辑意见保存
|
|
8918
|
-
* @author liufan
|
|
8919
|
-
* @param {Object} val 保存数据
|
|
8920
|
-
* @date 2022年5月25日
|
|
8929
|
+
/**
|
|
8930
|
+
* submit
|
|
8931
|
+
* @desc:新增/编辑意见保存
|
|
8932
|
+
* @author liufan
|
|
8933
|
+
* @param {Object} val 保存数据
|
|
8934
|
+
* @date 2022年5月25日
|
|
8921
8935
|
**/
|
|
8922
8936
|
submit: function submit(val) {
|
|
8923
8937
|
var _this4 = this;
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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'),
|
|
@@ -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
|
|
|
@@ -21669,7 +21683,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
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,
|
|
@@ -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, {
|
|
@@ -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
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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();
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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'),
|
|
@@ -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
|
|
|
@@ -26789,7 +26803,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
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,
|
|
@@ -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, {
|
|
@@ -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
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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();
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -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
|
|