eoss-ui 0.4.51 → 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 (62) 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 +973 -591
  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 +92 -88
  36. package/lib/tabs.js +92 -88
  37. package/lib/theme-chalk/index.css +1 -1
  38. package/lib/theme-chalk/main.css +1 -1
  39. package/lib/theme-chalk/menu.css +1 -1
  40. package/lib/tips.js +93 -89
  41. package/lib/tree-group.js +92 -88
  42. package/lib/tree.js +93 -89
  43. package/lib/upload.js +101 -97
  44. package/lib/utils/util.js +2 -2
  45. package/lib/wujie.js +92 -88
  46. package/lib/wxlogin.js +92 -88
  47. package/package.json +1 -1
  48. package/packages/flow/src/main.vue +108 -34
  49. package/packages/flow/src/startTaskRead.vue +15 -3
  50. package/packages/handler/src/main.vue +13 -15
  51. package/packages/login/src/main.vue +34 -3
  52. package/packages/main/src/main.vue +128 -68
  53. package/packages/main/src/settings.vue +51 -4
  54. package/packages/nav/src/main.vue +22 -10
  55. package/packages/theme-chalk/lib/index.css +1 -1
  56. package/packages/theme-chalk/lib/main.css +1 -1
  57. package/packages/theme-chalk/lib/menu.css +1 -1
  58. package/packages/theme-chalk/src/main.scss +45 -6
  59. package/packages/theme-chalk/src/menu.scss +0 -1
  60. package/src/config/api.js +2 -0
  61. package/src/index.js +1 -1
  62. package/src/utils/util.js +2 -2
