eoss-ui 0.5.83 → 0.5.85
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/CHANGELOG.md +929 -0
- package/lib/button-group.js +146 -66
- package/lib/button.js +118 -69
- package/lib/checkbox-group.js +64 -46
- package/lib/config/api.js +5 -1
- package/lib/data-table-form.js +64 -46
- package/lib/data-table.js +468 -295
- package/lib/date-picker.js +64 -46
- package/lib/dialog.js +71 -48
- package/lib/eoss-ui.common.js +9188 -15746
- package/lib/flow-group.js +64 -46
- package/lib/flow-list.js +65 -47
- package/lib/flow.js +113 -77
- package/lib/form.js +5708 -13486
- package/lib/handle-user.js +65 -47
- package/lib/handler.js +70 -48
- package/lib/icon.js +64 -46
- package/lib/index.js +1 -1
- package/lib/input-number.js +64 -46
- package/lib/input.js +64 -46
- package/lib/login.js +86 -57
- package/lib/main.js +1435 -483
- package/lib/nav.js +64 -46
- package/lib/notify.js +51 -46
- package/lib/page.js +64 -46
- package/lib/pagination.js +64 -46
- package/lib/player.js +64 -46
- package/lib/qr-code.js +64 -46
- package/lib/radio-group.js +64 -46
- package/lib/retrial-auth.js +64 -46
- package/lib/select-ganged.js +64 -46
- package/lib/select.js +65 -47
- package/lib/selector-panel.js +64 -46
- package/lib/selector.js +64 -46
- package/lib/sizer.js +64 -46
- package/lib/steps.js +64 -46
- package/lib/switch.js +64 -46
- package/lib/table-form.js +64 -46
- package/lib/tabs.js +64 -46
- package/lib/theme-chalk/calendar.css +1 -1
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/dialog.css +1 -1
- package/lib/theme-chalk/form.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/tips.js +64 -46
- package/lib/tree-group.js +64 -46
- package/lib/tree.js +64 -46
- package/lib/upload.js +78 -60
- package/lib/utils/util.js +18 -5
- package/lib/wujie.js +64 -46
- package/lib/wxlogin.js +64 -46
- package/package.json +2 -2
- package/packages/button/src/main.vue +88 -55
- package/packages/button-group/src/main.vue +56 -13
- package/packages/data-table/src/children.vue +3 -2
- package/packages/data-table/src/column.vue +6 -4
- package/packages/data-table/src/main.vue +150 -69
- package/packages/data-table/src/sizer.vue +51 -22
- package/packages/dialog/src/main.vue +5 -1
- package/packages/flow/src/main.vue +26 -17
- package/packages/form/src/main.vue +129 -2103
- package/packages/handler/src/main.vue +5 -0
- package/packages/login/src/main.vue +12 -1
- package/packages/login/src/resetPassword.vue +4 -2
- package/packages/main/src/default/index.vue +35 -54
- package/packages/main/src/default/userinfo.vue +2 -1
- package/packages/main/src/public/search.vue +444 -0
- package/packages/main/src/simplicity/apps.vue +20 -2
- package/packages/main/src/simplicity/handler.vue +0 -2
- package/packages/main/src/simplicity/index.vue +97 -32
- package/packages/main/src/simplicity/userinfo.vue +1 -0
- package/packages/select/src/main.vue +1 -1
- package/packages/theme-chalk/lib/calendar.css +1 -1
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/dialog.css +1 -1
- package/packages/theme-chalk/lib/form.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/simplicity.css +1 -1
- package/packages/theme-chalk/src/calendar.scss +3 -3
- package/packages/theme-chalk/src/data-table.scss +12 -0
- package/packages/theme-chalk/src/dialog.scss +15 -0
- package/packages/theme-chalk/src/form.scss +6 -0
- package/packages/theme-chalk/src/main.scss +2 -1
- package/packages/theme-chalk/src/simplicity.scss +172 -4
- package/packages/upload/src/main.vue +16 -12
- package/src/config/api.js +5 -1
- package/src/index.js +157 -157
- package/src/utils/util.js +18 -5
package/lib/nav.js
CHANGED
|
@@ -2021,11 +2021,24 @@ var identical = function identical(_ref7) {
|
|
|
2021
2021
|
var indexOfObj = function indexOfObj(arry, target, key) {
|
|
2022
2022
|
for (var i = 0; i < arry.length; i++) {
|
|
2023
2023
|
if (key) {
|
|
2024
|
-
if (
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2024
|
+
if (key.indexOf(',') > -1) {
|
|
2025
|
+
var keys = key.split(',');
|
|
2026
|
+
for (var n = 0; n < keys.length; n++) {
|
|
2027
|
+
var k = keys[n];
|
|
2028
|
+
if (typeof target === 'string' && arry[i][k] === target) {
|
|
2029
|
+
return i;
|
|
2030
|
+
}
|
|
2031
|
+
if (target[k] === arry[i][k]) {
|
|
2032
|
+
return i;
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
} else {
|
|
2036
|
+
if (typeof target === 'string' && arry[i][key] === target) {
|
|
2037
|
+
return i;
|
|
2038
|
+
}
|
|
2039
|
+
if (target[key] === arry[i][key]) {
|
|
2040
|
+
return i;
|
|
2041
|
+
}
|
|
2029
2042
|
}
|
|
2030
2043
|
} else {
|
|
2031
2044
|
if (JSON.stringify(target) === JSON.stringify(arry[i])) {
|
|
@@ -3255,7 +3268,7 @@ var watermark = function watermark(option) {
|
|
|
3255
3268
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3256
3269
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
3257
3270
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
3258
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3271
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return switchUserTo; });
|
|
3259
3272
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3260
3273
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3261
3274
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -3273,12 +3286,12 @@ var watermark = function watermark(option) {
|
|
|
3273
3286
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
3274
3287
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3275
3288
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3276
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3289
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return userOnline; });
|
|
3277
3290
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3278
3291
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
3279
3292
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
3280
3293
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
3281
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3294
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return updateUserInfo; });
|
|
3282
3295
|
/* unused harmony export getUserImgUrl */
|
|
3283
3296
|
/* unused harmony export getDoorIndex */
|
|
3284
3297
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3287,17 +3300,18 @@ var watermark = function watermark(option) {
|
|
|
3287
3300
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3288
3301
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3289
3302
|
/* unused harmony export getUserCustomInfo */
|
|
3290
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3291
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3303
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserCustomInfo; });
|
|
3304
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sysMsgPage; });
|
|
3292
3305
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
3293
3306
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
3307
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return searchType; });
|
|
3294
3308
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3295
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3296
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3309
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return uploads; });
|
|
3310
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadOnlyOne; });
|
|
3297
3311
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3298
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3312
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploadSort; });
|
|
3299
3313
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3300
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3314
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadDownloads; });
|
|
3301
3315
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3302
3316
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3303
3317
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -3315,13 +3329,13 @@ var watermark = function watermark(option) {
|
|
|
3315
3329
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
3316
3330
|
/* unused harmony export getCurrentuser */
|
|
3317
3331
|
/* unused harmony export mainDetail */
|
|
3318
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3319
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3332
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartFlow; });
|
|
3333
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return tempSave; });
|
|
3320
3334
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3321
3335
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3322
3336
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3323
3337
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
3324
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3338
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateCommonOpinion; });
|
|
3325
3339
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3326
3340
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3327
3341
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -3330,52 +3344,52 @@ var watermark = function watermark(option) {
|
|
|
3330
3344
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3331
3345
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3332
3346
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3333
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3347
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskHandleHtml; });
|
|
3334
3348
|
/* unused harmony export getView */
|
|
3335
3349
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
3336
3350
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
3337
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3338
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3339
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3340
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3341
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3351
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskRejectHtml; });
|
|
3352
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskRejectHtml; });
|
|
3353
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskRead; });
|
|
3354
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toStartTaskReadIndex; });
|
|
3355
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReadHtml; });
|
|
3342
3356
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
3343
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3344
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3357
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toSendMsg; });
|
|
3358
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendMsg; });
|
|
3345
3359
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3346
3360
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
3347
3361
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
|
|
3348
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3349
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3362
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return wss; });
|
|
3363
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return topic; });
|
|
3350
3364
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3351
3365
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
3352
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3353
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3354
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskTransferIndex; });
|
|
3367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskTransfer; });
|
|
3368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toPresetInfoListIndex; });
|
|
3355
3369
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3356
3370
|
/* unused harmony export historyListJson */
|
|
3357
3371
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3358
3372
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3359
3373
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3360
3374
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
|
|
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__, "
|
|
3369
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3370
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3371
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3372
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3373
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3374
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3375
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionExamine; });
|
|
3376
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionExamine; });
|
|
3377
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTakeAdvice; });
|
|
3378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTakeAdvice; });
|
|
3379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskStartDraft; });
|
|
3380
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskStartDraft; });
|
|
3381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskReview; });
|
|
3382
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskReview; });
|
|
3383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskUnionSeal; });
|
|
3384
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskUnionSeal; });
|
|
3385
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTwoOfficesDispatch; });
|
|
3386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return twoOfficesDispatch; });
|
|
3387
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendList; });
|
|
3388
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendInfo; });
|
|
3375
3389
|
/* unused harmony export sendSave */
|
|
3376
3390
|
/* unused harmony export sendUpdate */
|
|
3377
3391
|
/* unused harmony export sendDelete */
|
|
3378
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3392
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendBatch; });
|
|
3379
3393
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3380
3394
|
// 登录
|
|
3381
3395
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3422,6 +3436,9 @@ var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题
|
|
|
3422
3436
|
var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
|
|
3423
3437
|
var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
|
|
3424
3438
|
var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
|
|
3439
|
+
// 框架 - 搜索
|
|
3440
|
+
var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
|
|
3441
|
+
|
|
3425
3442
|
// 附件相关
|
|
3426
3443
|
var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
3427
3444
|
var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
|
|
@@ -3596,7 +3613,8 @@ var sendDelete = '/notify2/notifySendRecord/deleteById';
|
|
|
3596
3613
|
var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
|
|
3597
3614
|
|
|
3598
3615
|
// 表单结构
|
|
3599
|
-
|
|
3616
|
+
|
|
3617
|
+
var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
|
|
3600
3618
|
|
|
3601
3619
|
/***/ }),
|
|
3602
3620
|
|
package/lib/notify.js
CHANGED
|
@@ -96,7 +96,7 @@ module.exports =
|
|
|
96
96
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
97
97
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
98
98
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
99
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
99
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return switchUserTo; });
|
|
100
100
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
101
101
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
102
102
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -114,12 +114,12 @@ module.exports =
|
|
|
114
114
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
115
115
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
116
116
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
117
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return userOnline; });
|
|
118
118
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
119
119
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
120
120
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
121
121
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
122
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
122
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return updateUserInfo; });
|
|
123
123
|
/* unused harmony export getUserImgUrl */
|
|
124
124
|
/* unused harmony export getDoorIndex */
|
|
125
125
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -128,17 +128,18 @@ module.exports =
|
|
|
128
128
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
129
129
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
130
130
|
/* unused harmony export getUserCustomInfo */
|
|
131
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
132
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
131
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserCustomInfo; });
|
|
132
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sysMsgPage; });
|
|
133
133
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
134
134
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
135
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return searchType; });
|
|
135
136
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
136
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
137
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
137
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return uploads; });
|
|
138
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadOnlyOne; });
|
|
138
139
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
139
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
140
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploadSort; });
|
|
140
141
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
141
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
142
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadDownloads; });
|
|
142
143
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
143
144
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
144
145
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -156,13 +157,13 @@ module.exports =
|
|
|
156
157
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
157
158
|
/* unused harmony export getCurrentuser */
|
|
158
159
|
/* unused harmony export mainDetail */
|
|
159
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
160
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
160
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartFlow; });
|
|
161
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return tempSave; });
|
|
161
162
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
162
163
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
163
164
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
164
165
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
165
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
166
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateCommonOpinion; });
|
|
166
167
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
167
168
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
168
169
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -171,52 +172,52 @@ module.exports =
|
|
|
171
172
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
172
173
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
173
174
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
174
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
175
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskHandleHtml; });
|
|
175
176
|
/* unused harmony export getView */
|
|
176
177
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
177
178
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
178
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
179
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
180
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
181
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
182
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
179
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskRejectHtml; });
|
|
180
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskRejectHtml; });
|
|
181
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskRead; });
|
|
182
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toStartTaskReadIndex; });
|
|
183
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReadHtml; });
|
|
183
184
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
184
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
185
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
185
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toSendMsg; });
|
|
186
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendMsg; });
|
|
186
187
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
187
188
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
188
189
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
|
|
189
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
190
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
190
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return wss; });
|
|
191
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return topic; });
|
|
191
192
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
192
193
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
193
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
194
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
195
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
194
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskTransferIndex; });
|
|
195
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskTransfer; });
|
|
196
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toPresetInfoListIndex; });
|
|
196
197
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
197
198
|
/* unused harmony export historyListJson */
|
|
198
199
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
199
200
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
200
201
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
201
202
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
|
|
202
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
203
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
204
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
205
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
206
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
207
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
208
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
209
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
210
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
211
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
212
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
213
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
214
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
215
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
203
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionExamine; });
|
|
204
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionExamine; });
|
|
205
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTakeAdvice; });
|
|
206
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTakeAdvice; });
|
|
207
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskStartDraft; });
|
|
208
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskStartDraft; });
|
|
209
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskReview; });
|
|
210
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskReview; });
|
|
211
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskUnionSeal; });
|
|
212
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskUnionSeal; });
|
|
213
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTwoOfficesDispatch; });
|
|
214
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return twoOfficesDispatch; });
|
|
215
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendList; });
|
|
216
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendInfo; });
|
|
216
217
|
/* unused harmony export sendSave */
|
|
217
218
|
/* unused harmony export sendUpdate */
|
|
218
219
|
/* unused harmony export sendDelete */
|
|
219
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
220
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendBatch; });
|
|
220
221
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
221
222
|
// 登录
|
|
222
223
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -263,6 +264,9 @@ var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题
|
|
|
263
264
|
var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
|
|
264
265
|
var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
|
|
265
266
|
var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
|
|
267
|
+
// 框架 - 搜索
|
|
268
|
+
var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
|
|
269
|
+
|
|
266
270
|
// 附件相关
|
|
267
271
|
var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
268
272
|
var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
|
|
@@ -437,7 +441,8 @@ var sendDelete = '/notify2/notifySendRecord/deleteById';
|
|
|
437
441
|
var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
|
|
438
442
|
|
|
439
443
|
// 表单结构
|
|
440
|
-
|
|
444
|
+
|
|
445
|
+
var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
|
|
441
446
|
|
|
442
447
|
/***/ }),
|
|
443
448
|
|
|
@@ -780,7 +785,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
780
785
|
text: '重发',
|
|
781
786
|
format: false,
|
|
782
787
|
method: 'post',
|
|
783
|
-
action: api["
|
|
788
|
+
action: api["sb" /* sendBatch */]
|
|
784
789
|
}]
|
|
785
790
|
}];
|
|
786
791
|
}
|
|
@@ -967,13 +972,13 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
967
972
|
},
|
|
968
973
|
data: function data() {
|
|
969
974
|
return {
|
|
970
|
-
sendList: api["
|
|
971
|
-
sendBatch: api["
|
|
975
|
+
sendList: api["ub" /* sendList */],
|
|
976
|
+
sendBatch: api["sb" /* sendBatch */],
|
|
972
977
|
tableCount: 0,
|
|
973
978
|
selectData: [],
|
|
974
979
|
formTitle: '',
|
|
975
980
|
showForm: false,
|
|
976
|
-
formData: api["
|
|
981
|
+
formData: api["tb" /* sendInfo */],
|
|
977
982
|
params: {},
|
|
978
983
|
sendTypeDict: [],
|
|
979
984
|
statusDict: []
|
|
@@ -992,7 +997,7 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < argument
|
|
|
992
997
|
type: 'primary',
|
|
993
998
|
checkbox: true,
|
|
994
999
|
format: false,
|
|
995
|
-
action: api["
|
|
1000
|
+
action: api["sb" /* sendBatch */]
|
|
996
1001
|
}]
|
|
997
1002
|
}, {
|
|
998
1003
|
type: 'search',
|