eoss-ui 0.4.55 → 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.
Files changed (63) hide show
  1. package/lib/button-group.js +136 -100
  2. package/lib/button.js +138 -102
  3. package/lib/cascader.js +2 -2
  4. package/lib/checkbox-group.js +140 -104
  5. package/lib/config/api.js +4 -0
  6. package/lib/data-table-form.js +137 -101
  7. package/lib/data-table.js +139 -103
  8. package/lib/date-picker.js +145 -109
  9. package/lib/dialog.js +136 -100
  10. package/lib/eoss-ui.common.js +785 -285
  11. package/lib/flow-group.js +136 -100
  12. package/lib/flow-list.js +143 -107
  13. package/lib/flow.js +187 -151
  14. package/lib/form.js +137 -101
  15. package/lib/handle-user.js +137 -101
  16. package/lib/handler.js +137 -101
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +138 -102
  19. package/lib/input.js +138 -102
  20. package/lib/label.js +2 -2
  21. package/lib/login.js +171 -128
  22. package/lib/main.js +152 -116
  23. package/lib/mainComp.js +152 -116
  24. package/lib/menu.js +2 -2
  25. package/lib/nav.js +136 -100
  26. package/lib/notify.js +109 -101
  27. package/lib/page.js +136 -100
  28. package/lib/player.js +136 -100
  29. package/lib/qr-code.js +136 -100
  30. package/lib/radio-group.js +137 -101
  31. package/lib/retrial-auth.js +3328 -0
  32. package/lib/select-ganged.js +138 -102
  33. package/lib/select.js +139 -103
  34. package/lib/selector-panel.js +154 -118
  35. package/lib/selector.js +139 -103
  36. package/lib/sizer.js +140 -104
  37. package/lib/steps.js +138 -102
  38. package/lib/switch.js +138 -102
  39. package/lib/table-form.js +138 -102
  40. package/lib/tabs-panel.js +2 -2
  41. package/lib/tabs.js +145 -109
  42. package/lib/theme-chalk/index.css +1 -1
  43. package/lib/theme-chalk/retrial-auth.css +1 -0
  44. package/lib/tips.js +139 -103
  45. package/lib/toolbar.js +2 -2
  46. package/lib/tree-group.js +138 -102
  47. package/lib/tree.js +139 -103
  48. package/lib/upload.js +146 -110
  49. package/lib/utils/util.js +32 -4
  50. package/lib/wujie.js +138 -102
  51. package/lib/wxlogin.js +138 -102
  52. package/package.json +2 -2
  53. package/packages/checkbox-group/src/main.vue +7 -7
  54. package/packages/login/src/main.vue +26 -18
  55. package/packages/retrial-auth/index.js +5 -0
  56. package/packages/retrial-auth/src/main.vue +271 -0
  57. package/packages/theme-chalk/lib/index.css +1 -1
  58. package/packages/theme-chalk/lib/retrial-auth.css +1 -0
  59. package/packages/theme-chalk/src/index.scss +1 -0
  60. package/packages/theme-chalk/src/retrial-auth.scss +38 -0
  61. package/src/config/api.js +4 -0
  62. package/src/index.js +4 -1
  63. package/src/utils/util.js +32 -4
package/lib/flow.js CHANGED
@@ -126,6 +126,7 @@ var $lightColorCount = 5;
126
126
  var $darkColorCount = 4;
127
127
  var publicKey = 'abcdefghijklmnopqrstuvwxyz12345678';
128
128
  var loginMsg = void 0;
129
+ var initAuth = void 0;
129
130
 
130
131
  var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ storeAsString: true });
131
132
 
@@ -276,11 +277,38 @@ var ajax = function ajax(_ref) {
276
277
  }).catch(function (e) {});
277
278
  }, 1000);
278
279
  }
279
- return Promise.reject(response.data);
280
- } else {
281
- // eslint-disable-next-line no-undef
282
- return Promise.resolve(response.data);
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);
283
309
  }
