eoss-ui 0.4.50 → 0.4.52

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 (67) hide show
  1. package/lib/button-group.js +92 -88
  2. package/lib/button.js +92 -88
  3. package/lib/checkbox-group.js +93 -89
  4. package/lib/config/api.js +2 -0
  5. package/lib/data-table-form.js +93 -89
  6. package/lib/data-table.js +95 -91
  7. package/lib/date-picker.js +92 -88
  8. package/lib/dialog.js +92 -88
  9. package/lib/eoss-ui.common.js +983 -598
  10. package/lib/flow-group.js +92 -88
  11. package/lib/flow-list.js +96 -92
  12. package/lib/flow.js +495 -370
  13. package/lib/form.js +93 -89
  14. package/lib/handle-user.js +93 -89
  15. package/lib/handler.js +114 -110
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +92 -88
  18. package/lib/input.js +92 -88
  19. package/lib/login.js +121 -99
  20. package/lib/main.js +412 -173
  21. package/lib/mainComp.js +108 -104
  22. package/lib/nav.js +107 -95
  23. package/lib/notify.js +95 -91
  24. package/lib/page.js +92 -88
  25. package/lib/player.js +92 -88
  26. package/lib/qr-code.js +92 -88
  27. package/lib/radio-group.js +93 -89
  28. package/lib/select-ganged.js +92 -88
  29. package/lib/select.js +93 -89
  30. package/lib/selector-panel.js +110 -106
  31. package/lib/selector.js +93 -89
  32. package/lib/sizer.js +94 -90
  33. package/lib/steps.js +92 -88
  34. package/lib/switch.js +92 -88
  35. package/lib/table-form.js +100 -93
  36. package/lib/tabs.js +92 -88
  37. package/lib/theme-chalk/form.css +1 -1
  38. package/lib/theme-chalk/index.css +1 -1
  39. package/lib/theme-chalk/main.css +1 -1
  40. package/lib/theme-chalk/menu.css +1 -1
  41. package/lib/tips.js +93 -89
  42. package/lib/tree-group.js +92 -88
  43. package/lib/tree.js +93 -89
  44. package/lib/upload.js +101 -97
  45. package/lib/utils/util.js +2 -2
  46. package/lib/wujie.js +92 -88
  47. package/lib/wxlogin.js +92 -88
  48. package/package.json +1 -1
  49. package/packages/flow/src/main.vue +108 -34
  50. package/packages/flow/src/startTaskRead.vue +15 -3
  51. package/packages/form/src/table.vue +2 -1
  52. package/packages/handler/src/main.vue +13 -15
  53. package/packages/login/src/main.vue +34 -3
  54. package/packages/main/src/main.vue +128 -68
  55. package/packages/main/src/settings.vue +51 -4
  56. package/packages/nav/src/main.vue +22 -10
  57. package/packages/theme-chalk/lib/form.css +1 -1
  58. package/packages/theme-chalk/lib/index.css +1 -1
  59. package/packages/theme-chalk/lib/main.css +1 -1
  60. package/packages/theme-chalk/lib/menu.css +1 -1
  61. package/packages/theme-chalk/src/form.scss +6 -130
  62. package/packages/theme-chalk/src/main.scss +45 -6
  63. package/packages/theme-chalk/src/menu.scss +0 -1
  64. package/src/config/api.js +2 -0
  65. package/src/index.js +1 -1
  66. package/src/utils/util.js +2 -2
  67. package/CHANGELOG.md +0 -929
@@ -350,9 +350,9 @@ var ajax = function ajax(_ref) {
350
350
  if (!mix) {
351
351
  params = {};
352
352
  }
353
- if (format && !headers) {
353
+ if (format && !header['content-type']) {
354
354
  data = qs__WEBPACK_IMPORTED_MODULE_2___default.a.stringify(data);
355
- header['content-type'] = 'application/x-www-form-urlencoded';
355
+ header['content-type'] = 'application/x-www-form-urlencoded;charset=UTF-8';
356
356
  }
357
357
  }
358
358
  return http({
@@ -2346,120 +2346,122 @@ var watermark = function watermark(option) {
2346
2346
 
2347
2347
  "use strict";
2348
2348
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return doCaLogin; });
2349
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doUserLogin; });
2349
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doUserLogin; });
2350
2350
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doQrLogin; });
2351
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return logout; });
2352
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return initLogin; });
2353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return switchUserTo; });
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; });
2354
2354
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
2355
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getLoginCode; });
2355
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getLoginCode; });
2356
2356
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCodeLogin; });
2357
2357
  /* unused harmony export updateCode */
2358
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getModifyPassCode; });
2358
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getModifyPassCode; });
2359
2359
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
2360
2360
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
2361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return initModifyPassword; });
2362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doWechatQrLogin; });
2363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return mainConfig; });
2364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return initUserSet; });
2365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return updateUserInfo; });
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; });
2366
2368
  /* unused harmony export getUserImgUrl */
2367
2369
  /* unused harmony export getDoorIndex */
2368
2370
  /* unused harmony export refreshOnlineUsers */
2369
2371
  /* unused harmony export getQuickMenuIds */
2370
2372
  /* unused harmony export getApplicationIdArray */
2371
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getComplexApplications; });
2372
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getComplexApplicationsNew; });
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; });
2373
2375
  /* unused harmony export getUserCustomInfo */
2374
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return updateUserCustomInfo; });
2375
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return sysMsgPage; });
2376
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return ignoreSysMsg; });
2377
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return ignoreAllSysMsg; });
2378
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return getAdjunctProperties; });
2379
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return uploads; });
2380
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return uploadOnlyOne; });
2381
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return getAdjunctFileInfos; });
2382
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return uploadSort; });
2383
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return downloadByAdjunctId; });
2384
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return uploadDownloads; });
2385
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return previewAdjunct; });
2386
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return previewAdjunct2; });
2387
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return previewAdjunctOffice; });
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; });
2388
2390
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return delAdjunct; });
2389
2391
  /* unused harmony export upload_updateClassify */
2390
2392
  /* unused harmony export getDeleteAdjunctFileInfos */
2391
2393
  /* unused harmony export getPictureBase64 */
2392
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getSelectorOrgTree; });
2393
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getSelectorOrgDetail; });
2394
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getOrgMainTree; });
2395
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getSelectOrgsubids; });
2396
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return findSysCode; });
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; });
2397
2399
  /* unused harmony export findUserBaseInfo */
2398
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return gethelpdoc; });
2400
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return gethelpdoc; });
2399
2401
  /* unused harmony export getCurrentuser */
2400
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return mainDetail; });
2401
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return toStartFlow; });
2402
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return tempSave; });
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; });
2403
2405
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return commonOpion; });
2404
2406
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
2405
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return editCommonOpion; });
2406
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return saveCommonOpinion; });
2407
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return updateCommonOpinion; });
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; });
2408
2410
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return deleteCommonOpion; });
2409
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getProcessDefList; });
2410
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getNodeInfo; });
2411
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return findCodeValues; });
2412
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findSysParam; });
2413
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return findSysCodes; });
2414
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getNotificationMsg; });
2415
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getHandleInfoHtml; });
2416
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return taskHandleHtml; });
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; });
2417
2419
  /* unused harmony export getView */
2418
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return register; });
2419
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return pendedhistoryList; });
2420
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return toTaskRejectHtml; });
2421
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return taskRejectHtml; });
2422
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return toStartTaskRead; });
2423
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return toStartTaskReadIndex; });
2424
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return taskReadHtml; });
2425
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return rejectAndEnd; });
2426
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return toSendMsg; });
2427
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return sendMsg; });
2428
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return endFlowHtml; });
2429
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return handleInfo; });
2430
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return loginUserInfo; });
2431
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return wss; });
2432
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return topic; });
2433
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getPresetCustomInfo; });
2434
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getPresetNodeInfo; });
2435
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toTaskTransferIndex; });
2436
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskTransfer; });
2437
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return toPresetInfoListIndex; });
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; });
2438
2440
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deletePresetInfo; });
2439
2441
  /* unused harmony export historyListJson */
2440
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return pendedhistoryListJson; });
2441
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return pressListJson; });
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; });
2442
2444
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteFlow; });
2443
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return isCanStartSubFlow; });
2444
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toTaskUnionExamine; });
2445
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskUnionExamine; });
2446
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toTaskTakeAdvice; });
2447
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return taskTakeAdvice; });
2448
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toTaskStartDraft; });
2449
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return taskStartDraft; });
2450
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toTaskReview; });
2451
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return taskReview; });
2452
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskUnionSeal; });
2453
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskUnionSeal; });
2454
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTwoOfficesDispatch; });
2455
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return twoOfficesDispatch; });
2456
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return sendList; });
2457
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return sendInfo; });
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; });
2458
2460
  /* unused harmony export sendSave */
2459
2461
  /* unused harmony export sendUpdate */
2460
2462
  /* unused harmony export sendDelete */
2461
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return sendBatch; });
2462
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return formContents; });
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; });
2463
2465
  // 登录
2464
2466
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
2465
2467
  var doUserLogin = '/sso2/signIn/auth/doUserLogin'; // 一般的账号密码认证含验证码验证
@@ -2476,6 +2478,8 @@ var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置
2476
2478
  var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
2477
2479
  var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
2478
2480
  var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
2481
+ var getTwoFactorLoginCode = '/sso2/signIn/auth/getTwoFactorLoginCode'; // 双因素登录,通过消息中心发送登陆验证码给用户
2482
+ var doTwoFactorLogin = '/sso2/signIn/auth/doTwoFactorLogin'; // 双因素登录
2479
2483
  // 框架
2480
2484
  var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
2481
2485
  var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
@@ -3774,7 +3778,7 @@ var mainvue_type_script_lang_js_extends = Object.assign || function (target) { f
3774
3778
  if (options) {
3775
3779
  this.options = JSON.parse(JSON.stringify(options));
3776
3780
  } else {
3777
- this.getData(api["s" /* findSysCode */], val);
3781
+ this.getData(api["t" /* findSysCode */], val);
3778
3782
  }
3779
3783
  }
3780
3784
  }
@@ -6694,7 +6698,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6694
6698
  params = utils_util["a" /* default */].extend(true, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {}, param);
6695
6699
  _context.next = 14;
