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.
- package/lib/button-group.js +76 -53
- package/lib/button.js +51 -46
- package/lib/checkbox-group.js +49 -45
- package/lib/clients.js +4 -3
- package/lib/config/api.js +3 -1
- package/lib/data-table-form.js +49 -45
- package/lib/data-table.js +443 -240
- package/lib/date-picker.js +49 -45
- package/lib/dialog.js +58 -53
- package/lib/eoss-ui.common.js +3698 -2064
- package/lib/flow-group.js +52 -48
- package/lib/flow-list.js +50 -46
- package/lib/flow.js +138 -75
- package/lib/form.js +96 -49
- package/lib/handle-user.js +66 -49
- package/lib/handler.js +61 -48
- package/lib/icon.js +49 -45
- package/lib/index.js +1 -1
- package/lib/input-number.js +49 -45
- package/lib/input.js +49 -45
- package/lib/login.js +64 -53
- package/lib/main.js +2632 -1466
- package/lib/menu.js +1 -1
- package/lib/nav.js +49 -45
- package/lib/notify.js +54 -50
- package/lib/page.js +49 -45
- package/lib/pagination.js +3719 -3
- package/lib/player.js +54 -50
- package/lib/qr-code.js +49 -45
- package/lib/radio-group.js +49 -45
- package/lib/retrial-auth.js +50 -46
- package/lib/select-ganged.js +49 -45
- package/lib/select.js +50 -46
- package/lib/selector-panel.js +115 -63
- package/lib/selector.js +491 -422
- package/lib/sizer.js +49 -45
- package/lib/steps.js +49 -45
- package/lib/switch.js +49 -45
- package/lib/table-form.js +49 -45
- package/lib/tabs.js +49 -45
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/button-group.css +1 -1
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/handler.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/menu.css +1 -1
- package/lib/theme-chalk/nav.css +1 -1
- package/lib/theme-chalk/pagination.css +1 -1
- package/lib/theme-chalk/selector-panel.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/theme-chalk/sizer.css +1 -1
- package/lib/theme-chalk/toolbar.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +49 -45
- package/lib/tree-group.js +49 -45
- package/lib/tree.js +49 -45
- package/lib/upload.js +59 -55
- package/lib/wujie.js +49 -45
- package/lib/wxlogin.js +49 -45
- package/package.json +2 -2
- package/packages/button/src/main.vue +2 -1
- package/packages/button-group/src/main.vue +8 -6
- package/packages/clients/src/main.vue +2 -1
- package/packages/data-table/src/column.vue +113 -41
- package/packages/data-table/src/formItem.vue +430 -0
- package/packages/data-table/src/main.vue +85 -45
- package/packages/data-table/src/sizer.vue +2 -0
- package/packages/dialog/src/main.vue +4 -3
- package/packages/flow/src/main.vue +30 -17
- package/packages/flow-group/src/main.vue +1 -1
- package/packages/form/src/main.vue +45 -10
- package/packages/handle-user/src/main.vue +10 -3
- package/packages/handler/src/main.vue +5 -3
- package/packages/login/src/main.vue +13 -6
- package/packages/main/src/default/index.vue +102 -179
- package/packages/main/src/main.vue +243 -16
- package/packages/main/src/public/online.vue +90 -0
- package/packages/main/src/simplicity/apps.vue +176 -145
- package/packages/main/src/simplicity/avatar.vue +16 -6
- package/packages/main/src/simplicity/handler.vue +6 -2
- package/packages/main/src/simplicity/index.vue +477 -323
- package/packages/main/src/simplicity/menu-list.vue +75 -24
- package/packages/main/src/simplicity/message.vue +35 -25
- package/packages/main/src/simplicity/notice.vue +72 -39
- package/packages/main/src/simplicity/router-page.vue +53 -0
- package/packages/main/src/simplicity/settings.vue +1 -1
- package/packages/main/src/simplicity/sub-menu.vue +169 -54
- package/packages/main/src/simplicity/user.vue +10 -5
- package/packages/main/src/simplicity/userinfo.vue +1 -0
- package/packages/menu/src/main.vue +4 -3
- package/packages/pagination/src/main.vue +20 -1
- package/packages/select/src/main.vue +4 -1
- package/packages/selector/src/main.vue +151 -136
- package/packages/selector-panel/src/main.vue +23 -9
- package/packages/selector-panel/src/selection.vue +6 -0
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/button-group.css +1 -1
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/handler.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/menu.css +1 -1
- package/packages/theme-chalk/lib/nav.css +1 -1
- package/packages/theme-chalk/lib/pagination.css +1 -1
- package/packages/theme-chalk/lib/selector-panel.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/lib/sizer.css +1 -1
- package/packages/theme-chalk/lib/toolbar.css +1 -1
- package/packages/theme-chalk/lib/tree.css +1 -1
- package/packages/theme-chalk/lib/upload.css +1 -1
- package/packages/theme-chalk/src/base.scss +5 -0
- package/packages/theme-chalk/src/button-group.scss +18 -4
- package/packages/theme-chalk/src/common/var.scss +9 -2
- package/packages/theme-chalk/src/data-table.scss +60 -23
- package/packages/theme-chalk/src/handler.scss +5 -1
- package/packages/theme-chalk/src/login.scss +2 -2
- package/packages/theme-chalk/src/nav.scss +3 -2
- package/packages/theme-chalk/src/pagination.scss +7 -0
- package/packages/theme-chalk/src/selector-panel.scss +2 -1
- package/packages/theme-chalk/src/simplicity.scss +355 -58
- package/packages/theme-chalk/src/toolbar.scss +16 -4
- package/packages/theme-chalk/src/tree.scss +4 -2
- package/packages/upload/src/main.vue +3 -1
- package/src/config/api.js +3 -1
- package/src/index.js +1 -1
package/lib/form.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__, "
|
|
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__, "
|
|
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__, "
|
|
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__, "
|
|
3283
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
3288
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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__, "
|
|
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__, "
|
|
3311
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
3316
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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__, "
|
|
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__, "
|
|
3330
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3331
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3332
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3334
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3335
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3336
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
3341
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
3345
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3346
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
3354
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3356
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3357
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3359
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3360
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3361
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3362
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
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__, "
|
|
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
|
// 框架 - 系统消息
|
|
@@ -3950,7 +3954,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
|
|
|
3950
3954
|
// ESM COMPAT FLAG
|
|
3951
3955
|
__webpack_require__.r(__webpack_exports__);
|
|
3952
3956
|
|
|
3953
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=
|
|
3957
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=05941101&
|
|
3954
3958
|
var render = function () {
|
|
3955
3959
|
var _vm = this
|
|
3956
3960
|
var _h = _vm.$createElement
|
|
@@ -4575,6 +4579,7 @@ var render = function () {
|
|
|
4575
4579
|
item.showLabel !==
|
|
4576
4580
|
false &&
|
|
4577
4581
|
item.label &&
|
|
4582
|
+
!item.labelHide &&
|
|
4578
4583
|
_vm.showLabel
|
|
4579
4584
|
? _vm.labelWidth
|
|
4580
4585
|
: "0",
|
|
@@ -4641,6 +4646,7 @@ var render = function () {
|
|
|
4641
4646
|
item.showLabel !==
|
|
4642
4647
|
false &&
|
|
4643
4648
|
item.label &&
|
|
4649
|
+
!item.labelHide &&
|
|
4644
4650
|
_vm.showLabel
|
|
4645
4651
|
? _c(
|
|
4646
4652
|
"es-label",
|
|
@@ -7404,6 +7410,7 @@ var render = function () {
|
|
|
7404
7410
|
"label-width":
|
|
7405
7411
|
item.showLabel !== false &&
|
|
7406
7412
|
item.label &&
|
|
7413
|
+
!item.labelHide &&
|
|
7407
7414
|
_vm.showLabel
|
|
7408
7415
|
? _vm.labelWidth
|
|
7409
7416
|
: "0",
|
|
@@ -7457,6 +7464,7 @@ var render = function () {
|
|
|
7457
7464
|
[
|
|
7458
7465
|
item.showLabel !== false &&
|
|
7459
7466
|
item.label &&
|
|
7467
|
+
!item.labelHide &&
|
|
7460
7468
|
_vm.showLabel
|
|
7461
7469
|
? _c(
|
|
7462
7470
|
"es-label",
|
|
@@ -10393,6 +10401,7 @@ var render = function () {
|
|
|
10393
10401
|
item.showLabel !==
|
|
10394
10402
|
false &&
|
|
10395
10403
|
item.label &&
|
|
10404
|
+
!item.labelHide &&
|
|
10396
10405
|
_vm.showLabel
|
|
10397
10406
|
? _vm.labelWidth
|
|
10398
10407
|
: "0",
|
|
@@ -10454,6 +10463,7 @@ var render = function () {
|
|
|
10454
10463
|
item.showLabel !==
|
|
10455
10464
|
false &&
|
|
10456
10465
|
item.label &&
|
|
10466
|
+
!item.labelHide &&
|
|
10457
10467
|
_vm.showLabel
|
|
10458
10468
|
? _c(
|
|
10459
10469
|
"es-label",
|
|
@@ -13055,6 +13065,7 @@ var render = function () {
|
|
|
13055
13065
|
"label-width":
|
|
13056
13066
|
item.showLabel !== false &&
|
|
13057
13067
|
item.label &&
|
|
13068
|
+
!item.labelHide &&
|
|
13058
13069
|
_vm.showLabel
|
|
13059
13070
|
? _vm.labelWidth
|
|
13060
13071
|
: "0",
|
|
@@ -13101,6 +13112,7 @@ var render = function () {
|
|
|
13101
13112
|
[
|
|
13102
13113
|
item.showLabel !== false &&
|
|
13103
13114
|
item.label &&
|
|
13115
|
+
!item.labelHide &&
|
|
13104
13116
|
_vm.showLabel
|
|
13105
13117
|
? _c(
|
|
13106
13118
|
"es-label",
|
|
@@ -15478,7 +15490,7 @@ var staticRenderFns = []
|
|
|
15478
15490
|
render._withStripped = true
|
|
15479
15491
|
|
|
15480
15492
|
|
|
15481
|
-
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=
|
|
15493
|
+
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=05941101&
|
|
15482
15494
|
|
|
15483
15495
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
15484
15496
|
var regenerator_ = __webpack_require__(13);
|
|
@@ -19520,6 +19532,36 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19520
19532
|
//
|
|
19521
19533
|
//
|
|
19522
19534
|
//
|
|
19535
|
+
//
|
|
19536
|
+
//
|
|
19537
|
+
//
|
|
19538
|
+
//
|
|
19539
|
+
//
|
|
19540
|
+
//
|
|
19541
|
+
//
|
|
19542
|
+
//
|
|
19543
|
+
//
|
|
19544
|
+
//
|
|
19545
|
+
//
|
|
19546
|
+
//
|
|
19547
|
+
//
|
|
19548
|
+
//
|
|
19549
|
+
//
|
|
19550
|
+
//
|
|
19551
|
+
//
|
|
19552
|
+
//
|
|
19553
|
+
//
|
|
19554
|
+
//
|
|
19555
|
+
//
|
|
19556
|
+
//
|
|
19557
|
+
//
|
|
19558
|
+
//
|
|
19559
|
+
//
|
|
19560
|
+
//
|
|
19561
|
+
//
|
|
19562
|
+
//
|
|
19563
|
+
//
|
|
19564
|
+
//
|
|
19523
19565
|
|
|
19524
19566
|
|
|
19525
19567
|
|
|
@@ -19701,7 +19743,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19701
19743
|
return {};
|
|
19702
19744
|
}
|
|
19703
19745
|
},
|
|
19704
|
-
active: Array
|
|
19746
|
+
active: Array,
|
|
19747
|
+
resetActive: Boolean
|
|
19705
19748
|
},
|
|
19706
19749
|
data: function data() {
|
|
19707
19750
|
return {
|
|
@@ -19908,7 +19951,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19908
19951
|
}
|
|
19909
19952
|
});
|
|
19910
19953
|
if (!this.active || this.active && !this.active.length) {
|
|
19911
|
-
this.
|
|
19954
|
+
if (this.resetActive) {
|
|
19955
|
+
this.activeNames = names;
|
|
19956
|
+
} else if (this.activeNames.length == 0) {
|
|
19957
|
+
this.activeNames = names;
|
|
19958
|
+
}
|
|
19912
19959
|
}
|
|
19913
19960
|
this.content = contents;
|
|
19914
19961
|
if (this.content.length === 1) {
|
package/lib/handle-user.js
CHANGED
|
@@ -3251,7 +3251,7 @@ var watermark = function watermark(option) {
|
|
|
3251
3251
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3252
3252
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
3253
3253
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
3254
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3254
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
|
|
3255
3255
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3256
3256
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3257
3257
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -3266,12 +3266,15 @@ var watermark = function watermark(option) {
|
|
|
3266
3266
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3267
3267
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
|
|
3268
3268
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
|
|
3269
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3269
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
3270
3270
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3271
3271
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3272
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
|
|
3273
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3274
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
3272
3275
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
3273
3276
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
3274
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3277
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
|
|
3275
3278
|
/* unused harmony export getUserImgUrl */
|
|
3276
3279
|
/* unused harmony export getDoorIndex */
|
|
3277
3280
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3279,19 +3282,18 @@ var watermark = function watermark(option) {
|
|
|
3279
3282
|
/* unused harmony export getApplicationIdArray */
|
|
3280
3283
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3281
3284
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3282
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3283
3285
|
/* unused harmony export getUserCustomInfo */
|
|
3284
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3285
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3286
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
|
|
3287
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
|
|
3286
3288
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
3287
3289
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
3288
3290
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3289
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3290
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3291
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
|
|
3292
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
|
|
3291
3293
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3292
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3294
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
|
|
3293
3295
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3294
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3296
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
|
|
3295
3297
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3296
3298
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3297
3299
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -3309,13 +3311,13 @@ var watermark = function watermark(option) {
|
|
|
3309
3311
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
3310
3312
|
/* unused harmony export getCurrentuser */
|
|
3311
3313
|
/* unused harmony export mainDetail */
|
|
3312
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3313
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3314
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
|
|
3315
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
|
|
3314
3316
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3315
3317
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3316
3318
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3317
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3318
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3319
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
3320
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
|
|
3319
3321
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3320
3322
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3321
3323
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -3324,52 +3326,52 @@ var watermark = function watermark(option) {
|
|
|
3324
3326
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3325
3327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3326
3328
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3327
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3329
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
|
|
3328
3330
|
/* unused harmony export getView */
|
|
3329
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3331
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
3330
3332
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
3331
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3332
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3334
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3335
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3336
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3337
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3338
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
|
|
3334
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
|
|
3335
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
|
|
3336
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
|
|
3337
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
|
|
3338
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
3339
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
|
|
3340
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
|
|
3339
3341
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3340
3342
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
3341
3343
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
|
|
3342
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3343
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3344
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
|
|
3345
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
|
|
3344
3346
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3345
3347
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
3346
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3347
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3348
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3348
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
|
|
3349
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
|
|
3350
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
|
|
3349
3351
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3350
3352
|
/* unused harmony export historyListJson */
|
|
3351
3353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3352
3354
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3353
3355
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3354
3356
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
|
|
3355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3356
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3357
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3359
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3360
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3361
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3362
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3367
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3368
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3357
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
|
|
3358
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
|
|
3359
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
|
|
3360
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
|
|
3361
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
|
|
3362
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
|
|
3363
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
|
|
3364
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
|
|
3365
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
|
|
3366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
|
|
3367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
|
|
3368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
|
|
3369
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
|
|
3370
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
|
|
3369
3371
|
/* unused harmony export sendSave */
|
|
3370
3372
|
/* unused harmony export sendUpdate */
|
|
3371
3373
|
/* unused harmony export sendDelete */
|
|
3372
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3374
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
|
|
3373
3375
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3374
3376
|
// 登录
|
|
3375
3377
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3397,6 +3399,9 @@ var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证
|
|
|
3397
3399
|
var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
|
|
3398
3400
|
|
|
3399
3401
|
// 框架
|
|
3402
|
+
var userOnline = 'sys/v1/mecpSys/userOnlineListJson.dhtml'; // 在线人数列表
|
|
3403
|
+
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3404
|
+
var recordUserApp = '/sysv3/sysUucApp/recordUserApp'; // 记录应用点击率
|
|
3400
3405
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
3401
3406
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
3402
3407
|
var updateUserInfo = '/main2/main/updateUserInfo'; // 更新用户信息
|
|
@@ -3407,7 +3412,6 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
|
|
|
3407
3412
|
var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
|
|
3408
3413
|
var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
|
|
3409
3414
|
var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
|
|
3410
|
-
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3411
3415
|
var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
|
|
3412
3416
|
var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
|
|
3413
3417
|
// 框架 - 系统消息
|
|
@@ -3753,7 +3757,7 @@ module.exports = require("qs");
|
|
|
3753
3757
|
// ESM COMPAT FLAG
|
|
3754
3758
|
__webpack_require__.r(__webpack_exports__);
|
|
3755
3759
|
|
|
3756
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=
|
|
3760
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=72c54dae&
|
|
3757
3761
|
var render = function () {
|
|
3758
3762
|
var _vm = this
|
|
3759
3763
|
var _h = _vm.$createElement
|
|
@@ -3810,7 +3814,13 @@ var render = function () {
|
|
|
3810
3814
|
),
|
|
3811
3815
|
_c(
|
|
3812
3816
|
"el-dropdown-menu",
|
|
3813
|
-
{
|
|
3817
|
+
{
|
|
3818
|
+
attrs: {
|
|
3819
|
+
slot: "dropdown",
|
|
3820
|
+
"max-height": _vm.jobScrollbar ? undefined : 0,
|
|
3821
|
+
},
|
|
3822
|
+
slot: "dropdown",
|
|
3823
|
+
},
|
|
3814
3824
|
_vm._l(_vm.user.identityList, function (ele, ins) {
|
|
3815
3825
|
return _c(
|
|
3816
3826
|
"el-dropdown-item",
|
|
@@ -3841,7 +3851,7 @@ var staticRenderFns = []
|
|
|
3841
3851
|
render._withStripped = true
|
|
3842
3852
|
|
|
3843
3853
|
|
|
3844
|
-
// CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=
|
|
3854
|
+
// CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=72c54dae&
|
|
3845
3855
|
|
|
3846
3856
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
3847
3857
|
var api = __webpack_require__(1);
|
|
@@ -3890,6 +3900,9 @@ var util = __webpack_require__(0);
|
|
|
3890
3900
|
//
|
|
3891
3901
|
//
|
|
3892
3902
|
//
|
|
3903
|
+
//
|
|
3904
|
+
//
|
|
3905
|
+
//
|
|
3893
3906
|
|
|
3894
3907
|
|
|
3895
3908
|
|
|
@@ -3897,6 +3910,10 @@ var util = __webpack_require__(0);
|
|
|
3897
3910
|
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
|
3898
3911
|
name: 'EsHandleUser',
|
|
3899
3912
|
props: {
|
|
3913
|
+
jobScrollbar: {
|
|
3914
|
+
type: Boolean,
|
|
3915
|
+
default: true
|
|
3916
|
+
},
|
|
3900
3917
|
data: Object,
|
|
3901
3918
|
userModel: Object
|
|
3902
3919
|
},
|
|
@@ -3939,7 +3956,7 @@ var util = __webpack_require__(0);
|
|
|
3939
3956
|
|
|
3940
3957
|
if (this.job.id !== item.id) {
|
|
3941
3958
|
this.job = item;
|
|
3942
|
-
util["a" /* default */].ajax({ url: api["
|
|
3959
|
+
util["a" /* default */].ajax({ url: api["vb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
|
|
3943
3960
|
if (res.rCode == 0) {
|
|
3944
3961
|
util["a" /* default */].setStorage({
|
|
3945
3962
|
type: _this.storage,
|