eoss-ui 0.5.81-beta9 → 0.5.82
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 +82 -55
- package/lib/button.js +57 -48
- package/lib/checkbox-group.js +55 -47
- package/lib/clients.js +4 -3
- package/lib/config/api.js +3 -1
- package/lib/data-table-form.js +55 -47
- package/lib/data-table.js +473 -275
- package/lib/date-picker.js +69 -59
- package/lib/dialog.js +77 -72
- package/lib/eoss-ui.common.js +3985 -3049
- package/lib/flow-group.js +102 -65
- package/lib/flow-list.js +56 -48
- package/lib/flow.js +158 -85
- package/lib/form.js +88 -59
- package/lib/handle-user.js +66 -51
- package/lib/handler.js +69 -50
- package/lib/icon.js +55 -47
- package/lib/index.js +1 -1
- package/lib/input-number.js +55 -47
- package/lib/input.js +55 -47
- package/lib/login.js +104 -85
- package/lib/main.js +1375 -925
- package/lib/menu.js +1 -1
- package/lib/nav.js +55 -47
- package/lib/notify.js +54 -50
- package/lib/page.js +55 -47
- package/lib/pagination.js +3723 -3
- package/lib/player.js +60 -52
- package/lib/qr-code.js +55 -47
- package/lib/radio-group.js +55 -47
- package/lib/retrial-auth.js +56 -48
- package/lib/select-ganged.js +55 -47
- package/lib/select.js +55 -47
- package/lib/selector-panel.js +69 -60
- package/lib/selector.js +495 -424
- package/lib/sizer.js +55 -47
- package/lib/steps.js +55 -47
- package/lib/switch.js +55 -47
- package/lib/table-form.js +55 -47
- package/lib/tabs.js +1532 -1480
- 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/form.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/pagination.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-group.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/theme-chalk/upload.css +1 -1
- package/lib/tips.js +55 -47
- package/lib/tree-group.js +79 -50
- package/lib/tree.js +55 -47
- package/lib/upload.js +59 -51
- package/lib/utils/util.js +6 -2
- package/lib/wujie.js +55 -47
- package/lib/wxlogin.js +55 -47
- 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 +137 -54
- package/packages/data-table/src/main.vue +77 -67
- package/packages/data-table/src/sizer.vue +2 -0
- package/packages/date-picker/src/main.vue +22 -14
- 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 +21 -10
- package/packages/handle-user/src/main.vue +5 -1
- package/packages/handler/src/main.vue +7 -3
- package/packages/login/src/main.vue +22 -15
- package/packages/main/src/default/index.vue +111 -179
- package/packages/main/src/main.vue +233 -4
- package/packages/main/src/public/online.vue +89 -0
- package/packages/main/src/simplicity/apps.vue +3 -3
- package/packages/main/src/simplicity/handler.vue +6 -2
- package/packages/main/src/simplicity/index.vue +283 -238
- package/packages/main/src/simplicity/menu-list.vue +3 -2
- package/packages/main/src/simplicity/router-page.vue +5 -14
- package/packages/main/src/simplicity/sub-menu.vue +31 -9
- package/packages/menu/src/main.vue +4 -3
- package/packages/pagination/src/main.vue +20 -1
- package/packages/selector/src/main.vue +147 -135
- package/packages/selector-panel/src/main.vue +3 -2
- package/packages/selector-panel/src/selection.vue +2 -2
- package/packages/tabs/src/main.vue +25 -15
- 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/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/menu.css +1 -1
- package/packages/theme-chalk/lib/pagination.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-group.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 +39 -0
- package/packages/theme-chalk/src/button-group.scss +16 -2
- package/packages/theme-chalk/src/common/var.scss +7 -2
- package/packages/theme-chalk/src/data-table.scss +60 -23
- package/packages/theme-chalk/src/form.scss +42 -40
- package/packages/theme-chalk/src/main.scss +11 -0
- package/packages/theme-chalk/src/pagination.scss +7 -0
- package/packages/theme-chalk/src/simplicity.scss +45 -4
- package/packages/theme-chalk/src/tabs.scss +24 -28
- package/packages/theme-chalk/src/toolbar.scss +16 -4
- package/packages/theme-chalk/src/tree-group.scss +8 -0
- package/packages/theme-chalk/src/tree.scss +19 -6
- package/packages/tree-group/src/main.vue +16 -7
- package/src/config/api.js +3 -1
- package/src/index.js +157 -157
- package/src/utils/util.js +6 -1
- package/CHANGELOG.md +0 -929
package/lib/form.js
CHANGED
|
@@ -151,6 +151,7 @@ var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ store
|
|
|
151
151
|
* @param {String} [publicKey] - sm2加密公钥
|
|
152
152
|
* @param {Array} [secret] - 要加密的字段属性名称,默认所有
|
|
153
153
|
* @param {Array} [encodes] - 需要对参数值进行encodeURIComponent编码的参数值名称
|
|
154
|
+
* @param {Array} [oldmode] - 老接口转新数据结构
|
|
154
155
|
**/
|
|
155
156
|
// 请求
|
|
156
157
|
// const pendingRequest = new Map();
|
|
@@ -183,8 +184,8 @@ var ajax = function ajax(_ref) {
|
|
|
183
184
|
loading = _ref.loading,
|
|
184
185
|
publicKey = _ref.publicKey,
|
|
185
186
|
secret = _ref.secret,
|
|
186
|
-
|
|
187
|
-
|
|
187
|
+
encodes = _ref.encodes,
|
|
188
|
+
oldmode = _ref.oldmode;
|
|
188
189
|
|
|
189
190
|
var header = headers || {};
|
|
190
191
|
if (!method) {
|
|
@@ -485,6 +486,9 @@ var ajax = function ajax(_ref) {
|
|
|
485
486
|
header['content-type'] = 'application/json;charset=UTF-8';
|
|
486
487
|
}
|
|
487
488
|
}
|
|
489
|
+
if (oldmode && !header['api-response-mode']) {
|
|
490
|
+
header['api-response-mode'] = true;
|
|
491
|
+
}
|
|
488
492
|
return http({
|
|
489
493
|
method: method,
|
|
490
494
|
url: url,
|
|
@@ -3249,7 +3253,7 @@ var watermark = function watermark(option) {
|
|
|
3249
3253
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3250
3254
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
3251
3255
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
3252
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3256
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
|
|
3253
3257
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3254
3258
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3255
3259
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -3264,12 +3268,15 @@ var watermark = function watermark(option) {
|
|
|
3264
3268
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3265
3269
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
|
|
3266
3270
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
|
|
3267
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3271
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
3268
3272
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3269
3273
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3274
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
|
|
3275
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3276
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
3270
3277
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
3271
3278
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
3272
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3279
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
|
|
3273
3280
|
/* unused harmony export getUserImgUrl */
|
|
3274
3281
|
/* unused harmony export getDoorIndex */
|
|
3275
3282
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3277,19 +3284,18 @@ var watermark = function watermark(option) {
|
|
|
3277
3284
|
/* unused harmony export getApplicationIdArray */
|
|
3278
3285
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3279
3286
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
|
|
3280
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3281
3287
|
/* unused harmony export getUserCustomInfo */
|
|
3282
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3283
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3288
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
|
|
3289
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
|
|
3284
3290
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
3285
3291
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
3286
3292
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
|
|
3287
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3288
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3293
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
|
|
3294
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
|
|
3289
3295
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3290
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3296
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
|
|
3291
3297
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3292
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3298
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
|
|
3293
3299
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3294
3300
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3295
3301
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -3307,13 +3313,13 @@ var watermark = function watermark(option) {
|
|
|
3307
3313
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
3308
3314
|
/* unused harmony export getCurrentuser */
|
|
3309
3315
|
/* unused harmony export mainDetail */
|
|
3310
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3311
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3316
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
|
|
3317
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
|
|
3312
3318
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3313
3319
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3314
3320
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3315
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3316
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3321
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
3322
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
|
|
3317
3323
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3318
3324
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3319
3325
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -3322,52 +3328,52 @@ var watermark = function watermark(option) {
|
|
|
3322
3328
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3323
3329
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3324
3330
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3325
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3331
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
|
|
3326
3332
|
/* unused harmony export getView */
|
|
3327
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
3328
3334
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
|
|
3329
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3330
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3331
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3332
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3334
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3335
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3336
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3335
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
|
|
3336
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
|
|
3337
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
|
|
3338
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
|
|
3339
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
|
|
3340
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
3341
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
|
|
3342
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
|
|
3337
3343
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3338
3344
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
3339
3345
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return loginUserInfo; });
|
|
3340
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3341
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3346
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
|
|
3347
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
|
|
3342
3348
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3343
3349
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
|
|
3344
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3345
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3346
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3350
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
|
|
3351
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
|
|
3352
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
|
|
3347
3353
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3348
3354
|
/* unused harmony export historyListJson */
|
|
3349
3355
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3350
3356
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3351
3357
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3352
3358
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return isCanStartSubFlow; });
|
|
3353
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3354
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3355
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3356
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3357
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3358
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3359
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3360
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3361
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3362
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3363
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3364
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3365
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3366
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3359
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
|
|
3360
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
|
|
3361
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
|
|
3362
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
|
|
3363
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
|
|
3364
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
|
|
3365
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
|
|
3366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
|
|
3367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
|
|
3368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
|
|
3369
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
|
|
3370
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
|
|
3371
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
|
|
3372
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
|
|
3367
3373
|
/* unused harmony export sendSave */
|
|
3368
3374
|
/* unused harmony export sendUpdate */
|
|
3369
3375
|
/* unused harmony export sendDelete */
|
|
3370
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3376
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
|
|
3371
3377
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3372
3378
|
// 登录
|
|
3373
3379
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3395,6 +3401,9 @@ var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证
|
|
|
3395
3401
|
var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
|
|
3396
3402
|
|
|
3397
3403
|
// 框架
|
|
3404
|
+
var userOnline = 'sys/v1/mecpSys/userOnlineListJson.dhtml'; // 在线人数列表
|
|
3405
|
+
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3406
|
+
var recordUserApp = '/sysv3/sysUucApp/recordUserApp'; // 记录应用点击率
|
|
3398
3407
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
3399
3408
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
3400
3409
|
var updateUserInfo = '/main2/main/updateUserInfo'; // 更新用户信息
|
|
@@ -3405,7 +3414,6 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
|
|
|
3405
3414
|
var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
|
|
3406
3415
|
var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
|
|
3407
3416
|
var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
|
|
3408
|
-
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3409
3417
|
var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
|
|
3410
3418
|
var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
|
|
3411
3419
|
// 框架 - 系统消息
|
|
@@ -3950,7 +3958,7 @@ var bankCard = { pattern: new RegExp('^([1-9]{1})(\\d{14}|\\d{18})$'), message:
|
|
|
3950
3958
|
// ESM COMPAT FLAG
|
|
3951
3959
|
__webpack_require__.r(__webpack_exports__);
|
|
3952
3960
|
|
|
3953
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=
|
|
3961
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=6bf66132&
|
|
3954
3962
|
var render = function () {
|
|
3955
3963
|
var _vm = this
|
|
3956
3964
|
var _h = _vm.$createElement
|
|
@@ -4520,7 +4528,8 @@ var render = function () {
|
|
|
4520
4528
|
items.contents,
|
|
4521
4529
|
function (item) {
|
|
4522
4530
|
return [
|
|
4523
|
-
item.type === "caption"
|
|
4531
|
+
item.type === "caption" &&
|
|
4532
|
+
!item.hide
|
|
4524
4533
|
? _c(
|
|
4525
4534
|
"div",
|
|
4526
4535
|
{
|
|
@@ -4538,7 +4547,10 @@ var render = function () {
|
|
|
4538
4547
|
),
|
|
4539
4548
|
]
|
|
4540
4549
|
)
|
|
4541
|
-
: !item.hide
|
|
4550
|
+
: !item.hide &&
|
|
4551
|
+
!_vm.hides.includes(
|
|
4552
|
+
item.name
|
|
4553
|
+
)
|
|
4542
4554
|
? _c(
|
|
4543
4555
|
"el-form-item",
|
|
4544
4556
|
{
|
|
@@ -7359,7 +7371,7 @@ var render = function () {
|
|
|
7359
7371
|
: [
|
|
7360
7372
|
_vm._l(_vm.formContent, function (item) {
|
|
7361
7373
|
return [
|
|
7362
|
-
item.type === "caption"
|
|
7374
|
+
item.type === "caption" && !item.hide
|
|
7363
7375
|
? _c(
|
|
7364
7376
|
"div",
|
|
7365
7377
|
{
|
|
@@ -7375,7 +7387,8 @@ var render = function () {
|
|
|
7375
7387
|
),
|
|
7376
7388
|
]
|
|
7377
7389
|
)
|
|
7378
|
-
: !item.hide
|
|
7390
|
+
: !item.hide &&
|
|
7391
|
+
!_vm.hides.includes(item.name)
|
|
7379
7392
|
? _c(
|
|
7380
7393
|
"el-form-item",
|
|
7381
7394
|
{
|
|
@@ -10336,7 +10349,8 @@ var render = function () {
|
|
|
10336
10349
|
items.contents,
|
|
10337
10350
|
function (item) {
|
|
10338
10351
|
return [
|
|
10339
|
-
item.type === "caption"
|
|
10352
|
+
item.type === "caption" &&
|
|
10353
|
+
!item.hide
|
|
10340
10354
|
? _c(
|
|
10341
10355
|
"div",
|
|
10342
10356
|
{
|
|
@@ -10354,7 +10368,10 @@ var render = function () {
|
|
|
10354
10368
|
),
|
|
10355
10369
|
]
|
|
10356
10370
|
)
|
|
10357
|
-
: !item.hide
|
|
10371
|
+
: !item.hide &&
|
|
10372
|
+
!_vm.hides.includes(
|
|
10373
|
+
item.name
|
|
10374
|
+
)
|
|
10358
10375
|
? _c(
|
|
10359
10376
|
"el-form-item",
|
|
10360
10377
|
{
|
|
@@ -13016,7 +13033,7 @@ var render = function () {
|
|
|
13016
13033
|
: [
|
|
13017
13034
|
_vm._l(_vm.formContent, function (item) {
|
|
13018
13035
|
return [
|
|
13019
|
-
item.type === "caption"
|
|
13036
|
+
item.type === "caption" && !item.hide
|
|
13020
13037
|
? _c(
|
|
13021
13038
|
"div",
|
|
13022
13039
|
{
|
|
@@ -13031,7 +13048,8 @@ var render = function () {
|
|
|
13031
13048
|
),
|
|
13032
13049
|
]
|
|
13033
13050
|
)
|
|
13034
|
-
: !item.hide
|
|
13051
|
+
: !item.hide &&
|
|
13052
|
+
!_vm.hides.includes(item.name)
|
|
13035
13053
|
? _c(
|
|
13036
13054
|
"el-form-item",
|
|
13037
13055
|
{
|
|
@@ -15486,7 +15504,7 @@ var staticRenderFns = []
|
|
|
15486
15504
|
render._withStripped = true
|
|
15487
15505
|
|
|
15488
15506
|
|
|
15489
|
-
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=
|
|
15507
|
+
// CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=6bf66132&
|
|
15490
15508
|
|
|
15491
15509
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
15492
15510
|
var regenerator_ = __webpack_require__(13);
|
|
@@ -19587,6 +19605,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19587
19605
|
}
|
|
19588
19606
|
},
|
|
19589
19607
|
props: {
|
|
19608
|
+
hides: {
|
|
19609
|
+
type: Array,
|
|
19610
|
+
default: function _default() {
|
|
19611
|
+
return [];
|
|
19612
|
+
}
|
|
19613
|
+
},
|
|
19590
19614
|
model: {
|
|
19591
19615
|
type: [Object, String]
|
|
19592
19616
|
},
|
|
@@ -19739,7 +19763,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19739
19763
|
return {};
|
|
19740
19764
|
}
|
|
19741
19765
|
},
|
|
19742
|
-
active: Array
|
|
19766
|
+
active: Array,
|
|
19767
|
+
resetActive: Boolean
|
|
19743
19768
|
},
|
|
19744
19769
|
data: function data() {
|
|
19745
19770
|
return {
|
|
@@ -19946,7 +19971,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19946
19971
|
}
|
|
19947
19972
|
});
|
|
19948
19973
|
if (!this.active || this.active && !this.active.length) {
|
|
19949
|
-
this.
|
|
19974
|
+
if (this.resetActive) {
|
|
19975
|
+
this.activeNames = names;
|
|
19976
|
+
} else if (this.activeNames.length == 0) {
|
|
19977
|
+
this.activeNames = names;
|
|
19978
|
+
}
|
|
19950
19979
|
}
|
|
19951
19980
|
this.content = contents;
|
|
19952
19981
|
if (this.content.length === 1) {
|
package/lib/handle-user.js
CHANGED
|
@@ -152,6 +152,7 @@ var JSONbigToString = json_bigint__WEBPACK_IMPORTED_MODULE_3___default()({ store
|
|
|
152
152
|
* @param {String} [publicKey] - sm2加密公钥
|
|
153
153
|
* @param {Array} [secret] - 要加密的字段属性名称,默认所有
|
|
154
154
|
* @param {Array} [encodes] - 需要对参数值进行encodeURIComponent编码的参数值名称
|
|
155
|
+
* @param {Array} [oldmode] - 老接口转新数据结构
|
|
155
156
|
**/
|
|
156
157
|
// 请求
|
|
157
158
|
// const pendingRequest = new Map();
|
|
@@ -184,8 +185,8 @@ var ajax = function ajax(_ref) {
|
|
|
184
185
|
loading = _ref.loading,
|
|
185
186
|
publicKey = _ref.publicKey,
|
|
186
187
|
secret = _ref.secret,
|
|
187
|
-
|
|
188
|
-
|
|
188
|
+
encodes = _ref.encodes,
|
|
189
|
+
oldmode = _ref.oldmode;
|
|
189
190
|
|
|
190
191
|
var header = headers || {};
|
|
191
192
|
if (!method) {
|
|
@@ -486,6 +487,9 @@ var ajax = function ajax(_ref) {
|
|
|
486
487
|
header['content-type'] = 'application/json;charset=UTF-8';
|
|
487
488
|
}
|
|
488
489
|
}
|
|
490
|
+
if (oldmode && !header['api-response-mode']) {
|
|
491
|
+
header['api-response-mode'] = true;
|
|
492
|
+
}
|
|
489
493
|
return http({
|
|
490
494
|
method: method,
|
|
491
495
|
url: url,
|
|
@@ -3251,7 +3255,7 @@ var watermark = function watermark(option) {
|
|
|
3251
3255
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
|
|
3252
3256
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return logout; });
|
|
3253
3257
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initLogin; });
|
|
3254
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3258
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return switchUserTo; });
|
|
3255
3259
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
|
|
3256
3260
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
|
|
3257
3261
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
|
|
@@ -3266,12 +3270,15 @@ var watermark = function watermark(option) {
|
|
|
3266
3270
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
|
|
3267
3271
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initRetrialAuth; });
|
|
3268
3272
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
|
|
3269
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3273
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return scanCodeRetrialAuth; });
|
|
3270
3274
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3271
3275
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3276
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return userOnline; });
|
|
3277
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return getUserAppWithTag; });
|
|
3278
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return recordUserApp; });
|
|
3272
3279
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainConfig; });
|
|
3273
3280
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return initUserSet; });
|
|
3274
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3281
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return updateUserInfo; });
|
|
3275
3282
|
/* unused harmony export getUserImgUrl */
|
|
3276
3283
|
/* unused harmony export getDoorIndex */
|
|
3277
3284
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3279,19 +3286,18 @@ var watermark = function watermark(option) {
|
|
|
3279
3286
|
/* unused harmony export getApplicationIdArray */
|
|
3280
3287
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
|
|
3281
3288
|
/* 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
3289
|
/* unused harmony export getUserCustomInfo */
|
|
3284
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3285
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3290
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserCustomInfo; });
|
|
3291
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return sysMsgPage; });
|
|
3286
3292
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return ignoreSysMsg; });
|
|
3287
3293
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreAllSysMsg; });
|
|
3288
3294
|
/* 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__, "
|
|
3295
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return uploads; });
|
|
3296
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadOnlyOne; });
|
|
3291
3297
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
|
|
3292
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3298
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploadSort; });
|
|
3293
3299
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3294
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3300
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadDownloads; });
|
|
3295
3301
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
|
|
3296
3302
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
|
|
3297
3303
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
|
|
@@ -3309,13 +3315,13 @@ var watermark = function watermark(option) {
|
|
|
3309
3315
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return gethelpdoc; });
|
|
3310
3316
|
/* unused harmony export getCurrentuser */
|
|
3311
3317
|
/* unused harmony export mainDetail */
|
|
3312
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3313
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3318
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartFlow; });
|
|
3319
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return tempSave; });
|
|
3314
3320
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
|
|
3315
3321
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3316
3322
|
/* 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__, "
|
|
3323
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return saveCommonOpinion; });
|
|
3324
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateCommonOpinion; });
|
|
3319
3325
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3320
3326
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
|
|
3321
3327
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
|
|
@@ -3324,52 +3330,52 @@ var watermark = function watermark(option) {
|
|
|
3324
3330
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
|
|
3325
3331
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
|
|
3326
3332
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
|
|
3327
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3333
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskHandleHtml; });
|
|
3328
3334
|
/* unused harmony export getView */
|
|
3329
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3335
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return register; });
|
|
3330
3336
|
/* 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__, "
|
|
3337
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskRejectHtml; });
|
|
3338
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskRejectHtml; });
|
|
3339
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskRead; });
|
|
3340
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toStartTaskReadIndex; });
|
|
3341
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReadHtml; });
|
|
3342
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return rejectAndEnd; });
|
|
3343
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toSendMsg; });
|
|
3344
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sendMsg; });
|
|
3339
3345
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3340
3346
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return handleInfo; });
|
|
3341
3347
|
/* 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__, "
|
|
3348
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return wss; });
|
|
3349
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return topic; });
|
|
3344
3350
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
|
|
3345
3351
|
/* 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__, "
|
|
3352
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskTransferIndex; });
|
|
3353
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskTransfer; });
|
|
3354
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toPresetInfoListIndex; });
|
|
3349
3355
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
3350
3356
|
/* unused harmony export historyListJson */
|
|
3351
3357
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
|
|
3352
3358
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
|
|
3353
3359
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3354
3360
|
/* 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__, "
|
|
3361
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionExamine; });
|
|
3362
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionExamine; });
|
|
3363
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTakeAdvice; });
|
|
3364
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTakeAdvice; });
|
|
3365
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskStartDraft; });
|
|
3366
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskStartDraft; });
|
|
3367
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskReview; });
|
|
3368
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskReview; });
|
|
3369
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskUnionSeal; });
|
|
3370
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskUnionSeal; });
|
|
3371
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return toTwoOfficesDispatch; });
|
|
3372
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return twoOfficesDispatch; });
|
|
3373
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendList; });
|
|
3374
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendInfo; });
|
|
3369
3375
|
/* unused harmony export sendSave */
|
|
3370
3376
|
/* unused harmony export sendUpdate */
|
|
3371
3377
|
/* unused harmony export sendDelete */
|
|
3372
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3378
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendBatch; });
|
|
3373
3379
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
|
|
3374
3380
|
// 登录
|
|
3375
3381
|
var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
|
|
@@ -3397,6 +3403,9 @@ var codeRetrialAuth = '/sso2/retrialAuth/codeRetrialAuth'; // 二级身份验证
|
|
|
3397
3403
|
var doAssistanceQrLogin = '/sso2/signIn/auth/doAssistanceQrLogin'; // 二级身份验证-验证码验证
|
|
3398
3404
|
|
|
3399
3405
|
// 框架
|
|
3406
|
+
var userOnline = 'sys/v1/mecpSys/userOnlineListJson.dhtml'; // 在线人数列表
|
|
3407
|
+
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3408
|
+
var recordUserApp = '/sysv3/sysUucApp/recordUserApp'; // 记录应用点击率
|
|
3400
3409
|
var mainConfig = '/main2/main/mainConfig'; // 获取主页面配置
|
|
3401
3410
|
var initUserSet = '/main2/main/initUserSet'; // 获取用户信息
|
|
3402
3411
|
var updateUserInfo = '/main2/main/updateUserInfo'; // 更新用户信息
|
|
@@ -3407,7 +3416,6 @@ var getQuickMenuIds = '/main2/main/getQuickMenuIds'; // 获取已绑定的快捷
|
|
|
3407
3416
|
var getApplicationIdArray = '/main2/main/getApplicationIdArray'; // 获取应用父id数组
|
|
3408
3417
|
var getComplexApplications = '/main2/menu/getComplexApplications'; // 获取当前用户菜单; 含页签菜单格式的数据
|
|
3409
3418
|
var getComplexApplicationsNew = '/main2/menu/getComplexApplicationsNew'; // 获取当前用户应用菜单; 含页签菜单格式的数据
|
|
3410
|
-
var getUserAppWithTag = '/sysv3/sysUucApp/getUserAppWithTag'; // 获取应用
|
|
3411
3419
|
var getUserCustomInfo = '/main2/main/getUserCustomInfo'; // 获取主题样式
|
|
3412
3420
|
var updateUserCustomInfo = '/main2/main/updateUserCustomInfo'; // 更新主题样式
|
|
3413
3421
|
// 框架 - 系统消息
|
|
@@ -3753,7 +3761,7 @@ module.exports = require("qs");
|
|
|
3753
3761
|
// ESM COMPAT FLAG
|
|
3754
3762
|
__webpack_require__.r(__webpack_exports__);
|
|
3755
3763
|
|
|
3756
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=
|
|
3764
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/handle-user/src/main.vue?vue&type=template&id=737d6f93&
|
|
3757
3765
|
var render = function () {
|
|
3758
3766
|
var _vm = this
|
|
3759
3767
|
var _h = _vm.$createElement
|
|
@@ -3794,7 +3802,10 @@ var render = function () {
|
|
|
3794
3802
|
trigger: "click",
|
|
3795
3803
|
placement: "bottom-start",
|
|
3796
3804
|
},
|
|
3797
|
-
on: {
|
|
3805
|
+
on: {
|
|
3806
|
+
command: _vm.handleChange,
|
|
3807
|
+
"visible-change": _vm.handleVisibleChange,
|
|
3808
|
+
},
|
|
3798
3809
|
},
|
|
3799
3810
|
[
|
|
3800
3811
|
_c(
|
|
@@ -3847,7 +3858,7 @@ var staticRenderFns = []
|
|
|
3847
3858
|
render._withStripped = true
|
|
3848
3859
|
|
|
3849
3860
|
|
|
3850
|
-
// CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=
|
|
3861
|
+
// CONCATENATED MODULE: ./packages/handle-user/src/main.vue?vue&type=template&id=737d6f93&
|
|
3851
3862
|
|
|
3852
3863
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
3853
3864
|
var api = __webpack_require__(1);
|
|
@@ -3899,6 +3910,7 @@ var util = __webpack_require__(0);
|
|
|
3899
3910
|
//
|
|
3900
3911
|
//
|
|
3901
3912
|
//
|
|
3913
|
+
//
|
|
3902
3914
|
|
|
3903
3915
|
|
|
3904
3916
|
|
|
@@ -3952,7 +3964,7 @@ var util = __webpack_require__(0);
|
|
|
3952
3964
|
|
|
3953
3965
|
if (this.job.id !== item.id) {
|
|
3954
3966
|
this.job = item;
|
|
3955
|
-
util["a" /* default */].ajax({ url: api["
|
|
3967
|
+
util["a" /* default */].ajax({ url: api["vb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
|
|
3956
3968
|
if (res.rCode == 0) {
|
|
3957
3969
|
util["a" /* default */].setStorage({
|
|
3958
3970
|
type: _this.storage,
|
|
@@ -3983,6 +3995,9 @@ var util = __webpack_require__(0);
|
|
|
3983
3995
|
});
|
|
3984
3996
|
this.$emit('change', item);
|
|
3985
3997
|
}
|
|
3998
|
+
},
|
|
3999
|
+
handleVisibleChange: function handleVisibleChange(res) {
|
|
4000
|
+
this.$emit('visible-change', res);
|
|
3986
4001
|
}
|
|
3987
4002
|
}
|
|
3988
4003
|
});
|