6696
6700
  return utils_util["a" /* default */].ajax({
6697
- url: item.sysCode ? api["s" /* findSysCode */] : item.url,
6701
+ url: item.sysCode ? api["t" /* findSysCode */] : item.url,
6698
6702
  method: _this.method,
6699
6703
  params: params,
6700
6704
  data: params
@@ -6829,7 +6833,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
6829
6833
  }
6830
6834
  var params = utils_util["a" /* default */].extend(true, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {}, param);
6831
6835
  utils_util["a" /* default */].ajax({
6832
- url: item.sysCode ? api["s" /* findSysCode */] : item.url,
6836
+ url: item.sysCode ? api["t" /* findSysCode */] : item.url,
6833
6837
  method: this.method,
6834
6838
  params: params,
6835
6839
  data: params
@@ -7798,7 +7802,7 @@ var mainvue_type_script_lang_js_components;
7798
7802
  if (item.sysCode || item.url) {
7799
7803
  var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
7800
7804
  utils_util["a" /* default */].ajax({
7801
- url: item.sysCode ? api["s" /* findSysCode */] : item.url,
7805
+ url: item.sysCode ? api["t" /* findSysCode */] : item.url,
7802
7806
  method: _this2.method,
7803
7807
  params: params,
7804
7808
  data: params
@@ -10230,7 +10234,7 @@ var src_mainvue_type_script_lang_js_components;
10230
10234
  if (item.sysCode || item.url) {
10231
10235
  var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
10232
10236
  utils_util["a" /* default */].ajax({
10233
- url: item.sysCode ? api["s" /* findSysCode */] : item.url,
10237
+ url: item.sysCode ? api["t" /* findSysCode */] : item.url,
10234
10238
  method: this.method,
10235
10239
  params: params,
10236
10240
  data: params
@@ -27319,7 +27323,7 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
27319
27323
  this.loading = true;
27320
27324
  var params = typeof this.contents === 'string' ? { formId: this.contents } : this.contents;
27321
27325
  utils_util["a" /* default */].ajax({
27322
- url: api["v" /* formContents */],
27326
+ url: api["w" /* formContents */],
27323
27327
  data: params,
27324
27328
  params: params
27325
27329
  }).then(function (res) {
@@ -28060,8 +28064,8 @@ form_src_main.install = function (Vue) {
28060
28064
  };
28061
28065
 
28062
28066
  /* harmony default export */ var packages_form = (form_src_main);
28063
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=4ef7ee29&
28064
- var mainvue_type_template_id_4ef7ee29_render = function () {
28067
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=9783bc8c&
28068
+ var mainvue_type_template_id_9783bc8c_render = function () {
28065
28069
  var _vm = this
28066
28070
  var _h = _vm.$createElement
28067
28071
  var _c = _vm._self._c || _h
@@ -28141,8 +28145,8 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
28141
28145
  {
28142
28146
  name: "show",
28143
28147
  rawName: "v-show",
28144
- value: !_vm.isFlow && _vm.typeCode != "fenyue",
28145
- expression: "!isFlow && typeCode != 'fenyue'",
28148
+ value: !_vm.isFlow && _vm.newTypeCode != "fenyue",
28149
+ expression: "!isFlow && newTypeCode != 'fenyue'",
28146
28150
  },
28147
28151
  ],
28148
28152
  staticClass: "es-opinion-file",
@@ -28208,10 +28212,10 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
28208
28212
  rawName: "v-show",
28209
28213
  value:
28210
28214
  (!_vm.endFlow || _vm.nodeInfos.length > 1) &&
28211
- _vm.typeCode != "fenyue" &&
28215
+ _vm.newTypeCode != "fenyue" &&
28212
28216
  !_vm.shrink,
28213
28217
  expression:
28214
- "\n (!endFlow || nodeInfos.length > 1) && typeCode != 'fenyue' && !shrink\n ",
28218
+ "\n (!endFlow || nodeInfos.length > 1) && newTypeCode != 'fenyue' && !shrink\n ",
28215
28219
  },
28216
28220
  ],
28217
28221
  staticClass: "es-info",
@@ -28579,11 +28583,13 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
28579
28583
  1
28580
28584
  )
28581
28585
  : _vm._e(),
28582
- !_vm.isReject && _vm.nodeInfos.length != 0
28583
- ? _c(
28584
- "div",
28585
- [
28586
- _c(
28586
+ _c(
28587
+ "div",
28588
+ [
28589
+ !_vm.isReject &&
28590
+ _vm.nodeInfos.length != 0 &&
28591
+ _vm.isShowNode
28592
+ ? _c(
28587
28593
  "el-form-item",
28588
28594
  {
28589
28595
  attrs: {
@@ -28644,78 +28650,120 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
28644
28650
  ),
28645
28651
  ],
28646
28652
  1
28647
- ),
28648
- _vm.countersignaturetypeCode != 0
28649
- ? _c(
28650
- "el-form-item",
28651
- {
28652
- attrs: {
28653
- prop: "handleMode",
28654
- label: "处理方式",
28653
+ )
28654
+ : _vm._e(),
28655
+ _vm.countersignaturetypeCode != 0
28656
+ ? _c(
28657
+ "el-form-item",
28658
+ {
28659
+ attrs: {
28660
+ prop: "handleMode",
28661
+ label: "处理方式",
28662
+ },
28663
+ },
28664
+ [
28665
+ _c("el-input", {
28666
+ attrs: {
28667
+ placeholder: "请输入内容",
28668
+ disabled: "",
28669
+ },
28670
+ model: {
28671
+ value: _vm.handleMode,
28672
+ callback: function ($$v) {
28673
+ _vm.handleMode = $$v
28655
28674
  },
28675
+ expression: "handleMode",
28656
28676
  },
28657
- [
28658
- _c("el-input", {
28659
- attrs: {
28660
- placeholder: "请输入内容",
28661
- disabled: "",
28662
- },
28663
- model: {
28664
- value: _vm.handleMode,
28665
- callback: function ($$v) {
28666
- _vm.handleMode = $$v
28667
- },
28668
- expression: "handleMode",
28669
- },
28670
- }),
28671
- ],
28672
- 1
28673
- )
28674
- : _vm._e(),
28675
- _c(
28677
+ }),
28678
+ ],
28679
+ 1
28680
+ )
28681
+ : _vm._e(),
28682
+ _c(
28683
+ "el-form-item",
28684
+ {
28685
+ attrs: {
28686
+ prop: _vm.isShowNextUser
28687
+ ? "nextUserId"
28688
+ : "nextOrgId",
28689
+ label: _vm.isShowNextUser
28690
+ ? "下步办理人"
28691
+ : "办理对象",
28692
+ },
28693
+ },
28694
+ [
28695
+ _c("SelectUser", {
28696
+ attrs: {
28697
+ nextUser: _vm.isShowNextUser
28698
+ ? _vm.nextNode.nextUserId
28699
+ : _vm.nextNode.nextOrgId,
28700
+ radioList: _vm.radioList,
28701
+ multiple: _vm.multiple,
28702
+ isCustomUser: !_vm.isShowNextUser
28703
+ ? 1
28704
+ : _vm.isCustomUser,
28705
+ isCurrentNodeForbiddenChangeCandidate:
28706
+ _vm.isCurrentNodeForbiddenChangeCandidate,
28707
+ options: _vm.options,
28708
+ mix: _vm.multiple,
28709
+ presetEdit: _vm.presetEdit,
28710
+ selectUserList:
28711
+ _vm.selectUserList,
28712
+ types: _vm.nextUserTypes,
28713
+ params: _vm.isShowNextUser
28714
+ ? _vm.params
28715
+ : {},
28716
+ tabs: _vm.nextUserTabs,
28717
+ },
28718
+ on: {
28719
+ change: function ($event) {
28720
+ _vm.changeSelectUser(
28721
+ $event,
28722
+ _vm.isShowNextUser
28723
+ ? "nextUserId"
28724
+ : "nextOrgId",
28725
+ true
28726
+ )
28727
+ },
28728
+ },
28729
+ }),
28730
+ ],
28731
+ 1
28732
+ ),
28733
+ _vm.isHideCurrentOrg
28734
+ ? _c(
28676
28735
  "el-form-item",
28677
28736
  {
28678
28737
  attrs: {
28679
- prop: _vm.isShowNextUser
28680
- ? "nextUserId"
28681
- : "nextOrgId",
28682
- label: _vm.isShowNextUser
28683
- ? "下步办理人"
28684
- : "办理对象",
28738
+ prop: "nextCurrentOrgObj",
28739
+ label: _vm.currentOrgName
28740
+ ? _vm.currentOrgName
28741
+ : "本单位",
28685
28742
  },
28686
28743
  },
28687
28744
  [
28688
28745
  _c("SelectUser", {
28689
28746
  attrs: {
28690
- nextUser: _vm.isShowNextUser
28691
- ? _vm.nextNode.nextUserId
28692
- : _vm.nextNode.nextOrgId,
28693
- radioList: _vm.radioList,
28694
- multiple: _vm.multiple,
28695
- isCustomUser:
28696
- !_vm.isShowNextUser
28697
- ? 1
28698
- : _vm.isCustomUser,
28699
- isCurrentNodeForbiddenChangeCandidate:
28700
- _vm.isCurrentNodeForbiddenChangeCandidate,
28701
- options: _vm.options,
28702
- mix: _vm.multiple,
28703
- presetEdit: _vm.presetEdit,
28747
+ nextUser:
28748
+ _vm.nextNode
28749
+ .nextCurrentOrgObj,
28750
+ multiple: "",
28751
+ mix: "",
28704
28752
  selectUserList:
28705
- _vm.selectUserList,
28706
- types: _vm.nextUserTypes,
28707
- params: _vm.isShowNextUser
28708
- ? _vm.params
28709
- : {},
28710
- tabs: _vm.nextUserTabs,
28753
+ _vm.selectNextCurrentOrgObjList,
28754
+ types: [
28755
+ "department",
28756
+ "employee",
28757
+ ],
28758
+ params: {
28759
+ filid: _vm.userModel.orgId,
28760
+ },
28711
28761
  },
28712
28762
  on: {
28713
28763
  change: function ($event) {
28714
28764
  _vm.changeSelectUser(
28715
28765
  $event,
28716
- _vm.isShowNextUser
28717
- ? "nextUserId"
28718
- : "nextOrgId",
28766
+ "nextCurrentOrgObj",
28719
28767
  true
28720
28768
  )
28721
28769
  },
@@ -28723,145 +28771,135 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
28723
28771
  }),
28724
28772
  ],
28725
28773
  1
28726
- ),
28727
- _vm.nodeType !== 0 &&
28728
- _vm.isLimitedTimeHandling === 1
28729
- ? _c("TimeLimit", {
28774
+ )
28775
+ : _vm._e(),
28776
+ _vm.nodeType !== 0 &&
28777
+ _vm.isLimitedTimeHandling === 1
28778
+ ? _c("TimeLimit", {
28779
+ attrs: { newsList: _vm.newsList },
28780
+ on: {
28781
+ change: function (val) {
28782
+ return (_vm.nextNode =
28783
+ Object.assign(
28784
+ {},
28785
+ _vm.nextNode,
28786
+ val
28787
+ ))
28788
+ },
28789
+ },
28790
+ })
28791
+ : _vm._e(),
28792
+ _vm.isTaskread == 1
28793
+ ? _c(
28794
+ "el-form-item",
28795
+ {
28796
+ attrs: {
28797
+ prop: "nextReadUserId",
28798
+ label:
28799
+ "\n 分阅用户\n ",
28800
+ },
28801
+ },
28802
+ [
28803
+ _c("SelectUser", {
28730
28804
  attrs: {
28731
- newsList: _vm.newsList,
28805
+ nextUser:
28806
+ _vm.nextNode.nextReadUserId,
28807
+ multiple: true,
28808
+ selectUserList:
28809
+ _vm.selectReadUserList,
28810
+ options: _vm.userOptions,
28811
+ mix: true,
28812
+ types: _vm.types,
28813
+ tabs: _vm.tabs,
28732
28814
  },
28733
28815
  on: {
28734
- change: function (val) {
28735
- return (_vm.nextNode =
28736
- Object.assign(
28737
- {},
28738
- _vm.nextNode,
28739
- val
28740
- ))
28816
+ change: function ($event) {
28817
+ _vm.changeSelectReadUser(
28818
+ $event,
28819
+ "nextReadUserId"
28820
+ )
28741
28821
  },
28742
28822
  },
28743
- })
28744
- : _vm._e(),
28745
- _vm.isTaskread == 1
28746
- ? _c(
28747
- "el-form-item",
28748
- {
28749
- attrs: {
28750
- prop: "nextReadUserId",
28751
- label:
28752
- "\n 分阅用户\n ",
28753
- },
28823
+ }),
28824
+ ],
28825
+ 1
28826
+ )
28827
+ : _vm._e(),
28828
+ _vm.canPresetRead
28829
+ ? _c(
28830
+ "el-form-item",
28831
+ {
28832
+ attrs: {
28833
+ prop: "presetReadUserId",
28834
+ label:
28835
+ "\n 自动分阅\n ",
28836
+ },
28837
+ },
28838
+ [
28839
+ _c("SelectUser", {
28840
+ attrs: {
28841
+ nextUser:
28842
+ _vm.nextNode
28843
+ .presetReadUserId,
28844
+ multiple: true,
28845
+ selectUserList:
28846
+ _vm.selectPresetUserList,
28847
+ options: _vm.presetOptions,
28848
+ radioList:
28849
+ _vm.presetReadUserId,
28850
+ presetEdit: 1,
28851
+ mix: true,
28852
+ types: _vm.types,
28853
+ tabs: _vm.tabs,
28754
28854
  },
28755
- [
28756
- _c("SelectUser", {
28757
- attrs: {
28758
- nextUser:
28759
- _vm.nextNode
28760
- .nextReadUserId,
28761
- multiple: true,
28762
- selectUserList:
28763
- _vm.selectReadUserList,
28764
- options: _vm.userOptions,
28765
- mix: true,
28766
- types: _vm.types,
28767
- tabs: _vm.tabs,
28768
- },
28769
- on: {
28770
- change: function (
28771
- $event
28772
- ) {
28773
- _vm.changeSelectReadUser(
28774
- $event,
28775
- "nextReadUserId"
28776
- )
28777
- },
28778
- },
28779
- }),
28780
- ],
28781
- 1
28782
- )
28783
- : _vm._e(),
28784
- _vm.canPresetRead
28785
- ? _c(
28786
- "el-form-item",
28787
- {
28788
- attrs: {
28789
- prop: "presetReadUserId",
28790
- label:
28791
- "\n 自动分阅\n ",
28855
+ on: {
28856
+ change: function ($event) {
28857
+ _vm.changeSelectReadUser(
28858
+ $event,
28859
+ "presetReadUserId"
28860
+ )
28792
28861
  },
28793
28862
  },
28794
- [
28795
- _c("SelectUser", {
28796
- attrs: {
28797
- nextUser:
28798
- _vm.nextNode
28799
- .presetReadUserId,
28800
- multiple: true,
28801
- selectUserList:
28802
- _vm.selectPresetUserList,
28803
- options:
28804
- _vm.presetOptions,
28805
- radioList:
28806
- _vm.presetReadUserId,
28807
- presetEdit: 1,
28808
- mix: true,
28809
- types: _vm.types,
28810
- tabs: _vm.tabs,
28811
- },
28812
- on: {
28813
- change: function (
28814
- $event
28815
- ) {
28816
- _vm.changeSelectReadUser(
28817
- $event,
28818
- "presetReadUserId"
28819
- )
28820
- },
28821
- },
28822
- }),
28823
- ],
28824
- 1
28825
- )
28826
- : _vm._e(),
28827
- _vm.isHandleExplain == 1
28828
- ? _c(
28829
- "el-form-item",
28830
- {
28831
- attrs: {
28832
- prop: "handleExplain",
28833
- label: "办理说明",
28863
+ }),
28864
+ ],
28865
+ 1
28866
+ )
28867
+ : _vm._e(),
28868
+ _vm.isHandleExplain == 1
28869
+ ? _c(
28870
+ "el-form-item",
28871
+ {
28872
+ attrs: {
28873
+ prop: "handleExplain",
28874
+ label: "办理说明",
28875
+ },
28876
+ },
28877
+ [
28878
+ _c("el-input", {
28879
+ attrs: {
28880
+ placeholder: "请输入办理说明",
28881
+ },
28882
+ model: {
28883
+ value:
28884
+ _vm.nextNode.handleExplain,
28885
+ callback: function ($$v) {
28886
+ _vm.$set(
28887
+ _vm.nextNode,
28888
+ "handleExplain",
28889
+ $$v
28890
+ )
28834
28891
  },
28892
+ expression:
28893
+ "nextNode.handleExplain",
28835
28894
  },
28836
- [
28837
- _c("el-input", {
28838
- attrs: {
28839
- placeholder:
28840
- "请输入办理说明",
28841
- },
28842
- model: {
28843
- value:
28844
- _vm.nextNode
28845
- .handleExplain,
28846
- callback: function ($$v) {
28847
- _vm.$set(
28848
- _vm.nextNode,
28849
- "handleExplain",
28850
- $$v
28851
- )
28852
- },
28853
- expression:
28854
- "nextNode.handleExplain",
28855
- },
28856
- }),
28857
- ],
28858
- 1
28859
- )
28860
- : _vm._e(),
28861
- ],
28862
- 1
28863
- )
28864
- : _vm._e(),
28895
+ }),
28896
+ ],
28897
+ 1
28898
+ )
28899
+ : _vm._e(),
28900
+ ],
28901
+ 1
28902
+ ),
28865
28903
  ],
28866
28904
  1
28867
28905
  )
@@ -29024,7 +29062,7 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
29024
29062
  ],
29025
29063
  1
29026
29064
  ),
29027
- _vm.typeCode != "fenyue" && !_vm.shrink
29065
+ _vm.newTypeCode != "fenyue" && !_vm.shrink
29028
29066
  ? _c(
29029
29067
  "div",
29030
29068
  {
@@ -29439,11 +29477,11 @@ var mainvue_type_template_id_4ef7ee29_render = function () {
29439
29477
  )
29440
29478
  : _vm._e()
29441
29479
  }
29442
- var mainvue_type_template_id_4ef7ee29_staticRenderFns = []
29443
- mainvue_type_template_id_4ef7ee29_render._withStripped = true
29480
+ var mainvue_type_template_id_9783bc8c_staticRenderFns = []
29481
+ mainvue_type_template_id_9783bc8c_render._withStripped = true
29444
29482
 
29445
29483
 
29446
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=4ef7ee29&
29484
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=9783bc8c&
29447
29485
 
29448
29486
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=4e1f4030&
29449
29487
  var CommonOpinionsvue_type_template_id_4e1f4030_render = function () {
@@ -29989,7 +30027,7 @@ formvue_type_template_id_c3a13696_render._withStripped = true
29989
30027
 
29990
30028
  this.loading = true;
29991
30029
  utils_util["a" /* default */].ajax({
29992
- url: id ? api["p" /* editCommonOpion */] : api["a" /* addCommonOpion */],
30030
+ url: id ? api["q" /* editCommonOpion */] : api["a" /* addCommonOpion */],
29993
30031
  params: { id: id }
29994
30032
  }).then(function (res) {
29995
30033
  var status = res.status,
@@ -30254,7 +30292,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
30254
30292
 
30255
30293
  var that = this;
30256
30294
  utils_util["a" /* default */].ajax({
30257
- url: api["u" /* findSysParam */],
30295
+ url: api["v" /* findSysParam */],
30258
30296
  params: { cpName: 'commonOpinionsSelectType' }
30259
30297
  }).then(function (res) {
30260
30298
  if (res.status == 'success') {
@@ -30332,7 +30370,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
30332
30370
  }
30333
30371
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
30334
30372
  utils_util["a" /* default */].ajax({
30335
- url: data.id ? api["Mb" /* updateCommonOpinion */] : api["gb" /* saveCommonOpinion */],
30373
+ url: data.id ? api["Ob" /* updateCommonOpinion */] : api["ib" /* saveCommonOpinion */],
30336
30374
  data: info,
30337
30375
  header: { 'Content-Type': 'multipart/form-data' },
30338
30376
  method: 'post'
@@ -31194,7 +31232,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31194
31232
  newNextUser: [],
31195
31233
  newOptions: [],
31196
31234
  newSelectUserList: [],
31197
- url: api["N" /* handleInfo */],
31235
+ url: api["P" /* handleInfo */],
31198
31236
  newCheckboxList: [],
31199
31237
  newPresetEdit: 0,
31200
31238
  newMultiple: false,
@@ -31311,7 +31349,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
31311
31349
  if (query !== '') {
31312
31350
  this.searchLoading = true;
31313
31351
  utils_util["a" /* default */].ajax({
31314
- url: api["N" /* handleInfo */],
31352
+ url: api["P" /* handleInfo */],
31315
31353
  params: { searchKey: query, query: query, type: 'user' }
31316
31354
  }).then(function (res) {
31317
31355
  var status = res.status,
@@ -31721,7 +31759,7 @@ var CustomPresetvue_type_script_lang_js_components;
31721
31759
  nextNodeId: nodeId,
31722
31760
  businessId: this.id
31723
31761
  };
31724
- utils_util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
31762
+ utils_util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
31725
31763
  var status = res.status,
31726
31764
  message = res.message,
31727
31765
  _res$data = res.data,
@@ -31818,7 +31856,7 @@ var CustomPresetvue_type_script_lang_js_components;
31818
31856
 
31819
31857
  isNoStart && (this.newPresetList = []);
31820
31858
  var params = {
31821
- url: api["G" /* getPresetCustomInfo */],
31859
+ url: api["H" /* getPresetCustomInfo */],
31822
31860
  params: {
31823
31861
  nodeId: nodeId,
31824
31862
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -32169,7 +32207,7 @@ var Presetvue_type_script_lang_js_components;
32169
32207
  nodeId = this.nodeId;
32170
32208
 
32171
32209
  var params = {
32172
- url: api["H" /* getPresetNodeInfo */],
32210
+ url: api["I" /* getPresetNodeInfo */],
32173
32211
  params: {
32174
32212
  nextNodeId: nextNodeId,
32175
32213
  processDefinitionId: processDefinitionId,
@@ -32767,7 +32805,7 @@ var processFormvue_type_script_lang_js_components;
32767
32805
  var _this = this;
32768
32806
 
32769
32807
  utils_util["a" /* default */].ajax({
32770
- url: api["r" /* findCodeValues */],
32808
+ url: api["s" /* findCodeValues */],
32771
32809
  params: { ccCode: 'notification_type' }
32772
32810
  }).then(function (res) {
32773
32811
  var status = res.status,
@@ -32793,7 +32831,7 @@ var processFormvue_type_script_lang_js_components;
32793
32831
  nodeId: this.nextNode.nextNode,
32794
32832
  businessId: this.id
32795
32833
  };
32796
- utils_util["a" /* default */].ajax({ url: api["E" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
32834
+ utils_util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
32797
32835
  if (res.status === 'success') {
32798
32836
  _this2.nextNode.noticeInfo = res.message;
32799
32837
  }
@@ -32862,7 +32900,7 @@ var processFormvue_type_script_lang_js_components;
32862
32900
  opinion: _this3.newOpinion || newOpinion
32863
32901
  };
32864
32902
  if (_this3.activeNames != '1') delete params.customPresetUserJson;
32865
- utils_util["a" /* default */].ajax({ url: api["eb" /* register */], method: 'post', data: params }).then(function (res) {
32903
+ utils_util["a" /* default */].ajax({ url: api["gb" /* register */], method: 'post', data: params }).then(function (res) {
32866
32904
  var status = res.status,
32867
32905
  message = res.message;
32868
32906
 
@@ -32892,7 +32930,7 @@ var processFormvue_type_script_lang_js_components;
32892
32930
  nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
32893
32931
  businessId: this.id
32894
32932
  };
32895
- utils_util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
32933
+ utils_util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
32896
32934
  var status = res.status,
32897
32935
  message = res.message,
32898
32936
  _res$data = res.data,
@@ -32979,7 +33017,7 @@ var processFormvue_type_script_lang_js_components;
32979
33017
  var _this5 = this;
32980
33018
 
32981
33019
  utils_util["a" /* default */].ajax({
32982
- url: api["t" /* findSysCodes */]
33020
+ url: api["u" /* findSysCodes */]
32983
33021
  }).then(function (res) {
32984
33022
  var status = res.status,
32985
33023
  message = res.message;
@@ -33048,7 +33086,7 @@ var processFormvue_type_script_lang_js_components;
33048
33086
  businessId: this.businessId
33049
33087
  };
33050
33088
  // 获取节点
33051
- utils_util["a" /* default */].ajax({ url: api["zb" /* toStartFlow */], params: params }).then(function (res) {
33089
+ utils_util["a" /* default */].ajax({ url: api["Bb" /* toStartFlow */], params: params }).then(function (res) {
33052
33090
  //pc接口返回数据处理
33053
33091
  var status = res.status,
33054
33092
  message = res.message,
@@ -33649,7 +33687,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
33649
33687
  notificationType = _sendInfo.notificationType;
33650
33688
 
33651
33689
  var params = {
33652
- url: api["kb" /* sendMsg */],
33690
+ url: api["mb" /* sendMsg */],
33653
33691
  headers: { Accept: 'application/json,text/plain' },
33654
33692
  method: 'post',
33655
33693
  data: {
@@ -33711,7 +33749,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
33711
33749
 
33712
33750
  this.loading = true;
33713
33751
  utils_util["a" /* default */].ajax({
33714
- url: api["yb" /* toSendMsg */],
33752
+ url: api["Ab" /* toSendMsg */],
33715
33753
  params: { pendingId: this.$attrs.pendingId }
33716
33754
  }).then(function (res) {
33717
33755
  var status = res.status,
@@ -34489,7 +34527,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
34489
34527
  var _this = this;
34490
34528
 
34491
34529
  utils_util["a" /* default */].ajax({
34492
- url: api["r" /* findCodeValues */],
34530
+ url: api["s" /* findCodeValues */],
34493
34531
  params: { ccCode: 'notification_type' }
34494
34532
  }).then(function (res) {
34495
34533
  var status = res.status,
@@ -34526,7 +34564,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
34526
34564
  userId: utils_util["a" /* default */].getStorage('userId'),
34527
34565
  nextNodeId: _this2.nextNode.nextNodeId
34528
34566
  };
34529
- utils_util["a" /* default */].ajax({ url: api["pb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
34567
+ utils_util["a" /* default */].ajax({ url: api["rb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
34530
34568
  var status = res.status,
34531
34569
  message = res.message;
34532
34570
 
@@ -34557,7 +34595,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
34557
34595
  var _this3 = this;
34558
34596
 
34559
34597
  utils_util["a" /* default */].ajax({
34560
- url: api["t" /* findSysCodes */]
34598
+ url: api["u" /* findSysCodes */]
34561
34599
  }).then(function (res) {
34562
34600
  var status = res.status,
34563
34601
  message = res.message;
@@ -34581,7 +34619,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
34581
34619
  isSinglePage: false,
34582
34620
  opinion: this.option
34583
34621
  };
34584
- utils_util["a" /* default */].ajax({ url: api["Cb" /* toTaskRejectHtml */], params: params }).then(function (res) {
34622
+ utils_util["a" /* default */].ajax({ url: api["Eb" /* toTaskRejectHtml */], params: params }).then(function (res) {
34585
34623
  var status = res.status,
34586
34624
  message = res.message,
34587
34625
  _res$data = res.data,
@@ -34644,8 +34682,8 @@ var processReject_component = normalizeComponent(
34644
34682
  )
34645
34683
 
34646
34684
  /* harmony default export */ var processReject = (processReject_component.exports);
34647
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=0c8ae180&
34648
- var startTaskReadvue_type_template_id_0c8ae180_render = function () {
34685
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=template&id=95f78930&
34686
+ var startTaskReadvue_type_template_id_95f78930_render = function () {
34649
34687
  var _vm = this
34650
34688
  var _h = _vm.$createElement
34651
34689
  var _c = _vm._self._c || _h
@@ -35020,11 +35058,15 @@ var startTaskReadvue_type_template_id_0c8ae180_render = function () {
35020
35058
  1
35021
35059
  )
35022
35060
  }
35023
- var startTaskReadvue_type_template_id_0c8ae180_staticRenderFns = []
35024
- startTaskReadvue_type_template_id_0c8ae180_render._withStripped = true
35061
+ var startTaskReadvue_type_template_id_95f78930_staticRenderFns = []
35062
+ startTaskReadvue_type_template_id_95f78930_render._withStripped = true
35063
+
35025
35064
 
35065
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=95f78930&
35026
35066
 
35027
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=0c8ae180&
35067
+ // EXTERNAL MODULE: external "qs"
35068
+ var external_qs_ = __webpack_require__(3);
35069
+ var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
35028
35070
 
35029
35071
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/startTaskRead.vue?vue&type=script&lang=js&
35030
35072
  var startTaskReadvue_type_script_lang_js_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; };
@@ -35178,6 +35220,7 @@ var startTaskReadvue_type_script_lang_js_components;
35178
35220
 
35179
35221
 
35180
35222
 
35223
+
35181
35224
  /* harmony default export */ var startTaskReadvue_type_script_lang_js_ = ({
35182
35225
  name: 'StartTaskRead',
35183
35226
  components: (startTaskReadvue_type_script_lang_js_components = {}, startTaskReadvue_type_script_lang_js_components[Option.name] = Option, startTaskReadvue_type_script_lang_js_components[selectUser.name] = selectUser, startTaskReadvue_type_script_lang_js_components),
@@ -35253,7 +35296,7 @@ var startTaskReadvue_type_script_lang_js_components;
35253
35296
  taskExamine = this.taskExamine;
35254
35297
 
35255
35298
  var params = {
35256
- url: api["Gb" /* toTaskTransferIndex */],
35299
+ url: api["Ib" /* toTaskTransferIndex */],
35257
35300
  params: {
35258
35301
  opinion: opinion,
35259
35302
  pendingId: pendingId,
@@ -35378,7 +35421,7 @@ var startTaskReadvue_type_script_lang_js_components;
35378
35421
  var _this3 = this;
35379
35422
 
35380
35423
  var params = {
35381
- url: api["Ab" /* toStartTaskRead */],
35424
+ url: api["Cb" /* toStartTaskRead */],
35382
35425
  params: { pendingId: this.pendingId, taskAction: this.type }
35383
35426
  };
35384
35427
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -35417,7 +35460,7 @@ var startTaskReadvue_type_script_lang_js_components;
35417
35460
  var _this5 = this;
35418
35461
 
35419
35462
  utils_util["a" /* default */].ajax({
35420
- url: api["r" /* findCodeValues */],
35463
+ url: api["s" /* findCodeValues */],
35421
35464
  params: { ccCode: 'notification_type' }
35422
35465
  }).then(function (res) {
35423
35466
  var status = res.status,
@@ -35440,7 +35483,9 @@ var startTaskReadvue_type_script_lang_js_components;
35440
35483
 
35441
35484
  var _taskExamine = this.taskExamine,
35442
35485
  choiceDeptId = _taskExamine.choiceDeptId,
35443
- choiceOrgId = _taskExamine.choiceOrgId;
35486
+ choiceOrgId = _taskExamine.choiceOrgId,
35487
+ bCode = _taskExamine.bCode,
35488
+ bName = _taskExamine.bName;
35444
35489
  var opinion = this.opinion,
35445
35490
  pendingId = this.pendingId,
35446
35491
  nextNode = this.nextNode,
@@ -35448,10 +35493,12 @@ var startTaskReadvue_type_script_lang_js_components;
35448
35493
  multiple = this.multiple;
35449
35494
 
35450
35495
  var params = {
35451
- url: api["tb" /* taskTransfer */],
35496
+ url: api["vb" /* taskTransfer */],
35452
35497
  data: {
35453
35498
  choiceDeptId: choiceDeptId,
35454
35499
  choiceOrgId: choiceOrgId,
35500
+ bCode: bCode,
35501
+ bName: bName,
35455
35502
  nextUserId: multiple ? nextNode.nextUser.join(',') : nextNode.nextUser,
35456
35503
  opinion: opinion,
35457
35504
  pendingId: pendingId,
@@ -35503,12 +35550,16 @@ var startTaskReadvue_type_script_lang_js_components;
35503
35550
  var _taskExamine2 = _this7.taskExamine,
35504
35551
  appId = _taskExamine2.appId,
35505
35552
  businessId = _taskExamine2.businessId,
35553
+ bCode = _taskExamine2.bCode,
35554
+ bName = _taskExamine2.bName,
35506
35555
  choiceDeptId = _taskExamine2.choiceDeptId,
35507
35556
  choiceOrgId = _taskExamine2.choiceOrgId,
35508
35557
  businessName = _taskExamine2.businessName,
35509
35558
  processDefinitionId = _taskExamine2.processDefinitionId;
35510
35559
 
35511
35560
  var params = startTaskReadvue_type_script_lang_js_extends({}, _this7.nextNode, {
35561
+ bCode: bCode,
35562
+ bName: bName,
35512
35563
  appId: appId,
35513
35564
  businessId: businessId,
35514
35565
  choiceDeptId: choiceDeptId,
@@ -35536,11 +35587,15 @@ var startTaskReadvue_type_script_lang_js_components;
35536
35587
  !download && delete params.isDownload;
35537
35588
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
35538
35589
  utils_util["a" /* default */].ajax({
35539
- url: api["ob" /* taskReadHtml */],
35590
+ url: api["qb" /* taskReadHtml */],
35540
35591
  params: { taskAction: _this7.type },
35541
- headers: { Accept: 'application/json,text/plain' },
35592
+ headers: {
35593
+ Accept: 'application/json,text/plain',
35594
+ 'Content-Type': ' application/x-www-form-urlencoded; charset=UTF-8'
35595
+ },
35542
35596
  method: 'post',
35543
- data: params
35597
+ format: false,
35598
+ data: external_qs_default.a.stringify(params)
35544
35599
  }).then(function (res) {
35545
35600
  var message = res.message,
35546
35601
  status = res.status;
@@ -35573,7 +35628,7 @@ var startTaskReadvue_type_script_lang_js_components;
35573
35628
 
35574
35629
  this.loading = true;
35575
35630
  utils_util["a" /* default */].ajax({
35576
- url: api["t" /* findSysCodes */]
35631
+ url: api["u" /* findSysCodes */]
35577
35632
  }).then(function (res) {
35578
35633
  var status = res.status,
35579
35634
  message = res.message;
@@ -35611,8 +35666,8 @@ var startTaskReadvue_type_script_lang_js_components;
35611
35666
 
35612
35667
  var startTaskRead_component = normalizeComponent(
35613
35668
  src_startTaskReadvue_type_script_lang_js_,
35614
- startTaskReadvue_type_template_id_0c8ae180_render,
35615
- startTaskReadvue_type_template_id_0c8ae180_staticRenderFns,
35669
+ startTaskReadvue_type_template_id_95f78930_render,
35670
+ startTaskReadvue_type_template_id_95f78930_staticRenderFns,
35616
35671
  false,
35617
35672
  null,
35618
35673
  null,
@@ -36026,7 +36081,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36026
36081
  pendingId = this.pendingId;
36027
36082
 
36028
36083
  var params = {
36029
- url: api["qb" /* taskReview */],
36084
+ url: api["sb" /* taskReview */],
36030
36085
  data: {
36031
36086
  nextUserId: nextOtherOrgObj.join(','),
36032
36087
  notificationType: noticeType.join(','),
@@ -36062,7 +36117,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36062
36117
  var _this2 = this;
36063
36118
 
36064
36119
  var params = {
36065
- url: api["Db" /* toTaskReview */],
36120
+ url: api["Fb" /* toTaskReview */],
36066
36121
  params: { pendingId: this.pendingId }
36067
36122
  };
36068
36123
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -36097,7 +36152,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36097
36152
  var _this3 = this;
36098
36153
 
36099
36154
  var params = {
36100
- url: this.type == 'takeAdvice' ? api["Fb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Eb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Ib" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Jb" /* toTwoOfficesDispatch */] : api["Hb" /* toTaskUnionExamine */],
36155
+ 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 */],
36101
36156
  params: { pendingId: this.pendingId },
36102
36157
  headers: { Accept: 'application/json,text/plain' }
36103
36158
  };
@@ -36191,7 +36246,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36191
36246
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
36192
36247
  // return this.$message.warning('暂未开放,敬请期待!');
36193
36248
  var param = {
36194
- url: this.type === 'startDraf' ? api["rb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["vb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Lb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["sb" /* taskTakeAdvice */] : api["ub" /* taskUnionExamine */],
36249
+ 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 */],
36195
36250
  data: {
36196
36251
  opinion: opinion,
36197
36252
  pendingId: pendingId,
@@ -36248,7 +36303,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36248
36303
  var _this5 = this;
36249
36304
 
36250
36305
  utils_util["a" /* default */].ajax({
36251
- url: api["r" /* findCodeValues */],
36306
+ url: api["s" /* findCodeValues */],
36252
36307
  params: { ccCode: 'notification_type' }
36253
36308
  }).then(function (res) {
36254
36309
  var status = res.status,
@@ -36273,7 +36328,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36273
36328
  var params = {
36274
36329
  pendingId: this.pendingId
36275
36330
  };
36276
- utils_util["a" /* default */].ajax({ url: api["E" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
36331
+ utils_util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
36277
36332
  if (res.status === 'success') {
36278
36333
  _this6.infoList.noticeInfo = res.message;
36279
36334
  }
@@ -36289,7 +36344,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
36289
36344
  var _this7 = this;
36290
36345
 
36291
36346
  utils_util["a" /* default */].ajax({
36292
- url: api["t" /* findSysCodes */]
36347
+ url: api["u" /* findSysCodes */]
36293
36348
  }).then(function (res) {
36294
36349
  var status = res.status,
36295
36350
  message = res.message;
@@ -36893,6 +36948,23 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
36893
36948
  //
36894
36949
  //
36895
36950
  //
36951
+ //
36952
+ //
36953
+ //
36954
+ //
36955
+ //
36956
+ //
36957
+ //
36958
+ //
36959
+ //
36960
+ //
36961
+ //
36962
+ //
36963
+ //
36964
+ //
36965
+ //
36966
+ //
36967
+
36896
36968
 
36897
36969
 
36898
36970
 
@@ -36941,6 +37013,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
36941
37013
  return _ref = {
36942
37014
  userModel: {},
36943
37015
  loading: null, // 加载中
37016
+ newTypeCode: '',
36944
37017
  NodeName: '', // 当前节点值
36945
37018
  radioList: [],
36946
37019
  value: '',
@@ -36951,6 +37024,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
36951
37024
  activeNames: '',
36952
37025
  isEndUserTask: true,
36953
37026
  selectUserList: [],
37027
+ selectNextCurrentOrgObjList: [],
36954
37028
  flowMultiple: true,
36955
37029
  isCustomUser: 0,
36956
37030
  shrink: false,
@@ -36985,6 +37059,11 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
36985
37059
  isTaskread: 0, //是否展示分阅用户
36986
37060
  showSendMsg: false, //是否展示核稿通知页面
36987
37061
  canPresetRead: false, //是否展示自动分阅
37062
+ isHideCurrentOrg: false, //是否隐藏本单位(承办)
37063
+ isHideOtherOrg: false, //是否隐藏外单位(承办)
37064
+ isMainSubProcess: false, // 判断是否子-主流程
37065
+ isNextUser: false,
37066
+ isShowNode: false,
36988
37067
  nextNodeList: [],
36989
37068
  removeUsers: [],
36990
37069
  options: [],
@@ -37046,9 +37125,10 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37046
37125
  mounted: function mounted() {
37047
37126
  this.businessIds = this.businessId;
37048
37127
  this.nextNode.nextNodeId = this.nextNodeId;
37128
+ !this.isFlow && (this.newTypeCode = this.typeCode || this.$route.query.typecode);
37049
37129
  if (this.isFlow) {
37050
37130
  this.businessId && this.getProcess();
37051
- } else if (this.typeCode == 'fenyue') {
37131
+ } else if (this.newTypeCode == 'fenyue') {
37052
37132
  this.getTaskReadFlow();
37053
37133
  } else {
37054
37134
  this.getHedInfo();
@@ -37143,7 +37223,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37143
37223
  var _this = this;
37144
37224
 
37145
37225
  var params = {
37146
- url: api["w" /* getAdjunctFileInfos */],
37226
+ url: api["x" /* getAdjunctFileInfos */],
37147
37227
  params: { ownId: ownId, code: code }
37148
37228
  };
37149
37229
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -37222,14 +37302,19 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37222
37302
  appId: appId,
37223
37303
  processDefinitionId: processDefinitionId,
37224
37304
  pendingId: pendingId,
37225
- opinion: _this2.value
37305
+ opinion: _this2.value,
37306
+ taskAction: 'complete'
37226
37307
  };
37227
37308
  utils_util["a" /* default */].ajax({
37228
- url: api["ob" /* taskReadHtml */],
37309
+ url: api["qb" /* taskReadHtml */],
37229
37310
  params: { taskAction: 'complete' },
37230
- headers: { Accept: 'application/json,text/plain' },
37311
+ headers: {
37312
+ Accept: 'application/json,text/plain',
37313
+ 'Content-Type': ' application/x-www-form-urlencoded; charset=UTF-8'
37314
+ },
37231
37315
  method: 'post',
37232
- data: params
37316
+ format: false,
37317
+ data: external_qs_default.a.stringify(params)
37233
37318
  }).then(function (res) {
37234
37319
  var status = res.status,
37235
37320
  message = res.message;
@@ -37255,7 +37340,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37255
37340
 
37256
37341
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
37257
37342
  utils_util["a" /* default */].ajax({
37258
- url: api["Bb" /* toStartTaskReadIndex */],
37343
+ url: api["Db" /* toStartTaskReadIndex */],
37259
37344
  params: { pendingId: this.pendingId }
37260
37345
  }).then(function (res) {
37261
37346
  var status = res.status,
@@ -37289,7 +37374,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37289
37374
  if (mainConfig) {
37290
37375
  this.userModel = JSON.parse(mainConfig).userModel;
37291
37376
  } else {
37292
- utils_util["a" /* default */].ajax({ url: api["U" /* loginUserInfo */] }).then(function (res) {
37377
+ utils_util["a" /* default */].ajax({ url: api["W" /* loginUserInfo */] }).then(function (res) {
37293
37378
  var status = res.status,
37294
37379
  data = res.data;
37295
37380
 
@@ -37324,7 +37409,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37324
37409
  var _this5 = this;
37325
37410
 
37326
37411
  utils_util["a" /* default */].ajax({
37327
- url: api["r" /* findCodeValues */],
37412
+ url: api["s" /* findCodeValues */],
37328
37413
  params: { ccCode: 'notification_type' }
37329
37414
  }).then(function (res) {
37330
37415
  var status = res.status,
@@ -37387,7 +37472,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37387
37472
  pendingId: this.pendingId
37388
37473
  };
37389
37474
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
37390
- utils_util["a" /* default */].ajax({ url: api["wb" /* tempSave */], params: params }).then(function (res) {
37475
+ utils_util["a" /* default */].ajax({ url: api["yb" /* tempSave */], params: params }).then(function (res) {
37391
37476
  var status = res.status,
37392
37477
  message = res.message;
37393
37478
 
@@ -37443,7 +37528,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37443
37528
  var _this8 = this;
37444
37529
 
37445
37530
  utils_util["a" /* default */].ajax({
37446
- url: api["t" /* findSysCodes */]
37531
+ url: api["u" /* findSysCodes */]
37447
37532
  }).then(function (res) {
37448
37533
  var status = res.status,
37449
37534
  message = res.message;
@@ -37470,7 +37555,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37470
37555
 
37471
37556
  this.$confirm('确认' + res.value + '?').then(function () {
37472
37557
  var params = {
37473
- url: api["q" /* endFlowHtml */],
37558
+ url: api["r" /* endFlowHtml */],
37474
37559
  headers: { Accept: 'application/json,text/plain' },
37475
37560
  method: 'post',
37476
37561
  data: flow_src_mainvue_type_script_lang_js_extends({}, _this9.endFlowInfo, _this9.nextNode, {
@@ -37598,7 +37683,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37598
37683
  var _this10 = this;
37599
37684
 
37600
37685
  var params = {
37601
- url: api["T" /* isCanStartSubFlow */],
37686
+ url: api["V" /* isCanStartSubFlow */],
37602
37687
  data: {
37603
37688
  appId: this.taskExamineInfo.appId,
37604
37689
  inevitableNode: res.inevitableNode
@@ -37669,7 +37754,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37669
37754
  this.$confirm('确认' + res.value + '?').then(function () {
37670
37755
  if (_this11.isOpinionRequired == 1 && (_this11.value == '' || !_this11.value)) return _this11.$message.warning('请填写意见');
37671
37756
  var params = {
37672
- url: api["fb" /* rejectAndEnd */],
37757
+ url: api["hb" /* rejectAndEnd */],
37673
37758
  headers: { Accept: 'application/json,text/plain' },
37674
37759
  method: 'post',
37675
37760
  data: {
@@ -37732,7 +37817,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37732
37817
  pendingId: this.pendingId,
37733
37818
  businessId: this.businessIds
37734
37819
  };
37735
- utils_util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
37820
+ utils_util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
37736
37821
  var status = res.status,
37737
37822
  message = res.message,
37738
37823
  data = res.data;
@@ -37750,6 +37835,21 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37750
37835
  _this12.isHandleExplain = data.nodeExtAttr.isHandleExplain;
37751
37836
  _this12.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
37752
37837
  _this12.nodeType = data.nodeExtAttr.nodeType;
37838
+ //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
37839
+ if (_this12.nodeType === 1 || _this12.nodeType === 2) {
37840
+ _this12.isMainSubProcess === true ? _this12.isMainSubProcess = true : _this12.isMainSubProcess = false;
37841
+ _this12.isNextUser = false;
37842
+ _this12.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
37843
+ _this12.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
37844
+ } else {
37845
+ _this12.isHideCurrentOrg = false;
37846
+ _this12.isHideOtherOrg = false;
37847
+ _this12.isMainSubProcess = false;
37848
+ _this12.isNextUser = true;
37849
+ // this.isMainSubProcess === true
37850
+ // ? (this.isMainSubProcess = true)
37851
+ // : (this.isMainSubProcess = false);
37852
+ }
37753
37853
  _this12.multiple ? _this12.nextNode.nextUserId = [] : _this12.nextNode.nextUserId = '';
37754
37854
  if (_this12.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
37755
37855
  data.nextUserList.map(function (item) {
@@ -37820,6 +37920,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37820
37920
  this.radioList = [];
37821
37921
 
37822
37922
  if (type) {
37923
+ this.isNextUser = false;
37924
+ this.isShowNode = false;
37823
37925
  this.nextNode.nextNodeId = '';
37824
37926
  this.nextNode.isReturnSubmitter = 0;
37825
37927
  this.nextNode.isUndertakeReply = 0;
@@ -37831,25 +37933,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37831
37933
  this.nextNode.isReturnRejectNode = 0;
37832
37934
  this.nextNode.isSerialSubmit = 0;
37833
37935
  this.nodeInfos = [];
37834
- if (val == -1) {
37835
- this.nextNode.isSerialSubmit = 1;
37836
- } else if (val == 0) {} else if (val == 1) {} else if (val == 2) {
37837
- this.nextNode.isReturnSubmitter = 1;
37838
- } else if (val == 3) {
37839
- this.nextNode.isUndertakeReply = 1;
37840
- } else if (val == 4) {
37841
- this.nextNode.isTakeAdviceReply = 1;
37842
- } else if (val == 5) {
37843
- this.nextNode.isUndertakeEnd = 1;
37844
- } else if (val == 6) {
37845
- this.nextNode.isTakeAdviceEnd = 1;
37846
- } else if (val == 7) {
37847
- this.nextNode.isReadDealReply = 1;
37848
- } else if (val == 8) {
37849
- this.nextNode.isReadDealEnd = 1;
37850
- } else if (val == 9) {
37851
- this.nextNode.isReturnRejectNode = 1;
37852
- } else {}
37853
37936
  this.operationList.map(function (item) {
37854
37937
  if (item.key === val) {
37855
37938
  if (!item.taskNodeList) {
@@ -37875,11 +37958,52 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37875
37958
 
37876
37959
  if (val === 9) {
37877
37960
  this.isReject = true;
37878
- this.loading.close();
37879
- return;
37880
37961
  } else {
37881
37962
  this.isReject = false;
37882
37963
  }
37964
+ if (val == -1) {
37965
+ this.nextNode.isSerialSubmit = 1;
37966
+ this.loading.close();
37967
+ return;
37968
+ } else if (val == 0) {
37969
+ this.isNextUser = true;
37970
+ this.isShowNode = true;
37971
+ } else if (val == 1) {
37972
+ this.isNextUser = true;
37973
+ this.isShowNode = true;
37974
+ } else if (val == 2) {
37975
+ this.nextNode.isReturnSubmitter = 1;
37976
+ this.loading.close();
37977
+ return;
37978
+ } else if (val == 3) {
37979
+ this.nextNode.isUndertakeReply = 1;
37980
+ this.loading.close();
37981
+ return;
37982
+ } else if (val == 4) {
37983
+ this.nextNode.isTakeAdviceReply = 1;
37984
+ this.loading.close();
37985
+ return;
37986
+ } else if (val == 5) {
37987
+ this.nextNode.isUndertakeEnd = 1;
37988
+ this.loading.close();
37989
+ return;
37990
+ } else if (val == 6) {
37991
+ this.nextNode.isTakeAdviceEnd = 1;
37992
+ this.loading.close();
37993
+ return;
37994
+ } else if (val == 7) {
37995
+ this.nextNode.isReadDealReply = 1;
37996
+ this.loading.close();
37997
+ return;
37998
+ } else if (val == 8) {
37999
+ this.nextNode.isReadDealEnd = 1;
38000
+ this.loading.close();
38001
+ return;
38002
+ } else if (val == 9) {
38003
+ this.nextNode.isReturnRejectNode = 1;
38004
+ this.loading.close();
38005
+ return;
38006
+ } else {}
37883
38007
  if (isDef !== true) this.getNodeInfo();
37884
38008
  },
37885
38009
 
@@ -37933,7 +38057,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
37933
38057
  pendingId: this.pendingId,
37934
38058
  userId: utils_util["a" /* default */].getStorage('userId')
37935
38059
  };
37936
- utils_util["a" /* default */].ajax({ url: api["A" /* getHandleInfoHtml */], params: params }).then(function (res) {
38060
+ utils_util["a" /* default */].ajax({ url: api["B" /* getHandleInfoHtml */], params: params }).then(function (res) {
37937
38061
  //pc返回数据
37938
38062
 
37939
38063
  _this14.loading.close();
@@ -38114,6 +38238,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38114
38238
  }
38115
38239
  });
38116
38240
  }
38241
+ _this14.isMainSubProcess = res.data.isMainSubProcess === true;
38117
38242
  _this14.isCustomPreset = isCustomPreset;
38118
38243
  _this14.isPreset = isPreset;
38119
38244
  _this14.presetTaskNodeMap = presetTaskNodeMap;
@@ -38194,7 +38319,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38194
38319
  // onlyFlag: true
38195
38320
  };
38196
38321
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
38197
- utils_util["a" /* default */].ajax({ url: api["I" /* getProcessDefList */], params: params }).then(function (res) {
38322
+ utils_util["a" /* default */].ajax({ url: api["J" /* getProcessDefList */], params: params }).then(function (res) {
38198
38323
  var status = res.status,
38199
38324
  message = res.message,
38200
38325
  data = res.data;
@@ -38243,7 +38368,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38243
38368
  userId: utils_util["a" /* default */].getStorage('userId'),
38244
38369
  type: 2
38245
38370
  };
38246
- utils_util["a" /* default */].ajax({ url: api["Y" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
38371
+ utils_util["a" /* default */].ajax({ url: api["ab" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
38247
38372
  var rCode = res.rCode,
38248
38373
  msg = res.msg,
38249
38374
  results = res.results;
@@ -38316,7 +38441,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38316
38441
  return _context.abrupt('return', _this18.handleVisible = true);
38317
38442
 
38318
38443
  case 3:
38319
- if (!(!_this18.endFlow && _this18.typeCode != 'fenyue' && !_this18.shrink && _this18.nextNode.isAddSign != '1' && _this18.nextNode.isRemoveSign != '1' && _this18.isSpecial && !_this18.isReject && _this18.nodeInfos.length != 0)) {
38444
+ if (!(!_this18.endFlow && _this18.newTypeCode != 'fenyue' && !_this18.shrink && _this18.nextNode.isAddSign != '1' && _this18.nextNode.isRemoveSign != '1' && _this18.isSpecial && !_this18.isReject && _this18.nodeInfos.length != 0)) {
38320
38445
  _context.next = 11;
38321
38446
  break;
38322
38447
  }
@@ -38410,7 +38535,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38410
38535
  _this18.nextNode.isReturnRejectNode = 1;
38411
38536
  _this18.nextNode.processDefinitionId = _this18.processObj.taskExamine.processDefinitionId;
38412
38537
  }
38413
- if (_this18.nextNode.nextOperate == 9 || _this18.nextNode.nextOperate == 2) {
38538
+ if (_this18.nextNode.nextOperate != 0 && _this18.nextNode.nextOperate != 1) {
38414
38539
  delete _this18.nextNode.nextNodeId;
38415
38540
  }
38416
38541
  _context.next = 32;
@@ -38459,7 +38584,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38459
38584
  params.processDefinitionId = taskExamineInfo.processDefinitionId;
38460
38585
  params.isSubFlow = taskExamineInfo.isSubFlow;
38461
38586
  params.nodeId = taskExamineInfo.nodeId;
38462
- return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["nb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
38587
+ return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["pb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
38463
38588
  var status = res.status,
38464
38589
  message = res.message;
38465
38590
 
@@ -38508,8 +38633,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
38508
38633
 
38509
38634
  var flow_src_main_component = normalizeComponent(
38510
38635
  packages_flow_src_mainvue_type_script_lang_js_,
38511
- mainvue_type_template_id_4ef7ee29_render,
38512
- mainvue_type_template_id_4ef7ee29_staticRenderFns,
38636
+ mainvue_type_template_id_9783bc8c_render,
38637
+ mainvue_type_template_id_9783bc8c_staticRenderFns,
38513
38638
  false,
38514
38639
  null,
38515
38640
  null,
@@ -41094,7 +41219,7 @@ var flow_tablevue_type_script_lang_js_components;
41094
41219
 
41095
41220
  this.pressLoading = true;
41096
41221
  var params = {
41097
- url: api["ab" /* pressListJson */],
41222
+ url: api["cb" /* pressListJson */],
41098
41223
  params: { historyId: historyId },
41099
41224
  method: 'POST',
41100
41225
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -41419,7 +41544,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41419
41544
  var _this3 = this;
41420
41545
 
41421
41546
  var params = {
41422
- url: api["Z" /* pendedhistoryListJson */],
41547
+ url: api["bb" /* pendedhistoryListJson */],
41423
41548
  params: {
41424
41549
  apprecordid: this.businessId,
41425
41550
  pendingAttr: 0,
@@ -41539,7 +41664,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41539
41664
  var _this5 = this;
41540
41665
 
41541
41666
  var params = {
41542
- url: api["r" /* findCodeValues */],
41667
+ url: api["s" /* findCodeValues */],
41543
41668
  params: { ccCode: code }
41544
41669
  };
41545
41670
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -41565,7 +41690,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
41565
41690
  var _this6 = this;
41566
41691
 
41567
41692
  var param = {
41568
- url: api["xb" /* toPresetInfoListIndex */],
41693
+ url: api["zb" /* toPresetInfoListIndex */],
41569
41694
  params: { apprecordid: this.businessId }
41570
41695
  };
41571
41696
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -41800,7 +41925,7 @@ mainvue_type_template_id_5b7835c6_render._withStripped = true
41800
41925
 
41801
41926
  if (this.job.id !== item.id) {
41802
41927
  this.job = item;
41803
- utils_util["a" /* default */].ajax({ url: api["lb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
41928
+ utils_util["a" /* default */].ajax({ url: api["nb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
41804
41929
  if (res.rCode == 0) {
41805
41930
  utils_util["a" /* default */].setStorage({
41806
41931
  type: _this.storage,
@@ -41863,19 +41988,19 @@ handle_user_src_main.install = function (Vue) {
41863
41988
  };
41864
41989
 
41865
41990
  /* harmony default export */ var handle_user = (handle_user_src_main);
41866
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=01f71c21&
41867
- var mainvue_type_template_id_01f71c21_render = function () {
41991
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=template&id=36cec0d2&
41992
+ var mainvue_type_template_id_36cec0d2_render = function () {
41868
41993
  var _vm = this
41869
41994
  var _h = _vm.$createElement
41870
41995
  var _c = _vm._self._c || _h
41871
41996
  return _c(
41872
41997
  "ul",
41873
41998
  { staticClass: "es-handler" },
41874
- _vm._l(_vm.lists, function (item) {
41999
+ _vm._l(_vm.lists, function (item, index) {
41875
42000
  return !item.hide
41876
42001
  ? _c(
41877
42002
  "li",
41878
- { key: item.type, staticClass: "es-handler-item" },
42003
+ { key: index, staticClass: "es-handler-item" },
41879
42004
  [
41880
42005
  item.type === "user"
41881
42006
  ? _c("es-handle-user", {
@@ -42034,11 +42159,11 @@ var mainvue_type_template_id_01f71c21_render = function () {
42034
42159
  0
42035
42160
  )
42036
42161
  }
42037
- var mainvue_type_template_id_01f71c21_staticRenderFns = []
42038
- mainvue_type_template_id_01f71c21_render._withStripped = true
42162
+ var mainvue_type_template_id_36cec0d2_staticRenderFns = []
42163
+ mainvue_type_template_id_36cec0d2_render._withStripped = true
42039
42164
 
42040
42165
 
42041
- // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=01f71c21&
42166
+ // CONCATENATED MODULE: ./packages/handler/src/main.vue?vue&type=template&id=36cec0d2&
42042
42167
 
42043
42168
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/handler/src/main.vue?vue&type=script&lang=js&
42044
42169
  //
@@ -42184,9 +42309,22 @@ mainvue_type_template_id_01f71c21_render._withStripped = true
42184
42309
  },
42185
42310
  computed: {
42186
42311
  lists: function lists() {
42312
+ var _this = this;
42313
+
42314
+ console.log(111);
42187
42315
  if (this.data === undefined) {
42316
+ if (Object.keys(this.hide).length) {
42317
+ this.list.forEach(function (item) {
42318
+ item.hide = _this.hide[item.type];
42319
+ });
42320
+ }
42188
42321
  return this.list;
42189
42322
  } else {
42323
+ if (Object.keys(this.hide).length) {
42324
+ this.data.forEach(function (item) {
42325
+ item.hide = _this.hide[item.type];
42326
+ });
42327
+ }
42190
42328
  return this.data;
42191
42329
  }
42192
42330
  },
@@ -42200,19 +42338,6 @@ mainvue_type_template_id_01f71c21_render._withStripped = true
42200
42338
  return true;
42201
42339
  }
42202
42340
  },
42203
- watch: {
42204
- hide: {
42205
- immediate: true,
42206
- deep: true,
42207
- handler: function handler(val) {
42208
- if (val !== undefined) {
42209
- this.lists.forEach(function (item) {
42210
- item.hide = val[item.type];
42211
- });
42212
- }
42213
- }
42214
- }
42215
- },
42216
42341
  data: function data() {
42217
42342
  return {
42218
42343
  date: '',
@@ -42292,18 +42417,18 @@ mainvue_type_template_id_01f71c21_render._withStripped = true
42292
42417
  }
42293
42418
  },
42294
42419
  handleQuit: function handleQuit() {
42295
- var _this = this;
42420
+ var _this2 = this;
42296
42421
 
42297
42422
  this.$confirm('确定注销吗?', '退出系统', {
42298
42423
  confirmButtonText: '确定',
42299
42424
  cancelButtonText: '取消',
42300
42425
  type: 'warning'
42301
42426
  }).then(function () {
42302
- utils_util["a" /* default */].ajax({ method: 'post', url: api["V" /* logout */] }).then(function (res) {
42427
+ utils_util["a" /* default */].ajax({ method: 'post', url: api["X" /* logout */] }).then(function (res) {
42303
42428
  if (res.rCode == 0) {
42304
42429
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
42305
- if (_this.onQuit && typeof _this.onQuit === 'function') {
42306
- _this.onQuit();
42430
+ if (_this2.onQuit && typeof _this2.onQuit === 'function') {
42431
+ _this2.onQuit();
42307
42432
  } else {
42308
42433
  if (utils_util["a" /* default */].win.top.location.href.indexOf('main.html') > -1) {
42309
42434
  utils_util["a" /* default */].win.top.location.href = './login.html';
@@ -42325,7 +42450,7 @@ mainvue_type_template_id_01f71c21_render._withStripped = true
42325
42450
  }
42326
42451
  }).catch(function (err) {
42327
42452
  if (err.message && err.message !== 'canceled') {
42328
- _this.$message.error(err.message);
42453
+ _this2.$message.error(err.message);
42329
42454
  }
42330
42455
  });
42331
42456
  }).catch(function (e) {});
@@ -42344,8 +42469,8 @@ mainvue_type_template_id_01f71c21_render._withStripped = true
42344
42469
 
42345
42470
  var handler_src_main_component = normalizeComponent(
42346
42471
  packages_handler_src_mainvue_type_script_lang_js_,
42347
- mainvue_type_template_id_01f71c21_render,
42348
- mainvue_type_template_id_01f71c21_staticRenderFns,
42472
+ mainvue_type_template_id_36cec0d2_render,
42473
+ mainvue_type_template_id_36cec0d2_staticRenderFns,
42349
42474
  false,
42350
42475
  null,
42351
42476
  null,
@@ -43226,8 +43351,8 @@ label_src_main.install = function (Vue) {
43226
43351
  };
43227
43352
 
43228
43353
  /* harmony default export */ var packages_label = (label_src_main);
43229
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=9885b762&
43230
- var mainvue_type_template_id_9885b762_render = function () {
43354
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/main.vue?vue&type=template&id=23be641c&
43355
+ var mainvue_type_template_id_23be641c_render = function () {
43231
43356
  var _vm = this
43232
43357
  var _h = _vm.$createElement
43233
43358
  var _c = _vm._self._c || _h
@@ -44071,11 +44196,11 @@ var mainvue_type_template_id_9885b762_render = function () {
44071
44196
  )
44072
44197
  : _vm._e()
44073
44198
  }
44074
- var mainvue_type_template_id_9885b762_staticRenderFns = []
44075
- mainvue_type_template_id_9885b762_render._withStripped = true
44199
+ var mainvue_type_template_id_23be641c_staticRenderFns = []
44200
+ mainvue_type_template_id_23be641c_render._withStripped = true
44076
44201
 
44077
44202
 
44078
- // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=9885b762&
44203
+ // CONCATENATED MODULE: ./packages/login/src/main.vue?vue&type=template&id=23be641c&
44079
44204
 
44080
44205
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/login/src/resetPassword.vue?vue&type=template&id=4f5da52e&
44081
44206
  var resetPasswordvue_type_template_id_4f5da52e_render = function () {
@@ -44318,7 +44443,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
44318
44443
  var _this = this;
44319
44444
 
44320
44445
  utils_util["a" /* default */].ajax({
44321
- url: api["R" /* initModifyPassword */]
44446
+ url: api["T" /* initModifyPassword */]
44322
44447
  }).then(function (res) {
44323
44448
  if (res.rCode === 0) {
44324
44449
  var results = JSON.parse(JSON.stringify(res.results));
@@ -44378,7 +44503,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
44378
44503
  var _this3 = this;
44379
44504
 
44380
44505
  utils_util["a" /* default */].ajax({
44381
- url: api["C" /* getModifyPassCode */],
44506
+ url: api["D" /* getModifyPassCode */],
44382
44507
  params: params
44383
44508
  }).then(function (res) {
44384
44509
  if (res.rCode === 0) {
@@ -44805,7 +44930,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
44805
44930
  //初始登录配置接口地址
44806
44931
  initLogin: {
44807
44932
  type: String,
44808
- default: api["Q" /* initLogin */]
44933
+ default: api["S" /* initLogin */]
44809
44934
  },
44810
44935
  mode: {
44811
44936
  type: String,
@@ -44881,7 +45006,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
44881
45006
  //账号登录接口地址
44882
45007
  action: {
44883
45008
  type: String,
44884
- default: api["m" /* doUserLogin */]
45009
+ default: api["n" /* doUserLogin */]
44885
45010
  },
44886
45011
  //ca登录地址
44887
45012
  caAction: {
@@ -44900,15 +45025,23 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
44900
45025
  },
44901
45026
  getLoginCode: {
44902
45027
  type: String,
44903
- default: api["B" /* getLoginCode */]
45028
+ default: api["C" /* getLoginCode */]
44904
45029
  },
44905
45030
  doCodeLogin: {
44906
45031
  type: String,
44907
45032
  default: api["k" /* doCodeLogin */]
44908
45033
  },
45034
+ getTwoFactorLoginCode: {
45035
+ type: String,
45036
+ default: api["N" /* getTwoFactorLoginCode */]
45037
+ },
45038
+ doTwoFactorLogin: {
45039
+ type: String,
45040
+ default: api["m" /* doTwoFactorLogin */]
45041
+ },
44909
45042
  doWechatQrLogin: {
44910
45043
  type: String,
44911
- default: api["n" /* doWechatQrLogin */]
45044
+ default: api["o" /* doWechatQrLogin */]
44912
45045
  },
44913
45046
  imgCode: {
44914
45047
  type: [Boolean, Object],
@@ -45348,6 +45481,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45348
45481
  this.app = res.appName || res.subsystemName;
45349
45482
  this.qrimg = res.qrimg || res.qrImg;
45350
45483
  this.loginModel = res.loginModel;
45484
+ // this.loginModel = '0,3,11,6,9,2';
45351
45485
  this.loginBackgroundImg = res.loginBackgroundUrl ? res.loginBackgroundUrl.split(',') : null;
45352
45486
  this.loginLogoImg = res.loginLogoUrl ? res.loginLogoUrl : null;
45353
45487
  if (res.subsystemExtend && Object.keys(res.subsystemExtend).length) {
@@ -45410,8 +45544,9 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45410
45544
  return false;
45411
45545
  }
45412
45546
  data = {
45413
- target: this.formData.username,
45547
+ username: this.formData.username,
45414
45548
  targetType: this.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS'
45549
+ // targetType: 'SMS'
45415
45550
  };
45416
45551
  } else {
45417
45552
  if (!this.formData.target) {
@@ -45442,7 +45577,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45442
45577
  }, 1000);
45443
45578
  utils_util["a" /* default */].ajax({
45444
45579
  method: 'post',
45445
- url: this.getLoginCode,
45580
+ url: this.active == 2 ? this.getTwoFactorLoginCode : this.getLoginCode,
45446
45581
  data: data
45447
45582
  }).then(function (res) {
45448
45583
  _this4.$message({
@@ -45480,6 +45615,14 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45480
45615
  }) : _this5.formData.password,
45481
45616
  identifyingCode: _this5.formData.identifyingCode,
45482
45617
  identifyingId: _this5.identifyingId
45618
+ } : _this5.active == '2' ? {
45619
+ username: _this5.formData.username,
45620
+ password: _this5.secret && _this5.isEncrypt ? utils_util["a" /* default */].esmEncrypt({
45621
+ data: _this5.formData.password,
45622
+ key: _this5.secret
45623
+ }) : _this5.formData.password,
45624
+ targetType: _this5.passModifyModel.indexOf('11') > -1 ? 'EMAIL' : 'SMS',
45625
+ verificationCode: _this5.formData.identifyingCode
45483
45626
  } : {
45484
45627
  target: _this5.formData.target,
45485
45628
  verificationCode: _this5.formData.verificationCode,
@@ -45516,7 +45659,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45516
45659
  var extUserBindHandleId = sessionStorage.getItem('extUserBindHandleId');
45517
45660
  utils_util["a" /* default */].ajax({
45518
45661
  method: 'post',
45519
- url: this.active == '0' ? this.actionUrl : this.doCodeLogin,
45662
+ url: this.active == '0' ? this.actionUrl : this.active == '2' ? this.doTwoFactorLogin : this.doCodeLogin,
45520
45663
  data: extUserBindHandleId ? login_src_mainvue_type_script_lang_js_extends({}, data, { extUserBindHandleId: extUserBindHandleId }) : data
45521
45664
  }).then(function (res) {
45522
45665
  _this6.submit = false;
@@ -45737,8 +45880,8 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
45737
45880
 
45738
45881
  var login_src_main_component = normalizeComponent(
45739
45882
  packages_login_src_mainvue_type_script_lang_js_,
45740
- mainvue_type_template_id_9885b762_render,
45741
- mainvue_type_template_id_9885b762_staticRenderFns,
45883
+ mainvue_type_template_id_23be641c_render,
45884
+ mainvue_type_template_id_23be641c_staticRenderFns,
45742
45885
  false,
45743
45886
  null,
45744
45887
  null,
@@ -45755,8 +45898,8 @@ login_src_main.install = function (Vue) {
45755
45898
  };
45756
45899
 
45757
45900
  /* harmony default export */ var login = (login_src_main);
45758
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=13aacaf9&
45759
- var mainvue_type_template_id_13aacaf9_render = function () {
45901
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/main.vue?vue&type=template&id=c4a4a110&
45902
+ var mainvue_type_template_id_c4a4a110_render = function () {
45760
45903
  var _vm = this
45761
45904
  var _h = _vm.$createElement
45762
45905
  var _c = _vm._self._c || _h
@@ -45764,7 +45907,7 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45764
45907
  "div",
45765
45908
  {
45766
45909
  staticClass: "es-main",
45767
- class: { "es-main-topside": _vm.modal === "topside" },
45910
+ class: { "es-main-topside": _vm.layout === "topside" },
45768
45911
  },
45769
45912
  [
45770
45913
  _vm.showHeader
@@ -45794,7 +45937,7 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45794
45937
  )
45795
45938
  )
45796
45939
  : _vm._e(),
45797
- _vm.modal !== "topside" && _vm.logoUrl && _vm.showDefault
45940
+ _vm.layout !== "topside" && _vm.logoUrl && _vm.showDefault
45798
45941
  ? _c("img", {
45799
45942
  staticClass: "es-main-logo",
45800
45943
  attrs: { src: _vm.logoUrl },
@@ -45810,9 +45953,9 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45810
45953
  attrs: {
45811
45954
  mode: "horizontal",
45812
45955
  icons: _vm.icons,
45813
- popperClass: "el-menu--popup-" + _vm.modal,
45956
+ popperClass: "el-menu--popup-" + _vm.layout,
45814
45957
  data: _vm.navs,
45815
- deep: _vm.modal === "topnav",
45958
+ deep: _vm.layout === "topnav",
45816
45959
  "default-active": _vm.topActive,
45817
45960
  },
45818
45961
  on: {
@@ -45881,12 +46024,12 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45881
46024
  : _vm._e(),
45882
46025
  _vm.reset
45883
46026
  ? _c("div", { staticClass: "es-main-box" }, [
45884
- _vm.modal !== "topnav" && _vm.showSide
46027
+ _vm.layout !== "topnav" && _vm.showSide
45885
46028
  ? _c(
45886
46029
  "div",
45887
46030
  { staticClass: "es-main-left" },
45888
46031
  [
45889
- _vm.modal === "topside"
46032
+ _vm.layout === "topside"
45890
46033
  ? _c(
45891
46034
  "div",
45892
46035
  { staticClass: "es-main-side" },
@@ -45943,6 +46086,7 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45943
46086
  _vm.showMenu && _vm.showDefault
45944
46087
  ? _c("es-nav", {
45945
46088
  attrs: {
46089
+ "is-top": _vm.layout == "topside",
45946
46090
  data: _vm.menu,
45947
46091
  "default-active": _vm.active,
45948
46092
  width: _vm.navWidth,
@@ -45955,7 +46099,7 @@ var mainvue_type_template_id_13aacaf9_render = function () {
45955
46099
  },
45956
46100
  on: {
45957
46101
  open: function (res) {
45958
- _vm.handleSelect(res, "menu")
46102
+ _vm.handleSelect(res, "menu", true)
45959
46103
  },
45960
46104
  trigger: function (res) {
45961
46105
  _vm.handleSelect(res, "sub")
@@ -46114,12 +46258,17 @@ var mainvue_type_template_id_13aacaf9_render = function () {
46114
46258
  theme: _vm.color,
46115
46259
  predefine: _vm.themes,
46116
46260
  visible: _vm.showSet,
46261
+ layout: _vm.layout,
46117
46262
  },
46118
46263
  on: {
46119
46264
  "update:visible": function ($event) {
46120
46265
  _vm.showSet = $event
46121
46266
  },
46267
+ "update:layout": function ($event) {
46268
+ _vm.layout = $event
46269
+ },
46122
46270
  change: _vm.handleChange,
46271
+ layout: _vm.handleLayout,
46123
46272
  },
46124
46273
  },
46125
46274
  "settings",
@@ -46173,11 +46322,11 @@ var mainvue_type_template_id_13aacaf9_render = function () {
46173
46322
  1
46174
46323
  )
46175
46324
  }
46176
- var mainvue_type_template_id_13aacaf9_staticRenderFns = []
46177
- mainvue_type_template_id_13aacaf9_render._withStripped = true
46325
+ var mainvue_type_template_id_c4a4a110_staticRenderFns = []
46326
+ mainvue_type_template_id_c4a4a110_render._withStripped = true
46178
46327
 
46179
46328
 
46180
- // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=13aacaf9&
46329
+ // CONCATENATED MODULE: ./packages/main/src/main.vue?vue&type=template&id=c4a4a110&
46181
46330
 
46182
46331
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/userinfo.vue?vue&type=template&id=327101d6&
46183
46332
  var userinfovue_type_template_id_327101d6_render = function () {
@@ -46417,7 +46566,7 @@ userinfovue_type_template_id_327101d6_render._withStripped = true
46417
46566
  var _this2 = this;
46418
46567
 
46419
46568
  utils_util["a" /* default */].ajax({
46420
- url: api["S" /* initUserSet */]
46569
+ url: api["U" /* initUserSet */]
46421
46570
  }).then(function (res) {
46422
46571
  if (res.rCode === 0) {
46423
46572
  var results = JSON.parse(JSON.stringify(res.results));
@@ -46455,7 +46604,7 @@ userinfovue_type_template_id_327101d6_render._withStripped = true
46455
46604
  if (res.url) {
46456
46605
  url = res.url;
46457
46606
  } else {
46458
- url = api["o" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
46607
+ url = api["p" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
46459
46608
  }
46460
46609
  this.$emit('change', 'userHeadUrl', url);
46461
46610
  },
@@ -46464,7 +46613,7 @@ userinfovue_type_template_id_327101d6_render._withStripped = true
46464
46613
 
46465
46614
  switch (type) {
46466
46615
  case 'job':
46467
- utils_util["a" /* default */].ajax({ url: api["lb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
46616
+ utils_util["a" /* default */].ajax({ url: api["nb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
46468
46617
  if (res.rCode == 0) {
46469
46618
  utils_util["a" /* default */].setStorage({
46470
46619
  type: _this3.storage,
@@ -46504,7 +46653,7 @@ userinfovue_type_template_id_327101d6_render._withStripped = true
46504
46653
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
46505
46654
  initLogin && (initLogin = JSON.parse(initLogin));
46506
46655
  utils_util["a" /* default */].ajax({
46507
- url: api["Ob" /* updateUserInfo */],
46656
+ url: api["Qb" /* updateUserInfo */],
46508
46657
  params: {
46509
46658
  email: this.values.email,
46510
46659
  officeTel: this.values.officetel,
@@ -46549,7 +46698,7 @@ userinfovue_type_template_id_327101d6_render._withStripped = true
46549
46698
  var notify = _this4.values.notify.sort().join(',');
46550
46699
  if (notify != _this4.notify.split(',').sort().join(',')) {
46551
46700
  utils_util["a" /* default */].ajax({
46552
- url: api["Nb" /* updateUserCustomInfo */],
46701
+ url: api["Pb" /* updateUserCustomInfo */],
46553
46702
  params: {
46554
46703
  notify: notify
46555
46704
  }
@@ -46607,8 +46756,8 @@ var userinfo_component = normalizeComponent(
46607
46756
  )
46608
46757
 
46609
46758
  /* harmony default export */ var userinfo = (userinfo_component.exports);
46610
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/settings.vue?vue&type=template&id=ff684db0&
46611
- var settingsvue_type_template_id_ff684db0_render = function () {
46759
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/settings.vue?vue&type=template&id=3c983b8c&
46760
+ var settingsvue_type_template_id_3c983b8c_render = function () {
46612
46761
  var _vm = this
46613
46762
  var _h = _vm.$createElement
46614
46763
  var _c = _vm._self._c || _h
@@ -46702,7 +46851,110 @@ var settingsvue_type_template_id_ff684db0_render = function () {
46702
46851
  placement: "bottom",
46703
46852
  },
46704
46853
  },
46705
- [_c("div", { staticClass: "es-setting-navs es-setting-top-nav" })]
46854
+ [
46855
+ _c(
46856
+ "div",
46857
+ {
46858
+ staticClass: "es-setting-navs es-setting-top-nav",
46859
+ on: {
46860
+ click: function ($event) {
46861
+ $event.stopPropagation()
46862
+ _vm.handleLayout("topnav")
46863
+ },
46864
+ },
46865
+ },
46866
+ [
46867
+ _c("i", {
46868
+ directives: [
46869
+ {
46870
+ name: "show",
46871
+ rawName: "v-show",
46872
+ value: _vm.activeName == "topnav",
46873
+ expression: "activeName == 'topnav'",
46874
+ },
46875
+ ],
46876
+ staticClass: "es-icon-gou",
46877
+ }),
46878
+ ]
46879
+ ),
46880
+ ]
46881
+ ),
46882
+ _c(
46883
+ "el-tooltip",
46884
+ {
46885
+ staticClass: "es-setting-navs-item",
46886
+ attrs: {
46887
+ effect: "dark",
46888
+ content: "侧边双列菜单布局",
46889
+ placement: "bottom",
46890
+ },
46891
+ },
46892
+ [
46893
+ _c(
46894
+ "div",
46895
+ {
46896
+ staticClass: "es-setting-navs es-setting-side-nav",
46897
+ on: {
46898
+ click: function ($event) {
46899
+ $event.stopPropagation()
46900
+ _vm.handleLayout("default")
46901
+ },
46902
+ },
46903
+ },
46904
+ [
46905
+ _c("div", { staticClass: "es-setting-side-sub-nav" }),
46906
+ _c("i", {
46907
+ directives: [
46908
+ {
46909
+ name: "show",
46910
+ rawName: "v-show",
46911
+ value: _vm.activeName == "default",
46912
+ expression: "activeName == 'default'",
46913
+ },
46914
+ ],
46915
+ staticClass: "es-icon-gou",
46916
+ }),
46917
+ ]
46918
+ ),
46919
+ ]
46920
+ ),
46921
+ _c(
46922
+ "el-tooltip",
46923
+ {
46924
+ staticClass: "es-setting-navs-item",
46925
+ attrs: {
46926
+ effect: "dark",
46927
+ content: "子系统+侧边菜单布局",
46928
+ placement: "bottom",
46929
+ },
46930
+ },
46931
+ [
46932
+ _c(
46933
+ "div",
46934
+ {
46935
+ staticClass: "es-setting-navs es-setting-subsystem-nav",
46936
+ on: {
46937
+ click: function ($event) {
46938
+ $event.stopPropagation()
46939
+ _vm.handleLayout("subsystem")
46940
+ },
46941
+ },
46942
+ },
46943
+ [
46944
+ _c("i", {
46945
+ directives: [
46946
+ {
46947
+ name: "show",
46948
+ rawName: "v-show",
46949
+ value: _vm.activeName == "subsystem",
46950
+ expression: "activeName == 'subsystem'",
46951
+ },
46952
+ ],
46953
+ staticClass: "es-icon-gou",
46954
+ }),
46955
+ ]
46956
+ ),
46957
+ ]
46706
46958
  ),
46707
46959
  _c(
46708
46960
  "el-tooltip",
@@ -46710,15 +46962,35 @@ var settingsvue_type_template_id_ff684db0_render = function () {
46710
46962
  staticClass: "es-setting-navs-item",
46711
46963
  attrs: {
46712
46964
  effect: "dark",
46713
- content: "侧边菜单布局",
46965
+ content: "顶部+侧边菜单布局",
46714
46966
  placement: "bottom",
46715
46967
  },
46716
46968
  },
46717
46969
  [
46718
46970
  _c(
46719
46971
  "div",
46720
- { staticClass: "es-setting-navs es-setting-side-nav" },
46721
- [_c("div", { staticClass: "es-setting-side-sub-nav" })]
46972
+ {
46973
+ staticClass: "es-setting-navs es-setting-top-side-nav",
46974
+ on: {
46975
+ click: function ($event) {
46976
+ $event.stopPropagation()
46977
+ _vm.handleLayout("topside")
46978
+ },
46979
+ },
46980
+ },
46981
+ [
46982
+ _c("i", {
46983
+ directives: [
46984
+ {
46985
+ name: "show",
46986
+ rawName: "v-show",
46987
+ value: _vm.activeName == "topside",
46988
+ expression: "activeName == 'topside'",
46989
+ },
46990
+ ],
46991
+ staticClass: "es-icon-gou",
46992
+ }),
46993
+ ]
46722
46994
  ),
46723
46995
  ]
46724
46996
  ),
@@ -46729,11 +47001,11 @@ var settingsvue_type_template_id_ff684db0_render = function () {
46729
47001
  ]
46730
47002
  )
46731
47003
  }
46732
- var settingsvue_type_template_id_ff684db0_staticRenderFns = []
46733
- settingsvue_type_template_id_ff684db0_render._withStripped = true
47004
+ var settingsvue_type_template_id_3c983b8c_staticRenderFns = []
47005
+ settingsvue_type_template_id_3c983b8c_render._withStripped = true
46734
47006
 
46735
47007
 
46736
- // CONCATENATED MODULE: ./packages/main/src/settings.vue?vue&type=template&id=ff684db0&
47008
+ // CONCATENATED MODULE: ./packages/main/src/settings.vue?vue&type=template&id=3c983b8c&
46737
47009
 
46738
47010
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/main/src/settings.vue?vue&type=script&lang=js&
46739
47011
  //
@@ -46796,6 +47068,41 @@ settingsvue_type_template_id_ff684db0_render._withStripped = true
46796
47068
  //
46797
47069
  //
46798
47070
  //
47071
+ //
47072
+ //
47073
+ //
47074
+ //
47075
+ //
47076
+ //
47077
+ //
47078
+ //
47079
+ //
47080
+ //
47081
+ //
47082
+ //
47083
+ //
47084
+ //
47085
+ //
47086
+ //
47087
+ //
47088
+ //
47089
+ //
47090
+ //
47091
+ //
47092
+ //
47093
+ //
47094
+ //
47095
+ //
47096
+ //
47097
+ //
47098
+ //
47099
+ //
47100
+ //
47101
+ //
47102
+ //
47103
+ //
47104
+ //
47105
+ //
46799
47106
 
46800
47107
 
46801
47108
  /* harmony default export */ var settingsvue_type_script_lang_js_ = ({
@@ -46812,6 +47119,10 @@ settingsvue_type_template_id_ff684db0_render._withStripped = true
46812
47119
  default: function _default() {
46813
47120
  return ['#a60006', '#409eff'];
46814
47121
  }
47122
+ },
47123
+ layout: {
47124
+ type: String,
47125
+ default: 'default'
46815
47126
  }
46816
47127
  },
46817
47128
  computed: {
@@ -46845,7 +47156,8 @@ settingsvue_type_template_id_ff684db0_render._withStripped = true
46845
47156
  },
46846
47157
  data: function data() {
46847
47158
  return {
46848
- color: ''
47159
+ color: '',
47160
+ activeName: this.layout
46849
47161
  };
46850
47162
  },
46851
47163
  mounted: function mounted() {},
@@ -46860,6 +47172,14 @@ settingsvue_type_template_id_ff684db0_render._withStripped = true
46860
47172
  this.color = res;
46861
47173
  this.$emit('change', { type: 'theme', value: res });
46862
47174
  //this.setTheme(res);
47175
+ },
47176
+
47177
+ //选择菜单布局
47178
+ handleLayout: function handleLayout(res) {
47179
+ var old = this.activeName;
47180
+ this.activeName = res;
47181
+ this.$emit('update:layout', res);
47182
+ this.$emit('layout', res, old);
46863
47183
  }
46864
47184
  }
46865
47185
  });
@@ -46875,8 +47195,8 @@ settingsvue_type_template_id_ff684db0_render._withStripped = true
46875
47195
 
46876
47196
  var settings_component = normalizeComponent(
46877
47197
  src_settingsvue_type_script_lang_js_,
46878
- settingsvue_type_template_id_ff684db0_render,
46879
- settingsvue_type_template_id_ff684db0_staticRenderFns,
47198
+ settingsvue_type_template_id_3c983b8c_render,
47199
+ settingsvue_type_template_id_3c983b8c_staticRenderFns,
46880
47200
  false,
46881
47201
  null,
46882
47202
  null,
@@ -47170,7 +47490,7 @@ messagevue_type_template_id_6b9d422c_render._withStripped = true
47170
47490
  if (this.pageNum <= this.pageCount) {
47171
47491
  this.loading = true;
47172
47492
  utils_util["a" /* default */].ajax({
47173
- url: api["mb" /* sysMsgPage */],
47493
+ url: api["ob" /* sysMsgPage */],
47174
47494
  params: {
47175
47495
  pageNum: reload ? 1 : this.pageNum,
47176
47496
  pageSize: this.pageSize
@@ -47203,7 +47523,7 @@ messagevue_type_template_id_6b9d422c_render._withStripped = true
47203
47523
  var _this2 = this;
47204
47524
 
47205
47525
  utils_util["a" /* default */].ajax({
47206
- url: api["P" /* ignoreSysMsg */],
47526
+ url: api["R" /* ignoreSysMsg */],
47207
47527
  params: {
47208
47528
  id: res.id
47209
47529
  }
@@ -47223,7 +47543,7 @@ messagevue_type_template_id_6b9d422c_render._withStripped = true
47223
47543
  var _this3 = this;
47224
47544
 
47225
47545
  utils_util["a" /* default */].ajax({
47226
- url: api["O" /* ignoreAllSysMsg */]
47546
+ url: api["Q" /* ignoreAllSysMsg */]
47227
47547
  }).then(function (res) {
47228
47548
  _this3.count = 0;
47229
47549
  _this3.msgs = [];
@@ -47543,7 +47863,7 @@ noticevue_type_template_id_b4f91b8e_render._withStripped = true
47543
47863
  var _this = this;
47544
47864
 
47545
47865
  utils_util["a" /* default */].ajax({
47546
- url: api["O" /* ignoreAllSysMsg */]
47866
+ url: api["Q" /* ignoreAllSysMsg */]
47547
47867
  }).then(function (res) {
47548
47868
  _this.count = 0;
47549
47869
  _this.msgs = [];
@@ -48029,6 +48349,9 @@ var main_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
48029
48349
  //
48030
48350
  //
48031
48351
  //
48352
+ //
48353
+ //
48354
+ //
48032
48355
 
48033
48356
 
48034
48357
 
@@ -48131,7 +48454,7 @@ var log = utils_util["a" /* default */].getParams('console');
48131
48454
  //获取用户信息的接口
48132
48455
  mainConfig: {
48133
48456
  type: String,
48134
- default: api["W" /* mainConfig */]
48457
+ default: api["Y" /* mainConfig */]
48135
48458
  },
48136
48459
  iframeId: {
48137
48460
  type: String,
@@ -48169,10 +48492,6 @@ var log = utils_util["a" /* default */].getParams('console');
48169
48492
  }
48170
48493
  },
48171
48494
  computed: {
48172
- //菜单类型
48173
- modal: function modal() {
48174
- return this.scene.toLowerCase();
48175
- },
48176
48495
  showHeader: function showHeader() {
48177
48496
  return this.isHeader == 0 ? false : this.header;
48178
48497
  },
@@ -48192,10 +48511,11 @@ var log = utils_util["a" /* default */].getParams('console');
48192
48511
  return true;
48193
48512
  },
48194
48513
  navWidth: function navWidth() {
48195
- return this.modal === 'topside' ? '230px' : undefined;
48514
+ console.log(this.layout === 'topside' ? '230px' : undefined, 9000);
48515
+ return this.layout === 'topside' ? '230px' : undefined;
48196
48516
  },
48197
48517
  showNavTitle: function showNavTitle() {
48198
- return this.modal !== 'topside';
48518
+ return this.layout !== 'topside';
48199
48519
  },
48200
48520
 
48201
48521
  //tabs菜单
@@ -48209,14 +48529,14 @@ var log = utils_util["a" /* default */].getParams('console');
48209
48529
  return this.menuUrl;
48210
48530
  }
48211
48531
  if (this.application) {
48212
- return api["z" /* getComplexApplicationsNew */];
48532
+ return api["A" /* getComplexApplicationsNew */];
48213
48533
  }
48214
- return api["y" /* getComplexApplications */];
48534
+ return api["z" /* getComplexApplications */];
48215
48535
  },
48216
48536
 
48217
48537
  //是否双列右侧菜单
48218
48538
  biserial: function biserial() {
48219
- if (this.modal === 'subsystem' || this.modal === 'topside' || this.application) {
48539
+ if (this.layout === 'subsystem' || this.layout === 'topside' || this.application) {
48220
48540
  return false;
48221
48541
  } else {
48222
48542
  return true;
@@ -48225,13 +48545,13 @@ var log = utils_util["a" /* default */].getParams('console');
48225
48545
 
48226
48546
  //隐藏操作按键
48227
48547
  hide: function hide() {
48228
- if (this.modal === 'subsystem' || this.application) {
48548
+ if (this.layout === 'subsystem' || this.application) {
48229
48549
  if (this.hides && Object.keys(this.hides).length) {
48230
48550
  return main_src_mainvue_type_script_lang_js_extends({}, this.hides, { set: !this.set, system: false });
48231
48551
  } else {
48232
48552
  return { set: !this.set, system: false };
48233
48553
  }
48234
- } else if (this.modal === 'topside') {
48554
+ } else if (this.layout === 'topside') {
48235
48555
  if (this.hides && Object.keys(this.hides).length) {
48236
48556
  return main_src_mainvue_type_script_lang_js_extends({}, this.hides, {
48237
48557
  set: !this.set,
@@ -48291,6 +48611,7 @@ var log = utils_util["a" /* default */].getParams('console');
48291
48611
  },
48292
48612
  data: function data() {
48293
48613
  return {
48614
+ layout: this.scene.toLowerCase(),
48294
48615
  showDefault: false,
48295
48616
  themeJSON: {
48296
48617
  logo: { comp: '', data: {} },
@@ -48374,7 +48695,8 @@ var log = utils_util["a" /* default */].getParams('console');
48374
48695
  defaultwjprops: {},
48375
48696
  isTabs: false,
48376
48697
  isHeader: '',
48377
- isSide: null
48698
+ isSide: null,
48699
+ navIds: null
48378
48700
  };
48379
48701
  },
48380
48702
  created: function created() {
@@ -48417,7 +48739,7 @@ var log = utils_util["a" /* default */].getParams('console');
48417
48739
  var _this = this;
48418
48740
 
48419
48741
  var params = {
48420
- url: api["X" /* mainDetail */],
48742
+ url: api["Z" /* mainDetail */],
48421
48743
  params: { id: id }
48422
48744
  };
48423
48745
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -48517,7 +48839,7 @@ var log = utils_util["a" /* default */].getParams('console');
48517
48839
  return;
48518
48840
  }
48519
48841
  utils_util["a" /* default */].ajax({
48520
- url: api["Nb" /* updateUserCustomInfo */],
48842
+ url: api["Pb" /* updateUserCustomInfo */],
48521
48843
  params: { color: escape(color.toLowerCase()) },
48522
48844
  data: { color: escape(color.toLowerCase()) }
48523
48845
  }).then(function (res) {
@@ -48657,11 +48979,22 @@ var log = utils_util["a" /* default */].getParams('console');
48657
48979
  }
48658
48980
  });
48659
48981
  },
48660
- jumpMenu: function jumpMenu(res) {
48982
+ jumpMenu: function jumpMenu(res, flag) {
48983
+ var ids = void 0;
48661
48984
  if (typeof res === 'string') {
48662
- res = res.split(',');
48985
+ if (flag) {
48986
+ ids = this.getId(this.menus, res, true);
48987
+ if (!ids) {
48988
+ this.$message.error('未在菜单栏中找到此地址');
48989
+ return;
48990
+ }
48991
+ } else {
48992
+ ids = res.split(',');
48993
+ }
48994
+ } else {
48995
+ ids = res;
48663
48996
  }
48664
- this.setDefault(this.menus, res);
48997
+ this.setDefault(this.menus, ids);
48665
48998
  },
48666
48999
  getId: function getId(arry, res, path) {
48667
49000
  if (!res) {
@@ -48760,6 +49093,7 @@ var log = utils_util["a" /* default */].getParams('console');
48760
49093
 
48761
49094
  //设置默认左侧导航
48762
49095
  setMenu: function setMenu(res) {
49096
+ console.log(9000);
48763
49097
  if (this.defaultActive && this.defaultActive.length) {
48764
49098
  this.isDefault = false;
48765
49099
  this.setDefault(res, this.defaultActive);
@@ -48780,14 +49114,16 @@ var log = utils_util["a" /* default */].getParams('console');
48780
49114
  } else {
48781
49115
  this.isDefault = false;
48782
49116
  }
48783
- if (this.modal === 'subsystem' || this.modal === 'topside') {
48784
- if (this.modal === 'subsystem') {
49117
+ if (this.layout === 'subsystem' || this.layout === 'topside') {
49118
+ if (this.layout === 'subsystem') {
49119
+ this.navs = [];
48785
49120
  if (this.menuType === 'custom') {
48786
49121
  this.subsystem = this.customMenu;
48787
49122
  } else {
48788
49123
  this.subsystem = res;
48789
49124
  }
48790
- } else if (this.modal === 'topside') {
49125
+ } else if (this.layout === 'topside') {
49126
+ this.subsystem = [];
48791
49127
  if (this.menuType === 'custom') {
48792
49128
  this.navs = this.customMenu;
48793
49129
  this.topActive = res[0].id;
@@ -48809,21 +49145,23 @@ var log = utils_util["a" /* default */].getParams('console');
48809
49145
  this.title = res[0].text;
48810
49146
  }
48811
49147
  if (!this.isDefault) {
48812
- this.active = this.getFirst(this.menu[0]);
49148
+ this.active = this.getFirst(this.menu[0]).id;
48813
49149
  }
48814
- } else if (this.modal === 'topnav') {
49150
+ } else if (this.layout === 'topnav') {
48815
49151
  if (this.menuType === 'custom') {
48816
49152
  this.navs = this.customMenu;
48817
- this.topActive = this.getFirst(res[0]);
49153
+ this.topActive = this.getFirst(res[0]).id;
48818
49154
  } else {
48819
49155
  this.navs = res;
48820
- this.topActive = this.getFirst(res[0]);
49156
+ this.topActive = this.getFirst(res[0]).id;
48821
49157
  }
48822
49158
  } else {
49159
+ this.nav = [];
49160
+ this.subsystem = [];
48823
49161
  this.menu = res;
48824
49162
  if (!this.isDefault) {
48825
49163
  this.active = [this.menu[0].id];
48826
- var id = this.getFirst(this.menu[0]);
49164
+ var id = this.getFirst(this.menu[0]).id;
48827
49165
  if (id && this.menu[0].id !== id) {
48828
49166
  this.active.push(id);
48829
49167
  } else {
@@ -48842,7 +49180,7 @@ var log = utils_util["a" /* default */].getParams('console');
48842
49180
  if (obj.children && obj.children.length) {
48843
49181
  return this.getFirst(obj.children[0]);
48844
49182
  } else if (obj.fourthTabs && obj.fourthTabs.length) {
48845
- if (this.modal === 'topnav') {
49183
+ if (this.layout === 'topnav') {
48846
49184
  return this.getFirst(obj.fourthTabs[0]);
48847
49185
  } else {
48848
49186
  this.tabs = obj.fourthTabs;
@@ -48858,12 +49196,11 @@ var log = utils_util["a" /* default */].getParams('console');
48858
49196
  this.tabsId = this.tabs[0].id;
48859
49197
  this.handleJump(this.tabs[0].url, this.tabs[0].urlopenmode, this.tabs[0]);
48860
49198
  }
48861
- return obj.id;
48862
49199
  }
48863
49200
  } else {
48864
49201
  this.handleJump(obj.url, obj.urlopenmode, obj);
48865
49202
  }
48866
- return obj.id;
49203
+ return obj;
48867
49204
  },
48868
49205
 
48869
49206
  //遍历设置菜单气泡提醒
@@ -48916,8 +49253,9 @@ var log = utils_util["a" /* default */].getParams('console');
48916
49253
  this.tabsId = '';
48917
49254
  this.active = '';
48918
49255
  this.getUrl(res, active);
48919
- if (this.modal === 'subsystem' || this.modal === 'subSystem' || this.modal === 'topnav' || this.modal === 'topNav' || this.modal === 'topside' || this.modal === 'topSide') {
48920
- if (this.modal === 'subsystem' || this.modal === 'subSystem') {
49256
+ if (this.layout === 'subsystem' || this.layout === 'subSystem' || this.layout === 'topnav' || this.layout === 'topNav' || this.layout === 'topside' || this.layout === 'topSide') {
49257
+ if (this.layout === 'subsystem' || this.layout === 'subSystem') {
49258
+ this.navs = [];
48921
49259
  if (this.menuType === 'custom') {
48922
49260
  this.subsystem = this.customMenu;
48923
49261
  this.sysId = active[0];
@@ -48925,7 +49263,8 @@ var log = utils_util["a" /* default */].getParams('console');
48925
49263
  this.subsystem = res;
48926
49264
  this.sysId = active[0];
48927
49265
  }
48928
- } else if (this.modal === 'topnav' || this.modal === 'topNav' || this.modal === 'topside' || this.modal === 'topSide') {
49266
+ } else if (this.layout === 'topnav' || this.layout === 'topNav' || this.layout === 'topside' || this.layout === 'topSide') {
49267
+ this.subsystem = [];
48929
49268
  if (this.menuType === 'custom') {
48930
49269
  this.navs = this.customMenu;
48931
49270
  this.topActive = active[0];
@@ -48948,6 +49287,8 @@ var log = utils_util["a" /* default */].getParams('console');
48948
49287
  }
48949
49288
  }
48950
49289
  } else {
49290
+ this.navs = [];
49291
+ this.subsystem = [];
48951
49292
  this.menu = res;
48952
49293
  if (this.biserial) {
48953
49294
  this.active = active.slice(0, active.length > 2 ? active.length - 1 : active.length);
@@ -49002,28 +49343,40 @@ var log = utils_util["a" /* default */].getParams('console');
49002
49343
  var _url = params._baseUrl ? params._baseUrl : './primary.html';
49003
49344
  return utils_util["a" /* default */].urlJoinParams({ url: _url, param: obj });
49004
49345
  },
49346
+ handleOpenNav: function handleOpenNav(res) {
49347
+ console.log(res, 777);
49348
+ },
49005
49349
 
49006
49350
  //应用导航交互
49007
- handleSelect: function handleSelect(res, type) {
49351
+ handleSelect: function handleSelect(res, type, open) {
49352
+ console.log(type);
49008
49353
  var node = res.node;
49009
49354
 
49010
- if (node.extendData && node.extendData.businessStatus == 0 && node.extendData.businessWarnMsg) {
49011
- this.$alert(node.extendData.businessWarnMsg, '提示', {
49012
- type: 'warning'
49013
- });
49014
- return;
49355
+ if (!open) {
49356
+ if (node.extendData && node.extendData.businessStatus == 0 && node.extendData.businessWarnMsg) {
49357
+ this.$alert(node.extendData.businessWarnMsg, '提示', {
49358
+ type: 'warning'
49359
+ });
49360
+ return;
49361
+ }
49362
+ this.isDefault = false;
49363
+ this.tabsId = '';
49015
49364
  }
49016
- this.isDefault = false;
49017
- this.tabsId = '';
49018
49365
  switch (type) {
49019
49366
  case 'nav':
49020
49367
  this.tabs = [];
49021
49368
  this.active = '';
49022
- if (this.modal === 'topside') {
49369
+ if (this.layout === 'topside') {
49370
+ this.navIds = [node.id];
49023
49371
  this.menu = node.children;
49024
49372
  this.title = node.text;
49025
- this.active = this.getFirst(node.children[0]);
49373
+ var subNode = this.getFirst(node.children[0]);
49374
+ if (subNode) {
49375
+ this.active = subNode.id;
49376
+ this.navIds = [node.id].concat(this.getId(subNode.url));
49377
+ }
49026
49378
  } else {
49379
+ this.navIds = this.getId(this.menus, node.url, true);
49027
49380
  if (node.url) {
49028
49381
  var tab = node.fourthTabs.filter(function (item) {
49029
49382
  return item.url === node.url;
@@ -49042,31 +49395,37 @@ var log = utils_util["a" /* default */].getParams('console');
49042
49395
  }
49043
49396
  break;
49044
49397
  case 'sys':
49398
+ this.navIds = [node.id];
49045
49399
  this.tabs = [];
49046
49400
  this.menu = node.children;
49047
49401
  this.title = node.text;
49048
- this.active = this.getFirst(node.children[0]);
49402
+ this.active = this.getFirst(node.children[0]).id;
49049
49403
  this.isSide = true;
49050
49404
  break;
49051
49405
  case 'sub':
49406
+ this.navIds = [node.id];
49052
49407
  if (node.url) {
49053
49408
  this.tabs = [];
49054
49409
  }
49055
49410
  if (this.setFirstAsDefault) {
49056
- var id = this.getFirst(node);
49057
- if (node.id !== id) {
49058
- this.$set(this.active, 0, node.id);
49059
- this.$set(this.active, 1, id);
49411
+ var _subNode = this.getFirst(node);
49412
+ this.$set(this.active, 0, node.id);
49413
+ if (_subNode && node.id !== _subNode.id) {
49414
+ console.log(_subNode, _subNode.url);
49415
+ console.log(this.getId(this.menus, _subNode.url, true));
49416
+ this.$set(this.active, 1, _subNode.id);
49060
49417
  }
49061
49418
  }
49062
49419
  break;
49063
49420
  case 'menu':
49064
- this.tabs = [];
49065
- if (this.setFirstAsDefault) {
49066
- if (this.biserial) {
49067
- this.$set(this.active, 1, node.id);
49068
- } else {
49069
- this.active = node.id;
49421
+ if (!open) {
49422
+ this.tabs = [];
49423
+ if (this.setFirstAsDefault) {
49424
+ if (this.biserial) {
49425
+ this.$set(this.active, 1, node.id);
49426
+ } else {
49427
+ this.active = node.id;
49428
+ }
49070
49429
  }
49071
49430
  }
49072
49431
  if (node.url) {
@@ -49295,6 +49654,25 @@ var log = utils_util["a" /* default */].getParams('console');
49295
49654
  break;
49296
49655
  }
49297
49656
  },
49657
+ handleLayout: function handleLayout(res, old) {
49658
+ switch (res) {
49659
+ case 'topnav':
49660
+ this.navs = this.menus;
49661
+ this.tabs = [];
49662
+ this.subsystem = [];
49663
+ switch (old) {
49664
+ case 'subsystem':
49665
+ break;
49666
+ default:
49667
+ this.topActive = this.active.length ? this.active[this.active.length - 1] : '';
49668
+ console.log(this.active, this.topActive, 666);
49669
+ }
49670
+ break;
49671
+ }
49672
+ console.log(this.sysId, this.topActive, this.active, this.tabsId);
49673
+ //this.setMenu(this.menus);
49674
+ console.log(this.layout, old, this.hide);
49675
+ },
49298
49676
 
49299
49677
  //监听改变菜单
49300
49678
  handleListener: function handleListener() {
@@ -49316,7 +49694,7 @@ var log = utils_util["a" /* default */].getParams('console');
49316
49694
  initWebSocket: function initWebSocket() {
49317
49695
  //初始化weosocket
49318
49696
  if (!this.websocket) {
49319
- var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Tb" /* wss */];
49697
+ var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Vb" /* wss */];
49320
49698
  this.websocket = new external_sockjs_client_default.a(url);
49321
49699
  }
49322
49700
  this.client = external_stompjs_default.a.over(this.websocket);
@@ -49331,7 +49709,7 @@ var log = utils_util["a" /* default */].getParams('console');
49331
49709
  client.connect({}, function () {
49332
49710
  //localStorage.setItem("socket",true);
49333
49711
  //订阅服务端的
49334
- client.subscribe(api["Kb" /* topic */], function (response) {
49712
+ client.subscribe(api["Mb" /* topic */], function (response) {
49335
49713
  var res = JSON.parse(response.body);
49336
49714
  var data = res.data;
49337
49715
  for (var i in data) {
@@ -49472,8 +49850,8 @@ var log = utils_util["a" /* default */].getParams('console');
49472
49850
 
49473
49851
  var main_src_main_component = normalizeComponent(
49474
49852
  packages_main_src_mainvue_type_script_lang_js_,
49475
- mainvue_type_template_id_13aacaf9_render,
49476
- mainvue_type_template_id_13aacaf9_staticRenderFns,
49853
+ mainvue_type_template_id_c4a4a110_render,
49854
+ mainvue_type_template_id_c4a4a110_staticRenderFns,
49477
49855
  false,
49478
49856
  null,
49479
49857
  null,
@@ -50143,7 +50521,7 @@ userinfovue_type_template_id_b081c92a_render._withStripped = true
50143
50521
  var _this2 = this;
50144
50522
 
50145
50523
  utils_util["a" /* default */].ajax({
50146
- url: api["S" /* initUserSet */]
50524
+ url: api["U" /* initUserSet */]
50147
50525
  }).then(function (res) {
50148
50526
  if (res.rCode === 0) {
50149
50527
  var results = JSON.parse(JSON.stringify(res.results));
@@ -50181,7 +50559,7 @@ userinfovue_type_template_id_b081c92a_render._withStripped = true
50181
50559
  if (res.url) {
50182
50560
  url = res.url;
50183
50561
  } else {
50184
- url = api["o" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
50562
+ url = api["p" /* downloadByAdjunctId */] + '?adjunctId=' + res.adjunctId;
50185
50563
  }
50186
50564
  this.$emit('change', 'userHeadUrl', url);
50187
50565
  },
@@ -50190,7 +50568,7 @@ userinfovue_type_template_id_b081c92a_render._withStripped = true
50190
50568
 
50191
50569
  switch (type) {
50192
50570
  case 'job':
50193
- utils_util["a" /* default */].ajax({ url: api["lb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
50571
+ utils_util["a" /* default */].ajax({ url: api["nb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
50194
50572
  if (res.rCode == 0) {
50195
50573
  utils_util["a" /* default */].setStorage({
50196
50574
  type: _this3.storage,
@@ -50228,7 +50606,7 @@ userinfovue_type_template_id_b081c92a_render._withStripped = true
50228
50606
  var _this4 = this;
50229
50607
 
50230
50608
  utils_util["a" /* default */].ajax({
50231
- url: api["Ob" /* updateUserInfo */],
50609
+ url: api["Qb" /* updateUserInfo */],
50232
50610
  params: {
50233
50611
  email: this.values.email,
50234
50612
  officeTel: this.values.officetel,
@@ -50266,7 +50644,7 @@ userinfovue_type_template_id_b081c92a_render._withStripped = true
50266
50644
  var notify = _this4.values.notify.sort().join(',');
50267
50645
  if (notify != _this4.notify.split(',').sort().join(',')) {
50268
50646
  utils_util["a" /* default */].ajax({
50269
- url: api["Nb" /* updateUserCustomInfo */],
50647
+ url: api["Pb" /* updateUserCustomInfo */],
50270
50648
  params: {
50271
50649
  notify: notify
50272
50650
  }
@@ -50818,7 +51196,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
50818
51196
  if (this.pageNum <= this.pageCount) {
50819
51197
  this.loading = true;
50820
51198
  utils_util["a" /* default */].ajax({
50821
- url: api["mb" /* sysMsgPage */],
51199
+ url: api["ob" /* sysMsgPage */],
50822
51200
  params: {
50823
51201
  pageNum: reload ? 1 : this.pageNum,
50824
51202
  pageSize: this.pageSize
@@ -50851,7 +51229,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
50851
51229
  var _this2 = this;
50852
51230
 
50853
51231
  utils_util["a" /* default */].ajax({
50854
- url: api["P" /* ignoreSysMsg */],
51232
+ url: api["R" /* ignoreSysMsg */],
50855
51233
  params: {
50856
51234
  id: res.id
50857
51235
  }
@@ -50871,7 +51249,7 @@ messagevue_type_template_id_3e4ac3c6_render._withStripped = true
50871
51249
  var _this3 = this;
50872
51250
 
50873
51251
  utils_util["a" /* default */].ajax({
50874
- url: api["O" /* ignoreAllSysMsg */]
51252
+ url: api["Q" /* ignoreAllSysMsg */]
50875
51253
  }).then(function (res) {
50876
51254
  _this3.count = 0;
50877
51255
  _this3.msgs = [];
@@ -51186,7 +51564,7 @@ noticevue_type_template_id_3741e357_render._withStripped = true
51186
51564
  var _this = this;
51187
51565
 
51188
51566
  utils_util["a" /* default */].ajax({
51189
- url: api["O" /* ignoreAllSysMsg */]
51567
+ url: api["Q" /* ignoreAllSysMsg */]
51190
51568
  }).then(function (res) {
51191
51569
  _this.count = 0;
51192
51570
  _this.msgs = [];
@@ -51760,7 +52138,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
51760
52138
  //获取用户信息的接口
51761
52139
  mainConfig: {
51762
52140
  type: String,
51763
- default: api["W" /* mainConfig */]
52141
+ default: api["Y" /* mainConfig */]
51764
52142
  },
51765
52143
  iframeId: {
51766
52144
  type: String,
@@ -51822,9 +52200,9 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
51822
52200
  return this.menuUrl;
51823
52201
  }
51824
52202
  if (this.application) {
51825
- return api["z" /* getComplexApplicationsNew */];
52203
+ return api["A" /* getComplexApplicationsNew */];
51826
52204
  }
51827
- return api["y" /* getComplexApplications */];
52205
+ return api["z" /* getComplexApplications */];
51828
52206
  },
51829
52207
 
51830
52208
  //是否双列右侧菜单
@@ -52040,7 +52418,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
52040
52418
  var _this = this;
52041
52419
 
52042
52420
  var params = {
52043
- url: api["X" /* mainDetail */],
52421
+ url: api["Z" /* mainDetail */],
52044
52422
  params: { id: id }
52045
52423
  };
52046
52424
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -52161,7 +52539,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
52161
52539
  return;
52162
52540
  }
52163
52541
  utils_util["a" /* default */].ajax({
52164
- url: api["Nb" /* updateUserCustomInfo */],
52542
+ url: api["Pb" /* updateUserCustomInfo */],
52165
52543
  params: { color: escape(color.toLowerCase()) },
52166
52544
  data: { color: escape(color.toLowerCase()) }
52167
52545
  }).then(function (res) {
@@ -53145,7 +53523,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
53145
53523
  //初始化weosocket
53146
53524
  //初始化weosocket
53147
53525
  if (!this.websocket) {
53148
- var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Tb" /* wss */];
53526
+ var url = (utils_util["a" /* default */].getStorage('wshost') || '') + api["Vb" /* wss */];
53149
53527
  this.websocket = new external_sockjs_client_default.a(url);
53150
53528
  }
53151
53529
 
@@ -53160,7 +53538,7 @@ var mainvue_type_script_lang_js_isIE = navigator.userAgent.indexOf('MSIE') != -1
53160
53538
  client.connect({}, function () {
53161
53539
  //localStorage.setItem("socket",true);
53162
53540
  //订阅服务端的
53163
- client.subscribe(api["Kb" /* topic */], function (response) {
53541
+ client.subscribe(api["Mb" /* topic */], function (response) {
53164
53542
  var res = JSON.parse(response.body);
53165
53543
  var data = res.data;
53166
53544
  for (var i in data) {
@@ -53653,8 +54031,8 @@ menu_src_main.install = function (Vue) {
53653
54031
  };
53654
54032
 
53655
54033
  /* harmony default export */ var menu = (menu_src_main);
53656
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=template&id=84cce570&
53657
- var mainvue_type_template_id_84cce570_render = function () {
54034
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=template&id=6349e24c&
54035
+ var mainvue_type_template_id_6349e24c_render = function () {
53658
54036
  var _vm = this
53659
54037
  var _h = _vm.$createElement
53660
54038
  var _c = _vm._self._c || _h
@@ -53707,7 +54085,7 @@ var mainvue_type_template_id_84cce570_render = function () {
53707
54085
  },
53708
54086
  ],
53709
54087
  staticClass: "es-nav-main",
53710
- style: { width: _vm.biserial ? _vm.width : "" },
54088
+ style: { width: _vm.biserial ? _vm.width : _vm.boxWidth },
53711
54089
  },
53712
54090
  [
53713
54091
  _vm.showTitle
@@ -53771,7 +54149,7 @@ var mainvue_type_template_id_84cce570_render = function () {
53771
54149
  data: _vm.biserial ? _vm.subMenu : _vm.menu,
53772
54150
  collapse: _vm.isCollapse,
53773
54151
  "default-active": _vm.menuActive,
53774
- width: _vm.menuWidth,
54152
+ width: _vm.isTop ? _vm.boxWidth : _vm.menuWidth,
53775
54153
  "is-default": _vm.isDefault,
53776
54154
  biserial: _vm.biserial,
53777
54155
  },
@@ -53792,11 +54170,11 @@ var mainvue_type_template_id_84cce570_render = function () {
53792
54170
  ]
53793
54171
  )
53794
54172
  }
53795
- var mainvue_type_template_id_84cce570_staticRenderFns = []
53796
- mainvue_type_template_id_84cce570_render._withStripped = true
54173
+ var mainvue_type_template_id_6349e24c_staticRenderFns = []
54174
+ mainvue_type_template_id_6349e24c_render._withStripped = true
53797
54175
 
53798
54176
 
53799
- // CONCATENATED MODULE: ./packages/nav/src/main.vue?vue&type=template&id=84cce570&
54177
+ // CONCATENATED MODULE: ./packages/nav/src/main.vue?vue&type=template&id=6349e24c&
53800
54178
 
53801
54179
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/nav/src/main.vue?vue&type=script&lang=js&
53802
54180
  //
@@ -53861,6 +54239,7 @@ mainvue_type_template_id_84cce570_render._withStripped = true
53861
54239
  name: 'EsNav',
53862
54240
  inheritAttrs: false,
53863
54241
  props: {
54242
+ isTop: Boolean,
53864
54243
  data: {
53865
54244
  type: Array,
53866
54245
  default: []
@@ -53897,11 +54276,13 @@ mainvue_type_template_id_84cce570_render._withStripped = true
53897
54276
  return true;
53898
54277
  },
53899
54278
  subActive: function subActive() {
53900
- return this.biserial && this.defaultActive && this.defaultActive[0] ? this.defaultActive[0] : '';
54279
+ var active = this.biserial && Array.isArray(this.defaultActive) && this.defaultActive.length ? this.defaultActive[0] : undefined;
54280
+ console.log(active, 555);
54281
+ return active;
53901
54282
  },
53902
54283
  menuActive: function menuActive() {
53903
- var active = '';
53904
- active = typeof this.defaultActive === 'string' ? this.defaultActive : this.defaultActive && this.defaultActive[this.defaultActive.length - 1];
54284
+ var active = this.defaultActive === 'string' ? this.defaultActive : this.defaultActive.length ? this.defaultActive[this.defaultActive.length - 1] : undefined;
54285
+ console.log(active, 444);
53905
54286
  return active;
53906
54287
  },
53907
54288
  boxWidth: function boxWidth() {
@@ -53926,6 +54307,11 @@ mainvue_type_template_id_84cce570_render._withStripped = true
53926
54307
  }
53927
54308
  },
53928
54309
 
54310
+ biserial: {
54311
+ handler: function handler(val) {
54312
+ this.isShow = !val;
54313
+ }
54314
+ },
53929
54315
  defaultActive: {
53930
54316
  immediate: true,
53931
54317
  deep: true,
@@ -54057,8 +54443,8 @@ mainvue_type_template_id_84cce570_render._withStripped = true
54057
54443
 
54058
54444
  var nav_src_main_component = normalizeComponent(
54059
54445
  packages_nav_src_mainvue_type_script_lang_js_,
54060
- mainvue_type_template_id_84cce570_render,
54061
- mainvue_type_template_id_84cce570_staticRenderFns,
54446
+ mainvue_type_template_id_6349e24c_render,
54447
+ mainvue_type_template_id_6349e24c_staticRenderFns,
54062
54448
  false,
54063
54449
  null,
54064
54450
  null,
@@ -54299,7 +54685,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54299
54685
  text: '重发',
54300
54686
  format: false,
54301
54687
  method: 'post',
54302
- action: api["hb" /* sendBatch */]
54688
+ action: api["jb" /* sendBatch */]
54303
54689
  }]
54304
54690
  }];
54305
54691
  }
@@ -54486,13 +54872,13 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54486
54872
  },
54487
54873
  data: function data() {
54488
54874
  return {
54489
- sendList: api["jb" /* sendList */],
54490
- sendBatch: api["hb" /* sendBatch */],
54875
+ sendList: api["lb" /* sendList */],
54876
+ sendBatch: api["jb" /* sendBatch */],
54491
54877
  tableCount: 0,
54492
54878
  selectData: [],
54493
54879
  formTitle: '',
54494
54880
  showForm: false,
54495
- formData: api["ib" /* sendInfo */],
54881
+ formData: api["kb" /* sendInfo */],
54496
54882
  params: {},
54497
54883
  sendTypeDict: [],
54498
54884
  statusDict: []
@@ -54511,7 +54897,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54511
54897
  type: 'primary',
54512
54898
  checkbox: true,
54513
54899
  format: false,
54514
- action: api["hb" /* sendBatch */]
54900
+ action: api["jb" /* sendBatch */]
54515
54901
  }]
54516
54902
  }, {
54517
54903
  type: 'search',
@@ -55996,7 +56382,7 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55996
56382
  if (options) {
55997
56383
  this.options = JSON.parse(JSON.stringify(options));
55998
56384
  } else {
55999
- this.getData(api["s" /* findSysCode */], val);
56385
+ this.getData(api["t" /* findSysCode */], val);
56000
56386
  }
56001
56387
  }
56002
56388
  }
@@ -56384,7 +56770,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56384
56770
  }
56385
56771
  this.loading = true;
56386
56772
  utils_util["a" /* default */].ajax({
56387
- url: sysCode ? api["s" /* findSysCode */] : this.url,
56773
+ url: sysCode ? api["t" /* findSysCode */] : this.url,
56388
56774
  method: this.method,
56389
56775
  params: params,
56390
56776
  data: params
@@ -58053,7 +58439,7 @@ var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
58053
58439
  value: [Array, Object],
58054
58440
  action: {
58055
58441
  type: String,
58056
- default: api["K" /* getSelectorOrgDetail */]
58442
+ default: api["L" /* getSelectorOrgDetail */]
58057
58443
  },
58058
58444
  host: {
58059
58445
  type: String,
@@ -59478,7 +59864,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59478
59864
  },
59479
59865
  selection: {
59480
59866
  type: [String, Array],
59481
- default: api["K" /* getSelectorOrgDetail */]
59867
+ default: api["L" /* getSelectorOrgDetail */]
59482
59868
  },
59483
59869
  param: {
59484
59870
  type: Object,
@@ -59555,7 +59941,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59555
59941
  enterprise: {
59556
59942
  label: '选择单位',
59557
59943
  name: 'enterprise',
59558
- url: api["L" /* getSelectorOrgTree */],
59944
+ url: api["M" /* getSelectorOrgTree */],
59559
59945
  data: [],
59560
59946
  nodeData: '',
59561
59947
  selection: [],
@@ -59569,7 +59955,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59569
59955
  department: {
59570
59956
  label: '选择部门',
59571
59957
  name: 'department',
59572
- url: api["L" /* getSelectorOrgTree */],
59958
+ url: api["M" /* getSelectorOrgTree */],
59573
59959
  data: [],
59574
59960
  nodeData: '',
59575
59961
  selection: [],
@@ -59583,7 +59969,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59583
59969
  employee: {
59584
59970
  label: '选择用户',
59585
59971
  name: 'employee',
59586
- url: api["L" /* getSelectorOrgTree */],
59972
+ url: api["M" /* getSelectorOrgTree */],
59587
59973
  data: [],
59588
59974
  nodeData: '',
59589
59975
  selection: [],
@@ -59597,7 +59983,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59597
59983
  myemployee: {
59598
59984
  label: '本单位用户',
59599
59985
  name: 'myemployee',
59600
- url: api["L" /* getSelectorOrgTree */],
59986
+ url: api["M" /* getSelectorOrgTree */],
59601
59987
  data: [],
59602
59988
  nodeData: '',
59603
59989
  selection: [],
@@ -59611,7 +59997,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59611
59997
  otheremployee: {
59612
59998
  label: '外单位用户',
59613
59999
  name: 'otheremployee',
59614
- url: api["L" /* getSelectorOrgTree */],
60000
+ url: api["M" /* getSelectorOrgTree */],
59615
60001
  data: [],
59616
60002
  nodeData: '',
59617
60003
  selection: [],
@@ -59625,7 +60011,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59625
60011
  person: {
59626
60012
  label: '选择人员',
59627
60013
  name: 'person',
59628
- url: api["L" /* getSelectorOrgTree */],
60014
+ url: api["M" /* getSelectorOrgTree */],
59629
60015
  data: [],
59630
60016
  nodeData: '',
59631
60017
  selection: [],
@@ -59639,7 +60025,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59639
60025
  otherperson: {
59640
60026
  label: '外单位人员',
59641
60027
  name: 'otherperson',
59642
- url: api["L" /* getSelectorOrgTree */],
60028
+ url: api["M" /* getSelectorOrgTree */],
59643
60029
  data: [],
59644
60030
  nodeData: '',
59645
60031
  selection: [],
@@ -59653,7 +60039,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59653
60039
  persongroup: {
59654
60040
  label: '员工群组成员',
59655
60041
  name: 'persongroup',
59656
- url: api["L" /* getSelectorOrgTree */],
60042
+ url: api["M" /* getSelectorOrgTree */],
59657
60043
  data: [],
59658
60044
  nodeData: '',
59659
60045
  selection: [],
@@ -59671,7 +60057,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59671
60057
  selection: [],
59672
60058
  value: [],
59673
60059
  name: 'filgroup',
59674
- url: api["L" /* getSelectorOrgTree */],
60060
+ url: api["M" /* getSelectorOrgTree */],
59675
60061
  param: {
59676
60062
  showarea: 3,
59677
60063
  id: 0,
@@ -59681,7 +60067,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59681
60067
  depgroup: {
59682
60068
  label: '部门群组成员',
59683
60069
  name: 'depgroup',
59684
- url: api["L" /* getSelectorOrgTree */],
60070
+ url: api["M" /* getSelectorOrgTree */],
59685
60071
  data: [],
59686
60072
  nodeData: '',
59687
60073
  selection: [],
@@ -59695,7 +60081,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59695
60081
  persongroupobj: {
59696
60082
  label: '人员群组',
59697
60083
  name: 'persongroupobj',
59698
- url: api["L" /* getSelectorOrgTree */],
60084
+ url: api["M" /* getSelectorOrgTree */],
59699
60085
  data: [],
59700
60086
  nodeData: '',
59701
60087
  selection: [],
@@ -59709,7 +60095,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59709
60095
  filgroupobj: {
59710
60096
  label: '单位群组',
59711
60097
  name: 'filgroupobj',
59712
- url: api["L" /* getSelectorOrgTree */],
60098
+ url: api["M" /* getSelectorOrgTree */],
59713
60099
  data: [],
59714
60100
  nodeData: '',
59715
60101
  selection: [],
@@ -59723,7 +60109,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59723
60109
  depgroupobj: {
59724
60110
  label: '部门群组',
59725
60111
  name: 'depgroupobj',
59726
- url: api["L" /* getSelectorOrgTree */],
60112
+ url: api["M" /* getSelectorOrgTree */],
59727
60113
  data: [],
59728
60114
  nodeData: '',
59729
60115
  selection: [],
@@ -59737,7 +60123,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59737
60123
  role: {
59738
60124
  label: '选择角色',
59739
60125
  name: 'role',
59740
- url: api["L" /* getSelectorOrgTree */],
60126
+ url: api["M" /* getSelectorOrgTree */],
59741
60127
  data: [],
59742
60128
  nodeData: '',
59743
60129
  selection: [],
@@ -59751,7 +60137,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59751
60137
  post: {
59752
60138
  label: '选择岗位',
59753
60139
  name: 'post',
59754
- url: api["L" /* getSelectorOrgTree */],
60140
+ url: api["M" /* getSelectorOrgTree */],
59755
60141
  data: [],
59756
60142
  nodeData: '',
59757
60143
  selection: [],
@@ -59765,7 +60151,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59765
60151
  codetable: {
59766
60152
  label: '代码表',
59767
60153
  name: 'codetable',
59768
- url: api["L" /* getSelectorOrgTree */],
60154
+ url: api["M" /* getSelectorOrgTree */],
59769
60155
  data: [],
59770
60156
  nodeData: '',
59771
60157
  selection: [],
@@ -59779,7 +60165,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59779
60165
  topcontacts: {
59780
60166
  label: '常用联系人',
59781
60167
  name: 'topcontacts',
59782
- url: api["L" /* getSelectorOrgTree */],
60168
+ url: api["M" /* getSelectorOrgTree */],
59783
60169
  data: [],
59784
60170
  nodeData: '',
59785
60171
  selection: [],
@@ -60431,11 +60817,11 @@ function sizer_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
60431
60817
  },
60432
60818
  url: {
60433
60819
  type: String,
60434
- default: api["F" /* getOrgMainTree */]
60820
+ default: api["G" /* getOrgMainTree */]
60435
60821
  },
60436
60822
  orgUrl: {
60437
60823
  type: String,
60438
- default: api["J" /* getSelectOrgsubids */]
60824
+ default: api["K" /* getSelectOrgsubids */]
60439
60825
  },
60440
60826
  selectField: {
60441
60827
  type: String,
@@ -63653,7 +64039,7 @@ mainvue_type_template_id_f9dec32c_render._withStripped = true
63653
64039
  },
63654
64040
  url: {
63655
64041
  type: String,
63656
- default: api["M" /* gethelpdoc */]
64042
+ default: api["O" /* gethelpdoc */]
63657
64043
  },
63658
64044
  param: {
63659
64045
  type: Object,
@@ -64135,7 +64521,7 @@ mainvue_type_template_id_bb0b8d78_render._withStripped = true
64135
64521
  // 选择项远程地址
64136
64522
  url: {
64137
64523
  type: String,
64138
- default: api["F" /* getOrgMainTree */]
64524
+ default: api["G" /* getOrgMainTree */]
64139
64525
  },
64140
64526
  currentFirstNode: {
64141
64527
  type: Boolean,
@@ -65754,8 +66140,8 @@ toolbar_src_main.install = function (Vue) {
65754
66140
  };
65755
66141
 
65756
66142
  /* harmony default export */ var packages_toolbar = (toolbar_src_main);
65757
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=d04e82f8&
65758
- var tablevue_type_template_id_d04e82f8_render = function () {
66143
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=template&id=44894e1e&
66144
+ var tablevue_type_template_id_44894e1e_render = function () {
65759
66145
  var _vm = this
65760
66146
  var _h = _vm.$createElement
65761
66147
  var _c = _vm._self._c || _h
@@ -65960,6 +66346,8 @@ var tablevue_type_template_id_d04e82f8_render = function () {
65960
66346
  item.type === "label" ||
65961
66347
  item.type === "empty"
65962
66348
  ? "es-table-form-label"
66349
+ : item.disabled
66350
+ ? "es-table-form-item td-disabled"
65963
66351
  : "es-table-form-item",
65964
66352
  attrs: {
65965
66353
  align:
@@ -68289,11 +68677,11 @@ var tablevue_type_template_id_d04e82f8_render = function () {
68289
68677
  2
68290
68678
  )
68291
68679
  }
68292
- var tablevue_type_template_id_d04e82f8_staticRenderFns = []
68293
- tablevue_type_template_id_d04e82f8_render._withStripped = true
68680
+ var tablevue_type_template_id_44894e1e_staticRenderFns = []
68681
+ tablevue_type_template_id_44894e1e_render._withStripped = true
68294
68682
 
68295
68683
 
68296
- // CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=d04e82f8&
68684
+ // CONCATENATED MODULE: ./packages/form/src/table.vue?vue&type=template&id=44894e1e&
68297
68685
 
68298
68686
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/table.vue?vue&type=script&lang=js&
68299
68687
  //
@@ -69284,6 +69672,7 @@ tablevue_type_template_id_d04e82f8_render._withStripped = true
69284
69672
  render: [Function, String]
69285
69673
  },
69286
69674
  render: function render(h, ctx) {
69675
+ console.log('ctx', ctx);
69287
69676
  if (typeof ctx.props.render == 'string') {
69288
69677
  try {
69289
69678
  return utils_util["a" /* default */].toFunction(ctx.props.render)(h, params);
@@ -69559,8 +69948,8 @@ tablevue_type_template_id_d04e82f8_render._withStripped = true
69559
69948
 
69560
69949
  var form_src_table_component = normalizeComponent(
69561
69950
  packages_form_src_tablevue_type_script_lang_js_,
69562
- tablevue_type_template_id_d04e82f8_render,
69563
- tablevue_type_template_id_d04e82f8_staticRenderFns,
69951
+ tablevue_type_template_id_44894e1e_render,
69952
+ tablevue_type_template_id_44894e1e_staticRenderFns,
69564
69953
  false,
69565
69954
  null,
69566
69955
  null,
@@ -70309,7 +70698,7 @@ var mainvue_type_script_lang_js_props;
70309
70698
  }, mainvue_type_script_lang_js_props.properties = {
70310
70699
  type: String,
70311
70700
  default: function _default() {
70312
- return api["x" /* getAdjunctProperties */];
70701
+ return api["y" /* getAdjunctProperties */];
70313
70702
  }
70314
70703
  }, mainvue_type_script_lang_js_props.icons = {
70315
70704
  type: Object,
@@ -70339,7 +70728,7 @@ var mainvue_type_script_lang_js_props;
70339
70728
  videoChange: false,
70340
70729
  source: '',
70341
70730
  excludeNames: '',
70342
- previewAdjunct: api["bb" /* previewAdjunct */],
70731
+ previewAdjunct: api["db" /* previewAdjunct */],
70343
70732
  boxHeight: this.listHeight
70344
70733
  };
70345
70734
  },
@@ -70377,7 +70766,7 @@ var mainvue_type_script_lang_js_props;
70377
70766
  return this.showFileList;
70378
70767
  },
70379
70768
  url: function url() {
70380
- var url = this.action ? this.action : this.portrait || !this.multiple ? api["Qb" /* uploadOnlyOne */] : api["Sb" /* uploads */];
70769
+ var url = this.action ? this.action : this.portrait || !this.multiple ? api["Sb" /* uploadOnlyOne */] : api["Ub" /* uploads */];
70381
70770
  return url.indexOf(this.host) > -1 ? url : this.host + url;
70382
70771
  },
70383
70772
  excludes: function excludes() {
@@ -70393,7 +70782,7 @@ var mainvue_type_script_lang_js_props;
70393
70782
  return this.totalSize ? this.totalSize : this.fileTotalSize ? this.fileTotalSize : 0;
70394
70783
  },
70395
70784
  getAdjunctFileInfos: function getAdjunctFileInfos() {
70396
- return typeof this.fileList === 'string' ? this.fileList : api["w" /* getAdjunctFileInfos */];
70785
+ return typeof this.fileList === 'string' ? this.fileList : api["x" /* getAdjunctFileInfos */];
70397
70786
  },
70398
70787
  showList: function showList() {
70399
70788
  return this.portrait ? false : this.showFileList;
@@ -70647,9 +71036,9 @@ var mainvue_type_script_lang_js_props;
70647
71036
  var suffix = file.suffix;
70648
71037
  suffix = suffix.toLowerCase();
70649
71038
  if (suffix.includes('doc') || suffix.includes('docx') || suffix.includes('xls') || suffix.includes('xlsx') || suffix.includes('ppt')) {
70650
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["db" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
71039
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["fb" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
70651
71040
  } else if (suffix.includes('pdf')) {
70652
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["cb" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
71041
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["eb" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
70653
71042
  } else if (suffix.includes('jpge') || suffix.includes('jpg') || suffix.includes('gif') || suffix.includes('png')) {
70654
71043
  this.imgUrl = this.host + (url ? url : this.previewAdjunct) + '?adjunctId=' + file.adjunctId;
70655
71044
  this.title = file.originalName;
@@ -70803,12 +71192,12 @@ var mainvue_type_script_lang_js_props;
70803
71192
  }
70804
71193
  },
70805
71194
  handleDownloads: function handleDownloads() {
70806
- var url = typeof this.downloads === 'string' ? this.downloads : api["Pb" /* uploadDownloads */];
71195
+ var url = typeof this.downloads === 'string' ? this.downloads : api["Rb" /* uploadDownloads */];
70807
71196
  utils_util["a" /* default */].win.open(this.host + url + '?ownId=' + this.ownId + '&code=' + this.code + (this.extendCode ? '&extendCode=' + this.extendCode : ''));
70808
71197
  },
70809
71198
  handleDownload: function handleDownload(file) {
70810
71199
  if (file.status === 'success') {
70811
- var url = typeof this.download === 'string' ? this.download : api["o" /* downloadByAdjunctId */];
71200
+ var url = typeof this.download === 'string' ? this.download : api["p" /* downloadByAdjunctId */];
70812
71201
  utils_util["a" /* default */].win.open(this.host + url + '?adjunctId=' + (file.adjunctId || file.response.adjunctId));
70813
71202
  } else {
70814
71203
  this.aLinkDownload(file);
@@ -70843,7 +71232,7 @@ var mainvue_type_script_lang_js_props;
70843
71232
  ids = ids.join(',');
70844
71233
  utils_util["a" /* default */].ajax({
70845
71234
  method: this.method,
70846
- url: api["Rb" /* uploadSort */],
71235
+ url: api["Tb" /* uploadSort */],
70847
71236
  data: {
70848
71237
  ids: ids
70849
71238
  },
@@ -71213,10 +71602,6 @@ mainvue_type_template_id_6da39de6_render._withStripped = true
71213
71602
 
71214
71603
  // CONCATENATED MODULE: ./packages/wxlogin/src/main.vue?vue&type=template&id=6da39de6&
71215
71604
 
71216
- // EXTERNAL MODULE: external "qs"
71217
- var external_qs_ = __webpack_require__(3);
71218
- var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
71219
-
71220
71605
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/wxlogin/src/main.vue?vue&type=script&lang=js&
71221
71606
  //
71222
71607
  //
@@ -71422,7 +71807,7 @@ if (typeof window !== 'undefined' && window.Vue) {
71422
71807
  }
71423
71808
 
71424
71809
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
71425
- version: '0.4.50',
71810
+ version: '0.4.52',
71426
71811
  install: install,
71427
71812
  Button: packages_button,
71428
71813
  ButtonGroup: button_group,