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/flow.js
CHANGED
|
@@ -2020,11 +2020,24 @@ var identical = function identical(_ref7) {
|
|
|
2020
2020
|
var indexOfObj = function indexOfObj(arry, target, key) {
|
|
2021
2021
|
for (var i = 0; i < arry.length; i++) {
|
|
2022
2022
|
if (key) {
|
|
2023
|
-
if (
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2023
|
+
if (key.indexOf(',') > -1) {
|
|
2024
|
+
var keys = key.split(',');
|
|
2025
|
+
for (var n = 0; n < keys.length; n++) {
|
|
2026
|
+
var k = keys[n];
|
|
2027
|
+
if (typeof target === 'string' && arry[i][k] === target) {
|
|
2028
|
+
return i;
|
|
2029
|
+
}
|
|
2030
|
+
if (target[k] === arry[i][k]) {
|
|
2031
|
+
return i;
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
2034
|
+
} else {
|
|
2035
|
+
if (typeof target === 'string' && arry[i][key] === target) {
|
|
2036
|
+
return i;
|
|
2037
|
+
}
|
|
2038
|
+
if (target[key] === arry[i][key]) {
|
|
2039
|
+
return i;
|
|
2040
|
+
}
|
|
2028
2041
|
}
|
|
2029
2042
|
} else {
|
|
2030
2043
|
if (JSON.stringify(target) === JSON.stringify(arry[i])) {
|
|
@@ -3253,7 +3266,7 @@ var watermark = function watermark(option) {
|
|
|
3253
3266
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3254
3267
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
3255
3268
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
3256
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3269
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return switchUserTo; });
|
|
3257
3270
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3258
3271
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3259
3272
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -3271,12 +3284,12 @@ var watermark = function watermark(option) {
|
|
|
3271
3284
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
3272
3285
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3273
3286
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3274
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3287
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return userOnline; });
|
|
3275
3288
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3276
3289
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
3277
3290
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
3278
3291
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
3279
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3292
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return updateUserInfo; });
|
|
3280
3293
|
/* unused harmony export getUserImgUrl */
|
|
3281
3294
|
/* unused harmony export getDoorIndex */
|
|
3282
3295
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3285,17 +3298,18 @@ var watermark = function watermark(option) {
|
|
|
3285
3298
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3286
3299
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3287
3300
|
/* unused harmony export getUserCustomInfo */
|
|
3288
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3289
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3301
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserCustomInfo; });
|
|
3302
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return sysMsgPage; });
|
|
3290
3303
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
3291
3304
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
3305
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return searchType; });
|
|
3292
3306
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3293
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3294
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3307
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return uploads; });
|
|
3308
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadOnlyOne; });
|
|
3295
3309
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3296
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3310
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploadSort; });
|
|
3297
3311
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3298
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3312
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadDownloads; });
|
|
3299
3313
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3300
3314
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3301
3315
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -3313,13 +3327,13 @@ var watermark = function watermark(option) {
|
|
|
3313
3327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
3314
3328
|
/* unused harmony export getCurrentuser */
|
|
3315
3329
|
/* unused harmony export mainDetail */
|
|
3316
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3317
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3330
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartFlow; });
|
|
3331
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return tempSave; });
|
|
3318
3332
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3319
3333
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3320
3334
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3321
3335
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
3322
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3336
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateCommonOpinion; });
|
|
3323
3337
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3324
3338
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3325
3339
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -3328,52 +3342,52 @@ var watermark = function watermark(option) {
|
|
|
3328
3342
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3329
3343
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3330
3344
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3331
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3345
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskHandleHtml; });
|
|
3332
3346
|
/* unused harmony export getView */
|
|
3333
3347
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
3334
3348
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
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__, "
|
|
3339
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3349
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskRejectHtml; });
|
|
3350
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskRejectHtml; });
|
|
3351
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskRead; });
|
|
3352
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toStartTaskReadIndex; });
|
|
3353
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReadHtml; });
|
|
3340
3354
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
3341
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3342
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3355
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toSendMsg; });
|
|
3356
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sendMsg; });
|
|
3343
3357
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3344
3358
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
3345
3359
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
|
|
3346
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3347
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3360
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return wss; });
|
|
3361
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return topic; });
|
|
3348
3362
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3349
3363
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
3350
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3351
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3352
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3364
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskTransferIndex; });
|
|
3365
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskTransfer; });
|
|
3366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toPresetInfoListIndex; });
|
|
3353
3367
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3354
3368
|
/* unused harmony export historyListJson */
|
|
3355
3369
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3356
3370
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3357
3371
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3358
3372
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
|
|
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__, "
|
|
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__, "Sb", function() { return toTaskUnionExamine; });
|
|
3374
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionExamine; });
|
|
3375
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTakeAdvice; });
|
|
3376
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTakeAdvice; });
|
|
3377
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskStartDraft; });
|
|
3378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskStartDraft; });
|
|
3379
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskReview; });
|
|
3380
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskReview; });
|
|
3381
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTaskUnionSeal; });
|
|
3382
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskUnionSeal; });
|
|
3383
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTwoOfficesDispatch; });
|
|
3384
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return twoOfficesDispatch; });
|
|
3385
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendList; });
|
|
3386
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendInfo; });
|
|
3373
3387
|
/* unused harmony export sendSave */
|
|
3374
3388
|
/* unused harmony export sendUpdate */
|
|
3375
3389
|
/* unused harmony export sendDelete */
|
|
3376
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3390
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendBatch; });
|
|
3377
3391
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3378
3392
|
// 登录
|
|
3379
3393
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3420,6 +3434,9 @@ var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题
|
|
|
3420
3434
|
var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
|
|
3421
3435
|
var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
|
|
3422
3436
|
var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
|
|
3437
|
+
// 框架 - 搜索
|
|
3438
|
+
var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
|
|
3439
|
+
|
|
3423
3440
|
// 附件相关
|
|
3424
3441
|
var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
3425
3442
|
var uploads = '/main2/mecpfileManagement/upload'; // 上传接口
|
|
@@ -3594,7 +3611,8 @@ var sendDelete = '/notify2/notifySendRecord/deleteById';
|
|
|
3594
3611
|
var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
|
|
3595
3612
|
|
|
3596
3613
|
// 表单结构
|
|
3597
|
-
|
|
3614
|
+
|
|
3615
|
+
var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
|
|
3598
3616
|
|
|
3599
3617
|
/***/ }),
|
|
3600
3618
|
/* 2 */
|
|
@@ -4090,7 +4108,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4090
4108
|
// ESM COMPAT FLAG
|
|
4091
4109
|
__webpack_require__.r(__webpack_exports__);
|
|
4092
4110
|
|
|
4093
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=
|
|
4111
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=template&id=44d35e77&
|
|
4094
4112
|
var render = function () {
|
|
4095
4113
|
var _vm = this
|
|
4096
4114
|
var _h = _vm.$createElement
|
|
@@ -5629,13 +5647,14 @@ var render = function () {
|
|
|
5629
5647
|
? _c(
|
|
5630
5648
|
"es-dialog",
|
|
5631
5649
|
{
|
|
5650
|
+
ref: "handleVisible",
|
|
5632
5651
|
attrs: {
|
|
5633
5652
|
"append-to-body": "",
|
|
5653
|
+
height: "auto",
|
|
5634
5654
|
title: _vm.title,
|
|
5635
5655
|
"close-on-click-modal": false,
|
|
5636
5656
|
visible: _vm.handleVisible,
|
|
5637
5657
|
closeParent: _vm.closeParent,
|
|
5638
|
-
height: "auto",
|
|
5639
5658
|
},
|
|
5640
5659
|
on: {
|
|
5641
5660
|
"update:visible": function ($event) {
|
|
@@ -5652,7 +5671,11 @@ var render = function () {
|
|
|
5652
5671
|
},
|
|
5653
5672
|
on: {
|
|
5654
5673
|
cancel: function ($event) {
|
|
5655
|
-
_vm.closeProcess(
|
|
5674
|
+
_vm.closeProcess(
|
|
5675
|
+
$event,
|
|
5676
|
+
"handleVisible",
|
|
5677
|
+
_vm.closeParent
|
|
5678
|
+
)
|
|
5656
5679
|
},
|
|
5657
5680
|
},
|
|
5658
5681
|
}),
|
|
@@ -5694,11 +5717,12 @@ var render = function () {
|
|
|
5694
5717
|
? _c(
|
|
5695
5718
|
"es-dialog",
|
|
5696
5719
|
{
|
|
5720
|
+
ref: "showReject",
|
|
5697
5721
|
attrs: {
|
|
5698
5722
|
"append-to-body": "",
|
|
5699
|
-
"close-on-click-modal": false,
|
|
5700
|
-
title: "驳回",
|
|
5701
5723
|
height: "auto",
|
|
5724
|
+
title: "驳回",
|
|
5725
|
+
"close-on-click-modal": false,
|
|
5702
5726
|
visible: _vm.showReject,
|
|
5703
5727
|
},
|
|
5704
5728
|
on: {
|
|
@@ -5729,12 +5753,13 @@ var render = function () {
|
|
|
5729
5753
|
? _c(
|
|
5730
5754
|
"es-dialog",
|
|
5731
5755
|
{
|
|
5756
|
+
ref: "showTaskRead",
|
|
5732
5757
|
attrs: {
|
|
5733
5758
|
"append-to-body": "",
|
|
5759
|
+
height: "auto",
|
|
5734
5760
|
"close-on-click-modal": false,
|
|
5735
5761
|
title: _vm.taskReadType === "transfer" ? "转办" : "分阅",
|
|
5736
5762
|
visible: _vm.showTaskRead,
|
|
5737
|
-
height: "auto",
|
|
5738
5763
|
},
|
|
5739
5764
|
on: {
|
|
5740
5765
|
"update:visible": function ($event) {
|
|
@@ -5767,8 +5792,8 @@ var render = function () {
|
|
|
5767
5792
|
{
|
|
5768
5793
|
attrs: {
|
|
5769
5794
|
"append-to-body": "",
|
|
5770
|
-
"close-on-click-modal": false,
|
|
5771
5795
|
title: "意见附件",
|
|
5796
|
+
"close-on-click-modal": false,
|
|
5772
5797
|
visible: _vm.showFileList,
|
|
5773
5798
|
},
|
|
5774
5799
|
on: {
|
|
@@ -5794,12 +5819,13 @@ var render = function () {
|
|
|
5794
5819
|
? _c(
|
|
5795
5820
|
"es-dialog",
|
|
5796
5821
|
{
|
|
5822
|
+
ref: "showSendMsg",
|
|
5797
5823
|
attrs: {
|
|
5798
5824
|
"append-to-body": "",
|
|
5799
|
-
"
|
|
5825
|
+
height: "auto",
|
|
5800
5826
|
title: "发送消息",
|
|
5827
|
+
"close-on-click-modal": false,
|
|
5801
5828
|
visible: _vm.showSendMsg,
|
|
5802
|
-
height: "auto",
|
|
5803
5829
|
},
|
|
5804
5830
|
on: {
|
|
5805
5831
|
"update:visible": function ($event) {
|
|
@@ -5824,12 +5850,13 @@ var render = function () {
|
|
|
5824
5850
|
? _c(
|
|
5825
5851
|
"es-dialog",
|
|
5826
5852
|
{
|
|
5853
|
+
ref: "showTaskUnionExamine",
|
|
5827
5854
|
attrs: {
|
|
5828
5855
|
"append-to-body": "",
|
|
5856
|
+
height: "auto",
|
|
5829
5857
|
"close-on-click-modal": false,
|
|
5830
5858
|
title: _vm.flowTitle,
|
|
5831
5859
|
visible: _vm.showTaskUnionExamine,
|
|
5832
|
-
height: "auto",
|
|
5833
5860
|
},
|
|
5834
5861
|
on: {
|
|
5835
5862
|
"update:visible": function ($event) {
|
|
@@ -5865,7 +5892,7 @@ var staticRenderFns = []
|
|
|
5865
5892
|
render._withStripped = true
|
|
5866
5893
|
|
|
5867
5894
|
|
|
5868
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
5895
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=44d35e77&
|
|
5869
5896
|
|
|
5870
5897
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
5871
5898
|
var regenerator_ = __webpack_require__(13);
|
|
@@ -6819,7 +6846,7 @@ var _components;
|
|
|
6819
6846
|
}
|
|
6820
6847
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
6821
6848
|
util["a" /* default */].ajax({
|
|
6822
|
-
url: data.id ? api["
|
|
6849
|
+
url: data.id ? api["Xb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
|
|
6823
6850
|
data: info,
|
|
6824
6851
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
6825
6852
|
method: 'post'
|
|
@@ -9577,7 +9604,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9577
9604
|
businessId: this.businessId
|
|
9578
9605
|
};
|
|
9579
9606
|
// 获取节点
|
|
9580
|
-
util["a" /* default */].ajax({ url: api["
|
|
9607
|
+
util["a" /* default */].ajax({ url: api["Kb" /* toStartFlow */], params: params }).then(function (res) {
|
|
9581
9608
|
//pc接口返回数据处理
|
|
9582
9609
|
var status = res.status,
|
|
9583
9610
|
message = res.message,
|
|
@@ -10024,7 +10051,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
10024
10051
|
notificationType = _sendInfo.notificationType;
|
|
10025
10052
|
|
|
10026
10053
|
var params = {
|
|
10027
|
-
url: api["
|
|
10054
|
+
url: api["vb" /* sendMsg */],
|
|
10028
10055
|
headers: { Accept: 'application/json,text/plain' },
|
|
10029
10056
|
method: 'post',
|
|
10030
10057
|
data: {
|
|
@@ -10086,7 +10113,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
10086
10113
|
|
|
10087
10114
|
this.loading = true;
|
|
10088
10115
|
util["a" /* default */].ajax({
|
|
10089
|
-
url: api["
|
|
10116
|
+
url: api["Jb" /* toSendMsg */],
|
|
10090
10117
|
params: { pendingId: this.$attrs.pendingId }
|
|
10091
10118
|
}).then(function (res) {
|
|
10092
10119
|
var status = res.status,
|
|
@@ -10904,7 +10931,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10904
10931
|
userId: util["a" /* default */].getStorage('userId'),
|
|
10905
10932
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
10906
10933
|
};
|
|
10907
|
-
util["a" /* default */].ajax({ url: api["
|
|
10934
|
+
util["a" /* default */].ajax({ url: api["Ab" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
10908
10935
|
var status = res.status,
|
|
10909
10936
|
message = res.message;
|
|
10910
10937
|
|
|
@@ -10959,7 +10986,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10959
10986
|
isSinglePage: false,
|
|
10960
10987
|
opinion: this.option
|
|
10961
10988
|
};
|
|
10962
|
-
util["a" /* default */].ajax({ url: api["
|
|
10989
|
+
util["a" /* default */].ajax({ url: api["Nb" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
10963
10990
|
var status = res.status,
|
|
10964
10991
|
message = res.message,
|
|
10965
10992
|
_res$data = res.data,
|
|
@@ -11635,7 +11662,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11635
11662
|
taskExamine = this.taskExamine;
|
|
11636
11663
|
|
|
11637
11664
|
var params = {
|
|
11638
|
-
url: api["
|
|
11665
|
+
url: api["Rb" /* toTaskTransferIndex */],
|
|
11639
11666
|
params: {
|
|
11640
11667
|
opinion: opinion,
|
|
11641
11668
|
pendingId: pendingId,
|
|
@@ -11760,7 +11787,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11760
11787
|
var _this3 = this;
|
|
11761
11788
|
|
|
11762
11789
|
var params = {
|
|
11763
|
-
url: api["
|
|
11790
|
+
url: api["Lb" /* toStartTaskRead */],
|
|
11764
11791
|
params: { pendingId: this.pendingId, taskAction: this.type }
|
|
11765
11792
|
};
|
|
11766
11793
|
if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
|
|
@@ -11833,7 +11860,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11833
11860
|
type = this.type;
|
|
11834
11861
|
|
|
11835
11862
|
var params = {
|
|
11836
|
-
url: api["
|
|
11863
|
+
url: api["Eb" /* taskTransfer */],
|
|
11837
11864
|
data: {
|
|
11838
11865
|
choiceDeptId: choiceDeptId,
|
|
11839
11866
|
choiceOrgId: choiceOrgId,
|
|
@@ -11927,7 +11954,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11927
11954
|
!download && delete params.isDownload;
|
|
11928
11955
|
isCdjxjTaskHandle == 'true' && delete params.noticeType;
|
|
11929
11956
|
util["a" /* default */].ajax({
|
|
11930
|
-
url: api["
|
|
11957
|
+
url: api["zb" /* taskReadHtml */],
|
|
11931
11958
|
params: { taskAction: _this7.type },
|
|
11932
11959
|
headers: {
|
|
11933
11960
|
Accept: 'application/json,text/plain'
|
|
@@ -12420,7 +12447,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12420
12447
|
pendingId = this.pendingId;
|
|
12421
12448
|
|
|
12422
12449
|
var params = {
|
|
12423
|
-
url: api["
|
|
12450
|
+
url: api["Bb" /* taskReview */],
|
|
12424
12451
|
data: {
|
|
12425
12452
|
nextUserId: nextOtherOrgObj.join(','),
|
|
12426
12453
|
notificationType: noticeType.join(','),
|
|
@@ -12456,7 +12483,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12456
12483
|
var _this2 = this;
|
|
12457
12484
|
|
|
12458
12485
|
var params = {
|
|
12459
|
-
url: api["
|
|
12486
|
+
url: api["Ob" /* toTaskReview */],
|
|
12460
12487
|
params: { pendingId: this.pendingId }
|
|
12461
12488
|
};
|
|
12462
12489
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -12491,7 +12518,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12491
12518
|
var _this3 = this;
|
|
12492
12519
|
|
|
12493
12520
|
var params = {
|
|
12494
|
-
url: this.type == 'takeAdvice' ? api["
|
|
12521
|
+
url: this.type == 'takeAdvice' ? api["Qb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Pb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Tb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Ub" /* toTwoOfficesDispatch */] : api["Sb" /* toTaskUnionExamine */],
|
|
12495
12522
|
params: { pendingId: this.pendingId },
|
|
12496
12523
|
headers: { Accept: 'application/json,text/plain' }
|
|
12497
12524
|
};
|
|
@@ -12585,7 +12612,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12585
12612
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
12586
12613
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
12587
12614
|
var param = {
|
|
12588
|
-
url: this.type === 'startDraf' ? api["
|
|
12615
|
+
url: this.type === 'startDraf' ? api["Cb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Gb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Wb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Db" /* taskTakeAdvice */] : api["Fb" /* taskUnionExamine */],
|
|
12589
12616
|
data: {
|
|
12590
12617
|
opinion: opinion,
|
|
12591
12618
|
pendingId: pendingId,
|
|
@@ -13405,6 +13432,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13405
13432
|
//
|
|
13406
13433
|
//
|
|
13407
13434
|
//
|
|
13435
|
+
//
|
|
13436
|
+
//
|
|
13437
|
+
//
|
|
13438
|
+
//
|
|
13439
|
+
//
|
|
13408
13440
|
|
|
13409
13441
|
|
|
13410
13442
|
|
|
@@ -13805,7 +13837,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13805
13837
|
taskAction: 'complete'
|
|
13806
13838
|
};
|
|
13807
13839
|
util["a" /* default */].ajax({
|
|
13808
|
-
url: api["
|
|
13840
|
+
url: api["zb" /* taskReadHtml */],
|
|
13809
13841
|
params: { taskAction: 'complete' },
|
|
13810
13842
|
headers: {
|
|
13811
13843
|
Accept: 'application/json,text/plain'
|
|
@@ -13837,7 +13869,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13837
13869
|
|
|
13838
13870
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
13839
13871
|
util["a" /* default */].ajax({
|
|
13840
|
-
url: api["
|
|
13872
|
+
url: api["Mb" /* toStartTaskReadIndex */],
|
|
13841
13873
|
params: { pendingId: this.pendingId }
|
|
13842
13874
|
}).then(function (res) {
|
|
13843
13875
|
var status = res.status,
|
|
@@ -13972,7 +14004,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13972
14004
|
pendingId: this.pendingId
|
|
13973
14005
|
};
|
|
13974
14006
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
13975
|
-
util["a" /* default */].ajax({ url: api["
|
|
14007
|
+
util["a" /* default */].ajax({ url: api["Hb" /* tempSave */], params: params }).then(function (res) {
|
|
13976
14008
|
var status = res.status,
|
|
13977
14009
|
message = res.message;
|
|
13978
14010
|
|
|
@@ -14878,8 +14910,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14878
14910
|
* @param {String} type 当前点击的弹窗类型
|
|
14879
14911
|
* @date 2022年5月25日
|
|
14880
14912
|
**/
|
|
14881
|
-
closeProcess: function closeProcess(val, type) {
|
|
14882
|
-
|
|
14913
|
+
closeProcess: function closeProcess(val, type, closeParent) {
|
|
14914
|
+
if (closeParent) {
|
|
14915
|
+
this.$refs[type].handleClosed();
|
|
14916
|
+
} else {
|
|
14917
|
+
this[type] = false;
|
|
14918
|
+
}
|
|
14883
14919
|
if (val == 'taskReadAndEnd' || val == true && type != 'taskRead' || val == 'transfer') {
|
|
14884
14920
|
this.$emit('success');
|
|
14885
14921
|
}
|
|
@@ -15175,7 +15211,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
15175
15211
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
15176
15212
|
params.nodeId = taskExamineInfo.nodeId;
|
|
15177
15213
|
params.needRetrialAuth = needRetrialAuth;
|
|
15178
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
15214
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["yb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
15179
15215
|
var status = res.status,
|
|
15180
15216
|
message = res.message;
|
|
15181
15217
|
|