eoss-ui 0.5.54 → 0.5.55
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 +82 -79
- package/lib/button.js +83 -80
- package/lib/checkbox-group.js +95 -85
- package/lib/config/api.js +2 -0
- package/lib/data-table-form.js +91 -81
- package/lib/data-table.js +132 -106
- package/lib/date-picker.js +82 -79
- package/lib/dialog.js +82 -79
- package/lib/eoss-ui.common.js +394 -278
- package/lib/flow-group.js +82 -79
- package/lib/flow-list.js +85 -82
- package/lib/flow.js +116 -113
- package/lib/form.js +86 -81
- package/lib/handle-user.js +83 -80
- package/lib/handler.js +83 -80
- package/lib/index.js +1 -1
- package/lib/input-number.js +82 -79
- package/lib/input.js +82 -79
- package/lib/login.js +88 -85
- package/lib/main.js +97 -95
- package/lib/menu.js +71 -17
- package/lib/nav.js +82 -79
- package/lib/notify.js +85 -82
- package/lib/page.js +82 -79
- package/lib/player.js +82 -79
- package/lib/qr-code.js +82 -79
- package/lib/radio-group.js +95 -85
- package/lib/retrial-auth.js +85 -82
- package/lib/select-ganged.js +93 -102
- package/lib/select.js +93 -83
- package/lib/selector-panel.js +100 -97
- package/lib/selector.js +83 -80
- package/lib/sizer.js +84 -81
- package/lib/steps.js +82 -79
- package/lib/switch.js +82 -79
- package/lib/table-form.js +82 -79
- package/lib/tabs.js +82 -79
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/tips.js +83 -80
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +82 -79
- package/lib/tree.js +83 -80
- package/lib/upload.js +96 -93
- package/lib/wujie.js +82 -79
- package/lib/wxlogin.js +82 -79
- package/package.json +1 -1
- package/packages/button/src/main.vue +1 -1
- package/packages/checkbox-group/src/main.vue +12 -5
- package/packages/data-table/src/column.vue +24 -7
- package/packages/data-table/src/main.vue +31 -10
- package/packages/data-table-form/src/main.vue +10 -3
- package/packages/form/src/main.vue +2 -1
- package/packages/main/src/main.vue +0 -1
- package/packages/menu/src/main.vue +81 -4
- package/packages/radio-group/src/main.vue +12 -5
- package/packages/select/src/main.vue +12 -5
- package/packages/select-ganged/src/main.vue +9 -2
- package/packages/theme-chalk/lib/form.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/form.scss +8 -0
- package/packages/toolbar/src/main.vue +2 -2
- package/packages/upload/src/main.vue +3 -3
- package/src/config/api.js +2 -0
- package/src/index.js +1 -1
package/lib/flow.js
CHANGED
|
@@ -1354,7 +1354,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
|
|
|
1354
1354
|
* @param {function} callback - 回调函数
|
|
1355
1355
|
**/
|
|
1356
1356
|
var getMainConfig = function getMainConfig(callback) {
|
|
1357
|
-
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "
|
|
1357
|
+
ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
|
|
1358
1358
|
if (res && res.rCode === 0) {
|
|
1359
1359
|
callback(res.results);
|
|
1360
1360
|
}
|
|
@@ -2025,7 +2025,7 @@ var isLogined = function isLogined(_ref8) {
|
|
|
2025
2025
|
}
|
|
2026
2026
|
var quit = getParams('quit') || getParams('logout');
|
|
2027
2027
|
if (quit) {
|
|
2028
|
-
ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "
|
|
2028
|
+
ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
|
|
2029
2029
|
if (res.rCode === 0) {
|
|
2030
2030
|
removeStorage();
|
|
2031
2031
|
}
|
|
@@ -3100,29 +3100,29 @@ var watermark = function watermark(option) {
|
|
|
3100
3100
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
|
|
3101
3101
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
|
|
3102
3102
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
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__, "
|
|
3103
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
|
|
3104
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
|
|
3105
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
|
|
3106
3106
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3107
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3107
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3108
3108
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
3109
3109
|
/* unused harmony export updateCode */
|
|
3110
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3110
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
|
|
3111
3111
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
3112
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3112
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
|
|
3113
3113
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
3114
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3114
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
|
|
3115
3115
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
|
|
3116
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3116
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
|
|
3117
3117
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3118
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3119
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3120
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3118
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
|
|
3119
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
|
|
3120
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
|
|
3121
3121
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3122
3122
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3123
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3124
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3125
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3123
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
|
|
3124
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
|
|
3125
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
|
|
3126
3126
|
/* unused harmony export getUserImgUrl */
|
|
3127
3127
|
/* unused harmony export getDoorIndex */
|
|
3128
3128
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3131,94 +3131,95 @@ var watermark = function watermark(option) {
|
|
|
3131
3131
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3132
3132
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3133
3133
|
/* unused harmony export getUserCustomInfo */
|
|
3134
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3135
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3136
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3137
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3134
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
|
|
3135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
|
|
3136
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
|
|
3137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
|
|
3138
3138
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3139
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3140
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
|
|
3140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
|
|
3141
3141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3142
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
|
|
3143
3143
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3144
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3145
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3146
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3147
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3144
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
|
|
3145
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3146
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3147
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
3148
3148
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
|
|
3149
3149
|
/* unused harmony export upload_updateClassify */
|
|
3150
3150
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
3151
3151
|
/* unused harmony export getPictureBase64 */
|
|
3152
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3153
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3154
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3155
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3152
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectorOrgTree; });
|
|
3153
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgDetail; });
|
|
3154
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getOrgMainTree; });
|
|
3155
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectOrgsubids; });
|
|
3156
3156
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
|
|
3157
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
|
|
3157
3158
|
/* unused harmony export findUserBaseInfo */
|
|
3158
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3159
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
|
|
3159
3160
|
/* unused harmony export getCurrentuser */
|
|
3160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3161
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3162
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
|
|
3162
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
|
|
3163
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
|
|
3163
3164
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3164
3165
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3165
3166
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3166
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3167
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3167
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
|
|
3168
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
|
|
3168
3169
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3169
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3170
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3170
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3171
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
3171
3172
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
|
|
3172
3173
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
|
|
3173
3174
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3174
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3175
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3176
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3175
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3176
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3177
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
|
|
3177
3178
|
/* unused harmony export getView */
|
|
3178
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3179
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3180
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3181
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3182
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3183
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3184
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3185
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3186
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3187
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3179
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
|
|
3180
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
3181
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
|
|
3182
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
|
|
3183
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
|
|
3184
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
|
|
3185
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
|
|
3186
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
|
|
3187
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
|
|
3188
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
|
|
3188
3189
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3189
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3190
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3191
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3192
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3193
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3194
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3195
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3196
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3197
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3190
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
|
|
3191
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
|
|
3192
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
|
|
3193
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
|
|
3194
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3195
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
3196
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
|
|
3197
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
|
|
3198
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
|
|
3198
3199
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3199
3200
|
/* unused harmony export historyListJson */
|
|
3200
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3201
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3201
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3202
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3202
3203
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3203
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3204
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3205
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3206
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3207
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3208
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3209
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3210
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3211
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3212
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3213
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3214
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3215
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3216
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3217
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3204
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
|
|
3205
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
|
|
3206
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
|
|
3207
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
|
|
3208
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
|
|
3209
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
|
|
3210
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
|
|
3211
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
|
|
3212
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
|
|
3213
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
|
|
3214
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
|
|
3215
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
|
|
3216
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
|
|
3217
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
|
|
3218
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
|
|
3218
3219
|
/* unused harmony export sendSave */
|
|
3219
3220
|
/* unused harmony export sendUpdate */
|
|
3220
3221
|
/* unused harmony export sendDelete */
|
|
3221
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3222
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
|
|
3222
3223
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3223
3224
|
// 登录
|
|
3224
3225
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3287,6 +3288,8 @@ var getOrgMainTree = '/sys/v1/mecpSys/getOrgMainTree.dhtml';
|
|
|
3287
3288
|
var getSelectOrgsubids = '/sys/v1/mecpSys/getSelectOrgsubids.dhtml';
|
|
3288
3289
|
// 代码表
|
|
3289
3290
|
var findSysCode = '/sys/v1/mecpSys/findSysCode.dhtml';
|
|
3291
|
+
var getDictList = '/dict/getDictDataList';
|
|
3292
|
+
|
|
3290
3293
|
// 获取用户基本信息
|
|
3291
3294
|
var findUserBaseInfo = '/sys/v1/mecpSys/findUserBaseInfo.dhtml';
|
|
3292
3295
|
// 说明文档
|
|
@@ -6599,7 +6602,7 @@ var _components;
|
|
|
6599
6602
|
}
|
|
6600
6603
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
6601
6604
|
util["a" /* default */].ajax({
|
|
6602
|
-
url: data.id ? api["
|
|
6605
|
+
url: data.id ? api["Vb" /* updateCommonOpinion */] : api["ob" /* saveCommonOpinion */],
|
|
6603
6606
|
data: info,
|
|
6604
6607
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
6605
6608
|
method: 'post'
|
|
@@ -7451,7 +7454,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
7451
7454
|
newNextUser: [],
|
|
7452
7455
|
newOptions: [],
|
|
7453
7456
|
newSelectUserList: [],
|
|
7454
|
-
url: api["
|
|
7457
|
+
url: api["T" /* handleInfo */],
|
|
7455
7458
|
newCheckboxList: [],
|
|
7456
7459
|
newPresetEdit: 0,
|
|
7457
7460
|
newMultiple: false,
|
|
@@ -7568,7 +7571,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
7568
7571
|
if (query !== '') {
|
|
7569
7572
|
this.searchLoading = true;
|
|
7570
7573
|
util["a" /* default */].ajax({
|
|
7571
|
-
url: api["
|
|
7574
|
+
url: api["T" /* handleInfo */],
|
|
7572
7575
|
params: { searchKey: query, query: query, type: 'user' }
|
|
7573
7576
|
}).then(function (res) {
|
|
7574
7577
|
var status = res.status,
|
|
@@ -7983,7 +7986,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
7983
7986
|
nextNodeId: nodeId,
|
|
7984
7987
|
businessId: this.id
|
|
7985
7988
|
};
|
|
7986
|
-
util["a" /* default */].ajax({ url: api["
|
|
7989
|
+
util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
|
|
7987
7990
|
var status = res.status,
|
|
7988
7991
|
message = res.message,
|
|
7989
7992
|
_res$data = res.data,
|
|
@@ -8081,7 +8084,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
8081
8084
|
|
|
8082
8085
|
isNoStart && (this.newPresetList = []);
|
|
8083
8086
|
var params = {
|
|
8084
|
-
url: api["
|
|
8087
|
+
url: api["K" /* getPresetCustomInfo */],
|
|
8085
8088
|
params: {
|
|
8086
8089
|
nodeId: nodeId,
|
|
8087
8090
|
processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
|
|
@@ -8435,7 +8438,7 @@ var Presetvue_type_script_lang_js_components;
|
|
|
8435
8438
|
nodeId = this.nodeId;
|
|
8436
8439
|
|
|
8437
8440
|
var params = {
|
|
8438
|
-
url: api["
|
|
8441
|
+
url: api["L" /* getPresetNodeInfo */],
|
|
8439
8442
|
params: {
|
|
8440
8443
|
nextNodeId: nextNodeId,
|
|
8441
8444
|
processDefinitionId: processDefinitionId,
|
|
@@ -9071,7 +9074,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9071
9074
|
nodeId: this.nextNode.nextNode,
|
|
9072
9075
|
businessId: this.id
|
|
9073
9076
|
};
|
|
9074
|
-
util["a" /* default */].ajax({ url: api["
|
|
9077
|
+
util["a" /* default */].ajax({ url: api["I" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
9075
9078
|
if (res.status === 'success') {
|
|
9076
9079
|
_this2.nextNode.noticeInfo = res.message;
|
|
9077
9080
|
}
|
|
@@ -9143,7 +9146,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9143
9146
|
opinion: _this3.newOpinion || newOpinion
|
|
9144
9147
|
};
|
|
9145
9148
|
if (_this3.activeNames != '1') delete params.customPresetUserJson;
|
|
9146
|
-
util["a" /* default */].ajax({ url: api["
|
|
9149
|
+
util["a" /* default */].ajax({ url: api["mb" /* register */], method: 'post', data: params }).then(function (res) {
|
|
9147
9150
|
var status = res.status,
|
|
9148
9151
|
message = res.message;
|
|
9149
9152
|
|
|
@@ -9173,7 +9176,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9173
9176
|
nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
|
|
9174
9177
|
businessId: this.id
|
|
9175
9178
|
};
|
|
9176
|
-
util["a" /* default */].ajax({ url: api["
|
|
9179
|
+
util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
|
|
9177
9180
|
var status = res.status,
|
|
9178
9181
|
message = res.message,
|
|
9179
9182
|
_res$data = res.data,
|
|
@@ -9329,7 +9332,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9329
9332
|
businessId: this.businessId
|
|
9330
9333
|
};
|
|
9331
9334
|
// 获取节点
|
|
9332
|
-
util["a" /* default */].ajax({ url: api["
|
|
9335
|
+
util["a" /* default */].ajax({ url: api["Ib" /* toStartFlow */], params: params }).then(function (res) {
|
|
9333
9336
|
//pc接口返回数据处理
|
|
9334
9337
|
var status = res.status,
|
|
9335
9338
|
message = res.message,
|
|
@@ -9776,7 +9779,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
9776
9779
|
notificationType = _sendInfo.notificationType;
|
|
9777
9780
|
|
|
9778
9781
|
var params = {
|
|
9779
|
-
url: api["
|
|
9782
|
+
url: api["tb" /* sendMsg */],
|
|
9780
9783
|
headers: { Accept: 'application/json,text/plain' },
|
|
9781
9784
|
method: 'post',
|
|
9782
9785
|
data: {
|
|
@@ -9838,7 +9841,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
9838
9841
|
|
|
9839
9842
|
this.loading = true;
|
|
9840
9843
|
util["a" /* default */].ajax({
|
|
9841
|
-
url: api["
|
|
9844
|
+
url: api["Hb" /* toSendMsg */],
|
|
9842
9845
|
params: { pendingId: this.$attrs.pendingId }
|
|
9843
9846
|
}).then(function (res) {
|
|
9844
9847
|
var status = res.status,
|
|
@@ -10656,7 +10659,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10656
10659
|
userId: util["a" /* default */].getStorage('userId'),
|
|
10657
10660
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
10658
10661
|
};
|
|
10659
|
-
util["a" /* default */].ajax({ url: api["
|
|
10662
|
+
util["a" /* default */].ajax({ url: api["yb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
10660
10663
|
var status = res.status,
|
|
10661
10664
|
message = res.message;
|
|
10662
10665
|
|
|
@@ -10711,7 +10714,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10711
10714
|
isSinglePage: false,
|
|
10712
10715
|
opinion: this.option
|
|
10713
10716
|
};
|
|
10714
|
-
util["a" /* default */].ajax({ url: api["
|
|
10717
|
+
util["a" /* default */].ajax({ url: api["Lb" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
10715
10718
|
var status = res.status,
|
|
10716
10719
|
message = res.message,
|
|
10717
10720
|
_res$data = res.data,
|
|
@@ -11387,7 +11390,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11387
11390
|
taskExamine = this.taskExamine;
|
|
11388
11391
|
|
|
11389
11392
|
var params = {
|
|
11390
|
-
url: api["
|
|
11393
|
+
url: api["Pb" /* toTaskTransferIndex */],
|
|
11391
11394
|
params: {
|
|
11392
11395
|
opinion: opinion,
|
|
11393
11396
|
pendingId: pendingId,
|
|
@@ -11512,7 +11515,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11512
11515
|
var _this3 = this;
|
|
11513
11516
|
|
|
11514
11517
|
var params = {
|
|
11515
|
-
url: api["
|
|
11518
|
+
url: api["Jb" /* toStartTaskRead */],
|
|
11516
11519
|
params: { pendingId: this.pendingId, taskAction: this.type }
|
|
11517
11520
|
};
|
|
11518
11521
|
if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
|
|
@@ -11585,7 +11588,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11585
11588
|
type = this.type;
|
|
11586
11589
|
|
|
11587
11590
|
var params = {
|
|
11588
|
-
url: api["
|
|
11591
|
+
url: api["Cb" /* taskTransfer */],
|
|
11589
11592
|
data: {
|
|
11590
11593
|
choiceDeptId: choiceDeptId,
|
|
11591
11594
|
choiceOrgId: choiceOrgId,
|
|
@@ -11679,7 +11682,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11679
11682
|
!download && delete params.isDownload;
|
|
11680
11683
|
isCdjxjTaskHandle == 'true' && delete params.noticeType;
|
|
11681
11684
|
util["a" /* default */].ajax({
|
|
11682
|
-
url: api["
|
|
11685
|
+
url: api["xb" /* taskReadHtml */],
|
|
11683
11686
|
params: { taskAction: _this7.type },
|
|
11684
11687
|
headers: {
|
|
11685
11688
|
Accept: 'application/json,text/plain'
|
|
@@ -12172,7 +12175,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12172
12175
|
pendingId = this.pendingId;
|
|
12173
12176
|
|
|
12174
12177
|
var params = {
|
|
12175
|
-
url: api["
|
|
12178
|
+
url: api["zb" /* taskReview */],
|
|
12176
12179
|
data: {
|
|
12177
12180
|
nextUserId: nextOtherOrgObj.join(','),
|
|
12178
12181
|
notificationType: noticeType.join(','),
|
|
@@ -12208,7 +12211,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12208
12211
|
var _this2 = this;
|
|
12209
12212
|
|
|
12210
12213
|
var params = {
|
|
12211
|
-
url: api["
|
|
12214
|
+
url: api["Mb" /* toTaskReview */],
|
|
12212
12215
|
params: { pendingId: this.pendingId }
|
|
12213
12216
|
};
|
|
12214
12217
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -12243,7 +12246,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12243
12246
|
var _this3 = this;
|
|
12244
12247
|
|
|
12245
12248
|
var params = {
|
|
12246
|
-
url: this.type == 'takeAdvice' ? api["
|
|
12249
|
+
url: this.type == 'takeAdvice' ? api["Ob" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Nb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Rb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Sb" /* toTwoOfficesDispatch */] : api["Qb" /* toTaskUnionExamine */],
|
|
12247
12250
|
params: { pendingId: this.pendingId },
|
|
12248
12251
|
headers: { Accept: 'application/json,text/plain' }
|
|
12249
12252
|
};
|
|
@@ -12337,7 +12340,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12337
12340
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
12338
12341
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
12339
12342
|
var param = {
|
|
12340
|
-
url: this.type === 'startDraf' ? api["
|
|
12343
|
+
url: this.type === 'startDraf' ? api["Ab" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Eb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Ub" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Bb" /* taskTakeAdvice */] : api["Db" /* taskUnionExamine */],
|
|
12341
12344
|
data: {
|
|
12342
12345
|
opinion: opinion,
|
|
12343
12346
|
pendingId: pendingId,
|
|
@@ -12418,7 +12421,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12418
12421
|
var params = {
|
|
12419
12422
|
pendingId: this.pendingId
|
|
12420
12423
|
};
|
|
12421
|
-
util["a" /* default */].ajax({ url: api["
|
|
12424
|
+
util["a" /* default */].ajax({ url: api["I" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
12422
12425
|
if (res.status === 'success') {
|
|
12423
12426
|
_this6.infoList.noticeInfo = res.message;
|
|
12424
12427
|
}
|
|
@@ -13544,7 +13547,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13544
13547
|
taskAction: 'complete'
|
|
13545
13548
|
};
|
|
13546
13549
|
util["a" /* default */].ajax({
|
|
13547
|
-
url: api["
|
|
13550
|
+
url: api["xb" /* taskReadHtml */],
|
|
13548
13551
|
params: { taskAction: 'complete' },
|
|
13549
13552
|
headers: {
|
|
13550
13553
|
Accept: 'application/json,text/plain'
|
|
@@ -13576,7 +13579,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13576
13579
|
|
|
13577
13580
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
13578
13581
|
util["a" /* default */].ajax({
|
|
13579
|
-
url: api["
|
|
13582
|
+
url: api["Kb" /* toStartTaskReadIndex */],
|
|
13580
13583
|
params: { pendingId: this.pendingId }
|
|
13581
13584
|
}).then(function (res) {
|
|
13582
13585
|
var status = res.status,
|
|
@@ -13610,7 +13613,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13610
13613
|
if (mainConfig) {
|
|
13611
13614
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
13612
13615
|
} else {
|
|
13613
|
-
util["a" /* default */].ajax({ url: api["
|
|
13616
|
+
util["a" /* default */].ajax({ url: api["cb" /* loginUserInfo */] }).then(function (res) {
|
|
13614
13617
|
var status = res.status,
|
|
13615
13618
|
data = res.data;
|
|
13616
13619
|
|
|
@@ -13711,7 +13714,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13711
13714
|
pendingId: this.pendingId
|
|
13712
13715
|
};
|
|
13713
13716
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
13714
|
-
util["a" /* default */].ajax({ url: api["
|
|
13717
|
+
util["a" /* default */].ajax({ url: api["Fb" /* tempSave */], params: params }).then(function (res) {
|
|
13715
13718
|
var status = res.status,
|
|
13716
13719
|
message = res.message;
|
|
13717
13720
|
|
|
@@ -13965,7 +13968,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13965
13968
|
var _this14 = this;
|
|
13966
13969
|
|
|
13967
13970
|
var params = {
|
|
13968
|
-
url: api["
|
|
13971
|
+
url: api["ab" /* isCanStartSubFlow */],
|
|
13969
13972
|
data: {
|
|
13970
13973
|
appId: this.taskExamineInfo.appId,
|
|
13971
13974
|
inevitableNode: res.inevitableNode
|
|
@@ -14077,7 +14080,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14077
14080
|
|
|
14078
14081
|
// return this.$message.warning('请填写意见');
|
|
14079
14082
|
var params = {
|
|
14080
|
-
url: api["
|
|
14083
|
+
url: api["nb" /* rejectAndEnd */],
|
|
14081
14084
|
headers: { Accept: 'application/json,text/plain' },
|
|
14082
14085
|
method: 'post',
|
|
14083
14086
|
data: {
|
|
@@ -14147,7 +14150,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14147
14150
|
pendingId: this.pendingId,
|
|
14148
14151
|
businessId: this.businessIds
|
|
14149
14152
|
};
|
|
14150
|
-
util["a" /* default */].ajax({ url: api["
|
|
14153
|
+
util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
|
|
14151
14154
|
var status = res.status,
|
|
14152
14155
|
message = res.message,
|
|
14153
14156
|
data = res.data;
|
|
@@ -14392,7 +14395,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14392
14395
|
pendingId: this.pendingId,
|
|
14393
14396
|
userId: util["a" /* default */].getStorage('userId')
|
|
14394
14397
|
};
|
|
14395
|
-
util["a" /* default */].ajax({ url: api["
|
|
14398
|
+
util["a" /* default */].ajax({ url: api["E" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
14396
14399
|
//pc返回数据
|
|
14397
14400
|
|
|
14398
14401
|
_this23.loading.close();
|
|
@@ -14669,7 +14672,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14669
14672
|
// onlyFlag: true
|
|
14670
14673
|
};
|
|
14671
14674
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
14672
|
-
util["a" /* default */].ajax({ url: api["
|
|
14675
|
+
util["a" /* default */].ajax({ url: api["M" /* getProcessDefList */], params: params }).then(function (res) {
|
|
14673
14676
|
var status = res.status,
|
|
14674
14677
|
message = res.message,
|
|
14675
14678
|
data = res.data;
|
|
@@ -14721,7 +14724,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14721
14724
|
userId: util["a" /* default */].getStorage('userId'),
|
|
14722
14725
|
type: 2
|
|
14723
14726
|
};
|
|
14724
|
-
util["a" /* default */].ajax({ url: api["
|
|
14727
|
+
util["a" /* default */].ajax({ url: api["gb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
|
|
14725
14728
|
var rCode = res.rCode,
|
|
14726
14729
|
msg = res.msg,
|
|
14727
14730
|
results = res.results;
|
|
@@ -14914,7 +14917,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14914
14917
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
14915
14918
|
params.nodeId = taskExamineInfo.nodeId;
|
|
14916
14919
|
params.needRetrialAuth = needRetrialAuth;
|
|
14917
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
14920
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["wb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
14918
14921
|
var status = res.status,
|
|
14919
14922
|
message = res.message;
|
|
14920
14923
|
|