310
+ // eslint-disable-next-line no-undef
311
+ return Promise.resolve(response.data);
284
312
  }
285
313
  }, function (error) {
286
314
  loading && loading.close();
@@ -2345,123 +2373,127 @@ var watermark = function watermark(option) {
2345
2373
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2346
2374
 
2347
2375
  "use strict";
2348
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return doCaLogin; });
2349
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doUserLogin; });
2350
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doQrLogin; });
2351
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return logout; });
2352
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return initLogin; });
2353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return switchUserTo; });
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; });
2354
2382
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
2355
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getLoginCode; });
2356
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCodeLogin; });
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; });
2357
2385
  /* unused harmony export updateCode */
2358
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getModifyPassCode; });
2386
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
2359
2387
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
2360
2388
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
2361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return initModifyPassword; });
2362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doWechatQrLogin; });
2363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getTwoFactorLoginCode; });
2364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doTwoFactorLogin; });
2365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return mainConfig; });
2366
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initUserSet; });
2367
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return updateUserInfo; });
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; });
2368
2400
  /* unused harmony export getUserImgUrl */
2369
2401
  /* unused harmony export getDoorIndex */
2370
2402
  /* unused harmony export refreshOnlineUsers */
2371
2403
  /* unused harmony export getQuickMenuIds */
2372
2404
  /* unused harmony export getApplicationIdArray */
2373
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getComplexApplications; });
2374
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplicationsNew; });
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; });
2375
2407
  /* unused harmony export getUserCustomInfo */
2376
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return updateUserCustomInfo; });
2377
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sysMsgPage; });
2378
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return ignoreSysMsg; });
2379
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return ignoreAllSysMsg; });
2380
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctProperties; });
2381
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return uploads; });
2382
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return uploadOnlyOne; });
2383
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getAdjunctFileInfos; });
2384
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return uploadSort; });
2385
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return downloadByAdjunctId; });
2386
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return uploadDownloads; });
2387
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return previewAdjunct; });
2388
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return previewAdjunct2; });
2389
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return previewAdjunctOffice; });
2390
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return delAdjunct; });
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; });
2391
2423
  /* unused harmony export upload_updateClassify */
2392
2424
  /* unused harmony export getDeleteAdjunctFileInfos */
2393
2425
  /* unused harmony export getPictureBase64 */
2394
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getSelectorOrgTree; });
2395
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getSelectorOrgDetail; });
2396
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getOrgMainTree; });
2397
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getSelectOrgsubids; });
2398
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findSysCode; });
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; });
2399
2431
  /* unused harmony export findUserBaseInfo */
2400
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return gethelpdoc; });
2432
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
2401
2433
  /* unused harmony export getCurrentuser */
2402
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return mainDetail; });
2403
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toStartFlow; });
2404
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return tempSave; });
2405
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return commonOpion; });
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; });
2406
2438
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
2407
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return editCommonOpion; });
2408
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return saveCommonOpinion; });
2409
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return updateCommonOpinion; });
2410
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return deleteCommonOpion; });
2411
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getProcessDefList; });
2412
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getNodeInfo; });
2413
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return findCodeValues; });
2414
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysParam; });
2415
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysCodes; });
2416
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNotificationMsg; });
2417
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getHandleInfoHtml; });
2418
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskHandleHtml; });
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; });
2419
2451
  /* unused harmony export getView */
2420
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return register; });
2421
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return pendedhistoryList; });
2422
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskRejectHtml; });
2423
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskRejectHtml; });
2424
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toStartTaskRead; });
2425
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toStartTaskReadIndex; });
2426
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskReadHtml; });
2427
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return rejectAndEnd; });
2428
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toSendMsg; });
2429
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return sendMsg; });
2430
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return endFlowHtml; });
2431
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return handleInfo; });
2432
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return loginUserInfo; });
2433
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return wss; });
2434
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return topic; });
2435
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getPresetCustomInfo; });
2436
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetNodeInfo; });
2437
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskTransferIndex; });
2438
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskTransfer; });
2439
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toPresetInfoListIndex; });
2440
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deletePresetInfo; });
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; });
2441
2473
  /* unused harmony export historyListJson */
