eoss-ui 0.4.54 → 0.4.56
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 +137 -104
- package/lib/button.js +139 -106
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +141 -108
- package/lib/config/api.js +4 -0
- package/lib/data-table-form.js +138 -105
- package/lib/data-table.js +140 -107
- package/lib/date-picker.js +146 -113
- package/lib/dialog.js +141 -108
- package/lib/eoss-ui.common.js +790 -296
- package/lib/flow-group.js +137 -104
- package/lib/flow-list.js +144 -111
- package/lib/flow.js +188 -155
- package/lib/form.js +138 -105
- package/lib/handle-user.js +138 -105
- package/lib/handler.js +138 -105
- package/lib/index.js +1 -1
- package/lib/input-number.js +139 -106
- package/lib/input.js +139 -106
- package/lib/label.js +2 -2
- package/lib/login.js +167 -130
- package/lib/main.js +153 -120
- package/lib/mainComp.js +153 -120
- package/lib/menu.js +2 -2
- package/lib/nav.js +137 -104
- package/lib/notify.js +109 -101
- package/lib/page.js +137 -104
- package/lib/player.js +137 -104
- package/lib/qr-code.js +137 -104
- package/lib/radio-group.js +138 -105
- package/lib/retrial-auth.js +3328 -0
- package/lib/select-ganged.js +139 -106
- package/lib/select.js +140 -107
- package/lib/selector-panel.js +155 -122
- package/lib/selector.js +140 -107
- package/lib/sizer.js +141 -108
- package/lib/steps.js +139 -106
- package/lib/switch.js +139 -106
- package/lib/table-form.js +139 -106
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +146 -113
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/retrial-auth.css +1 -0
- package/lib/tips.js +140 -107
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +139 -106
- package/lib/tree.js +140 -107
- package/lib/upload.js +147 -114
- package/lib/utils/util.js +33 -8
- package/lib/wujie.js +139 -106
- package/lib/wxlogin.js +139 -106
- package/package.json +2 -2
- package/packages/checkbox-group/src/main.vue +7 -7
- package/packages/dialog/src/main.vue +2 -2
- package/packages/login/src/main.vue +21 -15
- package/packages/retrial-auth/index.js +5 -0
- package/packages/retrial-auth/src/main.vue +271 -0
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/retrial-auth.css +1 -0
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/retrial-auth.scss +38 -0
- package/src/config/api.js +4 -0
- package/src/index.js +4 -1
- package/src/utils/util.js +33 -7
package/lib/flow.js
CHANGED
|
@@ -101,8 +101,6 @@ module.exports =
|
|
|
101
101
|
/* harmony import */ var eoss_element__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(eoss_element__WEBPACK_IMPORTED_MODULE_4__);
|
|
102
102
|
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
|
103
103
|
|
|
104
|
-
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
105
|
-
|
|
106
104
|
/**
|
|
107
105
|
* 新封装公告方法规范:
|
|
108
106
|
* 1.方法顺序按字母顺序排列
|
|
@@ -128,6 +126,7 @@ var $lightColorCount = 5;
|
|
|
128
126
|
var $darkColorCount = 4;
|
|
129
127
|
var publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
|
|
130
128
|
var loginMsg = void 0;
|
|
129
|
+
var initAuth = void 0;
|
|
131
130
|
|
|
132
131
|
var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ storeAsString: true });
|
|
133
132
|
|
|
@@ -206,7 +205,6 @@ var ajax = function ajax(_ref) {
|
|
|
206
205
|
});
|
|
207
206
|
// 请求拦截
|
|
208
207
|
http.interceptors.request.use(function (config) {
|
|
209
|
-
config.header && (config.headers = _extends({}, config.headers, config.header));
|
|
210
208
|
config.headers.common = getStorage();
|
|
211
209
|
// 根据请求的信息(请求方式,url,请求get/post数据),产生map的key
|
|
212
210
|
var requestKey = getRequestKey(config);
|
|
@@ -279,11 +277,38 @@ var ajax = function ajax(_ref) {
|
|
|
279
277
|
}).catch(function (e) {});
|
|
280
278
|
}, 1000);
|
|
281
279
|
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
280
|
+
} else if (response.data.rCode === 61) {
|
|
281
|
+
clearTimeout(initAuth);
|
|
282
|
+
initAuth = setTimeout(function () {
|
|
283
|
+
Object(eoss_element__WEBPACK_IMPORTED_MODULE_4__["MessageBox"])({
|
|
284
|
+
title: '请进行二次鉴权',
|
|
285
|
+
closeOnClickModal: false,
|
|
286
|
+
closeOnPressEscape: false,
|
|
287
|
+
showConfirmButton: false,
|
|
288
|
+
dangerouslyUseHTMLString: true,
|
|
289
|
+
scroll: false,
|
|
290
|
+
customClass: 'es-retrial-auth-msg',
|
|
291
|
+
render: function render(h, msgBox) {
|
|
292
|
+
return h('es-retrial-auth', {
|
|
293
|
+
ref: 'auth',
|
|
294
|
+
props: {
|
|
295
|
+
group: response.data.results.retrialAuthGroupIds,
|
|
296
|
+
type: response.data.results.retrialAuthType,
|
|
297
|
+
msgBox: msgBox
|
|
298
|
+
}
|
|
299
|
+
});
|
|
300
|
+
},
|
|
301
|
+
callback: function callback(res, obj) {
|
|
302
|
+
obj.$children.forEach(function (item) {
|
|
303
|
+
item.clearTimeouts && item.clearTimeouts();
|
|
304
|
+
return;
|
|
305
|
+
});
|
|
306
|
+
}
|
|
307
|
+
});
|
|
308
|
+
}, 1000);
|
|
286
309
|
}
|
|
310
|
+
// eslint-disable-next-line no-undef
|
|
311
|
+
return Promise.resolve(response.data);
|
|
287
312
|
}
|
|
288
313
|
}, function (error) {
|
|
289
314
|
loading && loading.close();
|
|
@@ -363,7 +388,7 @@ var ajax = function ajax(_ref) {
|
|
|
363
388
|
url: url,
|
|
364
389
|
data: data,
|
|
365
390
|
params: params,
|
|
366
|
-
|
|
391
|
+
headers: header
|
|
367
392
|
});
|
|
368
393
|
};
|
|
369
394
|
|
|
@@ -2348,123 +2373,127 @@ var watermark = function watermark(option) {
|
|
|
2348
2373
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
2349
2374
|
|
|
2350
2375
|
"use strict";
|
|
2351
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2352
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2353
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2354
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2356
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2376
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCaLogin; });
|
|
2377
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doUserLogin; });
|
|
2378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doQrLogin; });
|
|
2379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return logout; });
|
|
2380
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initLogin; });
|
|
2381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return switchUserTo; });
|
|
2357
2382
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
2358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2359
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getLoginCode; });
|
|
2384
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCodeLogin; });
|
|
2360
2385
|
/* unused harmony export updateCode */
|
|
2361
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
|
|
2362
2387
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
|
|
2363
2388
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
|
|
2364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2367
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2368
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2369
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2370
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2389
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initModifyPassword; });
|
|
2390
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doWechatQrLogin; });
|
|
2391
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getTwoFactorLoginCode; });
|
|
2392
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doTwoFactorLogin; });
|
|
2393
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initRetrialAuth; });
|
|
2394
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getRetrialAuthCode; });
|
|
2395
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return scanCodeRetrialAuth; });
|
|
2396
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
2397
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return mainConfig; });
|
|
2398
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initUserSet; });
|
|
2399
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserInfo; });
|
|
2371
2400
|
/* unused harmony export getUserImgUrl */
|
|
2372
2401
|
/* unused harmony export getDoorIndex */
|
|
2373
2402
|
/* unused harmony export refreshOnlineUsers */
|
|
2374
2403
|
/* unused harmony export getQuickMenuIds */
|
|
2375
2404
|
/* unused harmony export getApplicationIdArray */
|
|
2376
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2377
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2405
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplications; });
|
|
2406
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplicationsNew; });
|
|
2378
2407
|
/* unused harmony export getUserCustomInfo */
|
|
2379
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2380
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2381
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2382
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2383
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2384
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2385
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2386
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2387
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2388
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2389
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2390
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2391
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2392
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2393
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2408
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateUserCustomInfo; });
|
|
2409
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sysMsgPage; });
|
|
2410
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreSysMsg; });
|
|
2411
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return ignoreAllSysMsg; });
|
|
2412
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctProperties; });
|
|
2413
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploads; });
|
|
2414
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadOnlyOne; });
|
|
2415
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctFileInfos; });
|
|
2416
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadSort; });
|
|
2417
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return downloadByAdjunctId; });
|
|
2418
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return uploadDownloads; });
|
|
2419
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return previewAdjunct; });
|
|
2420
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct2; });
|
|
2421
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunctOffice; });
|
|
2422
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
|
|
2394
2423
|
/* unused harmony export upload_updateClassify */
|
|
2395
2424
|
/* unused harmony export getDeleteAdjunctFileInfos */
|
|
2396
2425
|
/* unused harmony export getPictureBase64 */
|
|
2397
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2398
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2399
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2400
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2401
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2426
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgTree; });
|
|
2427
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectorOrgDetail; });
|
|
2428
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getOrgMainTree; });
|
|
2429
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getSelectOrgsubids; });
|
|
2430
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysCode; });
|
|
2402
2431
|
/* unused harmony export findUserBaseInfo */
|
|
2403
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2432
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
|
|
2404
2433
|
/* unused harmony export getCurrentuser */
|
|
2405
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2406
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2407
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2408
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainDetail; });
|
|
2435
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toStartFlow; });
|
|
2436
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return tempSave; });
|
|
2437
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
2409
2438
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
2410
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2411
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2412
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2413
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2414
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2415
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2416
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2417
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2418
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2419
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2420
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2421
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2439
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return editCommonOpion; });
|
|
2440
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return saveCommonOpinion; });
|
|
2441
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return updateCommonOpinion; });
|
|
2442
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
2443
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getProcessDefList; });
|
|
2444
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNodeInfo; });
|
|
2445
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findCodeValues; });
|
|
2446
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysParam; });
|
|
2447
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCodes; });
|
|
2448
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNotificationMsg; });
|
|
2449
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getHandleInfoHtml; });
|
|
2450
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskHandleHtml; });
|
|
2422
2451
|
/* unused harmony export getView */
|
|
2423
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2424
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2425
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2426
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2427
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2428
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2429
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2430
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2431
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2432
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2433
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2434
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2435
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2436
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2437
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2438
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2439
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2440
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2441
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2442
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2443
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2452
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return register; });
|
|
2453
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return pendedhistoryList; });
|
|
2454
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskRejectHtml; });
|
|
2455
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskRejectHtml; });
|
|
2456
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartTaskRead; });
|
|
2457
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskReadIndex; });
|
|
2458
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskReadHtml; });
|
|
2459
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return rejectAndEnd; });
|
|
2460
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toSendMsg; });
|
|
2461
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendMsg; });
|
|
2462
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return endFlowHtml; });
|
|
2463
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return handleInfo; });
|
|
2464
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginUserInfo; });
|
|
2465
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return wss; });
|
|
2466
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return topic; });
|
|
2467
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetCustomInfo; });
|
|
2468
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetNodeInfo; });
|
|
2469
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTransferIndex; });
|
|
2470
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTransfer; });
|
|
2471
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toPresetInfoListIndex; });
|
|
2472
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
2444
2473
|
/* unused harmony export historyListJson */
|
|
2445
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2446
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2447
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2448
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2449
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2450
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2451
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2452
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2453
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2454
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2455
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2456
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2457
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2458
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2459
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2460
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2461
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2462
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2474
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryListJson; });
|
|
2475
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pressListJson; });
|
|
2476
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
2477
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return isCanStartSubFlow; });
|
|
2478
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskUnionExamine; });
|
|
2479
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskUnionExamine; });
|
|
2480
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskTakeAdvice; });
|
|
2481
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskTakeAdvice; });
|
|
2482
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskStartDraft; });
|
|
2483
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskStartDraft; });
|
|
2484
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskReview; });
|
|
2485
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReview; });
|
|
2486
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionSeal; });
|
|
2487
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionSeal; });
|
|
2488
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTwoOfficesDispatch; });
|
|
2489
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return twoOfficesDispatch; });
|
|
2490
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendList; });
|
|
2491
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendInfo; });
|
|
2463
2492
|
/* unused harmony export sendSave */
|
|
2464
2493
|
/* unused harmony export sendUpdate */
|
|
2465
2494
|
/* unused harmony export sendDelete */
|
|
2466
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2467
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
2495
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return sendBatch; });
|
|
2496
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return formContents; });
|
|
2468
2497
|
// 登录
|
|
2469
2498
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
2470
2499
|
var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
|
|
@@ -2483,6 +2512,10 @@ var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始
|
|
|
2483
2512
|
var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
|
|
2484
2513
|
var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
|
|
2485
2514
|
var doTwoFactorLogin = '/sso2/signIn/auth/doTwoFactorLogin'; // 双因素登录
|
|
2515
|
+
var initRetrialAuth = '/sso2/retrialAuth/initRetrialAuth'; // 初始化二级身份权限验证页面
|
|
2516
|
+
var getRetrialAuthCode = '/sso2/retrialAuth/getRetrialAuthCode'; // 获取二级身份验证验证码
|
|
2517
|
+
var scanCodeRetrialAuth = '/sso2/retrialAuth/scanCodeRetrialAuth'; // 二维码扫码验证(二级权限验证)
|
|
2518
|
+
var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证-验证码验证
|
|
2486
2519
|
// 框架
|
|
2487
2520
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
2488
2521
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
@@ -2943,7 +2976,7 @@ var util = __webpack_require__(0);
|
|
|
2943
2976
|
|
|
2944
2977
|
var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
|
|
2945
2978
|
var params = {
|
|
2946
|
-
url: api["
|
|
2979
|
+
url: api["g" /* delAdjunct */],
|
|
2947
2980
|
params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
|
|
2948
2981
|
};
|
|
2949
2982
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -4949,7 +4982,7 @@ var util = __webpack_require__(0);
|
|
|
4949
4982
|
|
|
4950
4983
|
this.loading = true;
|
|
4951
4984
|
util["a" /* default */].ajax({
|
|
4952
|
-
url: id ? api["
|
|
4985
|
+
url: id ? api["r" /* editCommonOpion */] : api["a" /* addCommonOpion */],
|
|
4953
4986
|
params: { id: id }
|
|
4954
4987
|
}).then(function (res) {
|
|
4955
4988
|
var status = res.status,
|
|
@@ -5167,7 +5200,7 @@ var _components;
|
|
|
5167
5200
|
var _this = this;
|
|
5168
5201
|
|
|
5169
5202
|
util["a" /* default */].ajax({
|
|
5170
|
-
url: api["
|
|
5203
|
+
url: api["f" /* commonOpion */],
|
|
5171
5204
|
params: {
|
|
5172
5205
|
userId: util["a" /* default */].getStorage('userId')
|
|
5173
5206
|
},
|
|
@@ -5214,7 +5247,7 @@ var _components;
|
|
|
5214
5247
|
|
|
5215
5248
|
var that = this;
|
|
5216
5249
|
util["a" /* default */].ajax({
|
|
5217
|
-
url: api["
|
|
5250
|
+
url: api["w" /* findSysParam */],
|
|
5218
5251
|
params: { cpName: 'commonOpinionsSelectType' }
|
|
5219
5252
|
}).then(function (res) {
|
|
5220
5253
|
if (res.status == 'success') {
|
|
@@ -5243,7 +5276,7 @@ var _components;
|
|
|
5243
5276
|
}).then(function () {
|
|
5244
5277
|
_this3.loading = util["a" /* default */].loading(_this3.$loading, '删除中...');
|
|
5245
5278
|
util["a" /* default */].ajax({
|
|
5246
|
-
url: api["
|
|
5279
|
+
url: api["h" /* deleteCommonOpion */],
|
|
5247
5280
|
params: {
|
|
5248
5281
|
id: val.id
|
|
5249
5282
|
}
|
|
@@ -5292,7 +5325,7 @@ var _components;
|
|
|
5292
5325
|
}
|
|
5293
5326
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
5294
5327
|
util["a" /* default */].ajax({
|
|
5295
|
-
url: data.id ? api["
|
|
5328
|
+
url: data.id ? api["Sb" /* updateCommonOpinion */] : api["lb" /* saveCommonOpinion */],
|
|
5296
5329
|
data: info,
|
|
5297
5330
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
5298
5331
|
method: 'post'
|
|
@@ -6154,7 +6187,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
6154
6187
|
newNextUser: [],
|
|
6155
6188
|
newOptions: [],
|
|
6156
6189
|
newSelectUserList: [],
|
|
6157
|
-
url: api["
|
|
6190
|
+
url: api["R" /* handleInfo */],
|
|
6158
6191
|
newCheckboxList: [],
|
|
6159
6192
|
newPresetEdit: 0,
|
|
6160
6193
|
newMultiple: false,
|
|
@@ -6271,7 +6304,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
6271
6304
|
if (query !== '') {
|
|
6272
6305
|
this.searchLoading = true;
|
|
6273
6306
|
util["a" /* default */].ajax({
|
|
6274
|
-
url: api["
|
|
6307
|
+
url: api["R" /* handleInfo */],
|
|
6275
6308
|
params: { searchKey: query, query: query, type: 'user' }
|
|
6276
6309
|
}).then(function (res) {
|
|
6277
6310
|
var status = res.status,
|
|
@@ -6681,7 +6714,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
6681
6714
|
nextNodeId: nodeId,
|
|
6682
6715
|
businessId: this.id
|
|
6683
6716
|
};
|
|
6684
|
-
util["a" /* default */].ajax({ url: api["
|
|
6717
|
+
util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
|
|
6685
6718
|
var status = res.status,
|
|
6686
6719
|
message = res.message,
|
|
6687
6720
|
_res$data = res.data,
|
|
@@ -6778,7 +6811,7 @@ var CustomPresetvue_type_script_lang_js_components;
|
|
|
6778
6811
|
|
|
6779
6812
|
isNoStart && (this.newPresetList = []);
|
|
6780
6813
|
var params = {
|
|
6781
|
-
url: api["
|
|
6814
|
+
url: api["I" /* getPresetCustomInfo */],
|
|
6782
6815
|
params: {
|
|
6783
6816
|
nodeId: nodeId,
|
|
6784
6817
|
processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
|
|
@@ -7129,7 +7162,7 @@ var Presetvue_type_script_lang_js_components;
|
|
|
7129
7162
|
nodeId = this.nodeId;
|
|
7130
7163
|
|
|
7131
7164
|
var params = {
|
|
7132
|
-
url: api["
|
|
7165
|
+
url: api["J" /* getPresetNodeInfo */],
|
|
7133
7166
|
params: {
|
|
7134
7167
|
nextNodeId: nextNodeId,
|
|
7135
7168
|
processDefinitionId: processDefinitionId,
|
|
@@ -7727,7 +7760,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
7727
7760
|
var _this = this;
|
|
7728
7761
|
|
|
7729
7762
|
util["a" /* default */].ajax({
|
|
7730
|
-
url: api["
|
|
7763
|
+
url: api["t" /* findCodeValues */],
|
|
7731
7764
|
params: { ccCode: 'notification_type' }
|
|
7732
7765
|
}).then(function (res) {
|
|
7733
7766
|
var status = res.status,
|
|
@@ -7753,7 +7786,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
7753
7786
|
nodeId: this.nextNode.nextNode,
|
|
7754
7787
|
businessId: this.id
|
|
7755
7788
|
};
|
|
7756
|
-
util["a" /* default */].ajax({ url: api["
|
|
7789
|
+
util["a" /* default */].ajax({ url: api["G" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
7757
7790
|
if (res.status === 'success') {
|
|
7758
7791
|
_this2.nextNode.noticeInfo = res.message;
|
|
7759
7792
|
}
|
|
@@ -7822,7 +7855,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
7822
7855
|
opinion: _this3.newOpinion || newOpinion
|
|
7823
7856
|
};
|
|
7824
7857
|
if (_this3.activeNames != '1') delete params.customPresetUserJson;
|
|
7825
|
-
util["a" /* default */].ajax({ url: api["
|
|
7858
|
+
util["a" /* default */].ajax({ url: api["jb" /* register */], method: 'post', data: params }).then(function (res) {
|
|
7826
7859
|
var status = res.status,
|
|
7827
7860
|
message = res.message;
|
|
7828
7861
|
|
|
@@ -7852,7 +7885,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
7852
7885
|
nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
|
|
7853
7886
|
businessId: this.id
|
|
7854
7887
|
};
|
|
7855
|
-
util["a" /* default */].ajax({ url: api["
|
|
7888
|
+
util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
|
|
7856
7889
|
var status = res.status,
|
|
7857
7890
|
message = res.message,
|
|
7858
7891
|
_res$data = res.data,
|
|
@@ -7939,7 +7972,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
7939
7972
|
var _this5 = this;
|
|
7940
7973
|
|
|
7941
7974
|
util["a" /* default */].ajax({
|
|
7942
|
-
url: api["
|
|
7975
|
+
url: api["v" /* findSysCodes */]
|
|
7943
7976
|
}).then(function (res) {
|
|
7944
7977
|
var status = res.status,
|
|
7945
7978
|
message = res.message;
|
|
@@ -8008,7 +8041,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
8008
8041
|
businessId: this.businessId
|
|
8009
8042
|
};
|
|
8010
8043
|
// 获取节点
|
|
8011
|
-
util["a" /* default */].ajax({ url: api["
|
|
8044
|
+
util["a" /* default */].ajax({ url: api["Fb" /* toStartFlow */], params: params }).then(function (res) {
|
|
8012
8045
|
//pc接口返回数据处理
|
|
8013
8046
|
var status = res.status,
|
|
8014
8047
|
message = res.message,
|
|
@@ -8454,7 +8487,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
|
|
|
8454
8487
|
notificationType = _sendInfo.notificationType;
|
|
8455
8488
|
|
|
8456
8489
|
var params = {
|
|
8457
|
-
url: api["
|
|
8490
|
+
url: api["qb" /* sendMsg */],
|
|
8458
8491
|
headers: { Accept: 'application/json,text/plain' },
|
|
8459
8492
|
method: 'post',
|
|
8460
8493
|
data: {
|
|
@@ -8516,7 +8549,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
|
|
|
8516
8549
|
|
|
8517
8550
|
this.loading = true;
|
|
8518
8551
|
util["a" /* default */].ajax({
|
|
8519
|
-
url: api["
|
|
8552
|
+
url: api["Eb" /* toSendMsg */],
|
|
8520
8553
|
params: { pendingId: this.$attrs.pendingId }
|
|
8521
8554
|
}).then(function (res) {
|
|
8522
8555
|
var status = res.status,
|
|
@@ -9294,7 +9327,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
|
|
|
9294
9327
|
var _this = this;
|
|
9295
9328
|
|
|
9296
9329
|
util["a" /* default */].ajax({
|
|
9297
|
-
url: api["
|
|
9330
|
+
url: api["t" /* findCodeValues */],
|
|
9298
9331
|
params: { ccCode: 'notification_type' }
|
|
9299
9332
|
}).then(function (res) {
|
|
9300
9333
|
var status = res.status,
|
|
@@ -9331,7 +9364,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
|
|
|
9331
9364
|
userId: util["a" /* default */].getStorage('userId'),
|
|
9332
9365
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
9333
9366
|
};
|
|
9334
|
-
util["a" /* default */].ajax({ url: api["
|
|
9367
|
+
util["a" /* default */].ajax({ url: api["vb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
9335
9368
|
var status = res.status,
|
|
9336
9369
|
message = res.message;
|
|
9337
9370
|
|
|
@@ -9362,7 +9395,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
|
|
|
9362
9395
|
var _this3 = this;
|
|
9363
9396
|
|
|
9364
9397
|
util["a" /* default */].ajax({
|
|
9365
|
-
url: api["
|
|
9398
|
+
url: api["v" /* findSysCodes */]
|
|
9366
9399
|
}).then(function (res) {
|
|
9367
9400
|
var status = res.status,
|
|
9368
9401
|
message = res.message;
|
|
@@ -9386,7 +9419,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
|
|
|
9386
9419
|
isSinglePage: false,
|
|
9387
9420
|
opinion: this.option
|
|
9388
9421
|
};
|
|
9389
|
-
util["a" /* default */].ajax({ url: api["
|
|
9422
|
+
util["a" /* default */].ajax({ url: api["Ib" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
9390
9423
|
var status = res.status,
|
|
9391
9424
|
message = res.message,
|
|
9392
9425
|
_res$data = res.data,
|
|
@@ -10058,7 +10091,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10058
10091
|
taskExamine = this.taskExamine;
|
|
10059
10092
|
|
|
10060
10093
|
var params = {
|
|
10061
|
-
url: api["
|
|
10094
|
+
url: api["Mb" /* toTaskTransferIndex */],
|
|
10062
10095
|
params: {
|
|
10063
10096
|
opinion: opinion,
|
|
10064
10097
|
pendingId: pendingId,
|
|
@@ -10183,7 +10216,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10183
10216
|
var _this3 = this;
|
|
10184
10217
|
|
|
10185
10218
|
var params = {
|
|
10186
|
-
url: api["
|
|
10219
|
+
url: api["Gb" /* toStartTaskRead */],
|
|
10187
10220
|
params: { pendingId: this.pendingId, taskAction: this.type }
|
|
10188
10221
|
};
|
|
10189
10222
|
if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
|
|
@@ -10222,7 +10255,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10222
10255
|
var _this5 = this;
|
|
10223
10256
|
|
|
10224
10257
|
util["a" /* default */].ajax({
|
|
10225
|
-
url: api["
|
|
10258
|
+
url: api["t" /* findCodeValues */],
|
|
10226
10259
|
params: { ccCode: 'notification_type' }
|
|
10227
10260
|
}).then(function (res) {
|
|
10228
10261
|
var status = res.status,
|
|
@@ -10255,7 +10288,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10255
10288
|
multiple = this.multiple;
|
|
10256
10289
|
|
|
10257
10290
|
var params = {
|
|
10258
|
-
url: api["
|
|
10291
|
+
url: api["zb" /* taskTransfer */],
|
|
10259
10292
|
data: {
|
|
10260
10293
|
choiceDeptId: choiceDeptId,
|
|
10261
10294
|
choiceOrgId: choiceOrgId,
|
|
@@ -10349,7 +10382,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10349
10382
|
!download && delete params.isDownload;
|
|
10350
10383
|
isCdjxjTaskHandle == 'true' && delete params.noticeType;
|
|
10351
10384
|
util["a" /* default */].ajax({
|
|
10352
|
-
url: api["
|
|
10385
|
+
url: api["ub" /* taskReadHtml */],
|
|
10353
10386
|
params: { taskAction: _this7.type },
|
|
10354
10387
|
headers: {
|
|
10355
10388
|
Accept: 'application/json,text/plain'
|
|
@@ -10388,7 +10421,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
10388
10421
|
|
|
10389
10422
|
this.loading = true;
|
|
10390
10423
|
util["a" /* default */].ajax({
|
|
10391
|
-
url: api["
|
|
10424
|
+
url: api["v" /* findSysCodes */]
|
|
10392
10425
|
}).then(function (res) {
|
|
10393
10426
|
var status = res.status,
|
|
10394
10427
|
message = res.message;
|
|
@@ -10841,7 +10874,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
10841
10874
|
pendingId = this.pendingId;
|
|
10842
10875
|
|
|
10843
10876
|
var params = {
|
|
10844
|
-
url: api["
|
|
10877
|
+
url: api["wb" /* taskReview */],
|
|
10845
10878
|
data: {
|
|
10846
10879
|
nextUserId: nextOtherOrgObj.join(','),
|
|
10847
10880
|
notificationType: noticeType.join(','),
|
|
@@ -10877,7 +10910,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
10877
10910
|
var _this2 = this;
|
|
10878
10911
|
|
|
10879
10912
|
var params = {
|
|
10880
|
-
url: api["
|
|
10913
|
+
url: api["Jb" /* toTaskReview */],
|
|
10881
10914
|
params: { pendingId: this.pendingId }
|
|
10882
10915
|
};
|
|
10883
10916
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -10912,7 +10945,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
10912
10945
|
var _this3 = this;
|
|
10913
10946
|
|
|
10914
10947
|
var params = {
|
|
10915
|
-
url: this.type == 'takeAdvice' ? api["
|
|
10948
|
+
url: this.type == 'takeAdvice' ? api["Lb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Kb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Ob" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Pb" /* toTwoOfficesDispatch */] : api["Nb" /* toTaskUnionExamine */],
|
|
10916
10949
|
params: { pendingId: this.pendingId },
|
|
10917
10950
|
headers: { Accept: 'application/json,text/plain' }
|
|
10918
10951
|
};
|
|
@@ -11006,7 +11039,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
11006
11039
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
11007
11040
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
11008
11041
|
var param = {
|
|
11009
|
-
url: this.type === 'startDraf' ? api["
|
|
11042
|
+
url: this.type === 'startDraf' ? api["xb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Bb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Rb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["yb" /* taskTakeAdvice */] : api["Ab" /* taskUnionExamine */],
|
|
11010
11043
|
data: {
|
|
11011
11044
|
opinion: opinion,
|
|
11012
11045
|
pendingId: pendingId,
|
|
@@ -11063,7 +11096,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
11063
11096
|
var _this5 = this;
|
|
11064
11097
|
|
|
11065
11098
|
util["a" /* default */].ajax({
|
|
11066
|
-
url: api["
|
|
11099
|
+
url: api["t" /* findCodeValues */],
|
|
11067
11100
|
params: { ccCode: 'notification_type' }
|
|
11068
11101
|
}).then(function (res) {
|
|
11069
11102
|
var status = res.status,
|
|
@@ -11088,7 +11121,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
11088
11121
|
var params = {
|
|
11089
11122
|
pendingId: this.pendingId
|
|
11090
11123
|
};
|
|
11091
|
-
util["a" /* default */].ajax({ url: api["
|
|
11124
|
+
util["a" /* default */].ajax({ url: api["G" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
|
|
11092
11125
|
if (res.status === 'success') {
|
|
11093
11126
|
_this6.infoList.noticeInfo = res.message;
|
|
11094
11127
|
}
|
|
@@ -11104,7 +11137,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
11104
11137
|
var _this7 = this;
|
|
11105
11138
|
|
|
11106
11139
|
util["a" /* default */].ajax({
|
|
11107
|
-
url: api["
|
|
11140
|
+
url: api["v" /* findSysCodes */]
|
|
11108
11141
|
}).then(function (res) {
|
|
11109
11142
|
var status = res.status,
|
|
11110
11143
|
message = res.message;
|
|
@@ -11983,7 +12016,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
11983
12016
|
var _this = this;
|
|
11984
12017
|
|
|
11985
12018
|
var params = {
|
|
11986
|
-
url: api["
|
|
12019
|
+
url: api["y" /* getAdjunctFileInfos */],
|
|
11987
12020
|
params: { ownId: ownId, code: code }
|
|
11988
12021
|
};
|
|
11989
12022
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -12066,7 +12099,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12066
12099
|
taskAction: 'complete'
|
|
12067
12100
|
};
|
|
12068
12101
|
util["a" /* default */].ajax({
|
|
12069
|
-
url: api["
|
|
12102
|
+
url: api["ub" /* taskReadHtml */],
|
|
12070
12103
|
params: { taskAction: 'complete' },
|
|
12071
12104
|
headers: {
|
|
12072
12105
|
Accept: 'application/json,text/plain'
|
|
@@ -12098,7 +12131,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12098
12131
|
|
|
12099
12132
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
12100
12133
|
util["a" /* default */].ajax({
|
|
12101
|
-
url: api["
|
|
12134
|
+
url: api["Hb" /* toStartTaskReadIndex */],
|
|
12102
12135
|
params: { pendingId: this.pendingId }
|
|
12103
12136
|
}).then(function (res) {
|
|
12104
12137
|
var status = res.status,
|
|
@@ -12132,7 +12165,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12132
12165
|
if (mainConfig) {
|
|
12133
12166
|
this.userModel = JSON.parse(mainConfig).userModel;
|
|
12134
12167
|
} else {
|
|
12135
|
-
util["a" /* default */].ajax({ url: api["
|
|
12168
|
+
util["a" /* default */].ajax({ url: api["Z" /* loginUserInfo */] }).then(function (res) {
|
|
12136
12169
|
var status = res.status,
|
|
12137
12170
|
data = res.data;
|
|
12138
12171
|
|
|
@@ -12167,7 +12200,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12167
12200
|
var _this5 = this;
|
|
12168
12201
|
|
|
12169
12202
|
util["a" /* default */].ajax({
|
|
12170
|
-
url: api["
|
|
12203
|
+
url: api["t" /* findCodeValues */],
|
|
12171
12204
|
params: { ccCode: 'notification_type' }
|
|
12172
12205
|
}).then(function (res) {
|
|
12173
12206
|
var status = res.status,
|
|
@@ -12230,7 +12263,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12230
12263
|
pendingId: this.pendingId
|
|
12231
12264
|
};
|
|
12232
12265
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
12233
|
-
util["a" /* default */].ajax({ url: api["
|
|
12266
|
+
util["a" /* default */].ajax({ url: api["Cb" /* tempSave */], params: params }).then(function (res) {
|
|
12234
12267
|
var status = res.status,
|
|
12235
12268
|
message = res.message;
|
|
12236
12269
|
|
|
@@ -12286,7 +12319,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12286
12319
|
var _this8 = this;
|
|
12287
12320
|
|
|
12288
12321
|
util["a" /* default */].ajax({
|
|
12289
|
-
url: api["
|
|
12322
|
+
url: api["v" /* findSysCodes */]
|
|
12290
12323
|
}).then(function (res) {
|
|
12291
12324
|
var status = res.status,
|
|
12292
12325
|
message = res.message;
|
|
@@ -12313,7 +12346,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12313
12346
|
|
|
12314
12347
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
12315
12348
|
var params = {
|
|
12316
|
-
url: api["
|
|
12349
|
+
url: api["s" /* endFlowHtml */],
|
|
12317
12350
|
headers: { Accept: 'application/json,text/plain' },
|
|
12318
12351
|
method: 'post',
|
|
12319
12352
|
data: mainvue_type_script_lang_js_extends({}, _this9.endFlowInfo, _this9.nextNode, {
|
|
@@ -12441,7 +12474,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12441
12474
|
var _this10 = this;
|
|
12442
12475
|
|
|
12443
12476
|
var params = {
|
|
12444
|
-
url: api["
|
|
12477
|
+
url: api["Y" /* isCanStartSubFlow */],
|
|
12445
12478
|
data: {
|
|
12446
12479
|
appId: this.taskExamineInfo.appId,
|
|
12447
12480
|
inevitableNode: res.inevitableNode
|
|
@@ -12512,7 +12545,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12512
12545
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
12513
12546
|
if (_this11.isOpinionRequired == 1 && (_this11.value == '' || !_this11.value)) return _this11.$message.warning('请填写意见');
|
|
12514
12547
|
var params = {
|
|
12515
|
-
url: api["
|
|
12548
|
+
url: api["kb" /* rejectAndEnd */],
|
|
12516
12549
|
headers: { Accept: 'application/json,text/plain' },
|
|
12517
12550
|
method: 'post',
|
|
12518
12551
|
data: {
|
|
@@ -12575,7 +12608,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12575
12608
|
pendingId: this.pendingId,
|
|
12576
12609
|
businessId: this.businessIds
|
|
12577
12610
|
};
|
|
12578
|
-
util["a" /* default */].ajax({ url: api["
|
|
12611
|
+
util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
|
|
12579
12612
|
var status = res.status,
|
|
12580
12613
|
message = res.message,
|
|
12581
12614
|
data = res.data;
|
|
@@ -12815,7 +12848,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
12815
12848
|
pendingId: this.pendingId,
|
|
12816
12849
|
userId: util["a" /* default */].getStorage('userId')
|
|
12817
12850
|
};
|
|
12818
|
-
util["a" /* default */].ajax({ url: api["
|
|
12851
|
+
util["a" /* default */].ajax({ url: api["C" /* getHandleInfoHtml */], params: params }).then(function (res) {
|
|
12819
12852
|
//pc返回数据
|
|
12820
12853
|
|
|
12821
12854
|
_this14.loading.close();
|
|
@@ -13078,7 +13111,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13078
13111
|
// onlyFlag: true
|
|
13079
13112
|
};
|
|
13080
13113
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
13081
|
-
util["a" /* default */].ajax({ url: api["
|
|
13114
|
+
util["a" /* default */].ajax({ url: api["K" /* getProcessDefList */], params: params }).then(function (res) {
|
|
13082
13115
|
var status = res.status,
|
|
13083
13116
|
message = res.message,
|
|
13084
13117
|
data = res.data;
|
|
@@ -13127,7 +13160,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13127
13160
|
userId: util["a" /* default */].getStorage('userId'),
|
|
13128
13161
|
type: 2
|
|
13129
13162
|
};
|
|
13130
|
-
util["a" /* default */].ajax({ url: api["
|
|
13163
|
+
util["a" /* default */].ajax({ url: api["db" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
|
|
13131
13164
|
var rCode = res.rCode,
|
|
13132
13165
|
msg = res.msg,
|
|
13133
13166
|
results = res.results;
|
|
@@ -13343,7 +13376,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13343
13376
|
params.processDefinitionId = taskExamineInfo.processDefinitionId;
|
|
13344
13377
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
13345
13378
|
params.nodeId = taskExamineInfo.nodeId;
|
|
13346
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
13379
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["tb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
13347
13380
|
var status = res.status,
|
|
13348
13381
|
message = res.message;
|
|
13349
13382
|
|