package/lib/flow.js CHANGED
@@ -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'; // 获取用户信息
@@ -3006,7 +3010,7 @@ var component = Object(componentNormalizer["a" /* default */])(
3006
3010
  // ESM COMPAT FLAG
3007
3011
  __webpack_require__.r(__webpack_exports__);
3008
3012
 
3009
- // 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&
3013
+ // 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&
3010
3014
  var render = function () {
3011
3015
  var _vm = this
3012
3016
  var _h = _vm.$createElement
@@ -3087,8 +3091,8 @@ var render = function () {
3087
3091
  {
3088
3092
  name: "show",
3089
3093
  rawName: "v-show",
3090
- value: !_vm.isFlow && _vm.typeCode != "fenyue",
3091
- expression: "!isFlow && typeCode != 'fenyue'",
3094
+ value: !_vm.isFlow && _vm.newTypeCode != "fenyue",
3095
+ expression: "!isFlow && newTypeCode != 'fenyue'",
3092
3096
  },
3093
3097
  ],
3094
3098
  staticClass: "es-opinion-file",
@@ -3154,10 +3158,10 @@ var render = function () {
3154
3158
  rawName: "v-show",
3155
3159
  value:
3156
3160
  (!_vm.endFlow || _vm.nodeInfos.length > 1) &&
3157
- _vm.typeCode != "fenyue" &&
3161
+ _vm.newTypeCode != "fenyue" &&
3158
3162
  !_vm.shrink,
3159
3163
  expression:
3160
- "\n (!endFlow || nodeInfos.length > 1) && typeCode != 'fenyue' && !shrink\n ",
3164
+ "\n (!endFlow || nodeInfos.length > 1) && newTypeCode != 'fenyue' && !shrink\n ",
3161
3165
  },
3162
3166
  ],
3163
3167
  staticClass: "es-info",
@@ -3525,11 +3529,13 @@ var render = function () {
3525
3529
  1
3526
3530
  )
3527
3531
  : _vm._e(),
3528
- !_vm.isReject && _vm.nodeInfos.length != 0
3529
- ? _c(
3530
- "div",
3531
- [
3532
- _c(
3532
+ _c(
3533
+ "div",
3534
+ [
3535
+ !_vm.isReject &&
3536
+ _vm.nodeInfos.length != 0 &&
3537
+ _vm.isShowNode
3538
+ ? _c(
3533
3539
  "el-form-item",
3534
3540
  {
3535
3541
  attrs: {
@@ -3590,78 +3596,120 @@ var render = function () {
3590
3596
  ),
3591
3597
  ],
3592
3598
  1
3593
- ),
3594
- _vm.countersignaturetypeCode != 0
3595
- ? _c(
3596
- "el-form-item",
3597
- {
3598
- attrs: {
3599
- prop: "handleMode",
3600
- label: "处理方式",
3599
+ )
3600
+ : _vm._e(),
3601
+ _vm.countersignaturetypeCode != 0
3602
+ ? _c(
3603
+ "el-form-item",
3604
+ {
3605
+ attrs: {
3606
+ prop: "handleMode",
3607
+ label: "处理方式",
3608
+ },
3609
+ },
3610
+ [
3611
+ _c("el-input", {
3612
+ attrs: {
3613
+ placeholder: "请输入内容",
3614
+ disabled: "",
3615
+ },
3616
+ model: {
3617
+ value: _vm.handleMode,
3618
+ callback: function ($$v) {
3619
+ _vm.handleMode = $$v
3601
3620
  },
3621
+ expression: "handleMode",
3602
3622
  },
3603
- [
3604
- _c("el-input", {
3605
- attrs: {
3606
- placeholder: "请输入内容",
3607
- disabled: "",
3608
- },
3609
- model: {
3610
- value: _vm.handleMode,
3611
- callback: function ($$v) {
3612
- _vm.handleMode = $$v
3613
- },
3614
- expression: "handleMode",
3615
- },
3616
- }),
3617
- ],
3618
- 1
3619
- )
3620
- : _vm._e(),
3621
- _c(
3623
+ }),
3624
+ ],
3625
+ 1
3626
+ )
3627
+ : _vm._e(),
3628
+ _c(
3629
+ "el-form-item",
3630
+ {
3631
+ attrs: {
3632
+ prop: _vm.isShowNextUser
3633
+ ? "nextUserId"
3634
+ : "nextOrgId",
3635
+ label: _vm.isShowNextUser
3636
+ ? "下步办理人"
3637
+ : "办理对象",
3638
+ },
3639
+ },
3640
+ [
3641
+ _c("SelectUser", {
3642
+ attrs: {
3643
+ nextUser: _vm.isShowNextUser
3644
+ ? _vm.nextNode.nextUserId
3645
+ : _vm.nextNode.nextOrgId,
3646
+ radioList: _vm.radioList,
3647
+ multiple: _vm.multiple,
3648
+ isCustomUser: !_vm.isShowNextUser
3649
+ ? 1
3650
+ : _vm.isCustomUser,
3651
+ isCurrentNodeForbiddenChangeCandidate:
3652
+ _vm.isCurrentNodeForbiddenChangeCandidate,
3653
+ options: _vm.options,
3654
+ mix: _vm.multiple,
3655
+ presetEdit: _vm.presetEdit,
3656
+ selectUserList:
3657
+ _vm.selectUserList,
3658
+ types: _vm.nextUserTypes,
3659
+ params: _vm.isShowNextUser
3660
+ ? _vm.params
3661
+ : {},
3662
+ tabs: _vm.nextUserTabs,
3663
+ },
3664
+ on: {
3665
+ change: function ($event) {
3666
+ _vm.changeSelectUser(
3667
+ $event,
3668
+ _vm.isShowNextUser
3669
+ ? "nextUserId"
3670
+ : "nextOrgId",
3671
+ true
3672
+ )
3673
+ },
3674
+ },
3675
+ }),
3676
+ ],
3677
+ 1
3678
+ ),
3679
+ _vm.isHideCurrentOrg
3680
+ ? _c(
3622
3681
  "el-form-item",
3623
3682
  {
3624
3683
  attrs: {
3625
- prop: _vm.isShowNextUser
3626
- ? "nextUserId"
3627
- : "nextOrgId",
3628
- label: _vm.isShowNextUser
3629
- ? "下步办理人"
3630
- : "办理对象",
3684
+ prop: "nextCurrentOrgObj",
3685
+ label: _vm.currentOrgName
3686
+ ? _vm.currentOrgName
3687
+ : "本单位",
3631
3688
  },
3632
3689
  },
3633
3690
  [
3634
3691
  _c("SelectUser", {
3635
3692
  attrs: {
3636
- nextUser: _vm.isShowNextUser
3637
- ? _vm.nextNode.nextUserId
3638
- : _vm.nextNode.nextOrgId,
3639
- radioList: _vm.radioList,
3640
- multiple: _vm.multiple,
3641
- isCustomUser:
3642
- !_vm.isShowNextUser
3643
- ? 1
3644
- : _vm.isCustomUser,
3645
- isCurrentNodeForbiddenChangeCandidate:
3646
- _vm.isCurrentNodeForbiddenChangeCandidate,
3647
- options: _vm.options,
3648
- mix: _vm.multiple,
3649
- presetEdit: _vm.presetEdit,
3693
+ nextUser:
3694
+ _vm.nextNode
3695
+ .nextCurrentOrgObj,
3696
+ multiple: "",
3697
+ mix: "",
3650
3698
  selectUserList:
3651
- _vm.selectUserList,
3652
- types: _vm.nextUserTypes,
3653
- params: _vm.isShowNextUser
3654
- ? _vm.params
3655
- : {},
3656
- tabs: _vm.nextUserTabs,
3699
+ _vm.selectNextCurrentOrgObjList,
3700
+ types: [
3701
+ "department",
3702
+ "employee",
3703
+ ],
3704
+ params: {
3705
+ filid: _vm.userModel.orgId,
3706
+ },
3657
3707
  },
3658
3708
  on: {
3659
3709
  change: function ($event) {
3660
3710
  _vm.changeSelectUser(
3661
3711
  $event,
3662
- _vm.isShowNextUser
3663
- ? "nextUserId"
3664
- : "nextOrgId",
3712
+ "nextCurrentOrgObj",
3665
3713
  true
3666
3714
  )
3667
3715
  },
@@ -3669,145 +3717,135 @@ var render = function () {
3669
3717
  }),
3670
3718
  ],
3671
3719
  1
3672
- ),
3673
- _vm.nodeType !== 0 &&
3674
- _vm.isLimitedTimeHandling === 1
3675
- ? _c("TimeLimit", {
3720
+ )
3721
+ : _vm._e(),
3722
+ _vm.nodeType !== 0 &&
3723
+ _vm.isLimitedTimeHandling === 1
3724
+ ? _c("TimeLimit", {
3725
+ attrs: { newsList: _vm.newsList },
3726
+ on: {
3727
+ change: function (val) {
3728
+ return (_vm.nextNode =
3729
+ Object.assign(
3730
+ {},
3731
+ _vm.nextNode,
3732
+ val
3733
+ ))
3734
+ },
3735
+ },
3736
+ })
3737
+ : _vm._e(),
3738
+ _vm.isTaskread == 1
3739
+ ? _c(
3740
+ "el-form-item",
3741
+ {
3742
+ attrs: {
3743
+ prop: "nextReadUserId",
3744
+ label:
3745
+ "\n 分阅用户\n ",
3746
+ },
3747
+ },
3748
+ [
3749
+ _c("SelectUser", {
3676
3750
  attrs: {
3677
- newsList: _vm.newsList,
3751
+ nextUser:
3752
+ _vm.nextNode.nextReadUserId,
3753
+ multiple: true,
3754
+ selectUserList:
3755
+ _vm.selectReadUserList,
3756
+ options: _vm.userOptions,
3757
+ mix: true,
3758
+ types: _vm.types,
3759
+ tabs: _vm.tabs,
3678
3760
  },
3679
3761
  on: {
3680
- change: function (val) {
3681
- return (_vm.nextNode =
3682
- Object.assign(
3683
- {},
3684
- _vm.nextNode,
3685
- val
3686
- ))
3762
+ change: function ($event) {
3763
+ _vm.changeSelectReadUser(
3764
+ $event,
3765
+ "nextReadUserId"
3766
+ )
3687
3767
  },
3688
3768
  },
3689
- })
3690
- : _vm._e(),
3691
- _vm.isTaskread == 1
3692
- ? _c(
3693
- "el-form-item",
3694
- {
3695
- attrs: {
3696
- prop: "nextReadUserId",
3697
- label:
3698
- "\n 分阅用户\n ",
3699
- },
3769
+ }),
3770
+ ],
3771
+ 1
3772
+ )
3773
+ : _vm._e(),
3774
+ _vm.canPresetRead
3775
+ ? _c(
3776
+ "el-form-item",
3777
+ {
3778
+ attrs: {
3779
+ prop: "presetReadUserId",
3780
+ label:
3781
+ "\n 自动分阅\n ",
3782
+ },
3783
+ },
3784
+ [
3785
+ _c("SelectUser", {
3786
+ attrs: {
3787
+ nextUser:
3788
+ _vm.nextNode
3789
+ .presetReadUserId,
3790
+ multiple: true,
3791
+ selectUserList:
3792
+ _vm.selectPresetUserList,
3793
+ options: _vm.presetOptions,
3794
+ radioList:
3795
+ _vm.presetReadUserId,
3796
+ presetEdit: 1,
3797
+ mix: true,
3798
+ types: _vm.types,
3799
+ tabs: _vm.tabs,
3700
3800
  },
3701
- [
3702
- _c("SelectUser", {
3703
- attrs: {
3704
- nextUser:
3705
- _vm.nextNode
3706
- .nextReadUserId,
3707
- multiple: true,
3708
- selectUserList:
3709
- _vm.selectReadUserList,
3710
- options: _vm.userOptions,
3711
- mix: true,
3712
- types: _vm.types,
3713
- tabs: _vm.tabs,
3714
- },
3715
- on: {
3716
- change: function (
3717
- $event
3718
- ) {
3719
- _vm.changeSelectReadUser(
3720
- $event,
3721
- "nextReadUserId"
3722
- )
3723
- },
3724
- },
3725
- }),
3726
- ],
3727
- 1
3728
- )
3729
- : _vm._e(),
3730
- _vm.canPresetRead
3731
- ? _c(
3732
- "el-form-item",
3733
- {
3734
- attrs: {
3735
- prop: "presetReadUserId",
3736
- label:
3737
- "\n 自动分阅\n ",
3801
+ on: {
3802
+ change: function ($event) {
3803
+ _vm.changeSelectReadUser(
3804
+ $event,
3805
+ "presetReadUserId"
3806
+ )
3738
3807
  },
3739
3808
  },
3740
- [
3741
- _c("SelectUser", {
3742
- attrs: {
3743
- nextUser:
3744
- _vm.nextNode
3745
- .presetReadUserId,
3746
- multiple: true,
3747
- selectUserList:
3748
- _vm.selectPresetUserList,
3749
- options:
3750
- _vm.presetOptions,
3751
- radioList:
3752
- _vm.presetReadUserId,
3753
- presetEdit: 1,
3754
- mix: true,
3755
- types: _vm.types,
3756
- tabs: _vm.tabs,
3757
- },
3758
- on: {
3759
- change: function (
3760
- $event
3761
- ) {
3762
- _vm.changeSelectReadUser(
3763
- $event,
3764
- "presetReadUserId"
3765
- )
3766
- },
3767
- },
3768
- }),
3769
- ],
3770
- 1
3771
- )
3772
- : _vm._e(),
3773
- _vm.isHandleExplain == 1
3774
- ? _c(
3775
- "el-form-item",
3776
- {
3777
- attrs: {
3778
- prop: "handleExplain",
3779
- label: "办理说明",
3809
+ }),
3810
+ ],
3811
+ 1
3812
+ )
3813
+ : _vm._e(),
3814
+ _vm.isHandleExplain == 1
3815
+ ? _c(
3816
+ "el-form-item",
3817
+ {
3818
+ attrs: {
3819
+ prop: "handleExplain",
3820
+ label: "办理说明",
3821
+ },
3822
+ },
3823
+ [
3824
+ _c("el-input", {
3825
+ attrs: {
3826
+ placeholder: "请输入办理说明",
3827
+ },
3828
+ model: {
3829
+ value:
3830
+ _vm.nextNode.handleExplain,
3831
+ callback: function ($$v) {
3832
+ _vm.$set(
3833
+ _vm.nextNode,
3834
+ "handleExplain",
3835
+ $$v
3836
+ )
3780
3837
  },
3838
+ expression:
3839
+ "nextNode.handleExplain",
3781
3840
  },
3782
- [
3783
- _c("el-input", {
3784
- attrs: {
3785
- placeholder:
3786
- "请输入办理说明",
3787
- },
3788
- model: {
3789
- value:
3790
- _vm.nextNode
3791
- .handleExplain,
3792
- callback: function ($$v) {
3793
- _vm.$set(
3794
- _vm.nextNode,
3795
- "handleExplain",
3796
- $$v
3797
- )
3798
- },
3799
- expression:
3800
- "nextNode.handleExplain",
3801
- },
3802
- }),
3803
- ],
3804
- 1
3805
- )
3806
- : _vm._e(),
3807
- ],
3808
- 1
3809
- )
3810
- : _vm._e(),
3841
+ }),
3842
+ ],
3843
+ 1
3844
+ )
3845
+ : _vm._e(),
3846
+ ],
3847
+ 1
3848
+ ),
3811
3849
  ],
3812
3850
  1
3813
3851
  )
@@ -3970,7 +4008,7 @@ var render = function () {
3970
4008
  ],
3971
4009
  1
3972
4010
  ),
3973
- _vm.typeCode != "fenyue" && !_vm.shrink
4011
+ _vm.newTypeCode != "fenyue" && !_vm.shrink
3974
4012
  ? _c(
3975
4013
  "div",
3976
4014
  {
@@ -4389,7 +4427,7 @@ var staticRenderFns = []
4389
4427
  render._withStripped = true
4390
4428
 
4391
4429
 
4392
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=4ef7ee29&
4430
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=9783bc8c&
4393
4431
 
4394
4432
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
4395
4433
  var regenerator_ = __webpack_require__(9);
@@ -4948,7 +4986,7 @@ var util = __webpack_require__(0);
4948
4986
 
4949
4987
  this.loading = true;
4950
4988
  util["a" /* default */].ajax({
4951
- url: id ? api["p" /* editCommonOpion */] : api["a" /* addCommonOpion */],
4989
+ url: id ? api["q" /* editCommonOpion */] : api["a" /* addCommonOpion */],
4952
4990
  params: { id: id }
4953
4991
  }).then(function (res) {
4954
4992
  var status = res.status,
@@ -5213,7 +5251,7 @@ var _components;
5213
5251
 
5214
5252
  var that = this;
5215
5253
  util["a" /* default */].ajax({
5216
- url: api["u" /* findSysParam */],
5254
+ url: api["v" /* findSysParam */],
5217
5255
  params: { cpName: 'commonOpinionsSelectType' }
5218
5256
  }).then(function (res) {
5219
5257
  if (res.status == 'success') {
@@ -5291,7 +5329,7 @@ var _components;
5291
5329
  }
5292
5330
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
5293
5331
  util["a" /* default */].ajax({
5294
- url: data.id ? api["Mb" /* updateCommonOpinion */] : api["gb" /* saveCommonOpinion */],
5332
+ url: data.id ? api["Ob" /* updateCommonOpinion */] : api["ib" /* saveCommonOpinion */],
5295
5333
  data: info,
5296
5334
  header: { 'Content-Type': 'multipart/form-data' },
5297
5335
  method: 'post'
@@ -6153,7 +6191,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
6153
6191
  newNextUser: [],
6154
6192
  newOptions: [],
6155
6193
  newSelectUserList: [],
6156
- url: api["N" /* handleInfo */],
6194
+ url: api["P" /* handleInfo */],
6157
6195
  newCheckboxList: [],
6158
6196
  newPresetEdit: 0,
6159
6197
  newMultiple: false,
@@ -6270,7 +6308,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
6270
6308
  if (query !== '') {
6271
6309
  this.searchLoading = true;
6272
6310
  util["a" /* default */].ajax({
6273
- url: api["N" /* handleInfo */],
6311
+ url: api["P" /* handleInfo */],
6274
6312
  params: { searchKey: query, query: query, type: 'user' }
6275
6313
  }).then(function (res) {
6276
6314
  var status = res.status,
@@ -6680,7 +6718,7 @@ var CustomPresetvue_type_script_lang_js_components;
6680
6718
  nextNodeId: nodeId,
6681
6719
  businessId: this.id
6682
6720
  };
6683
- util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
6721
+ util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
6684
6722
  var status = res.status,
6685
6723
  message = res.message,
6686
6724
  _res$data = res.data,
@@ -6777,7 +6815,7 @@ var CustomPresetvue_type_script_lang_js_components;
6777
6815
 
6778
6816
  isNoStart && (this.newPresetList = []);
6779
6817
  var params = {
6780
- url: api["G" /* getPresetCustomInfo */],
6818
+ url: api["H" /* getPresetCustomInfo */],
6781
6819
  params: {
6782
6820
  nodeId: nodeId,
6783
6821
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -7128,7 +7166,7 @@ var Presetvue_type_script_lang_js_components;
7128
7166
  nodeId = this.nodeId;
7129
7167
 
7130
7168
  var params = {
7131
- url: api["H" /* getPresetNodeInfo */],
7169
+ url: api["I" /* getPresetNodeInfo */],
7132
7170
  params: {
7133
7171
  nextNodeId: nextNodeId,
7134
7172
  processDefinitionId: processDefinitionId,
@@ -7726,7 +7764,7 @@ var processFormvue_type_script_lang_js_components;
7726
7764
  var _this = this;
7727
7765
 
7728
7766
  util["a" /* default */].ajax({
7729
- url: api["r" /* findCodeValues */],
7767
+ url: api["s" /* findCodeValues */],
7730
7768
  params: { ccCode: 'notification_type' }
7731
7769
  }).then(function (res) {
7732
7770
  var status = res.status,
@@ -7752,7 +7790,7 @@ var processFormvue_type_script_lang_js_components;
7752
7790
  nodeId: this.nextNode.nextNode,
7753
7791
  businessId: this.id
7754
7792
  };
7755
- util["a" /* default */].ajax({ url: api["E" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7793
+ util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
7756
7794
  if (res.status === 'success') {
7757
7795
  _this2.nextNode.noticeInfo = res.message;
7758
7796
  }
@@ -7821,7 +7859,7 @@ var processFormvue_type_script_lang_js_components;
7821
7859
  opinion: _this3.newOpinion || newOpinion
7822
7860
  };
7823
7861
  if (_this3.activeNames != '1') delete params.customPresetUserJson;
7824
- util["a" /* default */].ajax({ url: api["eb" /* register */], method: 'post', data: params }).then(function (res) {
7862
+ util["a" /* default */].ajax({ url: api["gb" /* register */], method: 'post', data: params }).then(function (res) {
7825
7863
  var status = res.status,
7826
7864
  message = res.message;
7827
7865
 
@@ -7851,7 +7889,7 @@ var processFormvue_type_script_lang_js_components;
7851
7889
  nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
7852
7890
  businessId: this.id
7853
7891
  };
7854
- util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
7892
+ util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
7855
7893
  var status = res.status,
7856
7894
  message = res.message,
7857
7895
  _res$data = res.data,
@@ -7938,7 +7976,7 @@ var processFormvue_type_script_lang_js_components;
7938
7976
  var _this5 = this;
7939
7977
 
7940
7978
  util["a" /* default */].ajax({
7941
- url: api["t" /* findSysCodes */]
7979
+ url: api["u" /* findSysCodes */]
7942
7980
  }).then(function (res) {
7943
7981
  var status = res.status,
7944
7982
  message = res.message;
@@ -8007,7 +8045,7 @@ var processFormvue_type_script_lang_js_components;
8007
8045
  businessId: this.businessId
8008
8046
  };
8009
8047
  // 获取节点
8010
- util["a" /* default */].ajax({ url: api["zb" /* toStartFlow */], params: params }).then(function (res) {
8048
+ util["a" /* default */].ajax({ url: api["Bb" /* toStartFlow */], params: params }).then(function (res) {
8011
8049
  //pc接口返回数据处理
8012
8050
  var status = res.status,
8013
8051
  message = res.message,
@@ -8453,7 +8491,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
8453
8491
  notificationType = _sendInfo.notificationType;
8454
8492
 
8455
8493
  var params = {
8456
- url: api["kb" /* sendMsg */],
8494
+ url: api["mb" /* sendMsg */],
8457
8495
  headers: { Accept: 'application/json,text/plain' },
8458
8496
  method: 'post',
8459
8497
  data: {
@@ -8515,7 +8553,7 @@ SendMsgvue_type_template_id_7d374b0a_render._withStripped = true
8515
8553
 
8516
8554
  this.loading = true;
8517
8555
  util["a" /* default */].ajax({
8518
- url: api["yb" /* toSendMsg */],
8556
+ url: api["Ab" /* toSendMsg */],
8519
8557
  params: { pendingId: this.$attrs.pendingId }
8520
8558
  }).then(function (res) {
8521
8559
  var status = res.status,
@@ -9293,7 +9331,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9293
9331
  var _this = this;
9294
9332
 
9295
9333
  util["a" /* default */].ajax({
9296
- url: api["r" /* findCodeValues */],
9334
+ url: api["s" /* findCodeValues */],
9297
9335
  params: { ccCode: 'notification_type' }
9298
9336
  }).then(function (res) {
9299
9337
  var status = res.status,
@@ -9330,7 +9368,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9330
9368
  userId: util["a" /* default */].getStorage('userId'),
9331
9369
  nextNodeId: _this2.nextNode.nextNodeId
9332
9370
  };
9333
- util["a" /* default */].ajax({ url: api["pb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
9371
+ util["a" /* default */].ajax({ url: api["rb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
9334
9372
  var status = res.status,
9335
9373
  message = res.message;
9336
9374
 
@@ -9361,7 +9399,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9361
9399
  var _this3 = this;
9362
9400
 
9363
9401
  util["a" /* default */].ajax({
9364
- url: api["t" /* findSysCodes */]
9402
+ url: api["u" /* findSysCodes */]
9365
9403
  }).then(function (res) {
9366
9404
  var status = res.status,
9367
9405
  message = res.message;
@@ -9385,7 +9423,7 @@ processRejectvue_type_template_id_4de07824_render._withStripped = true
9385
9423
  isSinglePage: false,
9386
9424
  opinion: this.option
9387
9425
  };
9388
- util["a" /* default */].ajax({ url: api["Cb" /* toTaskRejectHtml */], params: params }).then(function (res) {
9426
+ util["a" /* default */].ajax({ url: api["Eb" /* toTaskRejectHtml */], params: params }).then(function (res) {
9389
9427
  var status = res.status,
9390
9428
  message = res.message,
9391
9429
  _res$data = res.data,
@@ -9448,8 +9486,8 @@ var processReject_component = Object(componentNormalizer["a" /* default */])(
9448
9486
  )
9449
9487
 
9450
9488
  /* harmony default export */ var processReject = (processReject_component.exports);
9451
- // 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&
9452
- var startTaskReadvue_type_template_id_0c8ae180_render = function () {
9489
+ // 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&
9490
+ var startTaskReadvue_type_template_id_95f78930_render = function () {
9453
9491
  var _vm = this
9454
9492
  var _h = _vm.$createElement
9455
9493
  var _c = _vm._self._c || _h
@@ -9824,11 +9862,15 @@ var startTaskReadvue_type_template_id_0c8ae180_render = function () {
9824
9862
  1
9825
9863
  )
9826
9864
  }
9827
- var startTaskReadvue_type_template_id_0c8ae180_staticRenderFns = []
9828
- startTaskReadvue_type_template_id_0c8ae180_render._withStripped = true
9865
+ var startTaskReadvue_type_template_id_95f78930_staticRenderFns = []
9866
+ startTaskReadvue_type_template_id_95f78930_render._withStripped = true
9867
+
9829
9868
 
9869
+ // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=95f78930&
9830
9870
 
9831
- // CONCATENATED MODULE: ./packages/flow/src/startTaskRead.vue?vue&type=template&id=0c8ae180&
9871
+ // EXTERNAL MODULE: external "qs"
9872
+ var external_qs_ = __webpack_require__(4);
9873
+ var external_qs_default = /*#__PURE__*/__webpack_require__.n(external_qs_);
9832
9874
 
9833
9875
  // 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&
9834
9876
  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; };
@@ -9982,6 +10024,7 @@ var startTaskReadvue_type_script_lang_js_components;
9982
10024
 
9983
10025
 
9984
10026
 
10027
+
9985
10028
  /* harmony default export */ var startTaskReadvue_type_script_lang_js_ = ({
9986
10029
  name: 'StartTaskRead',
9987
10030
  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),
@@ -10057,7 +10100,7 @@ var startTaskReadvue_type_script_lang_js_components;
10057
10100
  taskExamine = this.taskExamine;
10058
10101
 
10059
10102
  var params = {
10060
- url: api["Gb" /* toTaskTransferIndex */],
10103
+ url: api["Ib" /* toTaskTransferIndex */],
10061
10104
  params: {
10062
10105
  opinion: opinion,
10063
10106
  pendingId: pendingId,
@@ -10182,7 +10225,7 @@ var startTaskReadvue_type_script_lang_js_components;
10182
10225
  var _this3 = this;
10183
10226
 
10184
10227
  var params = {
10185
- url: api["Ab" /* toStartTaskRead */],
10228
+ url: api["Cb" /* toStartTaskRead */],
10186
10229
  params: { pendingId: this.pendingId, taskAction: this.type }
10187
10230
  };
10188
10231
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -10221,7 +10264,7 @@ var startTaskReadvue_type_script_lang_js_components;
10221
10264
  var _this5 = this;
10222
10265
 
10223
10266
  util["a" /* default */].ajax({
10224
- url: api["r" /* findCodeValues */],
10267
+ url: api["s" /* findCodeValues */],
10225
10268
  params: { ccCode: 'notification_type' }
10226
10269
  }).then(function (res) {
10227
10270
  var status = res.status,
@@ -10244,7 +10287,9 @@ var startTaskReadvue_type_script_lang_js_components;
10244
10287
 
10245
10288
  var _taskExamine = this.taskExamine,
10246
10289
  choiceDeptId = _taskExamine.choiceDeptId,
10247
- choiceOrgId = _taskExamine.choiceOrgId;
10290
+ choiceOrgId = _taskExamine.choiceOrgId,
10291
+ bCode = _taskExamine.bCode,
10292
+ bName = _taskExamine.bName;
10248
10293
  var opinion = this.opinion,
10249
10294
  pendingId = this.pendingId,
10250
10295
  nextNode = this.nextNode,
@@ -10252,10 +10297,12 @@ var startTaskReadvue_type_script_lang_js_components;
10252
10297
  multiple = this.multiple;
10253
10298
 
10254
10299
  var params = {
10255
- url: api["tb" /* taskTransfer */],
10300
+ url: api["vb" /* taskTransfer */],
10256
10301
  data: {
10257
10302
  choiceDeptId: choiceDeptId,
10258
10303
  choiceOrgId: choiceOrgId,
10304
+ bCode: bCode,
10305
+ bName: bName,
10259
10306
  nextUserId: multiple ? nextNode.nextUser.join(',') : nextNode.nextUser,
10260
10307
  opinion: opinion,
10261
10308
  pendingId: pendingId,
@@ -10307,12 +10354,16 @@ var startTaskReadvue_type_script_lang_js_components;
10307
10354
  var _taskExamine2 = _this7.taskExamine,
10308
10355
  appId = _taskExamine2.appId,
10309
10356
  businessId = _taskExamine2.businessId,
10357
+ bCode = _taskExamine2.bCode,
10358
+ bName = _taskExamine2.bName,
10310
10359
  choiceDeptId = _taskExamine2.choiceDeptId,
10311
10360
  choiceOrgId = _taskExamine2.choiceOrgId,
10312
10361
  businessName = _taskExamine2.businessName,
10313
10362
  processDefinitionId = _taskExamine2.processDefinitionId;
10314
10363
 
10315
10364
  var params = startTaskReadvue_type_script_lang_js_extends({}, _this7.nextNode, {
10365
+ bCode: bCode,
10366
+ bName: bName,
10316
10367
  appId: appId,
10317
10368
  businessId: businessId,
10318
10369
  choiceDeptId: choiceDeptId,
@@ -10340,11 +10391,15 @@ var startTaskReadvue_type_script_lang_js_components;
10340
10391
  !download && delete params.isDownload;
10341
10392
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
10342
10393
  util["a" /* default */].ajax({
10343
- url: api["ob" /* taskReadHtml */],
10394
+ url: api["qb" /* taskReadHtml */],
10344
10395
  params: { taskAction: _this7.type },
10345
- headers: { Accept: 'application/json,text/plain' },
10396
+ headers: {
10397
+ Accept: 'application/json,text/plain',
10398
+ 'Content-Type': ' application/x-www-form-urlencoded; charset=UTF-8'
10399
+ },
10346
10400
  method: 'post',
10347
- data: params
10401
+ format: false,
10402
+ data: external_qs_default.a.stringify(params)
10348
10403
  }).then(function (res) {
10349
10404
  var message = res.message,
10350
10405
  status = res.status;
@@ -10377,7 +10432,7 @@ var startTaskReadvue_type_script_lang_js_components;
10377
10432
 
10378
10433
  this.loading = true;
10379
10434
  util["a" /* default */].ajax({
10380
- url: api["t" /* findSysCodes */]
10435
+ url: api["u" /* findSysCodes */]
10381
10436
  }).then(function (res) {
10382
10437
  var status = res.status,
10383
10438
  message = res.message;
@@ -10415,8 +10470,8 @@ var startTaskReadvue_type_script_lang_js_components;
10415
10470
 
10416
10471
  var startTaskRead_component = Object(componentNormalizer["a" /* default */])(
10417
10472
  src_startTaskReadvue_type_script_lang_js_,
10418
- startTaskReadvue_type_template_id_0c8ae180_render,
10419
- startTaskReadvue_type_template_id_0c8ae180_staticRenderFns,
10473
+ startTaskReadvue_type_template_id_95f78930_render,
10474
+ startTaskReadvue_type_template_id_95f78930_staticRenderFns,
10420
10475
  false,
10421
10476
  null,
10422
10477
  null,
@@ -10830,7 +10885,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10830
10885
  pendingId = this.pendingId;
10831
10886
 
10832
10887
  var params = {
10833
- url: api["qb" /* taskReview */],
10888
+ url: api["sb" /* taskReview */],
10834
10889
  data: {
10835
10890
  nextUserId: nextOtherOrgObj.join(','),
10836
10891
  notificationType: noticeType.join(','),
@@ -10866,7 +10921,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10866
10921
  var _this2 = this;
10867
10922
 
10868
10923
  var params = {
10869
- url: api["Db" /* toTaskReview */],
10924
+ url: api["Fb" /* toTaskReview */],
10870
10925
  params: { pendingId: this.pendingId }
10871
10926
  };
10872
10927
  util["a" /* default */].ajax(params).then(function (res) {
@@ -10901,7 +10956,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10901
10956
  var _this3 = this;
10902
10957
 
10903
10958
  var params = {
10904
- 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 */],
10959
+ 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 */],
10905
10960
  params: { pendingId: this.pendingId },
10906
10961
  headers: { Accept: 'application/json,text/plain' }
10907
10962
  };
@@ -10995,7 +11050,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
10995
11050
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
10996
11051
  // return this.$message.warning('暂未开放,敬请期待!');
10997
11052
  var param = {
10998
- 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 */],
11053
+ 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 */],
10999
11054
  data: {
11000
11055
  opinion: opinion,
11001
11056
  pendingId: pendingId,
@@ -11052,7 +11107,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11052
11107
  var _this5 = this;
11053
11108
 
11054
11109
  util["a" /* default */].ajax({
11055
- url: api["r" /* findCodeValues */],
11110
+ url: api["s" /* findCodeValues */],
11056
11111
  params: { ccCode: 'notification_type' }
11057
11112
  }).then(function (res) {
11058
11113
  var status = res.status,
@@ -11077,7 +11132,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11077
11132
  var params = {
11078
11133
  pendingId: this.pendingId
11079
11134
  };
11080
- util["a" /* default */].ajax({ url: api["E" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11135
+ util["a" /* default */].ajax({ url: api["F" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
11081
11136
  if (res.status === 'success') {
11082
11137
  _this6.infoList.noticeInfo = res.message;
11083
11138
  }
@@ -11093,7 +11148,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
11093
11148
  var _this7 = this;
11094
11149
 
11095
11150
  util["a" /* default */].ajax({
11096
- url: api["t" /* findSysCodes */]
11151
+ url: api["u" /* findSysCodes */]
11097
11152
  }).then(function (res) {
11098
11153
  var status = res.status,
11099
11154
  message = res.message;
@@ -11697,6 +11752,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11697
11752
  //
11698
11753
  //
11699
11754
  //
11755
+ //
11756
+ //
11757
+ //
11758
+ //
11759
+ //
11760
+ //
11761
+ //
11762
+ //
11763
+ //
11764
+ //
11765
+ //
11766
+ //
11767
+ //
11768
+ //
11769
+ //
11770
+ //
11771
+
11700
11772
 
11701
11773
 
11702
11774
 
@@ -11745,6 +11817,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11745
11817
  return _ref = {
11746
11818
  userModel: {},
11747
11819
  loading: null, // 加载中
11820
+ newTypeCode: '',
11748
11821
  NodeName: '', // 当前节点值
11749
11822
  radioList: [],
11750
11823
  value: '',
@@ -11755,6 +11828,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11755
11828
  activeNames: '',
11756
11829
  isEndUserTask: true,
11757
11830
  selectUserList: [],
11831
+ selectNextCurrentOrgObjList: [],
11758
11832
  flowMultiple: true,
11759
11833
  isCustomUser: 0,
11760
11834
  shrink: false,
@@ -11789,6 +11863,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11789
11863
  isTaskread: 0, //是否展示分阅用户
11790
11864
  showSendMsg: false, //是否展示核稿通知页面
11791
11865
  canPresetRead: false, //是否展示自动分阅
11866
+ isHideCurrentOrg: false, //是否隐藏本单位(承办)
11867
+ isHideOtherOrg: false, //是否隐藏外单位(承办)
11868
+ isMainSubProcess: false, // 判断是否子-主流程
11869
+ isNextUser: false,
11870
+ isShowNode: false,
11792
11871
  nextNodeList: [],
11793
11872
  removeUsers: [],
11794
11873
  options: [],
@@ -11850,9 +11929,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11850
11929
  mounted: function mounted() {
11851
11930
  this.businessIds = this.businessId;
11852
11931
  this.nextNode.nextNodeId = this.nextNodeId;
11932
+ !this.isFlow && (this.newTypeCode = this.typeCode || this.$route.query.typecode);
11853
11933
  if (this.isFlow) {
11854
11934
  this.businessId && this.getProcess();
11855
- } else if (this.typeCode == 'fenyue') {
11935
+ } else if (this.newTypeCode == 'fenyue') {
11856
11936
  this.getTaskReadFlow();
11857
11937
  } else {
11858
11938
  this.getHedInfo();
@@ -11947,7 +12027,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
11947
12027
  var _this = this;
11948
12028
 
11949
12029
  var params = {
11950
- url: api["w" /* getAdjunctFileInfos */],
12030
+ url: api["x" /* getAdjunctFileInfos */],
11951
12031
  params: { ownId: ownId, code: code }
11952
12032
  };
11953
12033
  util["a" /* default */].ajax(params).then(function (res) {
@@ -12026,14 +12106,19 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12026
12106
  appId: appId,
12027
12107
  processDefinitionId: processDefinitionId,
12028
12108
  pendingId: pendingId,
12029
- opinion: _this2.value
12109
+ opinion: _this2.value,
12110
+ taskAction: 'complete'
12030
12111
  };
12031
12112
  util["a" /* default */].ajax({
12032
- url: api["ob" /* taskReadHtml */],
12113
+ url: api["qb" /* taskReadHtml */],
12033
12114
  params: { taskAction: 'complete' },
12034
- headers: { Accept: 'application/json,text/plain' },
12115
+ headers: {
12116
+ Accept: 'application/json,text/plain',
12117
+ 'Content-Type': ' application/x-www-form-urlencoded; charset=UTF-8'
12118
+ },
12035
12119
  method: 'post',
12036
- data: params
12120
+ format: false,
12121
+ data: external_qs_default.a.stringify(params)
12037
12122
  }).then(function (res) {
12038
12123
  var status = res.status,
12039
12124
  message = res.message;
@@ -12059,7 +12144,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12059
12144
 
12060
12145
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
12061
12146
  util["a" /* default */].ajax({
12062
- url: api["Bb" /* toStartTaskReadIndex */],
12147
+ url: api["Db" /* toStartTaskReadIndex */],
12063
12148
  params: { pendingId: this.pendingId }
12064
12149
  }).then(function (res) {
12065
12150
  var status = res.status,
@@ -12093,7 +12178,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12093
12178
  if (mainConfig) {
12094
12179
  this.userModel = JSON.parse(mainConfig).userModel;
12095
12180
  } else {
12096
- util["a" /* default */].ajax({ url: api["U" /* loginUserInfo */] }).then(function (res) {
12181
+ util["a" /* default */].ajax({ url: api["W" /* loginUserInfo */] }).then(function (res) {
12097
12182
  var status = res.status,
12098
12183
  data = res.data;
12099
12184
 
@@ -12128,7 +12213,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12128
12213
  var _this5 = this;
12129
12214
 
12130
12215
  util["a" /* default */].ajax({
12131
- url: api["r" /* findCodeValues */],
12216
+ url: api["s" /* findCodeValues */],
12132
12217
  params: { ccCode: 'notification_type' }
12133
12218
  }).then(function (res) {
12134
12219
  var status = res.status,
@@ -12191,7 +12276,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12191
12276
  pendingId: this.pendingId
12192
12277
  };
12193
12278
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
12194
- util["a" /* default */].ajax({ url: api["wb" /* tempSave */], params: params }).then(function (res) {
12279
+ util["a" /* default */].ajax({ url: api["yb" /* tempSave */], params: params }).then(function (res) {
12195
12280
  var status = res.status,
12196
12281
  message = res.message;
12197
12282
 
@@ -12247,7 +12332,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12247
12332
  var _this8 = this;
12248
12333
 
12249
12334
  util["a" /* default */].ajax({
12250
- url: api["t" /* findSysCodes */]
12335
+ url: api["u" /* findSysCodes */]
12251
12336
  }).then(function (res) {
12252
12337
  var status = res.status,
12253
12338
  message = res.message;
@@ -12274,7 +12359,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12274
12359
 
12275
12360
  this.$confirm('确认' + res.value + '?').then(function () {
12276
12361
  var params = {
12277
- url: api["q" /* endFlowHtml */],
12362
+ url: api["r" /* endFlowHtml */],
12278
12363
  headers: { Accept: 'application/json,text/plain' },
12279
12364
  method: 'post',
12280
12365
  data: mainvue_type_script_lang_js_extends({}, _this9.endFlowInfo, _this9.nextNode, {
@@ -12402,7 +12487,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12402
12487
  var _this10 = this;
12403
12488
 
12404
12489
  var params = {
12405
- url: api["T" /* isCanStartSubFlow */],
12490
+ url: api["V" /* isCanStartSubFlow */],
12406
12491
  data: {
12407
12492
  appId: this.taskExamineInfo.appId,
12408
12493
  inevitableNode: res.inevitableNode
@@ -12473,7 +12558,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12473
12558
  this.$confirm('确认' + res.value + '?').then(function () {
12474
12559
  if (_this11.isOpinionRequired == 1 && (_this11.value == '' || !_this11.value)) return _this11.$message.warning('请填写意见');
12475
12560
  var params = {
12476
- url: api["fb" /* rejectAndEnd */],
12561
+ url: api["hb" /* rejectAndEnd */],
12477
12562
  headers: { Accept: 'application/json,text/plain' },
12478
12563
  method: 'post',
12479
12564
  data: {
@@ -12536,7 +12621,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12536
12621
  pendingId: this.pendingId,
12537
12622
  businessId: this.businessIds
12538
12623
  };
12539
- util["a" /* default */].ajax({ url: api["D" /* getNodeInfo */], params: params }).then(function (res) {
12624
+ util["a" /* default */].ajax({ url: api["E" /* getNodeInfo */], params: params }).then(function (res) {
12540
12625
  var status = res.status,
12541
12626
  message = res.message,
12542
12627
  data = res.data;
@@ -12554,6 +12639,21 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12554
12639
  _this12.isHandleExplain = data.nodeExtAttr.isHandleExplain;
12555
12640
  _this12.isLimitedTimeHandling = data.nodeExtAttr.isLimitedTimeHandling;
12556
12641
  _this12.nodeType = data.nodeExtAttr.nodeType;
12642
+ //如果当前为承办节点/会签节点,则展示本单位外单位办理人选择
12643
+ if (_this12.nodeType === 1 || _this12.nodeType === 2) {
12644
+ _this12.isMainSubProcess === true ? _this12.isMainSubProcess = true : _this12.isMainSubProcess = false;
12645
+ _this12.isNextUser = false;
12646
+ _this12.isHideCurrentOrg = res.data.nodeExtAttr.isHideCurrentOrg == 1 ? false : true; //判断是否隐藏本单位
12647
+ _this12.isHideOtherOrg = res.data.nodeExtAttr.isHideOtherOrg == 1 ? false : true; //判断是否隐藏外单位
12648
+ } else {
12649
+ _this12.isHideCurrentOrg = false;
12650
+ _this12.isHideOtherOrg = false;
12651
+ _this12.isMainSubProcess = false;
12652
+ _this12.isNextUser = true;
12653
+ // this.isMainSubProcess === true
12654
+ // ? (this.isMainSubProcess = true)
12655
+ // : (this.isMainSubProcess = false);
12656
+ }
12557
12657
  _this12.multiple ? _this12.nextNode.nextUserId = [] : _this12.nextNode.nextUserId = '';
12558
12658
  if (_this12.multiple && data.nodeExtAttr.isDefSelectedObj == 1 && data.nextUserList !== undefined) {
12559
12659
  data.nextUserList.map(function (item) {
@@ -12624,6 +12724,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12624
12724
  this.radioList = [];
12625
12725
 
12626
12726
  if (type) {
12727
+ this.isNextUser = false;
12728
+ this.isShowNode = false;
12627
12729
  this.nextNode.nextNodeId = '';
12628
12730
  this.nextNode.isReturnSubmitter = 0;
12629
12731
  this.nextNode.isUndertakeReply = 0;
@@ -12635,25 +12737,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12635
12737
  this.nextNode.isReturnRejectNode = 0;
12636
12738
  this.nextNode.isSerialSubmit = 0;
12637
12739
  this.nodeInfos = [];
12638
- if (val == -1) {
12639
- this.nextNode.isSerialSubmit = 1;
12640
- } else if (val == 0) {} else if (val == 1) {} else if (val == 2) {
12641
- this.nextNode.isReturnSubmitter = 1;
12642
- } else if (val == 3) {
12643
- this.nextNode.isUndertakeReply = 1;
12644
- } else if (val == 4) {
12645
- this.nextNode.isTakeAdviceReply = 1;
12646
- } else if (val == 5) {
12647
- this.nextNode.isUndertakeEnd = 1;
12648
- } else if (val == 6) {
12649
- this.nextNode.isTakeAdviceEnd = 1;
12650
- } else if (val == 7) {
12651
- this.nextNode.isReadDealReply = 1;
12652
- } else if (val == 8) {
12653
- this.nextNode.isReadDealEnd = 1;
12654
- } else if (val == 9) {
12655
- this.nextNode.isReturnRejectNode = 1;
12656
- } else {}
12657
12740
  this.operationList.map(function (item) {
12658
12741
  if (item.key === val) {
12659
12742
  if (!item.taskNodeList) {
@@ -12679,11 +12762,52 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12679
12762
 
12680
12763
  if (val === 9) {
12681
12764
  this.isReject = true;
12682
- this.loading.close();
12683
- return;
12684
12765
  } else {
12685
12766
  this.isReject = false;
12686
12767
  }
12768
+ if (val == -1) {
12769
+ this.nextNode.isSerialSubmit = 1;
12770
+ this.loading.close();
12771
+ return;
12772
+ } else if (val == 0) {
12773
+ this.isNextUser = true;
12774
+ this.isShowNode = true;
12775
+ } else if (val == 1) {
12776
+ this.isNextUser = true;
12777
+ this.isShowNode = true;
12778
+ } else if (val == 2) {
12779
+ this.nextNode.isReturnSubmitter = 1;
12780
+ this.loading.close();
12781
+ return;
12782
+ } else if (val == 3) {
12783
+ this.nextNode.isUndertakeReply = 1;
12784
+ this.loading.close();
12785
+ return;
12786
+ } else if (val == 4) {
12787
+ this.nextNode.isTakeAdviceReply = 1;
12788
+ this.loading.close();
12789
+ return;
12790
+ } else if (val == 5) {
12791
+ this.nextNode.isUndertakeEnd = 1;
12792
+ this.loading.close();
12793
+ return;
12794
+ } else if (val == 6) {
12795
+ this.nextNode.isTakeAdviceEnd = 1;
12796
+ this.loading.close();
12797
+ return;
12798
+ } else if (val == 7) {
12799
+ this.nextNode.isReadDealReply = 1;
12800
+ this.loading.close();
12801
+ return;
12802
+ } else if (val == 8) {
12803
+ this.nextNode.isReadDealEnd = 1;
12804
+ this.loading.close();
12805
+ return;
12806
+ } else if (val == 9) {
12807
+ this.nextNode.isReturnRejectNode = 1;
12808
+ this.loading.close();
12809
+ return;
12810
+ } else {}
12687
12811
  if (isDef !== true) this.getNodeInfo();
12688
12812
  },
12689
12813
 
@@ -12737,7 +12861,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12737
12861
  pendingId: this.pendingId,
12738
12862
  userId: util["a" /* default */].getStorage('userId')
12739
12863
  };
12740
- util["a" /* default */].ajax({ url: api["A" /* getHandleInfoHtml */], params: params }).then(function (res) {
12864
+ util["a" /* default */].ajax({ url: api["B" /* getHandleInfoHtml */], params: params }).then(function (res) {
12741
12865
  //pc返回数据
12742
12866
 
12743
12867
  _this14.loading.close();
@@ -12918,6 +13042,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12918
13042
  }
12919
13043
  });
12920
13044
  }
13045
+ _this14.isMainSubProcess = res.data.isMainSubProcess === true;
12921
13046
  _this14.isCustomPreset = isCustomPreset;
12922
13047
  _this14.isPreset = isPreset;
12923
13048
  _this14.presetTaskNodeMap = presetTaskNodeMap;
@@ -12998,7 +13123,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
12998
13123
  // onlyFlag: true
12999
13124
  };
13000
13125
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
13001
- util["a" /* default */].ajax({ url: api["I" /* getProcessDefList */], params: params }).then(function (res) {
13126
+ util["a" /* default */].ajax({ url: api["J" /* getProcessDefList */], params: params }).then(function (res) {
13002
13127
  var status = res.status,
13003
13128
  message = res.message,
13004
13129
  data = res.data;
@@ -13047,7 +13172,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13047
13172
  userId: util["a" /* default */].getStorage('userId'),
13048
13173
  type: 2
13049
13174
  };
13050
- util["a" /* default */].ajax({ url: api["Y" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
13175
+ util["a" /* default */].ajax({ url: api["ab" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
13051
13176
  var rCode = res.rCode,
13052
13177
  msg = res.msg,
13053
13178
  results = res.results;
@@ -13120,7 +13245,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13120
13245
  return _context.abrupt('return', _this18.handleVisible = true);
13121
13246
 
13122
13247
  case 3:
13123
- if (!(!_this18.endFlow && _this18.typeCode != 'fenyue' && !_this18.shrink && _this18.nextNode.isAddSign != '1' && _this18.nextNode.isRemoveSign != '1' && _this18.isSpecial && !_this18.isReject && _this18.nodeInfos.length != 0)) {
13248
+ if (!(!_this18.endFlow && _this18.newTypeCode != 'fenyue' && !_this18.shrink && _this18.nextNode.isAddSign != '1' && _this18.nextNode.isRemoveSign != '1' && _this18.isSpecial && !_this18.isReject && _this18.nodeInfos.length != 0)) {
13124
13249
  _context.next = 11;
13125
13250
  break;
13126
13251
  }
@@ -13214,7 +13339,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13214
13339
  _this18.nextNode.isReturnRejectNode = 1;
13215
13340
  _this18.nextNode.processDefinitionId = _this18.processObj.taskExamine.processDefinitionId;
13216
13341
  }
13217
- if (_this18.nextNode.nextOperate == 9 || _this18.nextNode.nextOperate == 2) {
13342
+ if (_this18.nextNode.nextOperate != 0 && _this18.nextNode.nextOperate != 1) {
13218
13343
  delete _this18.nextNode.nextNodeId;
13219
13344
  }
13220
13345
  _context.next = 32;
@@ -13263,7 +13388,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13263
13388
  params.processDefinitionId = taskExamineInfo.processDefinitionId;
13264
13389
  params.isSubFlow = taskExamineInfo.isSubFlow;
13265
13390
  params.nodeId = taskExamineInfo.nodeId;
13266
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["nb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
13391
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["pb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
13267
13392
  var status = res.status,
13268
13393
  message = res.message;
13269
13394