eoss-ui 0.5.81-beta2 → 0.5.81-beta20

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 (127) hide show
  1. package/lib/button-group.js +76 -53
  2. package/lib/button.js +51 -46
  3. package/lib/checkbox-group.js +49 -45
  4. package/lib/clients.js +4 -3
  5. package/lib/config/api.js +3 -1
  6. package/lib/data-table-form.js +49 -45
  7. package/lib/data-table.js +443 -240
  8. package/lib/date-picker.js +49 -45
  9. package/lib/dialog.js +58 -53
  10. package/lib/eoss-ui.common.js +3698 -2064
  11. package/lib/flow-group.js +52 -48
  12. package/lib/flow-list.js +50 -46
  13. package/lib/flow.js +138 -75
  14. package/lib/form.js +96 -49
  15. package/lib/handle-user.js +66 -49
  16. package/lib/handler.js +61 -48
  17. package/lib/icon.js +49 -45
  18. package/lib/index.js +1 -1
  19. package/lib/input-number.js +49 -45
  20. package/lib/input.js +49 -45
  21. package/lib/login.js +64 -53
  22. package/lib/main.js +2632 -1466
  23. package/lib/menu.js +1 -1
  24. package/lib/nav.js +49 -45
  25. package/lib/notify.js +54 -50
  26. package/lib/page.js +49 -45
  27. package/lib/pagination.js +3719 -3
  28. package/lib/player.js +54 -50
  29. package/lib/qr-code.js +49 -45
  30. package/lib/radio-group.js +49 -45
  31. package/lib/retrial-auth.js +50 -46
  32. package/lib/select-ganged.js +49 -45
  33. package/lib/select.js +50 -46
  34. package/lib/selector-panel.js +115 -63
  35. package/lib/selector.js +491 -422
  36. package/lib/sizer.js +49 -45
  37. package/lib/steps.js +49 -45
  38. package/lib/switch.js +49 -45
  39. package/lib/table-form.js +49 -45
  40. package/lib/tabs.js +49 -45
  41. package/lib/theme-chalk/base.css +1 -1
  42. package/lib/theme-chalk/button-group.css +1 -1
  43. package/lib/theme-chalk/data-table.css +1 -1
  44. package/lib/theme-chalk/handler.css +1 -1
  45. package/lib/theme-chalk/index.css +1 -1
  46. package/lib/theme-chalk/main.css +1 -1
  47. package/lib/theme-chalk/menu.css +1 -1
  48. package/lib/theme-chalk/nav.css +1 -1
  49. package/lib/theme-chalk/pagination.css +1 -1
  50. package/lib/theme-chalk/selector-panel.css +1 -1
  51. package/lib/theme-chalk/simplicity.css +1 -1
  52. package/lib/theme-chalk/sizer.css +1 -1
  53. package/lib/theme-chalk/toolbar.css +1 -1
  54. package/lib/theme-chalk/tree.css +1 -1
  55. package/lib/theme-chalk/upload.css +1 -1
  56. package/lib/tips.js +49 -45
  57. package/lib/tree-group.js +49 -45
  58. package/lib/tree.js +49 -45
  59. package/lib/upload.js +59 -55
  60. package/lib/wujie.js +49 -45
  61. package/lib/wxlogin.js +49 -45
  62. package/package.json +2 -2
  63. package/packages/button/src/main.vue +2 -1
  64. package/packages/button-group/src/main.vue +8 -6
  65. package/packages/clients/src/main.vue +2 -1
  66. package/packages/data-table/src/column.vue +113 -41
  67. package/packages/data-table/src/formItem.vue +430 -0
  68. package/packages/data-table/src/main.vue +85 -45
  69. package/packages/data-table/src/sizer.vue +2 -0
  70. package/packages/dialog/src/main.vue +4 -3
  71. package/packages/flow/src/main.vue +30 -17
  72. package/packages/flow-group/src/main.vue +1 -1
  73. package/packages/form/src/main.vue +45 -10
  74. package/packages/handle-user/src/main.vue +10 -3
  75. package/packages/handler/src/main.vue +5 -3
  76. package/packages/login/src/main.vue +13 -6
  77. package/packages/main/src/default/index.vue +102 -179
  78. package/packages/main/src/main.vue +243 -16
  79. package/packages/main/src/public/online.vue +90 -0
  80. package/packages/main/src/simplicity/apps.vue +176 -145
  81. package/packages/main/src/simplicity/avatar.vue +16 -6
  82. package/packages/main/src/simplicity/handler.vue +6 -2
  83. package/packages/main/src/simplicity/index.vue +477 -323
  84. package/packages/main/src/simplicity/menu-list.vue +75 -24
  85. package/packages/main/src/simplicity/message.vue +35 -25
  86. package/packages/main/src/simplicity/notice.vue +72 -39
  87. package/packages/main/src/simplicity/router-page.vue +53 -0
  88. package/packages/main/src/simplicity/settings.vue +1 -1
  89. package/packages/main/src/simplicity/sub-menu.vue +169 -54
  90. package/packages/main/src/simplicity/user.vue +10 -5
  91. package/packages/main/src/simplicity/userinfo.vue +1 -0
  92. package/packages/menu/src/main.vue +4 -3
  93. package/packages/pagination/src/main.vue +20 -1
  94. package/packages/select/src/main.vue +4 -1
  95. package/packages/selector/src/main.vue +151 -136
  96. package/packages/selector-panel/src/main.vue +23 -9
  97. package/packages/selector-panel/src/selection.vue +6 -0
  98. package/packages/theme-chalk/lib/base.css +1 -1
  99. package/packages/theme-chalk/lib/button-group.css +1 -1
  100. package/packages/theme-chalk/lib/data-table.css +1 -1
  101. package/packages/theme-chalk/lib/handler.css +1 -1
  102. package/packages/theme-chalk/lib/index.css +1 -1
  103. package/packages/theme-chalk/lib/main.css +1 -1
  104. package/packages/theme-chalk/lib/menu.css +1 -1
  105. package/packages/theme-chalk/lib/nav.css +1 -1
  106. package/packages/theme-chalk/lib/pagination.css +1 -1
  107. package/packages/theme-chalk/lib/selector-panel.css +1 -1
  108. package/packages/theme-chalk/lib/simplicity.css +1 -1
  109. package/packages/theme-chalk/lib/sizer.css +1 -1
  110. package/packages/theme-chalk/lib/toolbar.css +1 -1
  111. package/packages/theme-chalk/lib/tree.css +1 -1
  112. package/packages/theme-chalk/lib/upload.css +1 -1
  113. package/packages/theme-chalk/src/base.scss +5 -0
  114. package/packages/theme-chalk/src/button-group.scss +18 -4
  115. package/packages/theme-chalk/src/common/var.scss +9 -2
  116. package/packages/theme-chalk/src/data-table.scss +60 -23
  117. package/packages/theme-chalk/src/handler.scss +5 -1
  118. package/packages/theme-chalk/src/login.scss +2 -2
  119. package/packages/theme-chalk/src/nav.scss +3 -2
  120. package/packages/theme-chalk/src/pagination.scss +7 -0
  121. package/packages/theme-chalk/src/selector-panel.scss +2 -1
  122. package/packages/theme-chalk/src/simplicity.scss +355 -58
  123. package/packages/theme-chalk/src/toolbar.scss +16 -4
  124. package/packages/theme-chalk/src/tree.scss +4 -2
  125. package/packages/upload/src/main.vue +3 -1
  126. package/src/config/api.js +3 -1
  127. package/src/index.js +1 -1
