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-list.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 = 56);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -541,7 +541,11 @@ var util_ajax = function ajax(_ref) {
|
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
543
|
}
|
|
544
|
-
|
|
544
|
+
var isFormData = typeof FormData !== 'undefined' && data instanceof FormData;
|
|
545
|
+
if (isFormData) {
|
|
546
|
+
// FormData(如分片上传):不做序列化,也不强制 content-type,
|
|
547
|
+
// 交给浏览器/axios 自动设置 multipart/form-data 及 boundary
|
|
548
|
+
} else if (method === 'post' && format) {
|
|
545
549
|
data = external_qs_default.a.stringify(data, formatConfig);
|
|
546
550
|
if (!header['content-type'] && !header['Content-Type']) {
|
|
547
551
|
header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
|
|
@@ -1705,7 +1709,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1705
1709
|
* @param {function} callback - 回调函数
|
|
1706
1710
|
**/
|
|
1707
1711
|
var util_getMainConfig = function getMainConfig(callback) {
|
|
1708
|
-
util_ajax({ url: api["
|
|
1712
|
+
util_ajax({ url: api["Db" /* mainConfig */] }).then(function (res) {
|
|
1709
1713
|
if (res && res.rCode === 0) {
|
|
1710
1714
|
callback(res.results);
|
|
1711
1715
|
}
|
|
@@ -2531,7 +2535,7 @@ var isLogined = function () {
|
|
|
2531
2535
|
break;
|
|
2532
2536
|
}
|
|
2533
2537
|
|
|
2534
|
-
util_ajax({ method: 'post', url: api["
|
|
2538
|
+
util_ajax({ method: 'post', url: api["Cb" /* logout */] }).then(function (res) {
|
|
2535
2539
|
if (res.rCode === 0) {
|
|
2536
2540
|
removeStorage();
|
|
2537
2541
|
}
|
|
@@ -4001,171 +4005,175 @@ var winTopOpen = function winTopOpen(config) {
|
|
|
4001
4005
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4002
4006
|
|
|
4003
4007
|
"use strict";
|
|
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__, "
|
|
4008
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4008
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return doCaLogin; });
|
|
4009
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return doUserLogin; });
|
|
4010
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return doQrLogin; });
|
|
4011
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return logout; });
|
|
4012
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return initLogin; });
|
|
4013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return switchUserTo; });
|
|
4010
4014
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return changeImg; });
|
|
4011
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4015
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return getLoginCode; });
|
|
4016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return doCodeLogin; });
|
|
4013
4017
|
/* unused harmony export updateCode */
|
|
4014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4015
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4016
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4018
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return getModifyPassCode; });
|
|
4019
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return codeModifyPass; });
|
|
4020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return loginModifyPassword; });
|
|
4017
4021
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
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__, "
|
|
4031
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4032
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return initModifyPassword; });
|
|
4023
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return doWechatQrLogin; });
|
|
4024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return getTwoFactorLoginCode; });
|
|
4025
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return doTwoFactorLogin; });
|
|
4026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return initRetrialAuth; });
|
|
4027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return getRetrialAuthCode; });
|
|
4028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return scanCodeRetrialAuth; });
|
|
4029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return codeRetrialAuth; });
|
|
4030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return doAssistanceQrLogin; });
|
|
4031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tc", function() { return userOnline; });
|
|
4032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return getUserAppWithTag; });
|
|
4033
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return recordUserApp; });
|
|
4034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return mainConfig; });
|
|
4035
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return initUserSet; });
|
|
4036
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Oc", function() { return updateUserInfo; });
|
|
4033
4037
|
/* unused harmony export getUserImgUrl */
|
|
4034
4038
|
/* unused harmony export getDoorIndex */
|
|
4035
4039
|
/* unused harmony export refreshOnlineUsers */
|
|
4036
4040
|
/* unused harmony export getQuickMenuIds */
|
|
4037
4041
|
/* unused harmony export getApplicationIdArray */
|
|
4038
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4042
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getComplexApplications; });
|
|
4043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getComplexApplicationsNew; });
|
|
4040
4044
|
/* unused harmony export getUserCustomInfo */
|
|
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__, "
|
|
4056
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4057
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4045
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nc", function() { return updateUserCustomInfo; });
|
|
4046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return sysMsgPage; });
|
|
4047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return ignoreSysMsg; });
|
|
4048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return ignoreAllSysMsg; });
|
|
4049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return searchType; });
|
|
4050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return getSysParam; });
|
|
4051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getAdjunctProperties; });
|
|
4052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sc", function() { return uploads; });
|
|
4053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qc", function() { return uploadOnlyOne; });
|
|
4054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getAdjunctFileInfos; });
|
|
4055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rc", function() { return uploadSort; });
|
|
4056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return downloadByAdjunctId; });
|
|
4057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pc", function() { return uploadDownloads; });
|
|
4058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return previewAdjunct; });
|
|
4059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return previewAdjunct2; });
|
|
4060
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return previewAdjunctOffice; });
|
|
4061
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return delAdjunct; });
|
|
4062
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return chunkCheckFile; });
|
|
4063
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return chunkUploadChunk; });
|
|
4064
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return chunkMergeChunk; });
|
|
4065
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getDochubBucket; });
|
|
4058
4066
|
/* unused harmony export upload_updateClassify */
|
|
4059
4067
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
4060
4068
|
/* unused harmony export getPictureBase64 */
|
|
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__, "
|
|
4065
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4069
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return getSelectorOrgTree; });
|
|
4070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return getSelectorOrgDetail; });
|
|
4071
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return getOrgMainTree; });
|
|
4072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return getSelectOrgsubids; });
|
|
4073
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return findSysCode; });
|
|
4074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getDictList; });
|
|
4067
4075
|
/* unused harmony export findUserBaseInfo */
|
|
4068
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4076
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return gethelpdoc; });
|
|
4069
4077
|
/* unused harmony export getCurrentuser */
|
|
4070
4078
|
/* unused harmony export mainDetail */
|
|
4071
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4072
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wc", function() { return toStartFlow; });
|
|
4080
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qc", function() { return tempSave; });
|
|
4081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return commonOpion; });
|
|
4074
4082
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
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__, "
|
|
4085
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return editCommonOpion; });
|
|
4084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return saveCommonOpinion; });
|
|
4085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mc", function() { return updateCommonOpinion; });
|
|
4086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return deleteCommonOpion; });
|
|
4087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return getProcessDefList; });
|
|
4088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return getNodeInfo; });
|
|
4089
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return findCodeValues; });
|
|
4090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return findSysParam; });
|
|
4091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return findSysCodes; });
|
|
4092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return getNotificationMsg; });
|
|
4093
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getHandleInfoHtml; });
|
|
4094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return taskHandleHtml; });
|
|
4087
4095
|
/* unused harmony export getView */
|
|
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__, "
|
|
4107
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return register; });
|
|
4097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return pendedhistoryList; });
|
|
4098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ac", function() { return toTaskRejectHtml; });
|
|
4099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return taskRejectHtml; });
|
|
4100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xc", function() { return toStartTaskRead; });
|
|
4101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yc", function() { return toStartTaskReadIndex; });
|
|
4102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return taskReadHtml; });
|
|
4103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return rejectAndEnd; });
|
|
4104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vc", function() { return toSendMsg; });
|
|
4105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return sendMsg; });
|
|
4106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return endFlowHtml; });
|
|
4107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return handleInfo; });
|
|
4108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return loginUserInfo; });
|
|
4109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Uc", function() { return wss; });
|
|
4110
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kc", function() { return topic; });
|
|
4111
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return getPresetCustomInfo; });
|
|
4112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return getPresetNodeInfo; });
|
|
4113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gc", function() { return toTaskTransferIndex; });
|
|
4114
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return taskTransfer; });
|
|
4115
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tc", function() { return toPresetInfoListIndex; });
|
|
4116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return deletePresetInfo; });
|
|
4109
4117
|
/* unused harmony export historyListJson */
|
|
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__, "
|
|
4133
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4134
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return pendedhistoryListJson; });
|
|
4119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return pressListJson; });
|
|
4120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return deleteFlow; });
|
|
4121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return modifyFlow; });
|
|
4122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return isCanStartSubFlow; });
|
|
4123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hc", function() { return toTaskUnionExamine; });
|
|
4124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "oc", function() { return taskUnionExamine; });
|
|
4125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fc", function() { return toTaskTakeAdvice; });
|
|
4126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return taskTakeAdvice; });
|
|
4127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cc", function() { return toTaskStartDraft; });
|
|
4128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Dc", function() { return toTaskSupervise; });
|
|
4129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ec", function() { return toTaskSuperviseSub; });
|
|
4130
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return taskStartDraft; });
|
|
4131
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bc", function() { return toTaskReview; });
|
|
4132
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return taskReview; });
|
|
4133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ic", function() { return toTaskUnionSeal; });
|
|
4134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pc", function() { return taskUnionSeal; });
|
|
4135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jc", function() { return toTwoOfficesDispatch; });
|
|
4136
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lc", function() { return twoOfficesDispatch; });
|
|
4137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uc", function() { return toResetProcessIndex; });
|
|
4138
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return resetProcess; });
|
|
4139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zc", function() { return toTaskContinuationIndex; });
|
|
4140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return taskContinuation; });
|
|
4141
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return getFreeStartFlowParams; });
|
|
4142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return freeStartFlowWithSubmitTask; });
|
|
4135
4143
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return checkForeignOrgStartedCircularRead; });
|
|
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__, "
|
|
4139
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4140
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4144
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return pendedhistoryListWithCircularReadJson; });
|
|
4145
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return fyListJson; });
|
|
4146
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return resetJson; });
|
|
4147
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return deletedListJson; });
|
|
4148
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return restoredHistory; });
|
|
4141
4149
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return batchDelete; });
|
|
4142
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4143
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4144
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4150
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return circularReadWithdraw; });
|
|
4151
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return taskReadWithDraw; });
|
|
4152
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return startReadTransferHandleFlowWithTaskReadEnd; });
|
|
4145
4153
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return checkBusinessIdStartedReadTransferHandle; });
|
|
4146
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4147
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4154
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return sendList; });
|
|
4155
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return sendInfo; });
|
|
4148
4156
|
/* unused harmony export sendSave */
|
|
4149
4157
|
/* unused harmony export sendUpdate */
|
|
4150
4158
|
/* unused harmony export sendDelete */
|
|
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__, "
|
|
4167
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4168
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
4159
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return sendBatch; });
|
|
4160
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return formContents; });
|
|
4161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return directStartTaskCircularRead; });
|
|
4162
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return endFlowAndStartTaskCircularRead; });
|
|
4163
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return getNodeInfoForStart; });
|
|
4164
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return freeStartFlow; });
|
|
4165
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return getUrgencyLevelChangedNotificationType; });
|
|
4166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sc", function() { return toFreeTaskCircularRead; });
|
|
4167
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return isCancelSecondConfirmation; });
|
|
4168
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return freeTaskCircularRead; });
|
|
4169
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rc", function() { return toDefinitionChangeSort; });
|
|
4170
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return setSort; });
|
|
4171
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return queryUseCommonMenu; });
|
|
4172
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return getIndexCount; });
|
|
4173
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return getVoteMeetingNum; });
|
|
4174
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return getUserTipsInstanceNum; });
|
|
4175
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return getShareFilesReceiveCountNew; });
|
|
4176
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return queryChildMenuUrl; });
|
|
4169
4177
|
var flowPendingPrefix = window.flowPendingPrefix || localStorage.getItem('flowPendingPrefix') || '/bpm';
|
|
4170
4178
|
// 登录
|
|
4171
4179
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -4230,6 +4238,11 @@ var previewAdjunct = '/main2/mecpfileManagement/previewAdjunct'; // 预览附件
|
|
|
4230
4238
|
var previewAdjunct2 = '/main2/mecpfileManagement/previewAdjunct2/'; // 预览附件(带文件名)
|
|
4231
4239
|
var previewAdjunctOffice = '/document/webDocument/documentIndex.dhtml'; // 预览附件word excel ppt
|
|
4232
4240
|
var delAdjunct = '/main2/mecpfileManagement/delAdjunct'; // 删除附件
|
|
4241
|
+
// 分片上传(dochub v2),优先使用 dochubConfig 下发的同名 url,这里仅作兜底
|
|
4242
|
+
var chunkCheckFile = '/dochub/v2/chunk/checkFile'; // 秒传检测/断点续传查询
|
|
4243
|
+
var chunkUploadChunk = '/dochub/v2/chunk/uploadChunk'; // 上传单个分片
|
|
4244
|
+
var chunkMergeChunk = '/dochub/v2/chunk/mergeChunk'; // 合并分片并写入文档库
|
|
4245
|
+
var getDochubBucket = '/dochub/v2/getBucket'; // 根据桶编码获取文档中台桶配置(含分片上传开关/参数)
|
|
4233
4246
|
var upload_updateClassify = '/main2/mecpfileManagement/updateClassify'; // 根据附件id保存该附件的分类信息
|
|
4234
4247
|
var getDeleteAdjunctFileInfos = '/main2/mecpfileManagement/getDeleteAdjunctFileInfos'; // 根据业务id和附件code获取相关已删除附件的元数据列表
|
|
4235
4248
|
var getPictureBase64 = '/main2/mecpfileManagement/getPictureBase64'; // 获取图片的base64编码
|
|
@@ -4611,7 +4624,7 @@ var util = __webpack_require__(0);
|
|
|
4611
4624
|
|
|
4612
4625
|
var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
|
|
4613
4626
|
var params = {
|
|
4614
|
-
url: util["a" /* default */].getStorage('dochubConfig') ? JSON.parse(util["a" /* default */].getStorage('dochubConfig')).deleteDocumentUrl : api["
|
|
4627
|
+
url: util["a" /* default */].getStorage('dochubConfig') ? JSON.parse(util["a" /* default */].getStorage('dochubConfig')).deleteDocumentUrl : api["n" /* delAdjunct */],
|
|
4615
4628
|
params: { userName: userName, id: file.adjunctId || file.response.adjunctId, ownId: this.ownId, businessId: this.ownId, bucketCode: this.code, documentId: file.adjunctId || file.response.adjunctId }
|
|
4616
4629
|
};
|
|
4617
4630
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -4787,7 +4800,7 @@ module.exports = require("qs");
|
|
|
4787
4800
|
|
|
4788
4801
|
/***/ }),
|
|
4789
4802
|
|
|
4790
|
-
/***/
|
|
4803
|
+
/***/ 56:
|
|
4791
4804
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4792
4805
|
|
|
4793
4806
|
"use strict";
|
|
@@ -6590,11 +6603,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6590
6603
|
|
|
6591
6604
|
|
|
6592
6605
|
methods: {
|
|
6593
|
-
/**
|
|
6594
|
-
* handleBatchDelete
|
|
6595
|
-
* @desc:批量删除
|
|
6596
|
-
* @author liufan
|
|
6597
|
-
* @date 2025年12月31日
|
|
6606
|
+
/**
|
|
6607
|
+
* handleBatchDelete
|
|
6608
|
+
* @desc:批量删除
|
|
6609
|
+
* @author liufan
|
|
6610
|
+
* @date 2025年12月31日
|
|
6598
6611
|
**/
|
|
6599
6612
|
handleBatchDelete: function handleBatchDelete() {
|
|
6600
6613
|
var _this6 = this;
|
|
@@ -6658,7 +6671,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6658
6671
|
|
|
6659
6672
|
if (handle.text == '恢复') {
|
|
6660
6673
|
var params = {
|
|
6661
|
-
url: api["
|
|
6674
|
+
url: api["Tb" /* restoredHistory */],
|
|
6662
6675
|
params: {
|
|
6663
6676
|
id: row.id
|
|
6664
6677
|
}
|
|
@@ -6692,7 +6705,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6692
6705
|
return x.id;
|
|
6693
6706
|
}).join(',');
|
|
6694
6707
|
var params = {
|
|
6695
|
-
url: api["
|
|
6708
|
+
url: api["ic" /* taskReadWithDraw */],
|
|
6696
6709
|
params: {
|
|
6697
6710
|
pendingIds: pendingIds
|
|
6698
6711
|
}
|
|
@@ -6759,7 +6772,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6759
6772
|
var _this10 = this;
|
|
6760
6773
|
|
|
6761
6774
|
var params = {
|
|
6762
|
-
url: api["
|
|
6775
|
+
url: api["j" /* circularReadWithdraw */],
|
|
6763
6776
|
params: { pendedHistoryId: pendedHistoryId }
|
|
6764
6777
|
};
|
|
6765
6778
|
this.$confirm('是否确定撤回当前传阅', {
|
|
@@ -6784,7 +6797,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6784
6797
|
getCircularReadList: function getCircularReadList() {
|
|
6785
6798
|
var _that = this;
|
|
6786
6799
|
var params = {
|
|
6787
|
-
url: api["
|
|
6800
|
+
url: api["Hb" /* pendedhistoryListWithCircularReadJson */],
|
|
6788
6801
|
params: { apprecordid: _that.businessId }
|
|
6789
6802
|
};
|
|
6790
6803
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -6860,7 +6873,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6860
6873
|
this.$confirm('您确定要置为失效吗?').then(function () {
|
|
6861
6874
|
_this11.loading = util["a" /* default */].loading(_this11.$loading, '提交中...');
|
|
6862
6875
|
var param = {
|
|
6863
|
-
url: api["
|
|
6876
|
+
url: api["q" /* deletePresetInfo */],
|
|
6864
6877
|
headers: { Accept: 'application/json,text/plain' },
|
|
6865
6878
|
method: 'post',
|
|
6866
6879
|
data: { id: row.id }
|
|
@@ -6891,19 +6904,19 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6891
6904
|
}
|
|
6892
6905
|
},
|
|
6893
6906
|
|
|
6894
|
-
/**
|
|
6895
|
-
* handleFormSubmit
|
|
6896
|
-
* @desc:删除节点点击事件
|
|
6897
|
-
* @param {Object} formData 点击删除的form数据
|
|
6898
|
-
* @author liufan
|
|
6899
|
-
* @date 2022年11月29日
|
|
6907
|
+
/**
|
|
6908
|
+
* handleFormSubmit
|
|
6909
|
+
* @desc:删除节点点击事件
|
|
6910
|
+
* @param {Object} formData 点击删除的form数据
|
|
6911
|
+
* @author liufan
|
|
6912
|
+
* @date 2022年11月29日
|
|
6900
6913
|
**/
|
|
6901
6914
|
handleFormSubmit: function handleFormSubmit(formData) {
|
|
6902
6915
|
var _this12 = this;
|
|
6903
6916
|
|
|
6904
6917
|
this.delLoading = true;
|
|
6905
6918
|
var params = {
|
|
6906
|
-
url: this.modalType == 'del' ? api["
|
|
6919
|
+
url: this.modalType == 'del' ? api["p" /* deleteFlow */] : api["Eb" /* modifyFlow */],
|
|
6907
6920
|
method: 'POST',
|
|
6908
6921
|
data: { id: this.historyId, reason: formData.reason }
|
|
6909
6922
|
};
|
|
@@ -6932,12 +6945,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6932
6945
|
});
|
|
6933
6946
|
},
|
|
6934
6947
|
|
|
6935
|
-
/**
|
|
6936
|
-
* del
|
|
6937
|
-
* @desc:展示删除弹窗
|
|
6938
|
-
* @param {String} id 当前点击数据id
|
|
6939
|
-
* @author liufan
|
|
6940
|
-
* @date 2022年11月29日
|
|
6948
|
+
/**
|
|
6949
|
+
* del
|
|
6950
|
+
* @desc:展示删除弹窗
|
|
6951
|
+
* @param {String} id 当前点击数据id
|
|
6952
|
+
* @author liufan
|
|
6953
|
+
* @date 2022年11月29日
|
|
6941
6954
|
**/
|
|
6942
6955
|
del: function del(id, type) {
|
|
6943
6956
|
this.modalType = type;
|
|
@@ -6945,12 +6958,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6945
6958
|
this.showDel = true;
|
|
6946
6959
|
},
|
|
6947
6960
|
|
|
6948
|
-
/**
|
|
6949
|
-
* handleCurrentChange
|
|
6950
|
-
* @desc:监听页码变化
|
|
6951
|
-
* @param {String} val 当前页
|
|
6952
|
-
* @author liufan
|
|
6953
|
-
* @date 2022年11月29日
|
|
6961
|
+
/**
|
|
6962
|
+
* handleCurrentChange
|
|
6963
|
+
* @desc:监听页码变化
|
|
6964
|
+
* @param {String} val 当前页
|
|
6965
|
+
* @author liufan
|
|
6966
|
+
* @date 2022年11月29日
|
|
6954
6967
|
**/
|
|
6955
6968
|
handleCurrentChange: function handleCurrentChange(val, type) {
|
|
6956
6969
|
this.currentPage = val;
|
|
@@ -6959,12 +6972,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6959
6972
|
}
|
|
6960
6973
|
},
|
|
6961
6974
|
|
|
6962
|
-
/**
|
|
6963
|
-
* handleSizeChange
|
|
6964
|
-
* @desc:监听每页数据显示数量变化
|
|
6965
|
-
* @param {String} val 每页展示数量
|
|
6966
|
-
* @author liufan
|
|
6967
|
-
* @date 2022年11月29日
|
|
6975
|
+
/**
|
|
6976
|
+
* handleSizeChange
|
|
6977
|
+
* @desc:监听每页数据显示数量变化
|
|
6978
|
+
* @param {String} val 每页展示数量
|
|
6979
|
+
* @author liufan
|
|
6980
|
+
* @date 2022年11月29日
|
|
6968
6981
|
**/
|
|
6969
6982
|
handleSizeChange: function handleSizeChange(val) {
|
|
6970
6983
|
this.pageSize = val;
|
|
@@ -6973,12 +6986,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6973
6986
|
}
|
|
6974
6987
|
},
|
|
6975
6988
|
|
|
6976
|
-
/**
|
|
6977
|
-
* sortChange
|
|
6978
|
-
* @desc:监听排序变化
|
|
6979
|
-
* @param {Object} info 需要排序的字段及排序方式
|
|
6980
|
-
* @author liufan
|
|
6981
|
-
* @date 2022年11月29日
|
|
6989
|
+
/**
|
|
6990
|
+
* sortChange
|
|
6991
|
+
* @desc:监听排序变化
|
|
6992
|
+
* @param {Object} info 需要排序的字段及排序方式
|
|
6993
|
+
* @author liufan
|
|
6994
|
+
* @date 2022年11月29日
|
|
6982
6995
|
**/
|
|
6983
6996
|
sortChange: function sortChange(info, type) {
|
|
6984
6997
|
var prop = info.prop;
|
|
@@ -6994,11 +7007,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
6994
7007
|
}
|
|
6995
7008
|
},
|
|
6996
7009
|
|
|
6997
|
-
/**
|
|
6998
|
-
* getDeletList
|
|
6999
|
-
* @desc:删除列表数据
|
|
7000
|
-
* @author liufan
|
|
7001
|
-
* @date 2025年12月30日
|
|
7010
|
+
/**
|
|
7011
|
+
* getDeletList
|
|
7012
|
+
* @desc:删除列表数据
|
|
7013
|
+
* @author liufan
|
|
7014
|
+
* @date 2025年12月30日
|
|
7002
7015
|
**/
|
|
7003
7016
|
getDeletList: function getDeletList() {
|
|
7004
7017
|
var _this13 = this;
|
|
@@ -7011,7 +7024,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7011
7024
|
|
|
7012
7025
|
this.deleteLoading = true;
|
|
7013
7026
|
var params = {
|
|
7014
|
-
url: api["
|
|
7027
|
+
url: api["r" /* deletedListJson */] + '?apprecordId=' + businessId,
|
|
7015
7028
|
method: 'POST',
|
|
7016
7029
|
data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord }
|
|
7017
7030
|
};
|
|
@@ -7027,11 +7040,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7027
7040
|
});
|
|
7028
7041
|
},
|
|
7029
7042
|
|
|
7030
|
-
/**
|
|
7031
|
-
* getResetList
|
|
7032
|
-
* @desc:重设列表数据
|
|
7033
|
-
* @author liufan
|
|
7034
|
-
* @date 2025年12月30日
|
|
7043
|
+
/**
|
|
7044
|
+
* getResetList
|
|
7045
|
+
* @desc:重设列表数据
|
|
7046
|
+
* @author liufan
|
|
7047
|
+
* @date 2025年12月30日
|
|
7035
7048
|
**/
|
|
7036
7049
|
getResetList: function getResetList() {
|
|
7037
7050
|
var _this14 = this;
|
|
@@ -7044,7 +7057,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7044
7057
|
|
|
7045
7058
|
this.resetLoading = true;
|
|
7046
7059
|
var params = {
|
|
7047
|
-
url: api["
|
|
7060
|
+
url: api["Rb" /* resetJson */] + '?appRecordId=' + businessId,
|
|
7048
7061
|
params: { appRecordId: businessId },
|
|
7049
7062
|
method: 'POST',
|
|
7050
7063
|
data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord }
|
|
@@ -7061,11 +7074,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7061
7074
|
});
|
|
7062
7075
|
},
|
|
7063
7076
|
|
|
7064
|
-
/**
|
|
7065
|
-
* getPressList
|
|
7066
|
-
* @desc:催办列表数据
|
|
7067
|
-
* @author liufan
|
|
7068
|
-
* @date 2022年11月29日
|
|
7077
|
+
/**
|
|
7078
|
+
* getPressList
|
|
7079
|
+
* @desc:催办列表数据
|
|
7080
|
+
* @author liufan
|
|
7081
|
+
* @date 2022年11月29日
|
|
7069
7082
|
**/
|
|
7070
7083
|
getPressList: function getPressList() {
|
|
7071
7084
|
var _this15 = this;
|
|
@@ -7078,7 +7091,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7078
7091
|
|
|
7079
7092
|
this.pressLoading = true;
|
|
7080
7093
|
var params = {
|
|
7081
|
-
url: api["
|
|
7094
|
+
url: api["Ib" /* pressListJson */],
|
|
7082
7095
|
params: { historyId: historyId },
|
|
7083
7096
|
method: 'POST',
|
|
7084
7097
|
data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
|
|
@@ -7095,12 +7108,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7095
7108
|
});
|
|
7096
7109
|
},
|
|
7097
7110
|
|
|
7098
|
-
/**
|
|
7099
|
-
* goPress
|
|
7100
|
-
* @desc:催办列表查看
|
|
7101
|
-
* @param {String} id 催办列表id
|
|
7102
|
-
* @author liufan
|
|
7103
|
-
* @date 2022年11月29日
|
|
7111
|
+
/**
|
|
7112
|
+
* goPress
|
|
7113
|
+
* @desc:催办列表查看
|
|
7114
|
+
* @param {String} id 催办列表id
|
|
7115
|
+
* @author liufan
|
|
7116
|
+
* @date 2022年11月29日
|
|
7104
7117
|
**/
|
|
7105
7118
|
goPress: function goPress(id) {
|
|
7106
7119
|
this.historyId = id;
|
|
@@ -7108,23 +7121,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7108
7121
|
this.getPressList();
|
|
7109
7122
|
},
|
|
7110
7123
|
|
|
7111
|
-
/**
|
|
7112
|
-
* showFile
|
|
7113
|
-
* @desc:附件查看
|
|
7114
|
-
* @param {String} ownId 附件id
|
|
7115
|
-
* @author liufan
|
|
7116
|
-
* @date 2022年11月29日
|
|
7124
|
+
/**
|
|
7125
|
+
* showFile
|
|
7126
|
+
* @desc:附件查看
|
|
7127
|
+
* @param {String} ownId 附件id
|
|
7128
|
+
* @author liufan
|
|
7129
|
+
* @date 2022年11月29日
|
|
7117
7130
|
**/
|
|
7118
7131
|
showFile: function showFile(ownId) {
|
|
7119
7132
|
this.wfpendingid = ownId;
|
|
7120
7133
|
this.showFileList = true;
|
|
7121
7134
|
},
|
|
7122
7135
|
|
|
7123
|
-
/**
|
|
7124
|
-
* handleChange
|
|
7125
|
-
* @desc:切换排序方式
|
|
7126
|
-
* @author liufan
|
|
7127
|
-
* @date 2022年11月22日
|
|
7136
|
+
/**
|
|
7137
|
+
* handleChange
|
|
7138
|
+
* @desc:切换排序方式
|
|
7139
|
+
* @author liufan
|
|
7140
|
+
* @date 2022年11月22日
|
|
7128
7141
|
**/
|
|
7129
7142
|
handleChange: function handleChange(key, value) {
|
|
7130
7143
|
if (value) {
|
|
@@ -7144,7 +7157,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7144
7157
|
switch (_context3.prev = _context3.next) {
|
|
7145
7158
|
case 0:
|
|
7146
7159
|
params = {
|
|
7147
|
-
url: api["
|
|
7160
|
+
url: api["M" /* fyListJson */],
|
|
7148
7161
|
params: {
|
|
7149
7162
|
appRecordId: _this16.businessId,
|
|
7150
7163
|
status: type
|
|
@@ -7174,17 +7187,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7174
7187
|
}))();
|
|
7175
7188
|
},
|
|
7176
7189
|
|
|
7177
|
-
/**
|
|
7178
|
-
* getFlowList
|
|
7179
|
-
* @desc:获取流程列表
|
|
7180
|
-
* @author liufan
|
|
7181
|
-
* @date 2022年11月22日
|
|
7190
|
+
/**
|
|
7191
|
+
* getFlowList
|
|
7192
|
+
* @desc:获取流程列表
|
|
7193
|
+
* @author liufan
|
|
7194
|
+
* @date 2022年11月22日
|
|
7182
7195
|
**/
|
|
7183
7196
|
getFlowList: function getFlowList(type) {
|
|
7184
7197
|
var _this17 = this;
|
|
7185
7198
|
|
|
7186
7199
|
var params = {
|
|
7187
|
-
url: api["
|
|
7200
|
+
url: api["Gb" /* pendedhistoryListJson */],
|
|
7188
7201
|
params: _extends({
|
|
7189
7202
|
apprecordid: this.businessId,
|
|
7190
7203
|
pendingAttr: 0,
|
|
@@ -7258,12 +7271,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7258
7271
|
});
|
|
7259
7272
|
},
|
|
7260
7273
|
|
|
7261
|
-
/**
|
|
7262
|
-
* handleClick
|
|
7263
|
-
* @desc:表单点击事件
|
|
7264
|
-
* @param {Object} val 当前点击行数据及按钮
|
|
7265
|
-
* @author liufan
|
|
7266
|
-
* @date 2022年11月10日
|
|
7274
|
+
/**
|
|
7275
|
+
* handleClick
|
|
7276
|
+
* @desc:表单点击事件
|
|
7277
|
+
* @param {Object} val 当前点击行数据及按钮
|
|
7278
|
+
* @author liufan
|
|
7279
|
+
* @date 2022年11月10日
|
|
7267
7280
|
**/
|
|
7268
7281
|
handleClick: function handleClick(val) {
|
|
7269
7282
|
var _this18 = this;
|
|
@@ -7278,7 +7291,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7278
7291
|
this.$confirm('您确定要置为失效吗?').then(function () {
|
|
7279
7292
|
_this18.loading = util["a" /* default */].loading(_this18.$loading, '提交中...');
|
|
7280
7293
|
var param = {
|
|
7281
|
-
url: api["
|
|
7294
|
+
url: api["q" /* deletePresetInfo */],
|
|
7282
7295
|
headers: { Accept: 'application/json,text/plain' },
|
|
7283
7296
|
method: 'post',
|
|
7284
7297
|
params: { id: id }
|
|
@@ -7309,13 +7322,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7309
7322
|
}
|
|
7310
7323
|
},
|
|
7311
7324
|
|
|
7312
|
-
/**
|
|
7313
|
-
* getCodeValue
|
|
7314
|
-
* @desc:获取代码表过滤后的值
|
|
7315
|
-
* @param {String} value 展示数据的代码值
|
|
7316
|
-
* @param {String} type 代码表类型
|
|
7317
|
-
* @author liufan
|
|
7318
|
-
* @date 2022年11月10日
|
|
7325
|
+
/**
|
|
7326
|
+
* getCodeValue
|
|
7327
|
+
* @desc:获取代码表过滤后的值
|
|
7328
|
+
* @param {String} value 展示数据的代码值
|
|
7329
|
+
* @param {String} type 代码表类型
|
|
7330
|
+
* @author liufan
|
|
7331
|
+
* @date 2022年11月10日
|
|
7319
7332
|
**/
|
|
7320
7333
|
getCodeValue: function getCodeValue(value, type) {
|
|
7321
7334
|
var val = this[type].filter(function (item) {
|
|
@@ -7324,18 +7337,18 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7324
7337
|
return val[0].shortName;
|
|
7325
7338
|
},
|
|
7326
7339
|
|
|
7327
|
-
/**
|
|
7328
|
-
* getSysInfo
|
|
7329
|
-
* @desc:获取代码表
|
|
7330
|
-
* @param {String} code 编码code值
|
|
7331
|
-
* @author liufan
|
|
7332
|
-
* @date 2022年11月10日
|
|
7340
|
+
/**
|
|
7341
|
+
* getSysInfo
|
|
7342
|
+
* @desc:获取代码表
|
|
7343
|
+
* @param {String} code 编码code值
|
|
7344
|
+
* @author liufan
|
|
7345
|
+
* @date 2022年11月10日
|
|
7333
7346
|
**/
|
|
7334
7347
|
getSysInfo: function getSysInfo(code) {
|
|
7335
7348
|
var _this19 = this;
|
|
7336
7349
|
|
|
7337
7350
|
var params = {
|
|
7338
|
-
url: api["
|
|
7351
|
+
url: api["E" /* findCodeValues */],
|
|
7339
7352
|
params: { ccCode: code }
|
|
7340
7353
|
};
|
|
7341
7354
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -7351,17 +7364,17 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
7351
7364
|
}).catch(function (e) {});
|
|
7352
7365
|
},
|
|
7353
7366
|
|
|
7354
|
-
/**
|
|
7355
|
-
* getListInfo
|
|
7356
|
-
* @desc:获取预设列表数据
|
|
7357
|
-
* @author liufan
|
|
7358
|
-
* @date 2022年11月10日
|
|
7367
|
+
/**
|
|
7368
|
+
* getListInfo
|
|
7369
|
+
* @desc:获取预设列表数据
|
|
7370
|
+
* @author liufan
|
|
7371
|
+
* @date 2022年11月10日
|
|
7359
7372
|
**/
|
|
7360
7373
|
getListInfo: function getListInfo() {
|
|
7361
7374
|
var _this20 = this;
|
|
7362
7375
|
|
|
7363
7376
|
var param = {
|
|
7364
|
-
url: api["
|
|
7377
|
+
url: api["tc" /* toPresetInfoListIndex */],
|
|
7365
7378
|
params: { apprecordid: this.businessId }
|
|
7366
7379
|
};
|
|
7367
7380
|
util["a" /* default */].ajax(param).then(function (res) {
|