2442
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return pendedhistoryListJson; });
2443
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return pressListJson; });
2444
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteFlow; });
2445
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return isCanStartSubFlow; });
2446
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskUnionExamine; });
2447
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskUnionExamine; });
2448
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTaskTakeAdvice; });
2449
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskTakeAdvice; });
2450
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskStartDraft; });
2451
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskStartDraft; });
2452
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskReview; });
2453
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskReview; });
2454
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskUnionSeal; });
2455
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskUnionSeal; });
2456
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTwoOfficesDispatch; });
2457
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return twoOfficesDispatch; });
2458
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return sendList; });
2459
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return sendInfo; });
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; });
2460
2492
  /* unused harmony export sendSave */
2461
2493
  /* unused harmony export sendUpdate */
2462
2494
  /* unused harmony export sendDelete */
2463
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return sendBatch; });
2464
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return formContents; });
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; });
2465
2497
  // 登录
2466
2498
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
2467
2499
  var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
@@ -2480,6 +2512,10 @@ var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始
2480
2512
  var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
2481
2513
  var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
2482
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'; // 二级身份验证-验证码验证
2483
2519
  // 框架
2484
2520
  var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
2485
2521
  var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
@@ -2940,7 +2976,7 @@ var util = __webpack_require__(0);
2940
2976
 
2941
2977
  var userName = file.userName || file.response && file.response.userName || util["a" /* default */].getStorage('userName');
2942
2978
  var params = {
2943
- url: api["f" /* delAdjunct */],
2979
+ url: api["g" /* delAdjunct */],
2944
2980
  params: { userName: userName, id: file.adjunctId || file.response.adjunctId }
2945
2981
  };
