eoss-ui 0.5.81-beta2 → 0.5.81-beta21
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 +471 -256
- package/lib/date-picker.js +49 -45
- package/lib/dialog.js +71 -70
- package/lib/eoss-ui.common.js +4165 -2449
- package/lib/flow-group.js +98 -63
- package/lib/flow-list.js +50 -46
- package/lib/flow.js +152 -83
- 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 +2677 -1479
- 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 +117 -65
- package/lib/selector.js +493 -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 +86 -79
- 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/tabs.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 +3 -3
- 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 +132 -53
- 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 +17 -23
- package/packages/flow/src/main.vue +32 -17
- package/packages/flow-group/src/main.vue +18 -11
- 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 +555 -344
- 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 +44 -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 +152 -136
- package/packages/selector-panel/src/main.vue +23 -9
- package/packages/selector-panel/src/selection.vue +8 -2
- package/packages/tabs/src/main.vue +14 -14
- 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/tabs.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/tabs.scss +24 -28
- 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/wxlogin.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
|
// 框架 - 系统消息
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eoss-ui",
|
|
3
|
-
"version": "0.5.81-
|
|
3
|
+
"version": "0.5.81-beta21",
|
|
4
4
|
"description": "eoss内部业务组件",
|
|
5
5
|
"main": "lib/eoss-ui.common.js",
|
|
6
6
|
"files": [
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"stompjs": "^2.3.3",
|
|
70
70
|
"throttle-debounce": "^5.0.2",
|
|
71
71
|
"video.js": "^8.0.4",
|
|
72
|
-
"wujie-vue2": "^1.0.
|
|
72
|
+
"wujie-vue2": "^1.0.22"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"vue": "^2.5.22"
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"cp-cli": "^1.0.2",
|
|
98
98
|
"cross-env": "^3.1.3",
|
|
99
99
|
"css-loader": "^2.1.0",
|
|
100
|
-
"eoss-element": "^0.3.
|
|
100
|
+
"eoss-element": "^0.3.17",
|
|
101
101
|
"es6-promise": "^4.0.5",
|
|
102
102
|
"eslint": "4.18.2",
|
|
103
103
|
"eslint-config-elemefe": "0.1.1",
|
|
@@ -261,7 +261,7 @@ export default {
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
let tag = 'el-button';
|
|
264
|
-
let clas =
|
|
264
|
+
let clas = '';
|
|
265
265
|
let props = {};
|
|
266
266
|
let attrs = {};
|
|
267
267
|
let listeners = {};
|
|
@@ -283,6 +283,7 @@ export default {
|
|
|
283
283
|
size: this.size
|
|
284
284
|
};
|
|
285
285
|
} else {
|
|
286
|
+
clas = ['es-button'];
|
|
286
287
|
props = { ...this.$attrs, type: this._type, size: this.size };
|
|
287
288
|
listeners = { ...this.$listeners, click: this.handleClick };
|
|
288
289
|
if (this.link && !this.open) {
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
<template v-if="item && !item.hide">
|
|
6
6
|
<es-upload
|
|
7
7
|
v-if="item.upload || (item.code && item.ownId)"
|
|
8
|
-
class="el-button"
|
|
9
8
|
v-bind="{
|
|
10
9
|
...exclAttribute({
|
|
11
10
|
data: item,
|
|
@@ -15,7 +14,7 @@
|
|
|
15
14
|
method: 'post',
|
|
16
15
|
btnSize: size,
|
|
17
16
|
showFileList: false,
|
|
18
|
-
selectType:
|
|
17
|
+
selectType: mode == 'plus' ? 'text' : item.type
|
|
19
18
|
}"
|
|
20
19
|
v-on="item.events"
|
|
21
20
|
></es-upload>
|
|
@@ -30,7 +29,7 @@
|
|
|
30
29
|
"
|
|
31
30
|
:key="index"
|
|
32
31
|
:size="size"
|
|
33
|
-
:type="item.type"
|
|
32
|
+
:type="mode == 'plus' ? 'text' : item.type"
|
|
34
33
|
v-on="item.events"
|
|
35
34
|
@click="handleClick({ ...data, handle: item })"
|
|
36
35
|
>
|
|
@@ -50,8 +49,9 @@
|
|
|
50
49
|
@visible-change="handleChange"
|
|
51
50
|
:trigger="trigger"
|
|
52
51
|
>
|
|
53
|
-
<el-button :size="size">
|
|
54
|
-
<template v-if="
|
|
52
|
+
<el-button :size="size" :type="mode == 'plus' ? 'text' : ''">
|
|
53
|
+
<template v-if="mode == 'plus'">更多</template>
|
|
54
|
+
<template v-else-if="moreText">
|
|
55
55
|
{{ moreText }}
|
|
56
56
|
<i
|
|
57
57
|
:class="{
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
:key="index"
|
|
69
69
|
:command="item"
|
|
70
70
|
:class="{ 'es-dropdown-padding': item.upload || item.selector }"
|
|
71
|
+
v-show="!item.hide"
|
|
71
72
|
>
|
|
72
73
|
<es-upload
|
|
73
74
|
v-if="item.upload || (item.code && item.ownId)"
|
|
@@ -128,6 +129,7 @@ export default {
|
|
|
128
129
|
};
|
|
129
130
|
},
|
|
130
131
|
props: {
|
|
132
|
+
mode: String,
|
|
131
133
|
value: String,
|
|
132
134
|
data: Object,
|
|
133
135
|
contents: { type: Array, default: [] },
|
|
@@ -139,7 +141,7 @@ export default {
|
|
|
139
141
|
stop: Boolean,
|
|
140
142
|
trigger: {
|
|
141
143
|
type: String,
|
|
142
|
-
default: '
|
|
144
|
+
default: 'hover'
|
|
143
145
|
},
|
|
144
146
|
useCaseCodeKey: String,
|
|
145
147
|
moreText: String,
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
<div class="es-qr-code-box" v-else>
|
|
49
49
|
<es-qr-code :content="item" auto></es-qr-code>
|
|
50
50
|
</div>
|
|
51
|
-
<div class="es-clients-remark" v-if="key == 'ios'">
|
|
51
|
+
<div class="es-clients-remark" v-if="key == 'ios' && showTips">
|
|
52
52
|
备注: 苹果手机安装后请在设置- -通用- -设备管理中进行激活操作
|
|
53
53
|
</div>
|
|
54
54
|
</li>
|
|
@@ -80,6 +80,7 @@ export default {
|
|
|
80
80
|
name: 'EsClients',
|
|
81
81
|
inheritAttrs: false,
|
|
82
82
|
props: {
|
|
83
|
+
showTips: Boolean,
|
|
83
84
|
downloads: Object,
|
|
84
85
|
logo: String,
|
|
85
86
|
pcImage: {
|
|
@@ -10,10 +10,49 @@
|
|
|
10
10
|
:rules="isNotRule(scope) ? [] : rules"
|
|
11
11
|
:index="scope.$index"
|
|
12
12
|
>
|
|
13
|
+
<component
|
|
14
|
+
v-if="getType(scope.row.formConfigs, 'component')"
|
|
15
|
+
:is="tag"
|
|
16
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
17
|
+
v-model="scope.row[field || prop]"
|
|
18
|
+
:data="getData(scope.row.formOptions)"
|
|
19
|
+
@blur="
|
|
20
|
+
(event) => {
|
|
21
|
+
handleBlur({
|
|
22
|
+
item: config,
|
|
23
|
+
event: event,
|
|
24
|
+
data: scope.row,
|
|
25
|
+
scope: scope
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
"
|
|
29
|
+
@focus="
|
|
30
|
+
(event) => {
|
|
31
|
+
handleFocus({
|
|
32
|
+
item: config,
|
|
33
|
+
event: event,
|
|
34
|
+
data: scope.row,
|
|
35
|
+
scope: scope
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
"
|
|
39
|
+
@change="
|
|
40
|
+
(value) => {
|
|
41
|
+
handleChange({
|
|
42
|
+
item: config,
|
|
43
|
+
name: field || prop,
|
|
44
|
+
value: value,
|
|
45
|
+
data: scope.row,
|
|
46
|
+
scope: scope
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
"
|
|
50
|
+
></component>
|
|
13
51
|
<es-select
|
|
14
|
-
v-if="
|
|
15
|
-
v-bind="
|
|
52
|
+
v-else-if="getType(scope.row.formConfigs, 'select')"
|
|
53
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
16
54
|
v-model="scope.row[field || prop]"
|
|
55
|
+
:data="getData(scope.row.formOptions)"
|
|
17
56
|
@blur="
|
|
18
57
|
(event) => {
|
|
19
58
|
handleBlur({
|
|
@@ -45,11 +84,13 @@
|
|
|
45
84
|
});
|
|
46
85
|
}
|
|
47
86
|
"
|
|
48
|
-
|
|
87
|
+
>
|
|
88
|
+
</es-select>
|
|
49
89
|
<es-cascader
|
|
50
|
-
v-else-if="
|
|
51
|
-
v-bind="
|
|
90
|
+
v-else-if="getType(scope.row.formConfigs, 'cascader')"
|
|
91
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
52
92
|
v-model="scope.row[field || prop]"
|
|
93
|
+
:data="getData(scope.row.formOptions)"
|
|
53
94
|
@blur="
|
|
54
95
|
(event) => {
|
|
55
96
|
handleBlur({
|
|
@@ -84,10 +125,10 @@
|
|
|
84
125
|
>
|
|
85
126
|
</es-cascader>
|
|
86
127
|
<es-select-ganged
|
|
87
|
-
v-else-if="
|
|
88
|
-
v-bind="
|
|
128
|
+
v-else-if="getType(scope.row.formConfigs, 'ganged')"
|
|
129
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
89
130
|
v-model="scope.row[field || prop]"
|
|
90
|
-
:data="init(
|
|
131
|
+
:data="init(getData(scope.row.formOptions), config)"
|
|
91
132
|
@change="
|
|
92
133
|
(value) => {
|
|
93
134
|
handleChange({
|
|
@@ -98,11 +139,13 @@
|
|
|
98
139
|
});
|
|
99
140
|
}
|
|
100
141
|
"
|
|
101
|
-
|
|
142
|
+
>
|
|
143
|
+
</es-select-ganged>
|
|
102
144
|
<es-radio-group
|
|
103
|
-
v-else-if="
|
|
104
|
-
v-bind="
|
|
145
|
+
v-else-if="getType(scope.row.formConfigs, 'radio')"
|
|
146
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
105
147
|
v-model="scope.row[field || prop]"
|
|
148
|
+
:data="getData(scope.row.formOptions)"
|
|
106
149
|
@change="
|
|
107
150
|
(value) => {
|
|
108
151
|
handleChange({
|
|
@@ -113,11 +156,13 @@
|
|
|
113
156
|
});
|
|
114
157
|
}
|
|
115
158
|
"
|
|
116
|
-
|
|
159
|
+
>
|
|
160
|
+
</es-radio-group>
|
|
117
161
|
<es-checkbox-group
|
|
118
|
-
v-else-if="
|
|
119
|
-
v-bind="
|
|
162
|
+
v-else-if="getType(scope.row.formConfigs, 'checkbox')"
|
|
163
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
120
164
|
v-model="scope.row[field || prop]"
|
|
165
|
+
:data="getData(scope.row.formOptions)"
|
|
121
166
|
@change="
|
|
122
167
|
(value) => {
|
|
123
168
|
handleChange({
|
|
@@ -128,11 +173,13 @@
|
|
|
128
173
|
});
|
|
129
174
|
}
|
|
130
175
|
"
|
|
131
|
-
|
|
176
|
+
>
|
|
177
|
+
</es-checkbox-group>
|
|
132
178
|
<es-switch
|
|
133
|
-
v-else-if="
|
|
134
|
-
v-bind="
|
|
179
|
+
v-else-if="getType(scope.row.formConfigs, 'switch')"
|
|
180
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
135
181
|
v-model="scope.row[field || prop]"
|
|
182
|
+
:data="getData(scope.row.formOptions)"
|
|
136
183
|
@change="
|
|
137
184
|
(value) => {
|
|
138
185
|
handleChange({
|
|
@@ -143,24 +190,27 @@
|
|
|
143
190
|
});
|
|
144
191
|
}
|
|
145
192
|
"
|
|
146
|
-
|
|
193
|
+
>
|
|
194
|
+
</es-switch>
|
|
147
195
|
<es-date-picker
|
|
148
196
|
v-else-if="
|
|
149
197
|
config.date ||
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
198
|
+
getType(scope.row.formConfigs, [
|
|
199
|
+
'date',
|
|
200
|
+
'year',
|
|
201
|
+
'month',
|
|
202
|
+
'date',
|
|
203
|
+
'dates',
|
|
204
|
+
'week',
|
|
205
|
+
'datetime',
|
|
206
|
+
'datetimerange',
|
|
207
|
+
'daterange',
|
|
208
|
+
'monthrange',
|
|
209
|
+
'quarter',
|
|
210
|
+
'halfyear'
|
|
211
|
+
])
|
|
162
212
|
"
|
|
163
|
-
v-bind="
|
|
213
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
164
214
|
v-model="scope.row[field || prop]"
|
|
165
215
|
:type="type"
|
|
166
216
|
@blur="
|
|
@@ -194,10 +244,11 @@
|
|
|
194
244
|
});
|
|
195
245
|
}
|
|
196
246
|
"
|
|
197
|
-
|
|
247
|
+
>
|
|
248
|
+
</es-date-picker>
|
|
198
249
|
<es-input-number
|
|
199
|
-
v-else-if="
|
|
200
|
-
v-bind="
|
|
250
|
+
v-else-if="getType(scope.row.formConfigs, 'number')"
|
|
251
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
201
252
|
v-model="scope.row[field || prop]"
|
|
202
253
|
@blur="
|
|
203
254
|
(event) => {
|
|
@@ -230,10 +281,11 @@
|
|
|
230
281
|
});
|
|
231
282
|
}
|
|
232
283
|
"
|
|
233
|
-
|
|
284
|
+
>
|
|
285
|
+
</es-input-number>
|
|
234
286
|
<es-selector
|
|
235
|
-
v-else-if="
|
|
236
|
-
v-bind="
|
|
287
|
+
v-else-if="getType(scope.row.formConfigs, 'selector')"
|
|
288
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
237
289
|
v-model="scope.row[field || prop]"
|
|
238
290
|
v-on="
|
|
239
291
|
exclAttribute({
|
|
@@ -251,17 +303,18 @@
|
|
|
251
303
|
});
|
|
252
304
|
}
|
|
253
305
|
"
|
|
254
|
-
|
|
306
|
+
>
|
|
307
|
+
</es-selector>
|
|
255
308
|
<template
|
|
256
309
|
v-else-if="
|
|
257
|
-
|
|
310
|
+
getType(scope.row.formConfigs, ['text', 'input', 'textarea'])
|
|
258
311
|
"
|
|
259
312
|
>
|
|
260
313
|
<template v-if="config.lazy">
|
|
261
314
|
<input
|
|
262
|
-
v-if="
|
|
315
|
+
v-if="getType(scope.row.formConfigs, ['text', 'input'])"
|
|
263
316
|
class="el-input__inner"
|
|
264
|
-
v-bind="
|
|
317
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
265
318
|
v-model.lazy="scope.row[field]"
|
|
266
319
|
@blur="
|
|
267
320
|
(event) => {
|
|
@@ -298,7 +351,7 @@
|
|
|
298
351
|
<textarea
|
|
299
352
|
v-else
|
|
300
353
|
class="el-textarea__inner"
|
|
301
|
-
v-bind="
|
|
354
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
302
355
|
v-model.lazy="scope.row[field]"
|
|
303
356
|
@blur="
|
|
304
357
|
(event) => {
|
|
@@ -335,7 +388,7 @@
|
|
|
335
388
|
</template>
|
|
336
389
|
<es-input
|
|
337
390
|
v-else
|
|
338
|
-
v-bind="
|
|
391
|
+
v-bind="getOptions(scope.row.formConfigs)"
|
|
339
392
|
:type="type"
|
|
340
393
|
:scope="scope"
|
|
341
394
|
v-model="scope.row[field || prop]"
|
|
@@ -370,7 +423,8 @@
|
|
|
370
423
|
});
|
|
371
424
|
}
|
|
372
425
|
"
|
|
373
|
-
|
|
426
|
+
>
|
|
427
|
+
</es-input>
|
|
374
428
|
</template>
|
|
375
429
|
</el-form-item>
|
|
376
430
|
</template>
|
|
@@ -402,6 +456,7 @@
|
|
|
402
456
|
})
|
|
403
457
|
"
|
|
404
458
|
stop
|
|
459
|
+
:mode="mode"
|
|
405
460
|
:contents="contents || events"
|
|
406
461
|
:data="scope"
|
|
407
462
|
@handleClick="handleClick"
|
|
@@ -459,6 +514,8 @@ export default {
|
|
|
459
514
|
}
|
|
460
515
|
},
|
|
461
516
|
props: {
|
|
517
|
+
tag: String,
|
|
518
|
+
mode: String,
|
|
462
519
|
service: String,
|
|
463
520
|
form: Boolean,
|
|
464
521
|
readonly: Boolean,
|
|
@@ -582,8 +639,7 @@ export default {
|
|
|
582
639
|
: this.valueKey,
|
|
583
640
|
rules: this.rules,
|
|
584
641
|
events: this.events,
|
|
585
|
-
...this.$attrs
|
|
586
|
-
data: this.option
|
|
642
|
+
...this.$attrs
|
|
587
643
|
};
|
|
588
644
|
return config;
|
|
589
645
|
},
|
|
@@ -725,6 +781,25 @@ export default {
|
|
|
725
781
|
}
|
|
726
782
|
return data;
|
|
727
783
|
},
|
|
784
|
+
getType(config, types) {
|
|
785
|
+
let type =
|
|
786
|
+
config && config[this.field || this.prop]
|
|
787
|
+
? config[this.field || this.prop]['type'] ||
|
|
788
|
+
config[this.field || this.prop]
|
|
789
|
+
: this.type;
|
|
790
|
+
return Array.isArray(types) ? types.includes(type) : type == types;
|
|
791
|
+
},
|
|
792
|
+
getOptions(config) {
|
|
793
|
+
let option = config && config[this.field || this.prop];
|
|
794
|
+
return option && typeof option == 'object'
|
|
795
|
+
? { ...this.formOption, ...option }
|
|
796
|
+
: this.formOption;
|
|
797
|
+
},
|
|
798
|
+
getData(res) {
|
|
799
|
+
return res && res[this.field || this.prop]
|
|
800
|
+
? res[this.field || this.prop]
|
|
801
|
+
: this.option;
|
|
802
|
+
},
|
|
728
803
|
exclAttribute({ data, attrs }) {
|
|
729
804
|
return util.exclAttribute({ data, attrs });
|
|
730
805
|
},
|
|
@@ -824,10 +899,14 @@ export default {
|
|
|
824
899
|
this.$emit('formFocus', data);
|
|
825
900
|
this.$emit('form-focus', data);
|
|
826
901
|
},
|
|
827
|
-
handleChange(
|
|
828
|
-
let { item } =
|
|
829
|
-
if (
|
|
830
|
-
|
|
902
|
+
handleChange(datas) {
|
|
903
|
+
let { item, name, data } = datas;
|
|
904
|
+
if (
|
|
905
|
+
item &&
|
|
906
|
+
((data.formConfigs && data.formConfigs[name] == 'ganged') ||
|
|
907
|
+
this.type == 'ganged')
|
|
908
|
+
) {
|
|
909
|
+
let { index, value } = datas.value;
|
|
831
910
|
if (
|
|
832
911
|
(item.url || this.sysCode) &&
|
|
833
912
|
((item.ganged && index > item.ganged - 1) || value.hasSub)
|
|
@@ -888,9 +967,9 @@ export default {
|
|
|
888
967
|
}
|
|
889
968
|
}
|
|
890
969
|
}
|
|
891
|
-
this.events && this.events.change && this.events.change(
|
|
892
|
-
this.$emit('formChange',
|
|
893
|
-
this.$emit('form-change',
|
|
970
|
+
this.events && this.events.change && this.events.change(datas);
|
|
971
|
+
this.$emit('formChange', datas);
|
|
972
|
+
this.$emit('form-change', datas);
|
|
894
973
|
},
|
|
895
974
|
handleClick(data) {
|
|
896
975
|
this.$emit('handleClick', data);
|