eoss-ui 0.5.33 → 0.5.35
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/CHANGELOG.md +929 -0
- package/lib/button-group.js +115 -95
- package/lib/button.js +115 -95
- package/lib/checkbox-group.js +118 -99
- package/lib/config/api.js +2 -0
- package/lib/data-table-form.js +116 -96
- package/lib/data-table.js +119 -99
- package/lib/date-picker.js +115 -95
- package/lib/dialog.js +123 -99
- package/lib/eoss-ui.common.js +628 -436
- package/lib/flow-group.js +184 -134
- package/lib/flow-list.js +119 -99
- package/lib/flow.js +163 -143
- package/lib/form.js +116 -96
- package/lib/handle-user.js +116 -96
- package/lib/handler.js +229 -161
- package/lib/index.js +1 -1
- package/lib/input-number.js +115 -95
- package/lib/input.js +115 -95
- package/lib/login.js +243 -126
- package/lib/main.js +149 -138
- package/lib/nav.js +115 -95
- package/lib/notify.js +103 -100
- package/lib/page.js +115 -95
- package/lib/player.js +115 -95
- package/lib/qr-code.js +115 -95
- package/lib/radio-group.js +116 -96
- package/lib/retrial-auth.js +118 -98
- package/lib/select-ganged.js +115 -95
- package/lib/select.js +116 -96
- package/lib/selector-panel.js +133 -113
- package/lib/selector.js +116 -96
- package/lib/sizer.js +117 -97
- package/lib/steps.js +115 -95
- package/lib/switch.js +115 -95
- package/lib/table-form.js +115 -95
- package/lib/tabs.js +115 -95
- package/lib/theme-chalk/handler.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +116 -96
- package/lib/toolbar.js +24 -21
- package/lib/tree-group.js +115 -95
- package/lib/tree.js +116 -96
- package/lib/upload.js +125 -105
- package/lib/utils/util.js +17 -0
- package/lib/wujie.js +115 -95
- package/lib/wxlogin.js +115 -95
- package/package.json +2 -2
- package/packages/checkbox-group/src/main.vue +0 -1
- package/packages/dialog/src/main.vue +6 -2
- package/packages/flow-group/src/main.vue +40 -18
- package/packages/handler/src/main.vue +52 -32
- package/packages/login/src/main.vue +78 -10
- package/packages/login/src/resetPassword.vue +7 -5
- package/packages/main/src/main.vue +11 -26
- package/packages/main/src/userinfo.vue +1 -1
- package/packages/theme-chalk/lib/handler.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/handler.scss +3 -1
- package/packages/toolbar/src/main.vue +20 -20
- package/src/config/api.js +2 -0
- package/src/index.js +1 -1
- package/src/utils/util.js +22 -2
package/lib/flow.js
CHANGED
|
@@ -1294,6 +1294,7 @@ var getLength = function getLength(text) {
|
|
|
1294
1294
|
* @desc:转换明度
|
|
1295
1295
|
* @author huangbo
|
|
1296
1296
|
* @date 2022年5月7日
|
|
1297
|
+
* @return {string,array} 元素类名或者id
|
|
1297
1298
|
**/
|
|
1298
1299
|
var getLightness = function getLightness($v, $i, $isLight) {
|
|
1299
1300
|
var $value = $isLight ? $v + $brightnessStep1 * $i : $v - $brightnessStep2 * $i;
|
|
@@ -1301,6 +1302,21 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1301
1302
|
return toFixed($value, 2);
|
|
1302
1303
|
};
|
|
1303
1304
|
|
|
1305
|
+
/**
|
|
1306
|
+
* getMainConfig
|
|
1307
|
+
* @desc 获取系统配置
|
|
1308
|
+
* @author huangbo
|
|
1309
|
+
* @date 2022年5月7日
|
|
1310
|
+
* @param {function} callback - 回调函数
|
|
1311
|
+
**/
|
|
1312
|
+
var getMainConfig = function getMainConfig(callback) {
|
|
1313
|
+
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
|
|
1314
|
+
if (res && res.rCode === 0) {
|
|
1315
|
+
callback(res.results);
|
|
1316
|
+
}
|
|
1317
|
+
}).catch(function () {});
|
|
1318
|
+
};
|
|
1319
|
+
|
|
1304
1320
|
/**
|
|
1305
1321
|
* getMinute
|
|
1306
1322
|
* @desc 获取分钟
|
|
@@ -2931,6 +2947,7 @@ var watermark = function watermark(option) {
|
|
|
2931
2947
|
getHour: getHour,
|
|
2932
2948
|
getWeekNumber: getWeekNumber,
|
|
2933
2949
|
getLength: getLength,
|
|
2950
|
+
getMainConfig: getMainConfig,
|
|
2934
2951
|
getMinute: getMinute,
|
|
2935
2952
|
getMonth: getMonth,
|
|
2936
2953
|
getObjectType: getObjectType,
|
|
@@ -2992,128 +3009,129 @@ var watermark = function watermark(option) {
|
|
|
2992
3009
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2993
3010
|
|
|
2994
3011
|
"use strict";
|
|
2995
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2996
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2997
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2998
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2999
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3000
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3012
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
|
|
3013
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
|
|
3014
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3015
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return logout; });
|
|
3016
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initLogin; });
|
|
3017
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return switchUserTo; });
|
|
3001
3018
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3002
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3003
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3019
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getLoginCode; });
|
|
3020
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
3004
3021
|
/* unused harmony export updateCode */
|
|
3005
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3022
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getModifyPassCode; });
|
|
3006
3023
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
3007
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3024
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginModifyPassword; });
|
|
3008
3025
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
3009
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3010
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3011
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3012
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3013
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3014
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3015
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3026
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initModifyPassword; });
|
|
3027
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
|
|
3028
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getTwoFactorLoginCode; });
|
|
3029
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3030
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initRetrialAuth; });
|
|
3031
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getRetrialAuthCode; });
|
|
3032
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return scanCodeRetrialAuth; });
|
|
3016
3033
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3017
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3018
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3019
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3034
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3035
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainConfig; });
|
|
3036
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initUserSet; });
|
|
3037
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserInfo; });
|
|
3020
3038
|
/* unused harmony export getUserImgUrl */
|
|
3021
3039
|
/* unused harmony export getDoorIndex */
|
|
3022
3040
|
/* unused harmony export refreshOnlineUsers */
|
|
3023
3041
|
/* unused harmony export getQuickMenuIds */
|
|
3024
3042
|
/* unused harmony export getApplicationIdArray */
|
|
3025
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3026
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3043
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3044
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3027
3045
|
/* unused harmony export getUserCustomInfo */
|
|
3028
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3029
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3030
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3031
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3032
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3033
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3034
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3035
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3036
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3037
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3038
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3039
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3040
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3041
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3046
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserCustomInfo; });
|
|
3047
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sysMsgPage; });
|
|
3048
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreSysMsg; });
|
|
3049
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreAllSysMsg; });
|
|
3050
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3051
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploads; });
|
|
3052
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadOnlyOne; });
|
|
3053
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3054
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadSort; });
|
|
3055
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3056
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadDownloads; });
|
|
3057
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct; });
|
|
3058
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct2; });
|
|
3059
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunctOffice; });
|
|
3042
3060
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
|
|
3043
3061
|
/* unused harmony export upload_updateClassify */
|
|
3044
3062
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
3045
3063
|
/* unused harmony export getPictureBase64 */
|
|
3046
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3047
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3048
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3049
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3050
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3064
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgTree; });
|
|
3065
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgDetail; });
|
|
3066
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getOrgMainTree; });
|
|
3067
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectOrgsubids; });
|
|
3068
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
|
|
3051
3069
|
/* unused harmony export findUserBaseInfo */
|
|
3052
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3070
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return gethelpdoc; });
|
|
3053
3071
|
/* unused harmony export getCurrentuser */
|
|
3054
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3055
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3056
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3072
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainDetail; });
|
|
3073
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartFlow; });
|
|
3074
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return tempSave; });
|
|
3057
3075
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3058
3076
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3059
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3060
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3061
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3077
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3078
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return saveCommonOpinion; });
|
|
3079
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateCommonOpinion; });
|
|
3062
3080
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3063
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3064
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3065
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3066
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3067
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3068
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3069
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3070
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3081
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getProcessDefList; });
|
|
3082
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNodeInfo; });
|
|
3083
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
|
|
3084
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
|
|
3085
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3086
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNotificationMsg; });
|
|
3087
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getHandleInfoHtml; });
|
|
3088
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskHandleHtml; });
|
|
3071
3089
|
/* unused harmony export getView */
|
|
3072
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3073
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3074
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3075
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3076
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3077
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3078
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3079
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3080
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3081
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3082
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3083
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3084
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3085
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3086
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3087
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3088
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3089
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3090
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3091
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3090
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return register; });
|
|
3091
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryList; });
|
|
3092
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskRejectHtml; });
|
|
3093
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskRejectHtml; });
|
|
3094
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskRead; });
|
|
3095
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskReadIndex; });
|
|
3096
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReadHtml; });
|
|
3097
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return rejectAndEnd; });
|
|
3098
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toSendMsg; });
|
|
3099
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendMsg; });
|
|
3100
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3101
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return handleInfo; });
|
|
3102
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginUserInfo; });
|
|
3103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return wss; });
|
|
3104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return topic; });
|
|
3105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetCustomInfo; });
|
|
3106
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetNodeInfo; });
|
|
3107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTransferIndex; });
|
|
3108
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTransfer; });
|
|
3109
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toPresetInfoListIndex; });
|
|
3092
3110
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3093
3111
|
/* unused harmony export historyListJson */
|
|
3094
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3095
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryListJson; });
|
|
3113
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pressListJson; });
|
|
3096
3114
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3097
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3098
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3099
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3100
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3101
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3102
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3103
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3104
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3105
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3106
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3107
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3108
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3109
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3111
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3115
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return isCanStartSubFlow; });
|
|
3116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionExamine; });
|
|
3117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionExamine; });
|
|
3118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTakeAdvice; });
|
|
3119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTakeAdvice; });
|
|
3120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskStartDraft; });
|
|
3121
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskStartDraft; });
|
|
3122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskReview; });
|
|
3123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReview; });
|
|
3124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionSeal; });
|
|
3125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionSeal; });
|
|
3126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTwoOfficesDispatch; });
|
|
3127
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return twoOfficesDispatch; });
|
|
3128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendList; });
|
|
3129
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendInfo; });
|
|
3112
3130
|
/* unused harmony export sendSave */
|
|
3113
3131
|
/* unused harmony export sendUpdate */
|
|
3114
3132
|
/* unused harmony export sendDelete */
|
|
3115
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3133
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendBatch; });
|
|
3134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3117
3135
|
// 登录
|
|
3118
3136
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
3119
3137
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -3137,6 +3155,8 @@ var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身
|
|
|
3137
3155
|
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
3138
3156
|
var scanCodeRetrialAuth = '/sso2/retrialAuth/scanCodeRetrialAuth'; // 二维码扫码验证(二级权限验证)
|
|
3139
3157
|
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
3158
|
+
var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
|
|
3159
|
+
|
|
3140
3160
|
// 框架
|
|
3141
3161
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
3142
3162
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -6093,7 +6113,7 @@ var util = __webpack_require__(0);
|
|
|
6093
6113
|
|
|
6094
6114
|
this.loading = true;
|
|
6095
6115
|
util["a" /* default */].ajax({
|
|
6096
|
-
url: id ? api["
|
|
6116
|
+
url: id ? api["s" /* editCommonOpion */] : api["a" /* addCommonOpion */],
|
|
6097
6117
|
params: { id: id }
|
|
6098
6118
|
}).then(function (res) {
|
|
6099
6119
|
var status = res.status,
|
|
@@ -6358,7 +6378,7 @@ var _components;
|
|
|
6358
6378
|
|
|
6359
6379
|
var that = this;
|
|
6360
6380
|
util["a" /* default */].ajax({
|
|
6361
|
-
url: api["
|
|
6381
|
+
url: api["x" /* findSysParam */],
|
|
6362
6382
|
params: { cpName: 'commonOpinionsSelectType' }
|
|
6363
6383
|
}).then(function (res) {
|
|
6364
6384
|
if (res.status == 'success') {
|
|
@@ -6436,7 +6456,7 @@ var _components;
|
|
|
6436
6456
|
}
|
|
6437
6457
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
6438
6458
|
util["a" /* default */].ajax({
|
|
6439
|
-
url: data.id ? api["
|
|
6459
|
+
url: data.id ? api["Ub" /* updateCommonOpinion */] : api["nb" /* saveCommonOpinion */],
|
|
6440
6460
|
data: info,
|
|
6441
6461
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
6442
6462
|
method: 'post'
|
|
@@ -7288,7 +7308,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
7288
7308
|
newNextUser: [],
|
|
7289
7309
|
newOptions: [],
|
|
7290
7310
|
newSelectUserList: [],
|
|
7291
|
-
url: api["
|
|
7311
|
+
url: api["S" /* handleInfo */],
|
|
7292
7312
|
newCheckboxList: [],
|
|
7293
7313
|
newPresetEdit: 0,
|
|
7294
7314
|
newMultiple: false,
|
|
@@ -7405,7 +7425,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
7405
7425
|
if (query !== '') {
|
|
7406
7426
|
this.searchLoading = true;
|
|
7407
7427
|
util["a" /* default */].ajax({
|
|
7408
|
-
url: api["
|
|
7428
|
+
url: api["S" /* handleInfo */],
|
|
7409
7429
|
params: { searchKey: query, query: query, type: 'user' }
|
|
7410
7430
|
}).then(function (res) {
|
|
7411
7431
|
var status = res.status,
|
|
@@ -7815,7 +7835,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
7815
7835
|
nextNodeId: nodeId,
|
|
7816
7836
|
businessId: this.id
|
|
7817
7837
|
};
|
|
7818
|
-
util["a" /* default */].ajax({ url: api["
|
|
7838
|
+
util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
|
|
7819
7839
|
var status = res.status,
|
|
7820
7840
|
message = res.message,
|
|
7821
7841
|
_res$data = res.data,
|
|
@@ -7912,7 +7932,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
7912
7932
|
|
|
7913
7933
|
isNoStart && (this.newPresetList = []);
|
|
7914
7934
|
var params = {
|
|
7915
|
-
url: api["
|
|
7935
|
+
url: api["J" /* getPresetCustomInfo */],
|
|
7916
7936
|
params: {
|
|
7917
7937
|
nodeId: nodeId,
|
|
7918
7938
|
processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
|
|
@@ -8263,7 +8283,7 @@ var Presetvue_type_script_lang_js_components;
|
|
|
8263
8283
|
nodeId = this.nodeId;
|
|
8264
8284
|
|
|
8265
8285
|
var params = {
|
|
8266
|
-
url: api["
|
|
8286
|
+
url: api["K" /* getPresetNodeInfo */],
|
|
8267
8287
|
params: {
|
|
8268
8288
|
nextNodeId: nextNodeId,
|
|
8269
8289
|
processDefinitionId: processDefinitionId,
|
|
@@ -8869,7 +8889,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
8869
8889
|
var _this = this;
|
|
8870
8890
|
|
|
8871
8891
|
util["a" /* default */].ajax({
|
|
8872
|
-
url: api["
|
|
8892
|
+
url: api["u" /* findCodeValues */],
|
|
8873
8893
|
params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
|
|
8874
8894
|
}).then(function (res) {
|
|
8875
8895
|
var status = res.status,
|
|
@@ -8895,7 +8915,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
8895
8915
|
nodeId: this.nextNode.nextNode,
|
|
8896
8916
|
businessId: this.id
|
|
8897
8917
|
};
|
|
8898
|
-
util["a" /* default */].ajax({ url: api["
|
|
8918
|
+
util["a" /* default */].ajax({ url: api["H" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
8899
8919
|
if (res.status === 'success') {
|
|
8900
8920
|
_this2.nextNode.noticeInfo = res.message;
|
|
8901
8921
|
}
|
|
@@ -8964,7 +8984,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
8964
8984
|
opinion: _this3.newOpinion || newOpinion
|
|
8965
8985
|
};
|
|
8966
8986
|
if (_this3.activeNames != '1') delete params.customPresetUserJson;
|
|
8967
|
-
util["a" /* default */].ajax({ url: api["
|
|
8987
|
+
util["a" /* default */].ajax({ url: api["lb" /* register */], method: 'post', data: params }).then(function (res) {
|
|
8968
8988
|
var status = res.status,
|
|
8969
8989
|
message = res.message;
|
|
8970
8990
|
|
|
@@ -8994,7 +9014,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
8994
9014
|
nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
|
|
8995
9015
|
businessId: this.id
|
|
8996
9016
|
};
|
|
8997
|
-
util["a" /* default */].ajax({ url: api["
|
|
9017
|
+
util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
|
|
8998
9018
|
var status = res.status,
|
|
8999
9019
|
message = res.message,
|
|
9000
9020
|
_res$data = res.data,
|
|
@@ -9081,7 +9101,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9081
9101
|
var _this5 = this;
|
|
9082
9102
|
|
|
9083
9103
|
util["a" /* default */].ajax({
|
|
9084
|
-
url: api["
|
|
9104
|
+
url: api["w" /* findSysCodes */]
|
|
9085
9105
|
}).then(function (res) {
|
|
9086
9106
|
var status = res.status,
|
|
9087
9107
|
message = res.message;
|
|
@@ -9150,7 +9170,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9150
9170
|
businessId: this.businessId
|
|
9151
9171
|
};
|
|
9152
9172
|
// 获取节点
|
|
9153
|
-
util["a" /* default */].ajax({ url: api["
|
|
9173
|
+
util["a" /* default */].ajax({ url: api["Hb" /* toStartFlow */], params: params }).then(function (res) {
|
|
9154
9174
|
//pc接口返回数据处理
|
|
9155
9175
|
var status = res.status,
|
|
9156
9176
|
message = res.message,
|
|
@@ -9596,7 +9616,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
|
|
|
9596
9616
|
notificationType = _sendInfo.notificationType;
|
|
9597
9617
|
|
|
9598
9618
|
var params = {
|
|
9599
|
-
url: api["
|
|
9619
|
+
url: api["sb" /* sendMsg */],
|
|
9600
9620
|
headers: { Accept: 'application/json,text/plain' },
|
|
9601
9621
|
method: 'post',
|
|
9602
9622
|
data: {
|
|
@@ -9658,7 +9678,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
|
|
|
9658
9678
|
|
|
9659
9679
|
this.loading = true;
|
|
9660
9680
|
util["a" /* default */].ajax({
|
|
9661
|
-
url: api["
|
|
9681
|
+
url: api["Gb" /* toSendMsg */],
|
|
9662
9682
|
params: { pendingId: this.$attrs.pendingId }
|
|
9663
9683
|
}).then(function (res) {
|
|
9664
9684
|
var status = res.status,
|
|
@@ -10436,7 +10456,7 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
10436
10456
|
var _this = this;
|
|
10437
10457
|
|
|
10438
10458
|
util["a" /* default */].ajax({
|
|
10439
|
-
url: api["
|
|
10459
|
+
url: api["u" /* findCodeValues */],
|
|
10440
10460
|
params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
|
|
10441
10461
|
}).then(function (res) {
|
|
10442
10462
|
var status = res.status,
|
|
@@ -10473,7 +10493,7 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
10473
10493
|
userId: util["a" /* default */].getStorage('userId'),
|
|
10474
10494
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
10475
10495
|
};
|
|
10476
|
-
util["a" /* default */].ajax({ url: api["
|
|
10496
|
+
util["a" /* default */].ajax({ url: api["xb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
10477
10497
|
var status = res.status,
|
|
10478
10498
|
message = res.message;
|
|
10479
10499
|
|
|
@@ -10504,7 +10524,7 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
10504
10524
|
var _this3 = this;
|
|
10505
10525
|
|
|
10506
10526
|
util["a" /* default */].ajax({
|
|
10507
|
-
url: api["
|
|
10527
|
+
url: api["w" /* findSysCodes */]
|
|
10508
10528
|
}).then(function (res) {
|
|
10509
10529
|
var status = res.status,
|
|
10510
10530
|
message = res.message;
|
|
@@ -10528,7 +10548,7 @@ processRejectvue_type_template_id_b5a52fc0_render._withStripped = true
|
|
|
10528
10548
|
isSinglePage: false,
|
|
10529
10549
|
opinion: this.option
|
|
10530
10550
|
};
|
|
10531
|
-
util["a" /* default */].ajax({ url: api["
|
|
10551
|
+
util["a" /* default */].ajax({ url: api["Kb" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
10532
10552
|
var status = res.status,
|
|
10533
10553
|
message = res.message,
|
|
10534
10554
|
_res$data = res.data,
|
|
@@ -11203,7 +11223,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11203
11223
|
taskExamine = this.taskExamine;
|
|
11204
11224
|
|
|
11205
11225
|
var params = {
|
|
11206
|
-
url: api["
|
|
11226
|
+
url: api["Ob" /* toTaskTransferIndex */],
|
|
11207
11227
|
params: {
|
|
11208
11228
|
opinion: opinion,
|
|
11209
11229
|
pendingId: pendingId,
|
|
@@ -11328,7 +11348,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11328
11348
|
var _this3 = this;
|
|
11329
11349
|
|
|
11330
11350
|
var params = {
|
|
11331
|
-
url: api["
|
|
11351
|
+
url: api["Ib" /* toStartTaskRead */],
|
|
11332
11352
|
params: { pendingId: this.pendingId, taskAction: this.type }
|
|
11333
11353
|
};
|
|
11334
11354
|
if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
|
|
@@ -11367,7 +11387,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11367
11387
|
var _this5 = this;
|
|
11368
11388
|
|
|
11369
11389
|
util["a" /* default */].ajax({
|
|
11370
|
-
url: api["
|
|
11390
|
+
url: api["u" /* findCodeValues */],
|
|
11371
11391
|
params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
|
|
11372
11392
|
}).then(function (res) {
|
|
11373
11393
|
var status = res.status,
|
|
@@ -11401,7 +11421,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11401
11421
|
type = this.type;
|
|
11402
11422
|
|
|
11403
11423
|
var params = {
|
|
11404
|
-
url: api["
|
|
11424
|
+
url: api["Bb" /* taskTransfer */],
|
|
11405
11425
|
data: {
|
|
11406
11426
|
choiceDeptId: choiceDeptId,
|
|
11407
11427
|
choiceOrgId: choiceOrgId,
|
|
@@ -11495,7 +11515,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11495
11515
|
!download && delete params.isDownload;
|
|
11496
11516
|
isCdjxjTaskHandle == 'true' && delete params.noticeType;
|
|
11497
11517
|
util["a" /* default */].ajax({
|
|
11498
|
-
url: api["
|
|
11518
|
+
url: api["wb" /* taskReadHtml */],
|
|
11499
11519
|
params: { taskAction: _this7.type },
|
|
11500
11520
|
headers: {
|
|
11501
11521
|
Accept: 'application/json,text/plain'
|
|
@@ -11534,7 +11554,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11534
11554
|
|
|
11535
11555
|
this.loading = true;
|
|
11536
11556
|
util["a" /* default */].ajax({
|
|
11537
|
-
url: api["
|
|
11557
|
+
url: api["w" /* findSysCodes */]
|
|
11538
11558
|
}).then(function (res) {
|
|
11539
11559
|
var status = res.status,
|
|
11540
11560
|
message = res.message;
|
|
@@ -11987,7 +12007,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
11987
12007
|
pendingId = this.pendingId;
|
|
11988
12008
|
|
|
11989
12009
|
var params = {
|
|
11990
|
-
url: api["
|
|
12010
|
+
url: api["yb" /* taskReview */],
|
|
11991
12011
|
data: {
|
|
11992
12012
|
nextUserId: nextOtherOrgObj.join(','),
|
|
11993
12013
|
notificationType: noticeType.join(','),
|
|
@@ -12023,7 +12043,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12023
12043
|
var _this2 = this;
|
|
12024
12044
|
|
|
12025
12045
|
var params = {
|
|
12026
|
-
url: api["
|
|
12046
|
+
url: api["Lb" /* toTaskReview */],
|
|
12027
12047
|
params: { pendingId: this.pendingId }
|
|
12028
12048
|
};
|
|
12029
12049
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -12058,7 +12078,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12058
12078
|
var _this3 = this;
|
|
12059
12079
|
|
|
12060
12080
|
var params = {
|
|
12061
|
-
url: this.type == 'takeAdvice' ? api["
|
|
12081
|
+
url: this.type == 'takeAdvice' ? api["Nb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Mb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Qb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Rb" /* toTwoOfficesDispatch */] : api["Pb" /* toTaskUnionExamine */],
|
|
12062
12082
|
params: { pendingId: this.pendingId },
|
|
12063
12083
|
headers: { Accept: 'application/json,text/plain' }
|
|
12064
12084
|
};
|
|
@@ -12152,7 +12172,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12152
12172
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
12153
12173
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
12154
12174
|
var param = {
|
|
12155
|
-
url: this.type === 'startDraf' ? api["
|
|
12175
|
+
url: this.type === 'startDraf' ? api["zb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Db" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Tb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Ab" /* taskTakeAdvice */] : api["Cb" /* taskUnionExamine */],
|
|
12156
12176
|
data: {
|
|
12157
12177
|
opinion: opinion,
|
|
12158
12178
|
pendingId: pendingId,
|
|
@@ -12208,7 +12228,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12208
12228
|
var _this5 = this;
|
|
12209
12229
|
|
|
12210
12230
|
util["a" /* default */].ajax({
|
|
12211
|
-
url: api["
|
|
12231
|
+
url: api["u" /* findCodeValues */],
|
|
12212
12232
|
params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
|
|
12213
12233
|
}).then(function (res) {
|
|
12214
12234
|
var status = res.status,
|
|
@@ -12233,7 +12253,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12233
12253
|
var params = {
|
|
12234
12254
|
pendingId: this.pendingId
|
|
12235
12255
|
};
|
|
12236
|
-
util["a" /* default */].ajax({ url: api["
|
|
12256
|
+
util["a" /* default */].ajax({ url: api["H" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
12237
12257
|
if (res.status === 'success') {
|
|
12238
12258
|
_this6.infoList.noticeInfo = res.message;
|
|
12239
12259
|
}
|
|
@@ -12249,7 +12269,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12249
12269
|
var _this7 = this;
|
|
12250
12270
|
|
|
12251
12271
|
util["a" /* default */].ajax({
|
|
12252
|
-
url: api["
|
|
12272
|
+
url: api["w" /* findSysCodes */]
|
|
12253
12273
|
}).then(function (res) {
|
|
12254
12274
|
var status = res.status,
|
|
12255
12275
|
message = res.message;
|
|
@@ -13254,7 +13274,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13254
13274
|
var _this = this;
|
|
13255
13275
|
|
|
13256
13276
|
var params = {
|
|
13257
|
-
url: api["
|
|
13277
|
+
url: api["z" /* getAdjunctFileInfos */],
|
|
13258
13278
|
params: { ownId: ownId, code: code }
|
|
13259
13279
|
};
|
|
13260
13280
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -13338,7 +13358,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13338
13358
|
taskAction: 'complete'
|
|
13339
13359
|
};
|
|
13340
13360
|
util["a" /* default */].ajax({
|
|
13341
|
-
url: api["
|
|
13361
|
+
url: api["wb" /* taskReadHtml */],
|
|
13342
13362
|
params: { taskAction: 'complete' },
|
|
13343
13363
|
headers: {
|
|
13344
13364
|
Accept: 'application/json,text/plain'
|
|
@@ -13370,7 +13390,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13370
13390
|
|
|
13371
13391
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
13372
13392
|
util["a" /* default */].ajax({
|
|
13373
|
-
url: api["
|
|
13393
|
+
url: api["Jb" /* toStartTaskReadIndex */],
|
|
13374
13394
|
params: { pendingId: this.pendingId }
|
|
13375
13395
|
}).then(function (res) {
|
|
13376
13396
|
var status = res.status,
|
|
@@ -13404,7 +13424,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13404
13424
|
if (mainConfig) {
|
|
13405
13425
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
13406
13426
|
} else {
|
|
13407
|
-
util["a" /* default */].ajax({ url: api["
|
|
13427
|
+
util["a" /* default */].ajax({ url: api["bb" /* loginUserInfo */] }).then(function (res) {
|
|
13408
13428
|
var status = res.status,
|
|
13409
13429
|
data = res.data;
|
|
13410
13430
|
|
|
@@ -13439,7 +13459,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13439
13459
|
var _this5 = this;
|
|
13440
13460
|
|
|
13441
13461
|
util["a" /* default */].ajax({
|
|
13442
|
-
url: api["
|
|
13462
|
+
url: api["u" /* findCodeValues */],
|
|
13443
13463
|
params: { ccCode: 'notification_type', userId: util["a" /* default */].getStorage('userId') }
|
|
13444
13464
|
}).then(function (res) {
|
|
13445
13465
|
var status = res.status,
|
|
@@ -13502,7 +13522,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13502
13522
|
pendingId: this.pendingId
|
|
13503
13523
|
};
|
|
13504
13524
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
13505
|
-
util["a" /* default */].ajax({ url: api["
|
|
13525
|
+
util["a" /* default */].ajax({ url: api["Eb" /* tempSave */], params: params }).then(function (res) {
|
|
13506
13526
|
var status = res.status,
|
|
13507
13527
|
message = res.message;
|
|
13508
13528
|
|
|
@@ -13558,7 +13578,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13558
13578
|
var _this8 = this;
|
|
13559
13579
|
|
|
13560
13580
|
util["a" /* default */].ajax({
|
|
13561
|
-
url: api["
|
|
13581
|
+
url: api["w" /* findSysCodes */]
|
|
13562
13582
|
}).then(function (res) {
|
|
13563
13583
|
var status = res.status,
|
|
13564
13584
|
message = res.message;
|
|
@@ -13585,7 +13605,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13585
13605
|
|
|
13586
13606
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
13587
13607
|
var params = {
|
|
13588
|
-
url: api["
|
|
13608
|
+
url: api["t" /* endFlowHtml */],
|
|
13589
13609
|
headers: { Accept: 'application/json,text/plain' },
|
|
13590
13610
|
method: 'post',
|
|
13591
13611
|
data: mainvue_type_script_lang_js_extends({}, _this9.endFlowInfo, _this9.nextNode, {
|
|
@@ -13713,7 +13733,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13713
13733
|
var _this10 = this;
|
|
13714
13734
|
|
|
13715
13735
|
var params = {
|
|
13716
|
-
url: api["
|
|
13736
|
+
url: api["Z" /* isCanStartSubFlow */],
|
|
13717
13737
|
data: {
|
|
13718
13738
|
appId: this.taskExamineInfo.appId,
|
|
13719
13739
|
inevitableNode: res.inevitableNode
|
|
@@ -13784,7 +13804,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13784
13804
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
13785
13805
|
if (_this11.isOpinionRequired == 1 && (_this11.value == '' || !_this11.value)) return _this11.$message.warning('请填写意见');
|
|
13786
13806
|
var params = {
|
|
13787
|
-
url: api["
|
|
13807
|
+
url: api["mb" /* rejectAndEnd */],
|
|
13788
13808
|
headers: { Accept: 'application/json,text/plain' },
|
|
13789
13809
|
method: 'post',
|
|
13790
13810
|
data: {
|
|
@@ -13847,7 +13867,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13847
13867
|
pendingId: this.pendingId,
|
|
13848
13868
|
businessId: this.businessIds
|
|
13849
13869
|
};
|
|
13850
|
-
util["a" /* default */].ajax({ url: api["
|
|
13870
|
+
util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
|
|
13851
13871
|
var status = res.status,
|
|
13852
13872
|
message = res.message,
|
|
13853
13873
|
data = res.data;
|
|
@@ -14092,7 +14112,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14092
14112
|
pendingId: this.pendingId,
|
|
14093
14113
|
userId: util["a" /* default */].getStorage('userId')
|
|
14094
14114
|
};
|
|
14095
|
-
util["a" /* default */].ajax({ url: api["
|
|
14115
|
+
util["a" /* default */].ajax({ url: api["D" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
14096
14116
|
//pc返回数据
|
|
14097
14117
|
|
|
14098
14118
|
_this14.loading.close();
|
|
@@ -14368,7 +14388,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14368
14388
|
// onlyFlag: true
|
|
14369
14389
|
};
|
|
14370
14390
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
14371
|
-
util["a" /* default */].ajax({ url: api["
|
|
14391
|
+
util["a" /* default */].ajax({ url: api["L" /* getProcessDefList */], params: params }).then(function (res) {
|
|
14372
14392
|
var status = res.status,
|
|
14373
14393
|
message = res.message,
|
|
14374
14394
|
data = res.data;
|
|
@@ -14417,7 +14437,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14417
14437
|
userId: util["a" /* default */].getStorage('userId'),
|
|
14418
14438
|
type: 2
|
|
14419
14439
|
};
|
|
14420
|
-
util["a" /* default */].ajax({ url: api["
|
|
14440
|
+
util["a" /* default */].ajax({ url: api["fb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
|
|
14421
14441
|
var rCode = res.rCode,
|
|
14422
14442
|
msg = res.msg,
|
|
14423
14443
|
results = res.results;
|
|
@@ -14610,7 +14630,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14610
14630
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
14611
14631
|
params.nodeId = taskExamineInfo.nodeId;
|
|
14612
14632
|
params.needRetrialAuth = needRetrialAuth;
|
|
14613
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
14633
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["vb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
14614
14634
|
var status = res.status,
|
|
14615
14635
|
message = res.message;
|
|
14616
14636
|
|