2946
2982
  util["a" /* default */].ajax(params).then(function (res) {
@@ -4946,7 +4982,7 @@ var util = __webpack_require__(0);
4946
4982
 
4947
4983
  this.loading = true;
4948
4984
  util["a" /* default */].ajax({
4949
- url: id ? api["q" /* editCommonOpion */] : api["a" /* addCommonOpion */],
4985
+ url: id ? api["r" /* editCommonOpion */] : api["a" /* addCommonOpion */],
4950
4986
  params: { id: id }
4951
4987
  }).then(function (res) {
4952
4988
  var status = res.status,
@@ -5164,7 +5200,7 @@ var _components;
5164
5200
  var _this = this;
5165
5201
 
5166
5202
  util["a" /* default */].ajax({
5167
- url: api["e" /* commonOpion */],
5203
+ url: api["f" /* commonOpion */],
5168
5204
  params: {
5169
5205
  userId: util["a" /* default */].getStorage('userId')
5170
5206
  },
@@ -5211,7 +5247,7 @@ var _components;
5211
5247
 
5212
5248
  var that = this;
5213
5249
  util["a" /* default */].ajax({
5214
- url: api["v" /* findSysParam */],
5250
+ url: api["w" /* findSysParam */],
5215
5251
  params: { cpName: 'commonOpinionsSelectType' }
5216
5252
  }).then(function (res) {
5217
5253
  if (res.status == 'success') {
@@ -5240,7 +5276,7 @@ var _components;
5240
5276
  }).then(function () {
5241
5277
  _this3.loading = util["a" /* default */].loading(_this3.$loading, '删除中...');
5242
5278
  util["a" /* default */].ajax({
5243
- url: api["g" /* deleteCommonOpion */],
5279
+ url: api["h" /* deleteCommonOpion */],
5244
5280
  params: {
5245
5281
  id: val.id
5246
5282
  }
@@ -5289,7 +5325,7 @@ var _components;
5289
5325
  }
5290
5326
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
5291
5327
  util["a" /* default */].ajax({
5292
- url: data.id ? api["Ob" /* updateCommonOpinion */] : api["ib" /* saveCommonOpinion */],
5328
+ url: data.id ? api["Sb" /* updateCommonOpinion */] : api["lb" /* saveCommonOpinion */],
5293
5329
  data: info,
5294
5330
  header: { 'Content-Type': 'multipart/form-data' },
5295
5331
  method: 'post'
@@ -6151,7 +6187,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
6151
6187
  newNextUser: [],
6152
6188
  newOptions: [],
6153
6189
  newSelectUserList: [],
6154
- url: api["P" /* handleInfo */],
6190
+ url: api["R" /* handleInfo */],
6155
6191
  newCheckboxList: [],
6156
6192
  newPresetEdit: 0,
6157
6193
  newMultiple: false,
@@ -6268,7 +6304,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
6268
6304
  if (query !== '') {
6269
6305
  this.searchLoading = true;
6270
6306
  util["a" /* default */].ajax({
6271
- url: api["P" /* handleInfo */],
6307
+ url: api["R" /* handleInfo */],
6272
6308
  params: { searchKey: query, query: query, type: 'user' }
6273
6309
  }).then(function (res) {
6274
6310
  var status = res.status,
@@ -6678,7 +6714,7 @@ var CustomPresetvue_type_script_lang_js_components;
6678
6714
  nextNodeId: nodeId,
6679
6715
  businessId: this.id
6680
6716
  };
6681
- util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
6717
+ util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
6682
6718
  var status = res.status,
6683
6719
  message = res.message,
6684
6720
  _res$data = res.data,
@@ -6775,7 +6811,7 @@ var CustomPresetvue_type_script_lang_js_components;
6775
6811
 
6776
6812
  isNoStart && (this.newPresetList = []);
6777
6813
  var params = {
6778
- url: api["H" /* getPresetCustomInfo */],
6814
+ url: api["I" /* getPresetCustomInfo */],
6779
6815
  params: {
6780
6816
  nodeId: nodeId,
6781
6817
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -7126,7 +7162,7 @@ var Presetvue_type_script_lang_js_components;
7126
7162
  nodeId = this.nodeId;
7127
7163
 
7128
7164
  var params = {
7129
- url: api["I" /* getPresetNodeInfo */],
7165
+ url: api["J" /* getPresetNodeInfo */],
7130
7166
  params: {
7131
7167
  nextNodeId: nextNodeId,
7132
7168
  processDefinitionId: processDefinitionId,
@@ -7724,7 +7760,7 @@ var processFormvue_type_script_lang_js_components;
7724
7760
  var _this = this;
7725
7761
 
7726
7762
  util["a" /* default */].ajax({
7727
- url: api["s" /* findCodeValues */],
7763
+ url: api["t" /* findCodeValues */],
7728
7764
  params: { ccCode: 'notification_type' }
7729
7765
  }).then(function (res) {
7730
7766
  var status = res.status,
@@ -7750,7 +7786,7 @@ var processFormvue_type_script_lang_js_components;
7750
7786
  nodeId: this.nextNode.nextNode,
7751
7787
  businessId: this.id
7752
7788
  };
7753
- util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7789
+ util["a" /* default */].ajax({ url: api["G" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7754
7790
  if (res.status === 'success') {
7755
7791
  _this2.nextNode.noticeInfo = res.message;
7756
7792
  }
@@ -7819,7 +7855,7 @@ var processFormvue_type_script_lang_js_components;
7819
7855
  opinion: _this3.newOpinion || newOpinion
7820
7856
  };
7821
7857
  if (_this3.activeNames != '1') delete params.customPresetUserJson;
7822
- util["a" /* default */].ajax({ url: api["gb" /* register */], method: 'post', data: params }).then(function (res) {
7858
+ util["a" /* default */].ajax({ url: api["jb" /* register */], method: 'post', data: params }).then(function (res) {
7823
7859
  var status = res.status,
7824
7860
  message = res.message;
7825
7861
 
@@ -7849,7 +7885,7 @@ var processFormvue_type_script_lang_js_components;
7849
7885
  nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
7850
7886
  businessId: this.id
7851
7887
  };
7852
- util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
7888
+ util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
7853
7889
  var status = res.status,
7854
7890
  message = res.message,
7855
7891
  _res$data = res.data,
@@ -7936,7 +7972,7 @@ var processFormvue_type_script_lang_js_components;
7936
7972
  var _this5 = this;
7937
7973
 
7938
7974
  util["a" /* default */].ajax({
7939
- url: api["u" /* findSysCodes */]
7975
+ url: api["v" /* findSysCodes */]
7940
7976
  }).then(function (res) {
7941
7977
  var status = res.status,
7942
7978
  message = res.message;
@@ -8005,7 +8041,7 @@ var processFormvue_type_script_lang_js_components;
8005
8041
  businessId: this.businessId
8006
8042
  };
8007
8043
  // 获取节点
8008
- util["a" /* default */].ajax({ url: api["Bb" /* toStartFlow */], params: params }).then(function (res) {
8044
+ util["a" /* default */].ajax({ url: api["Fb" /* toStartFlow */], params: params }).then(function (res) {
8009
8045
  //pc接口返回数据处理
8010
8046
  var status = res.status,
8011
8047
  message = res.message,
@@ -8451,7 +8487,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
8451
8487
  notificationType = _sendInfo.notificationType;
8452
8488
 
8453
8489
  var params = {
8454
- url: api["mb" /* sendMsg */],
8490
+ url: api["qb" /* sendMsg */],
8455
8491
  headers: { Accept: 'application/json,text/plain' },
8456
8492
  method: 'post',
8457
8493
  data: {
@@ -8513,7 +8549,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
8513
8549
 
8514
8550
  this.loading = true;
8515
8551
  util["a" /* default */].ajax({
8516
- url: api["Ab" /* toSendMsg */],
8552
+ url: api["Eb" /* toSendMsg */],
8517
8553
  params: { pendingId: this.$attrs.pendingId }
8518
8554
  }).then(function (res) {
8519
8555
  var status = res.status,
@@ -9291,7 +9327,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9291
9327
  var _this = this;
9292
9328
 
9293
9329
  util["a" /* default */].ajax({
9294
- url: api["s" /* findCodeValues */],
9330
+ url: api["t" /* findCodeValues */],
9295
9331
  params: { ccCode: 'notification_type' }
9296
9332
  }).then(function (res) {
9297
9333
  var status = res.status,
@@ -9328,7 +9364,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9328
9364
  userId: util["a" /* default */].getStorage('userId'),
9329
9365
  nextNodeId: _this2.nextNode.nextNodeId
9330
9366
  };
9331
- util["a" /* default */].ajax({ url: api["rb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
9367
+ util["a" /* default */].ajax({ url: api["vb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
9332
9368
  var status = res.status,
9333
9369
  message = res.message;
9334
9370
 
@@ -9359,7 +9395,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9359
9395
  var _this3 = this;
9360
9396
 
9361
9397
  util["a" /* default */].ajax({
9362
- url: api["u" /* findSysCodes */]
9398
+ url: api["v" /* findSysCodes */]
9363
9399
  }).then(function (res) {
9364
9400
  var status = res.status,
9365
9401
  message = res.message;
@@ -9383,7 +9419,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9383
9419
  isSinglePage: false,
9384
9420
  opinion: this.option
9385
9421
  };
9386
- util["a" /* default */].ajax({ url: api["Eb" /* toTaskRejectHtml */], params: params }).then(function (res) {
9422
+ util["a" /* default */].ajax({ url: api["Ib" /* toTaskRejectHtml */], params: params }).then(function (res) {
9387
9423
  var status = res.status,
9388
9424
  message = res.message,
9389
9425
  _res$data = res.data,
@@ -10055,7 +10091,7 @@ var startTaskReadvue_type_script_lang_js_components;
10055
10091
  taskExamine = this.taskExamine;
10056
10092
 
10057
10093
  var params = {
10058
- url: api["Ib" /* toTaskTransferIndex */],
10094
+ url: api["Mb" /* toTaskTransferIndex */],
10059
10095
  params: {
10060
10096
  opinion: opinion,
10061
10097
  pendingId: pendingId,
@@ -10180,7 +10216,7 @@ var startTaskReadvue_type_script_lang_js_components;
10180
10216
  var _this3 = this;
10181
10217
 
10182
10218
  var params = {
10183
- url: api["Cb" /* toStartTaskRead */],
10219
+ url: api["Gb" /* toStartTaskRead */],
10184
10220
  params: { pendingId: this.pendingId, taskAction: this.type }
10185
10221
  };
10186
10222
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -10219,7 +10255,7 @@ var startTaskReadvue_type_script_lang_js_components;
10219
10255
  var _this5 = this;
10220
10256
 
10221
10257
  util["a" /* default */].ajax({
10222
- url: api["s" /* findCodeValues */],
10258
+ url: api["t" /* findCodeValues */],
10223
10259
  params: { ccCode: 'notification_type' }
10224
10260
  }).then(function (res) {
10225
10261
  var status = res.status,
@@ -10252,7 +10288,7 @@ var startTaskReadvue_type_script_lang_js_components;
10252
10288
  multiple = this.multiple;
10253
10289
 
10254
10290
  var params = {
10255
- url: api["vb" /* taskTransfer */],
10291
+ url: api["zb" /* taskTransfer */],
10256
10292
  data: {
10257
10293
  choiceDeptId: choiceDeptId,
10258
10294
  choiceOrgId: choiceOrgId,
@@ -10346,7 +10382,7 @@ var startTaskReadvue_type_script_lang_js_components;
10346
10382
  !download && delete params.isDownload;
10347
10383
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
10348
10384
  util["a" /* default */].ajax({
10349
- url: api["qb" /* taskReadHtml */],
10385
+ url: api["ub" /* taskReadHtml */],
10350
10386
  params: { taskAction: _this7.type },
10351
10387
  headers: {
10352
10388
  Accept: 'application/json,text/plain'
@@ -10385,7 +10421,7 @@ var startTaskReadvue_type_script_lang_js_components;
10385
10421
 
10386
10422
  this.loading = true;
10387
10423
  util["a" /* default */].ajax({
10388
- url: api["u" /* findSysCodes */]
10424
+ url: api["v" /* findSysCodes */]
10389
10425
  }).then(function (res) {
10390
10426
  var status = res.status,
10391
10427
  message = res.message;
@@ -10838,7 +10874,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10838
10874
  pendingId = this.pendingId;
10839
10875
 
10840
10876
  var params = {
10841
- url: api["sb" /* taskReview */],
10877
+ url: api["wb" /* taskReview */],
10842
10878
  data: {
10843
10879
  nextUserId: nextOtherOrgObj.join(','),
10844
10880
  notificationType: noticeType.join(','),
@@ -10874,7 +10910,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10874
10910
  var _this2 = this;
10875
10911
 
10876
10912
  var params = {
10877
- url: api["Fb" /* toTaskReview */],
10913
+ url: api["Jb" /* toTaskReview */],
10878
10914
  params: { pendingId: this.pendingId }
10879
10915
  };
10880
10916
  util["a" /* default */].ajax(params).then(function (res) {
@@ -10909,7 +10945,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10909
10945
  var _this3 = this;
10910
10946
 
10911
10947
  var params = {
10912
- url: this.type == 'takeAdvice' ? api["Hb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Gb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Kb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Lb" /* toTwoOfficesDispatch */] : api["Jb" /* toTaskUnionExamine */],
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 */],
10913
10949
  params: { pendingId: this.pendingId },
10914
10950
  headers: { Accept: 'application/json,text/plain' }
10915
10951
  };
@@ -11003,7 +11039,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11003
11039
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
11004
11040
  // return this.$message.warning('暂未开放,敬请期待!');
11005
11041
  var param = {
11006
- url: this.type === 'startDraf' ? api["tb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["xb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Nb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["ub" /* taskTakeAdvice */] : api["wb" /* taskUnionExamine */],
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 */],
11007
11043
  data: {
11008
11044
  opinion: opinion,
11009
11045
  pendingId: pendingId,
@@ -11060,7 +11096,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11060
11096
  var _this5 = this;
11061
11097
 
11062
11098
  util["a" /* default */].ajax({
11063
- url: api["s" /* findCodeValues */],
11099
+ url: api["t" /* findCodeValues */],
11064
11100
  params: { ccCode: 'notification_type' }
11065
11101
  }).then(function (res) {
11066
11102
  var status = res.status,
@@ -11085,7 +11121,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11085
11121
  var params = {
11086
11122
  pendingId: this.pendingId
11087
11123
  };
11088
- util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11124
+ util["a" /* default */].ajax({ url: api["G" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11089
11125
  if (res.status === 'success') {
11090
11126
  _this6.infoList.noticeInfo = res.message;
11091
11127
  }
@@ -11101,7 +11137,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11101
11137
  var _this7 = this;
11102
11138
 
11103
11139
  util["a" /* default */].ajax({
11104
- url: api["u" /* findSysCodes */]
11140
+ url: api["v" /* findSysCodes */]
11105
11141
  }).then(function (res) {
11106
11142
  var status = res.status,
11107
11143
  message = res.message;
@@ -11980,7 +12016,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11980
12016
  var _this = this;
11981
12017
 
11982
12018
  var params = {
11983
- url: api["x" /* getAdjunctFileInfos */],
12019
+ url: api["y" /* getAdjunctFileInfos */],
11984
12020
  params: { ownId: ownId, code: code }
11985
12021
  };
11986
12022
  util["a" /* default */].ajax(params).then(function (res) {
@@ -12063,7 +12099,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12063
12099
  taskAction: 'complete'
12064
12100
  };
12065
12101
  util["a" /* default */].ajax({
12066
- url: api["qb" /* taskReadHtml */],
12102
+ url: api["ub" /* taskReadHtml */],
12067
12103
  params: { taskAction: 'complete' },
12068
12104
  headers: {
12069
12105
  Accept: 'application/json,text/plain'
@@ -12095,7 +12131,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12095
12131
 
12096
12132
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
12097
12133
  util["a" /* default */].ajax({
12098
- url: api["Db" /* toStartTaskReadIndex */],
12134
+ url: api["Hb" /* toStartTaskReadIndex */],
12099
12135
  params: { pendingId: this.pendingId }
12100
12136
  }).then(function (res) {
12101
12137
  var status = res.status,
@@ -12129,7 +12165,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12129
12165
  if (mainConfig) {
12130
12166
  this.userModel = JSON.parse(mainConfig).userModel;
12131
12167
  } else {
12132
- util["a" /* default */].ajax({ url: api["W" /* loginUserInfo */] }).then(function (res) {
12168
+ util["a" /* default */].ajax({ url: api["Z" /* loginUserInfo */] }).then(function (res) {
12133
12169
  var status = res.status,
12134
12170
  data = res.data;
12135
12171
 
@@ -12164,7 +12200,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12164
12200
  var _this5 = this;
12165
12201
 
12166
12202
  util["a" /* default */].ajax({
12167
- url: api["s" /* findCodeValues */],
12203
+ url: api["t" /* findCodeValues */],
12168
12204
  params: { ccCode: 'notification_type' }
12169
12205
  }).then(function (res) {
12170
12206
  var status = res.status,
@@ -12227,7 +12263,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12227
12263
  pendingId: this.pendingId
12228
12264
  };
12229
12265
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
12230
- util["a" /* default */].ajax({ url: api["yb" /* tempSave */], params: params }).then(function (res) {
12266
+ util["a" /* default */].ajax({ url: api["Cb" /* tempSave */], params: params }).then(function (res) {
12231
12267
  var status = res.status,
12232
12268
  message = res.message;
12233
12269
 
@@ -12283,7 +12319,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12283
12319
  var _this8 = this;
12284
12320
 
12285
12321
  util["a" /* default */].ajax({
12286
- url: api["u" /* findSysCodes */]
12322
+ url: api["v" /* findSysCodes */]
12287
12323
  }).then(function (res) {
12288
12324
  var status = res.status,
12289
12325
  message = res.message;
@@ -12310,7 +12346,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12310
12346
 
12311
12347
  this.$confirm('确认' + res.value + '?').then(function () {
12312
12348
  var params = {
12313
- url: api["r" /* endFlowHtml */],
12349
+ url: api["s" /* endFlowHtml */],
12314
12350
  headers: { Accept: 'application/json,text/plain' },
12315
12351
  method: 'post',
12316
12352
  data: mainvue_type_script_lang_js_extends({}, _this9.endFlowInfo, _this9.nextNode, {
@@ -12438,7 +12474,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12438
12474
  var _this10 = this;
12439
12475
 
12440
12476
  var params = {
12441
- url: api["V" /* isCanStartSubFlow */],
12477
+ url: api["Y" /* isCanStartSubFlow */],
12442
12478
  data: {
12443
12479
  appId: this.taskExamineInfo.appId,
12444
12480
  inevitableNode: res.inevitableNode
@@ -12509,7 +12545,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12509
12545
  this.$confirm('确认' + res.value + '?').then(function () {
12510
12546
  if (_this11.isOpinionRequired == 1 && (_this11.value == '' || !_this11.value)) return _this11.$message.warning('请填写意见');
12511
12547
  var params = {
12512
- url: api["hb" /* rejectAndEnd */],
12548
+ url: api["kb" /* rejectAndEnd */],
12513
12549
  headers: { Accept: 'application/json,text/plain' },
12514
12550
  method: 'post',
12515
12551
  data: {
@@ -12572,7 +12608,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12572
12608
  pendingId: this.pendingId,
12573
12609
  businessId: this.businessIds
12574
12610
  };
12575
- util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
12611
+ util["a" /* default */].ajax({ url: api["F" /* getNodeInfo */], params: params }).then(function (res) {
12576
12612
  var status = res.status,
12577
12613
  message = res.message,
12578
12614
  data = res.data;
@@ -12812,7 +12848,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12812
12848
  pendingId: this.pendingId,
12813
12849
  userId: util["a" /* default */].getStorage('userId')
12814
12850
  };
12815
- util["a" /* default */].ajax({ url: api["B" /* getHandleInfoHtml */], params: params }).then(function (res) {
12851
+ util["a" /* default */].ajax({ url: api["C" /* getHandleInfoHtml */], params: params }).then(function (res) {
12816
12852
  //pc返回数据
12817
12853
 
12818
12854
  _this14.loading.close();
@@ -13075,7 +13111,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13075
13111
  // onlyFlag: true
13076
13112
  };
13077
13113
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
13078
- util["a" /* default */].ajax({ url: api["J" /* getProcessDefList */], params: params }).then(function (res) {
13114
+ util["a" /* default */].ajax({ url: api["K" /* getProcessDefList */], params: params }).then(function (res) {
13079
13115
  var status = res.status,
13080
13116
  message = res.message,
13081
13117
  data = res.data;
@@ -13124,7 +13160,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13124
13160
  userId: util["a" /* default */].getStorage('userId'),
13125
13161
  type: 2
13126
13162
  };
13127
- util["a" /* default */].ajax({ url: api["ab" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
13163
+ util["a" /* default */].ajax({ url: api["db" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
13128
13164
  var rCode = res.rCode,
13129
13165
  msg = res.msg,
13130
13166
  results = res.results;
@@ -13340,7 +13376,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13340
13376
  params.processDefinitionId = taskExamineInfo.processDefinitionId;
13341
13377
  params.isSubFlow = taskExamineInfo.isSubFlow;
13342
13378
  params.nodeId = taskExamineInfo.nodeId;
13343
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["pb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
13379
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["tb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
13344
13380
  var status = res.status,
13345
13381
  message = res.message;
13346
13382