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/flow.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
|
// 框架 - 系统消息
|
|
@@ -4082,7 +4090,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4082
4090
|
// ESM COMPAT FLAG
|
|
4083
4091
|
__webpack_require__.r(__webpack_exports__);
|
|
4084
4092
|
|
|
4085
|
-
// 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=
|
|
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=ca6d1df4&
|
|
4086
4094
|
var render = function () {
|
|
4087
4095
|
var _vm = this
|
|
4088
4096
|
var _h = _vm.$createElement
|
|
@@ -4123,14 +4131,18 @@ var render = function () {
|
|
|
4123
4131
|
),
|
|
4124
4132
|
]
|
|
4125
4133
|
),
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
+
_vm.showShrink
|
|
4135
|
+
? _c("es-button", {
|
|
4136
|
+
staticClass: "es-icon",
|
|
4137
|
+
attrs: {
|
|
4138
|
+
size: "medium",
|
|
4139
|
+
icon: _vm.shrink
|
|
4140
|
+
? "es-icon-indent"
|
|
4141
|
+
: "es-icon-increase",
|
|
4142
|
+
},
|
|
4143
|
+
on: { click: _vm.setShrink },
|
|
4144
|
+
})
|
|
4145
|
+
: _vm._e(),
|
|
4134
4146
|
],
|
|
4135
4147
|
1
|
|
4136
4148
|
),
|
|
@@ -4422,6 +4434,52 @@ var render = function () {
|
|
|
4422
4434
|
],
|
|
4423
4435
|
1
|
|
4424
4436
|
),
|
|
4437
|
+
_vm.isCanPreAddSign
|
|
4438
|
+
? _c(
|
|
4439
|
+
"el-form-item",
|
|
4440
|
+
{
|
|
4441
|
+
attrs: {
|
|
4442
|
+
prop: "addSignMode",
|
|
4443
|
+
label: "加签模式",
|
|
4444
|
+
rules: [
|
|
4445
|
+
{ required: true, trigger: "blur" },
|
|
4446
|
+
],
|
|
4447
|
+
},
|
|
4448
|
+
},
|
|
4449
|
+
[
|
|
4450
|
+
_c(
|
|
4451
|
+
"el-radio-group",
|
|
4452
|
+
{
|
|
4453
|
+
model: {
|
|
4454
|
+
value: _vm.nextNode.addSignMode,
|
|
4455
|
+
callback: function ($$v) {
|
|
4456
|
+
_vm.$set(
|
|
4457
|
+
_vm.nextNode,
|
|
4458
|
+
"addSignMode",
|
|
4459
|
+
$$v
|
|
4460
|
+
)
|
|
4461
|
+
},
|
|
4462
|
+
expression: "nextNode.addSignMode",
|
|
4463
|
+
},
|
|
4464
|
+
},
|
|
4465
|
+
[
|
|
4466
|
+
_c(
|
|
4467
|
+
"el-radio",
|
|
4468
|
+
{ attrs: { label: "preAddSign" } },
|
|
4469
|
+
[_vm._v("前置加签")]
|
|
4470
|
+
),
|
|
4471
|
+
_c(
|
|
4472
|
+
"el-radio",
|
|
4473
|
+
{ attrs: { label: "postAddSign" } },
|
|
4474
|
+
[_vm._v("后置加签")]
|
|
4475
|
+
),
|
|
4476
|
+
],
|
|
4477
|
+
1
|
|
4478
|
+
),
|
|
4479
|
+
],
|
|
4480
|
+
1
|
|
4481
|
+
)
|
|
4482
|
+
: _vm._e(),
|
|
4425
4483
|
],
|
|
4426
4484
|
1
|
|
4427
4485
|
),
|
|
@@ -5148,7 +5206,7 @@ var render = function () {
|
|
|
5148
5206
|
},
|
|
5149
5207
|
],
|
|
5150
5208
|
staticStyle: {
|
|
5151
|
-
|
|
5209
|
+
border: "1px solid #ccc",
|
|
5152
5210
|
padding: "5px",
|
|
5153
5211
|
"border-radius": "5px",
|
|
5154
5212
|
"font-size": "13px",
|
|
@@ -5807,7 +5865,7 @@ var staticRenderFns = []
|
|
|
5807
5865
|
render._withStripped = true
|
|
5808
5866
|
|
|
5809
5867
|
|
|
5810
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
5868
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=ca6d1df4&
|
|
5811
5869
|
|
|
5812
5870
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
5813
5871
|
var regenerator_ = __webpack_require__(13);
|
|
@@ -6761,7 +6819,7 @@ var _components;
|
|
|
6761
6819
|
}
|
|
6762
6820
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
6763
6821
|
util["a" /* default */].ajax({
|
|
6764
|
-
url: data.id ? api["
|
|
6822
|
+
url: data.id ? api["Wb" /* updateCommonOpinion */] : api["pb" /* saveCommonOpinion */],
|
|
6765
6823
|
data: info,
|
|
6766
6824
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
6767
6825
|
method: 'post'
|
|
@@ -9333,7 +9391,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9333
9391
|
opinion: _this4.newOpinion || newOpinion
|
|
9334
9392
|
};
|
|
9335
9393
|
if (_this4.activeNames != '1') delete params.customPresetUserJson;
|
|
9336
|
-
util["a" /* default */].ajax({ url: api["
|
|
9394
|
+
util["a" /* default */].ajax({ url: api["nb" /* register */], method: 'post', data: params }).then(function (res) {
|
|
9337
9395
|
var status = res.status,
|
|
9338
9396
|
message = res.message;
|
|
9339
9397
|
|
|
@@ -9519,7 +9577,7 @@ var processFormvue_type_script_lang_js_components;
|
|
|
9519
9577
|
businessId: this.businessId
|
|
9520
9578
|
};
|
|
9521
9579
|
// 获取节点
|
|
9522
|
-
util["a" /* default */].ajax({ url: api["
|
|
9580
|
+
util["a" /* default */].ajax({ url: api["Jb" /* toStartFlow */], params: params }).then(function (res) {
|
|
9523
9581
|
//pc接口返回数据处理
|
|
9524
9582
|
var status = res.status,
|
|
9525
9583
|
message = res.message,
|
|
@@ -9966,7 +10024,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
9966
10024
|
notificationType = _sendInfo.notificationType;
|
|
9967
10025
|
|
|
9968
10026
|
var params = {
|
|
9969
|
-
url: api["
|
|
10027
|
+
url: api["ub" /* sendMsg */],
|
|
9970
10028
|
headers: { Accept: 'application/json,text/plain' },
|
|
9971
10029
|
method: 'post',
|
|
9972
10030
|
data: {
|
|
@@ -10028,7 +10086,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
|
|
|
10028
10086
|
|
|
10029
10087
|
this.loading = true;
|
|
10030
10088
|
util["a" /* default */].ajax({
|
|
10031
|
-
url: api["
|
|
10089
|
+
url: api["Ib" /* toSendMsg */],
|
|
10032
10090
|
params: { pendingId: this.$attrs.pendingId }
|
|
10033
10091
|
}).then(function (res) {
|
|
10034
10092
|
var status = res.status,
|
|
@@ -10846,7 +10904,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10846
10904
|
userId: util["a" /* default */].getStorage('userId'),
|
|
10847
10905
|
nextNodeId: _this2.nextNode.nextNodeId
|
|
10848
10906
|
};
|
|
10849
|
-
util["a" /* default */].ajax({ url: api["
|
|
10907
|
+
util["a" /* default */].ajax({ url: api["zb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
|
|
10850
10908
|
var status = res.status,
|
|
10851
10909
|
message = res.message;
|
|
10852
10910
|
|
|
@@ -10901,7 +10959,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
|
|
|
10901
10959
|
isSinglePage: false,
|
|
10902
10960
|
opinion: this.option
|
|
10903
10961
|
};
|
|
10904
|
-
util["a" /* default */].ajax({ url: api["
|
|
10962
|
+
util["a" /* default */].ajax({ url: api["Mb" /* toTaskRejectHtml */], params: params }).then(function (res) {
|
|
10905
10963
|
var status = res.status,
|
|
10906
10964
|
message = res.message,
|
|
10907
10965
|
_res$data = res.data,
|
|
@@ -11577,7 +11635,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11577
11635
|
taskExamine = this.taskExamine;
|
|
11578
11636
|
|
|
11579
11637
|
var params = {
|
|
11580
|
-
url: api["
|
|
11638
|
+
url: api["Qb" /* toTaskTransferIndex */],
|
|
11581
11639
|
params: {
|
|
11582
11640
|
opinion: opinion,
|
|
11583
11641
|
pendingId: pendingId,
|
|
@@ -11702,7 +11760,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11702
11760
|
var _this3 = this;
|
|
11703
11761
|
|
|
11704
11762
|
var params = {
|
|
11705
|
-
url: api["
|
|
11763
|
+
url: api["Kb" /* toStartTaskRead */],
|
|
11706
11764
|
params: { pendingId: this.pendingId, taskAction: this.type }
|
|
11707
11765
|
};
|
|
11708
11766
|
if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
|
|
@@ -11775,7 +11833,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11775
11833
|
type = this.type;
|
|
11776
11834
|
|
|
11777
11835
|
var params = {
|
|
11778
|
-
url: api["
|
|
11836
|
+
url: api["Db" /* taskTransfer */],
|
|
11779
11837
|
data: {
|
|
11780
11838
|
choiceDeptId: choiceDeptId,
|
|
11781
11839
|
choiceOrgId: choiceOrgId,
|
|
@@ -11869,7 +11927,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
11869
11927
|
!download && delete params.isDownload;
|
|
11870
11928
|
isCdjxjTaskHandle == 'true' && delete params.noticeType;
|
|
11871
11929
|
util["a" /* default */].ajax({
|
|
11872
|
-
url: api["
|
|
11930
|
+
url: api["yb" /* taskReadHtml */],
|
|
11873
11931
|
params: { taskAction: _this7.type },
|
|
11874
11932
|
headers: {
|
|
11875
11933
|
Accept: 'application/json,text/plain'
|
|
@@ -12362,7 +12420,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12362
12420
|
pendingId = this.pendingId;
|
|
12363
12421
|
|
|
12364
12422
|
var params = {
|
|
12365
|
-
url: api["
|
|
12423
|
+
url: api["Ab" /* taskReview */],
|
|
12366
12424
|
data: {
|
|
12367
12425
|
nextUserId: nextOtherOrgObj.join(','),
|
|
12368
12426
|
notificationType: noticeType.join(','),
|
|
@@ -12398,7 +12456,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12398
12456
|
var _this2 = this;
|
|
12399
12457
|
|
|
12400
12458
|
var params = {
|
|
12401
|
-
url: api["
|
|
12459
|
+
url: api["Nb" /* toTaskReview */],
|
|
12402
12460
|
params: { pendingId: this.pendingId }
|
|
12403
12461
|
};
|
|
12404
12462
|
util["a" /* default */].ajax(params).then(function (res) {
|
|
@@ -12433,7 +12491,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12433
12491
|
var _this3 = this;
|
|
12434
12492
|
|
|
12435
12493
|
var params = {
|
|
12436
|
-
url: this.type == 'takeAdvice' ? api["
|
|
12494
|
+
url: this.type == 'takeAdvice' ? api["Pb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Ob" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Sb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Tb" /* toTwoOfficesDispatch */] : api["Rb" /* toTaskUnionExamine */],
|
|
12437
12495
|
params: { pendingId: this.pendingId },
|
|
12438
12496
|
headers: { Accept: 'application/json,text/plain' }
|
|
12439
12497
|
};
|
|
@@ -12527,7 +12585,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
12527
12585
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
12528
12586
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
12529
12587
|
var param = {
|
|
12530
|
-
url: this.type === 'startDraf' ? api["
|
|
12588
|
+
url: this.type === 'startDraf' ? api["Bb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Fb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Vb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Cb" /* taskTakeAdvice */] : api["Eb" /* taskUnionExamine */],
|
|
12531
12589
|
data: {
|
|
12532
12590
|
opinion: opinion,
|
|
12533
12591
|
pendingId: pendingId,
|
|
@@ -13337,6 +13395,16 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13337
13395
|
//
|
|
13338
13396
|
//
|
|
13339
13397
|
//
|
|
13398
|
+
//
|
|
13399
|
+
//
|
|
13400
|
+
//
|
|
13401
|
+
//
|
|
13402
|
+
//
|
|
13403
|
+
//
|
|
13404
|
+
//
|
|
13405
|
+
//
|
|
13406
|
+
//
|
|
13407
|
+
//
|
|
13340
13408
|
|
|
13341
13409
|
|
|
13342
13410
|
|
|
@@ -13356,6 +13424,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13356
13424
|
componentName: 'EsFlow',
|
|
13357
13425
|
components: (mainvue_type_script_lang_js_components = {}, mainvue_type_script_lang_js_components[processForm.name] = processForm, mainvue_type_script_lang_js_components[processReject.name] = processReject, mainvue_type_script_lang_js_components[startTaskRead.name] = startTaskRead, mainvue_type_script_lang_js_components[CustomPreset.name] = CustomPreset, mainvue_type_script_lang_js_components[CommonOpinions.name] = CommonOpinions, mainvue_type_script_lang_js_components[FileList["a" /* default */].name] = FileList["a" /* default */], mainvue_type_script_lang_js_components[TimeLimit.name] = TimeLimit, mainvue_type_script_lang_js_components[SendMsg.name] = SendMsg, mainvue_type_script_lang_js_components[selectUser.name] = selectUser, mainvue_type_script_lang_js_components[taskUnionExamine.name] = taskUnionExamine, mainvue_type_script_lang_js_components.Preset = Preset, mainvue_type_script_lang_js_components),
|
|
13358
13426
|
props: {
|
|
13427
|
+
showShrink: { type: Boolean, default: true },
|
|
13359
13428
|
isStartFlow: { type: Boolean, default: false },
|
|
13360
13429
|
businessId: { type: String, default: '' },
|
|
13361
13430
|
pendingId: { type: String, default: '' },
|
|
@@ -13389,6 +13458,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13389
13458
|
return _ref = {
|
|
13390
13459
|
styles: {},
|
|
13391
13460
|
userModel: {},
|
|
13461
|
+
isCanPreAddSign: false,
|
|
13392
13462
|
nextOtherOrgObjSelect: [],
|
|
13393
13463
|
subProcessColumns: [],
|
|
13394
13464
|
nextCurrentOrgObjSelect: [],
|
|
@@ -13478,6 +13548,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13478
13548
|
}
|
|
13479
13549
|
}, _ref['isLimitedTimeHandling'] = false, _ref.moreList = [], _ref.newsList = [], _ref.isSpecial = false, _ref.taskId = '', _ref.showNews = false, _ref.userInfo = '', _ref.objType = '', _ref.nodeDefaultSubmitOpinion = '', _ref.nodeDefaultRejectOpinion = '', _ref.choiceOrgId = '', _ref.choiceDeptId = '', _ref.pOrgId = '', _ref.isOpinionRequired = 0, _ref.nextUserSelectList = [], _ref.processObj = {}, _ref.pid = '123', _ref.isCanRemoveSign = false, _ref.isCanAddSign = false, _ref.AddSignUserList = [], _ref.RemoveSignUserList = [], _ref.operationList = [], _ref.userList = [], _ref.handleMode = '', _ref.countersignaturetypeCode = 0, _ref.presetEdit = 0, _ref.isShowNextUser = true, _ref.nextUserTypes = ['employee', 'persongroup'], _ref.nextUserTabs = {}, _ref.presetReadUserId = [], _ref.nextNode = {
|
|
13480
13550
|
nextNodeId: '', // 下步节点
|
|
13551
|
+
addSignMode: 'postAddSign',
|
|
13481
13552
|
isAddSign: '', // 是否加签
|
|
13482
13553
|
isRemoveSign: '', // 是否减签
|
|
13483
13554
|
nextOperate: '', // 下步操作
|
|
@@ -13734,7 +13805,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13734
13805
|
taskAction: 'complete'
|
|
13735
13806
|
};
|
|
13736
13807
|
util["a" /* default */].ajax({
|
|
13737
|
-
url: api["
|
|
13808
|
+
url: api["yb" /* taskReadHtml */],
|
|
13738
13809
|
params: { taskAction: 'complete' },
|
|
13739
13810
|
headers: {
|
|
13740
13811
|
Accept: 'application/json,text/plain'
|
|
@@ -13766,7 +13837,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13766
13837
|
|
|
13767
13838
|
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
13768
13839
|
util["a" /* default */].ajax({
|
|
13769
|
-
url: api["
|
|
13840
|
+
url: api["Lb" /* toStartTaskReadIndex */],
|
|
13770
13841
|
params: { pendingId: this.pendingId }
|
|
13771
13842
|
}).then(function (res) {
|
|
13772
13843
|
var status = res.status,
|
|
@@ -13901,7 +13972,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13901
13972
|
pendingId: this.pendingId
|
|
13902
13973
|
};
|
|
13903
13974
|
this.loading = util["a" /* default */].loading(this.$loading, '保存中...');
|
|
13904
|
-
util["a" /* default */].ajax({ url: api["
|
|
13975
|
+
util["a" /* default */].ajax({ url: api["Gb" /* tempSave */], params: params }).then(function (res) {
|
|
13905
13976
|
var status = res.status,
|
|
13906
13977
|
message = res.message;
|
|
13907
13978
|
|
|
@@ -13938,7 +14009,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
13938
14009
|
_this8.showReject = true;
|
|
13939
14010
|
}).catch(function (e) {});
|
|
13940
14011
|
} else {
|
|
13941
|
-
|
|
13942
14012
|
this.showReject = true;
|
|
13943
14013
|
}
|
|
13944
14014
|
},
|
|
@@ -14251,7 +14321,6 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14251
14321
|
if (!this.$refs.commonOpinions.validate()) return;
|
|
14252
14322
|
}
|
|
14253
14323
|
if (this.beforeSubmit != undefined) {
|
|
14254
|
-
|
|
14255
14324
|
this.beforeSubmit().then(function (next) {
|
|
14256
14325
|
_this18.saveRejectAndEnd(res);
|
|
14257
14326
|
}).catch(function (e) {});
|
|
@@ -14263,10 +14332,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14263
14332
|
var _this19 = this;
|
|
14264
14333
|
|
|
14265
14334
|
this.$confirm('确认' + res.value + '?').then(function () {
|
|
14266
|
-
|
|
14267
14335
|
// return this.$message.warning('请填写意见');
|
|
14268
14336
|
var params = {
|
|
14269
|
-
url: api["
|
|
14337
|
+
url: api["ob" /* rejectAndEnd */],
|
|
14270
14338
|
headers: { Accept: 'application/json,text/plain' },
|
|
14271
14339
|
method: 'post',
|
|
14272
14340
|
data: {
|
|
@@ -14610,12 +14678,14 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
14610
14678
|
isSpecial = _res$data2.isSpecial,
|
|
14611
14679
|
canPresetRead = _res$data2.canPresetRead,
|
|
14612
14680
|
isCdjxjTaskHandle = _res$data2.isCdjxjTaskHandle,
|
|
14613
|
-
taskButtonList = _res$data2.taskButtonList
|
|
14681
|
+
taskButtonList = _res$data2.taskButtonList,
|
|
14682
|
+
isCanPreAddSign = _res$data2.isCanPreAddSign;
|
|
14614
14683
|
|
|
14615
14684
|
_this23.$emit('startTaskRead', res);
|
|
14616
14685
|
_this23.$emit('start-task-read', res);
|
|
14617
14686
|
_this23.currentOrgName = currentOrgName;
|
|
14618
14687
|
_this23.otherOrgName = otherOrgName;
|
|
14688
|
+
_this23.isCanPreAddSign = isCanPreAddSign;
|
|
14619
14689
|
_this23.endFlowInfo.choiceOrgId = choiceOrgId;
|
|
14620
14690
|
_this23.endFlowInfo.choiceDeptId = choiceDeptId;
|
|
14621
14691
|
_this23.endFlowInfo.pendingId = _this23.pendingId;
|
|
@@ -15003,7 +15073,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
15003
15073
|
switch (_context.prev = _context.next) {
|
|
15004
15074
|
case 0:
|
|
15005
15075
|
if (!valid) {
|
|
15006
|
-
_context.next =
|
|
15076
|
+
_context.next = 43;
|
|
15007
15077
|
break;
|
|
15008
15078
|
}
|
|
15009
15079
|
|
|
@@ -15066,6 +15136,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
15066
15136
|
notificationType = _this27.nextNode.notificationType.join(',');
|
|
15067
15137
|
addSignUserId = addSignUserId.join(',');
|
|
15068
15138
|
removeSignUserId = removeSignUserId.join(',');
|
|
15139
|
+
if (!_this27.isCanPreAddSign) {
|
|
15140
|
+
delete _this27.nextNode.addSignMode;
|
|
15141
|
+
}
|
|
15069
15142
|
params = mainvue_type_script_lang_js_extends({}, _this27.nextNode, {
|
|
15070
15143
|
pendingId: _this27.pendingId,
|
|
15071
15144
|
opinion: _this27.isForceDisplayDefaultOptionForPrefix && !_this27.value.startsWith(_this27.nodeDefaultSubmitOpinion) ? _this27.nodeDefaultSubmitOpinion + _this27.value : _this27.value,
|
|
@@ -15102,7 +15175,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
15102
15175
|
params.isSubFlow = taskExamineInfo.isSubFlow;
|
|
15103
15176
|
params.nodeId = taskExamineInfo.nodeId;
|
|
15104
15177
|
params.needRetrialAuth = needRetrialAuth;
|
|
15105
|
-
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["
|
|
15178
|
+
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["xb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
15106
15179
|
var status = res.status,
|
|
15107
15180
|
message = res.message;
|
|
15108
15181
|
|
|
@@ -15121,10 +15194,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
15121
15194
|
}
|
|
15122
15195
|
}));
|
|
15123
15196
|
|
|
15124
|
-
case
|
|
15197
|
+
case 43:
|
|
15125
15198
|
return _context.abrupt('return', false);
|
|
15126
15199
|
|
|
15127
|
-
case
|
|
15200
|
+
case 44:
|
|
15128
15201
|
case 'end':
|
|
15129
15202
|
return _context.stop();
|
|
15130
15203
|
}
|