package/lib/flow.js CHANGED
@@ -3249,7 +3249,7 @@ var watermark = function watermark(option) {
3249
3249
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3250
3250
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
3251
3251
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
3252
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3252
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
3253
3253
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3254
3254
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3255
3255
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
@@ -3264,12 +3264,15 @@ var watermark = function watermark(option) {
3264
3264
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3265
3265
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
3266
3266
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3267
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3267
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
3268
3268
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3269
3269
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3270
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
3271
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3272
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
3270
3273
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
3271
3274
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
3272
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3275
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
3273
3276
  /* unused harmony export getUserImgUrl */
3274
3277
  /* unused harmony export getDoorIndex */
3275
3278
  /* unused harmony export refreshOnlineUsers */
@@ -3277,19 +3280,18 @@ var watermark = function watermark(option) {
3277
3280
  /* unused harmony export getApplicationIdArray */
3278
3281
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3279
3282
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3280
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
3281
3283
  /* unused harmony export getUserCustomInfo */
3282
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3283
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3284
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
3285
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
3284
3286
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
3285
3287
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
3286
3288
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3287
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3288
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
3289
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
3290
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
3289
3291
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3290
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
3292
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
3291
3293
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3292
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
3294
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
3293
3295
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3294
3296
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3295
3297
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
@@ -3307,13 +3309,13 @@ var watermark = function watermark(option) {
3307
3309
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
3308
3310
  /* unused harmony export getCurrentuser */
3309
3311
  /* unused harmony export mainDetail */
3310
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3311
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3312
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
3313
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
3312
3314
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3313
3315
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3314
3316
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3315
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
3316
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
3317
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
3318
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
3317
3319
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3318
3320
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3319
3321
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
@@ -3322,52 +3324,52 @@ var watermark = function watermark(option) {
3322
3324
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3323
3325
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3324
3326
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3325
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
3327
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
3326
3328
  /* unused harmony export getView */
3327
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
3329
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
3328
3330
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3329
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
3330
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
3331
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
3332
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
3333
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
3334
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
3335
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3336
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3331
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
3332
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
3333
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
3334
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
3335
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
3336
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
3337
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
3338
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
3337
3339
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3338
3340
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
3339
3341
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
3340
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3341
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3342
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
3343
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
3342
3344
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3343
3345
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3344
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
3345
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
3346
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
3346
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
3347
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
3348
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
3347
3349
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3348
3350
  /* unused harmony export historyListJson */
3349
3351
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3350
3352
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3351
3353
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3352
3354
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
3353
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3354
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3355
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
3356
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
3357
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
3358
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
3359
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
3360
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
3361
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
3362
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
3363
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
3364
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
3365
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
3366
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
3355
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
3356
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
3357
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
3358
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
3359
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
3360
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
3361
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
3362
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
3363
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
3364
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
3365
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
3366
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
3367
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
3368
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
3367
3369
  /* unused harmony export sendSave */
3368
3370
  /* unused harmony export sendUpdate */
3369
3371
  /* unused harmony export sendDelete */
3370
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
3372
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
3371
3373
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3372
3374
  // 登录
3373
3375
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3395,6 +3397,9 @@ var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证
3395
3397
  var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
3396
3398
 
3397
3399
  // 框架
3400
+ var userOnline = 'sys/v1/mecpSys/userOnlineListJson.dhtml'; // 在线人数列表
3401
+ var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3402
+ var recordUserApp = '/sysv3/sysUucApp/recordUserApp'; // 记录应用点击率
3398
3403
  var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
3399
3404
  var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
3400
3405
  var updateUserInfo = '/main2/main/updateUserInfo'; // 更新用户信息
@@ -3405,7 +3410,6 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
3405
3410
  var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
3406
3411
  var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
3407
3412
  var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
3408
- var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
3409
3413
  var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
3410
3414
  var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
3411
3415
  // 框架 - 系统消息
@@ -4082,7 +4086,7 @@ var component = Object(componentNormalizer["a" /* default */])(
4082
4086
  // ESM COMPAT FLAG
4083
4087
  __webpack_require__.r(__webpack_exports__);
4084
4088
 
4085
- // 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=4080350e&
4089
+ // 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=70282cba&
4086
4090
  var render = function () {
4087
4091
  var _vm = this
4088
4092
  var _h = _vm.$createElement
@@ -4422,6 +4426,52 @@ var render = function () {
4422
4426
  ],
4423
4427
  1
4424
4428
  ),
4429
+ _vm.isCanPreAddSign
4430
+ ? _c(
4431
+ "el-form-item",
4432
+ {
4433
+ attrs: {
4434
+ prop: "addSignMode",
4435
+ label: "加签模式",
4436
+ rules: [
4437
+ { required: true, trigger: "blur" },
4438
+ ],
4439
+ },
4440
+ },
4441
+ [
4442
+ _c(
4443
+ "el-radio-group",
4444
+ {
4445
+ model: {
4446
+ value: _vm.nextNode.addSignMode,
4447
+ callback: function ($$v) {
4448
+ _vm.$set(
4449
+ _vm.nextNode,
4450
+ "addSignMode",
4451
+ $$v
4452
+ )
4453
+ },
4454
+ expression: "nextNode.addSignMode",
4455
+ },
4456
+ },
4457
+ [
4458
+ _c(
4459
+ "el-radio",
4460
+ { attrs: { label: "preAddSign" } },
4461
+ [_vm._v("前置加签")]
4462
+ ),
4463
+ _c(
4464
+ "el-radio",
4465
+ { attrs: { label: "postAddSign" } },
4466
+ [_vm._v("后置加签")]
4467
+ ),
4468
+ ],
4469
+ 1
4470
+ ),
4471
+ ],
4472
+ 1
4473
+ )
4474
+ : _vm._e(),
4425
4475
  ],
4426
4476
  1
4427
4477
  ),
@@ -5148,7 +5198,7 @@ var render = function () {
5148
5198
  },
5149
5199
  ],
5150
5200
  staticStyle: {
5151
- "{\n border": "1px solid #ccc",
5201
+ border: "1px solid #ccc",
5152
5202
  padding: "5px",
5153
5203
  "border-radius": "5px",
5154
5204
  "font-size": "13px",
@@ -5807,7 +5857,7 @@ var staticRenderFns = []
5807
5857
  render._withStripped = true
5808
5858
 
5809
5859
 
5810
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=4080350e&
5860
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=70282cba&
5811
5861
 
5812
5862
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
5813
5863
  var regenerator_ = __webpack_require__(13);
@@ -6761,7 +6811,7 @@ var _components;
6761
6811
  }
6762
6812
  this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
6763
6813
  util["a" /* default */].ajax({
6764
- url: data.id ? api["Vb" /* updateCommonOpinion */] : api["ob" /* saveCommonOpinion */],
6814
+ url: data.id ? api["Wb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
6765
6815
  data: info,
6766
6816
  header: { 'Content-Type': 'multipart/form-data' },
6767
6817
  method: 'post'
@@ -9333,7 +9383,7 @@ var processFormvue_type_script_lang_js_components;
9333
9383
  opinion: _this4.newOpinion || newOpinion
9334
9384
  };
9335
9385
  if (_this4.activeNames != '1') delete params.customPresetUserJson;
9336
- util["a" /* default */].ajax({ url: api["mb" /* register */], method: 'post', data: params }).then(function (res) {
9386
+ util["a" /* default */].ajax({ url: api["nb" /* register */], method: 'post', data: params }).then(function (res) {
9337
9387
  var status = res.status,
9338
9388
  message = res.message;
9339
9389
 
@@ -9519,7 +9569,7 @@ var processFormvue_type_script_lang_js_components;
9519
9569
  businessId: this.businessId
9520
9570
  };
9521
9571
  // 获取节点
9522
- util["a" /* default */].ajax({ url: api["Ib" /* toStartFlow */], params: params }).then(function (res) {
9572
+ util["a" /* default */].ajax({ url: api["Jb" /* toStartFlow */], params: params }).then(function (res) {
9523
9573
  //pc接口返回数据处理
9524
9574
  var status = res.status,
9525
9575
  message = res.message,
@@ -9966,7 +10016,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
9966
10016
  notificationType = _sendInfo.notificationType;
9967
10017
 
9968
10018
  var params = {
9969
- url: api["tb" /* sendMsg */],
10019
+ url: api["ub" /* sendMsg */],
9970
10020
  headers: { Accept: 'application/json,text/plain' },
9971
10021
  method: 'post',
9972
10022
  data: {
@@ -10028,7 +10078,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
10028
10078
 
10029
10079
  this.loading = true;
10030
10080
  util["a" /* default */].ajax({
10031
- url: api["Hb" /* toSendMsg */],
10081
+ url: api["Ib" /* toSendMsg */],
10032
10082
  params: { pendingId: this.$attrs.pendingId }
10033
10083
  }).then(function (res) {
10034
10084
  var status = res.status,
@@ -10846,7 +10896,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
10846
10896
  userId: util["a" /* default */].getStorage('userId'),
10847
10897
  nextNodeId: _this2.nextNode.nextNodeId
10848
10898
  };
10849
- util["a" /* default */].ajax({ url: api["yb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
10899
+ util["a" /* default */].ajax({ url: api["zb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
10850
10900
  var status = res.status,
10851
10901
  message = res.message;
10852
10902
 
@@ -10901,7 +10951,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
10901
10951
  isSinglePage: false,
10902
10952
  opinion: this.option
10903
10953
  };
10904
- util["a" /* default */].ajax({ url: api["Lb" /* toTaskRejectHtml */], params: params }).then(function (res) {
10954
+ util["a" /* default */].ajax({ url: api["Mb" /* toTaskRejectHtml */], params: params }).then(function (res) {
10905
10955
  var status = res.status,
10906
10956
  message = res.message,
10907
10957
  _res$data = res.data,
@@ -11577,7 +11627,7 @@ var startTaskReadvue_type_script_lang_js_components;
11577
11627
  taskExamine = this.taskExamine;
11578
11628
 
11579
11629
  var params = {
11580
- url: api["Pb" /* toTaskTransferIndex */],
11630
+ url: api["Qb" /* toTaskTransferIndex */],
11581
11631
  params: {
11582
11632
  opinion: opinion,
11583
11633
  pendingId: pendingId,
@@ -11702,7 +11752,7 @@ var startTaskReadvue_type_script_lang_js_components;
11702
11752
  var _this3 = this;
11703
11753
 
11704
11754
  var params = {
11705
- url: api["Jb" /* toStartTaskRead */],
11755
+ url: api["Kb" /* toStartTaskRead */],
11706
11756
  params: { pendingId: this.pendingId, taskAction: this.type }
11707
11757
  };
11708
11758
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -11775,7 +11825,7 @@ var startTaskReadvue_type_script_lang_js_components;
11775
11825
  type = this.type;
11776
11826
 
11777
11827
  var params = {
11778
- url: api["Cb" /* taskTransfer */],
11828
+ url: api["Db" /* taskTransfer */],
11779
11829
  data: {
11780
11830
  choiceDeptId: choiceDeptId,
11781
11831
  choiceOrgId: choiceOrgId,
@@ -11869,7 +11919,7 @@ var startTaskReadvue_type_script_lang_js_components;
11869
11919
  !download && delete params.isDownload;
11870
11920
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
11871
11921
  util["a" /* default */].ajax({
11872
- url: api["xb" /* taskReadHtml */],
11922
+ url: api["yb" /* taskReadHtml */],
11873
11923
  params: { taskAction: _this7.type },
11874
11924
  headers: {
11875
11925
  Accept: 'application/json,text/plain'
@@ -12362,7 +12412,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12362
12412
  pendingId = this.pendingId;
12363
12413
 
12364
12414
  var params = {
12365
- url: api["zb" /* taskReview */],
12415
+ url: api["Ab" /* taskReview */],
12366
12416
  data: {
12367
12417
  nextUserId: nextOtherOrgObj.join(','),
12368
12418
  notificationType: noticeType.join(','),
@@ -12398,7 +12448,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12398
12448
  var _this2 = this;
12399
12449
 
12400
12450
  var params = {
12401
- url: api["Mb" /* toTaskReview */],
12451
+ url: api["Nb" /* toTaskReview */],
12402
12452
  params: { pendingId: this.pendingId }
12403
12453
  };
12404
12454
  util["a" /* default */].ajax(params).then(function (res) {
@@ -12433,7 +12483,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12433
12483
  var _this3 = this;
12434
12484
 
12435
12485
  var params = {
12436
- url: this.type == 'takeAdvice' ? api["Ob" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Nb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Rb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Sb" /* toTwoOfficesDispatch */] : api["Qb" /* toTaskUnionExamine */],
12486
+ url: this.type == 'takeAdvice' ? api["Pb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Ob" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Sb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Tb" /* toTwoOfficesDispatch */] : api["Rb" /* toTaskUnionExamine */],
12437
12487
  params: { pendingId: this.pendingId },
12438
12488
  headers: { Accept: 'application/json,text/plain' }
12439
12489
  };
@@ -12527,7 +12577,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
12527
12577
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
12528
12578
  // return this.$message.warning('暂未开放,敬请期待!');
12529
12579
  var param = {
12530
- url: this.type === 'startDraf' ? api["Ab" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Eb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Ub" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Bb" /* taskTakeAdvice */] : api["Db" /* taskUnionExamine */],
12580
+ url: this.type === 'startDraf' ? api["Bb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Fb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Vb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Cb" /* taskTakeAdvice */] : api["Eb" /* taskUnionExamine */],
12531
12581
  data: {
12532
12582
  opinion: opinion,
12533
12583
  pendingId: pendingId,
@@ -13337,6 +13387,15 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13337
13387
  //
13338
13388
  //
13339
13389
  //
13390
+ //
13391
+ //
13392
+ //
13393
+ //
13394
+ //
13395
+ //
13396
+ //
13397
+ //
13398
+ //
13340
13399
 
13341
13400
 
13342
13401
 
@@ -13389,6 +13448,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13389
13448
  return _ref = {
13390
13449
  styles: {},
13391
13450
  userModel: {},
13451
+ isCanPreAddSign: false,
13392
13452
  nextOtherOrgObjSelect: [],
13393
13453
  subProcessColumns: [],
13394
13454
  nextCurrentOrgObjSelect: [],
@@ -13478,6 +13538,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13478
13538
  }
13479
13539
  }, _ref['isLimitedTimeHandling'] = false, _ref.moreList = [], _ref.newsList = [], _ref.isSpecial = false, _ref.taskId = '', _ref.showNews = false, _ref.userInfo = '', _ref.objType = '', _ref.nodeDefaultSubmitOpinion = '', _ref.nodeDefaultRejectOpinion = '', _ref.choiceOrgId = '', _ref.choiceDeptId = '', _ref.pOrgId = '', _ref.isOpinionRequired = 0, _ref.nextUserSelectList = [], _ref.processObj = {}, _ref.pid = '123', _ref.isCanRemoveSign = false, _ref.isCanAddSign = false, _ref.AddSignUserList = [], _ref.RemoveSignUserList = [], _ref.operationList = [], _ref.userList = [], _ref.handleMode = '', _ref.countersignaturetypeCode = 0, _ref.presetEdit = 0, _ref.isShowNextUser = true, _ref.nextUserTypes = ['employee', 'persongroup'], _ref.nextUserTabs = {}, _ref.presetReadUserId = [], _ref.nextNode = {
13480
13540
  nextNodeId: '', // 下步节点
13541
+ addSignMode: 'postAddSign',
13481
13542
  isAddSign: '', // 是否加签
13482
13543
  isRemoveSign: '', // 是否减签
13483
13544
  nextOperate: '', // 下步操作
@@ -13734,7 +13795,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13734
13795
  taskAction: 'complete'
13735
13796
  };
13736
13797
  util["a" /* default */].ajax({
13737
- url: api["xb" /* taskReadHtml */],
13798
+ url: api["yb" /* taskReadHtml */],
13738
13799
  params: { taskAction: 'complete' },
13739
13800
  headers: {
13740
13801
  Accept: 'application/json,text/plain'
@@ -13766,7 +13827,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13766
13827
 
13767
13828
  this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
13768
13829
  util["a" /* default */].ajax({
13769
- url: api["Kb" /* toStartTaskReadIndex */],
13830
+ url: api["Lb" /* toStartTaskReadIndex */],
13770
13831
  params: { pendingId: this.pendingId }
13771
13832
  }).then(function (res) {
13772
13833
  var status = res.status,
@@ -13901,7 +13962,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13901
13962
  pendingId: this.pendingId
13902
13963
  };
13903
13964
  this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
13904
- util["a" /* default */].ajax({ url: api["Fb" /* tempSave */], params: params }).then(function (res) {
13965
+ util["a" /* default */].ajax({ url: api["Gb" /* tempSave */], params: params }).then(function (res) {
13905
13966
  var status = res.status,
13906
13967
  message = res.message;
13907
13968
 
@@ -13938,7 +13999,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
13938
13999
  _this8.showReject = true;
13939
14000
  }).catch(function (e) {});
13940
14001
  } else {
13941
-
13942
14002
  this.showReject = true;
13943
14003
  }
13944
14004
  },
@@ -14251,7 +14311,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
14251
14311
  if (!this.$refs.commonOpinions.validate()) return;
14252
14312
  }
14253
14313
  if (this.beforeSubmit != undefined) {
14254
-
14255
14314
  this.beforeSubmit().then(function (next) {
14256
14315
  _this18.saveRejectAndEnd(res);
14257
14316
  }).catch(function (e) {});
@@ -14263,10 +14322,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
14263
14322
  var _this19 = this;
14264
14323
 
14265
14324
  this.$confirm('确认' + res.value + '?').then(function () {
14266
-
14267
14325
  // return this.$message.warning('请填写意见');
14268
14326
  var params = {
14269
- url: api["nb" /* rejectAndEnd */],
14327
+ url: api["ob" /* rejectAndEnd */],
14270
14328
  headers: { Accept: 'application/json,text/plain' },
14271
14329
  method: 'post',
14272
14330
  data: {
@@ -14610,12 +14668,14 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
14610
14668
  isSpecial = _res$data2.isSpecial,
14611
14669
  canPresetRead = _res$data2.canPresetRead,
14612
14670
  isCdjxjTaskHandle = _res$data2.isCdjxjTaskHandle,
14613
- taskButtonList = _res$data2.taskButtonList;
14671
+ taskButtonList = _res$data2.taskButtonList,
14672
+ isCanPreAddSign = _res$data2.isCanPreAddSign;
14614
14673
 
14615
14674
  _this23.$emit('startTaskRead', res);
14616
14675
  _this23.$emit('start-task-read', res);
14617
14676
  _this23.currentOrgName = currentOrgName;
14618
14677
  _this23.otherOrgName = otherOrgName;
14678
+ _this23.isCanPreAddSign = isCanPreAddSign;
14619
14679
  _this23.endFlowInfo.choiceOrgId = choiceOrgId;
14620
14680
  _this23.endFlowInfo.choiceDeptId = choiceDeptId;
14621
14681
  _this23.endFlowInfo.pendingId = _this23.pendingId;
@@ -15003,7 +15063,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
15003
15063
  switch (_context.prev = _context.next) {
15004
15064
  case 0:
15005
15065
  if (!valid) {
15006
- _context.next = 42;
15066
+ _context.next = 43;
15007
15067
  break;
15008
15068
  }
15009
15069
 
@@ -15066,6 +15126,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
15066
15126
  notificationType = _this27.nextNode.notificationType.join(',');
15067
15127
  addSignUserId = addSignUserId.join(',');
15068
15128
  removeSignUserId = removeSignUserId.join(',');
15129
+ if (!_this27.isCanPreAddSign) {
15130
+ delete _this27.nextNode.addSignMode;
15131
+ }
15069
15132
  params = mainvue_type_script_lang_js_extends({}, _this27.nextNode, {
15070
15133
  pendingId: _this27.pendingId,
15071
15134
  opinion: _this27.isForceDisplayDefaultOptionForPrefix && !_this27.value.startsWith(_this27.nodeDefaultSubmitOpinion) ? _this27.nodeDefaultSubmitOpinion + _this27.value : _this27.value,
@@ -15102,7 +15165,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
15102
15165
  params.isSubFlow = taskExamineInfo.isSubFlow;
15103
15166
  params.nodeId = taskExamineInfo.nodeId;
15104
15167
  params.needRetrialAuth = needRetrialAuth;
15105
- return _context.abrupt('return', util["a" /* default */].ajax({ url: api["wb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
15168
+ return _context.abrupt('return', util["a" /* default */].ajax({ url: api["xb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
15106
15169
  var status = res.status,
15107
15170
  message = res.message;
15108
15171
 
@@ -15121,10 +15184,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
15121
15184
  }
15122
15185
  }));
15123
15186
 
15124
- case 42:
15187
+ case 43:
15125
15188
  return _context.abrupt('return', false);
15126
15189
 
15127
- case 43:
15190
+ case 44:
15128
15191
  case 'end':
15129
15192
  return _context.stop();
15130
15193
  }