eoss-ui 0.6.44 → 0.6.46
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 +22 -17
- package/lib/button.js +24 -19
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +22 -17
- package/lib/config/api.js +4 -1
- package/lib/data-table-form.js +22 -17
- package/lib/data-table.js +22 -17
- package/lib/date-picker.js +24 -19
- package/lib/dialog.js +22 -17
- package/lib/enable-drag.js +830 -0
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +2217 -961
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +24 -19
- package/lib/flow-list.js +105 -100
- package/lib/flow.js +748 -312
- package/lib/form.js +46 -49
- package/lib/handle-user.js +24 -19
- package/lib/handler.js +49 -29
- package/lib/icon.js +31 -26
- package/lib/icons.js +2 -2
- package/lib/index.js +1 -1
- package/lib/input-number.js +24 -19
- package/lib/input.js +24 -19
- package/lib/label.js +2 -2
- package/lib/login.js +22 -17
- package/lib/main.js +524 -254
- package/lib/menu.js +2 -2
- package/lib/nav.js +51 -121
- package/lib/notify.js +24 -19
- package/lib/page.js +24 -19
- package/lib/pagination.js +24 -19
- package/lib/player.js +24 -19
- package/lib/qr-code.js +37 -32
- package/lib/radio-group.js +24 -19
- package/lib/retrial-auth.js +24 -19
- package/lib/select-ganged.js +24 -19
- package/lib/select.js +24 -19
- package/lib/selector-panel.js +22 -17
- package/lib/selector.js +31 -26
- package/lib/sizer.js +24 -19
- package/lib/steps.js +24 -19
- package/lib/switch.js +31 -26
- package/lib/table-form.js +49 -24
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +24 -19
- package/lib/theme-chalk/enable-drag.css +1 -0
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/login.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/nav.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/tips.js +24 -19
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +24 -19
- package/lib/tree.js +24 -19
- package/lib/upload.js +32 -26
- package/lib/wujie.js +24 -19
- package/lib/wxlogin.js +167 -162
- package/package.json +159 -159
- package/packages/button/index.js +5 -5
- package/packages/button/src/main.vue +418 -418
- package/packages/button-group/index.js +5 -5
- package/packages/button-group/src/main.vue +298 -298
- package/packages/calendar/index.js +5 -5
- package/packages/card/index.js +5 -5
- package/packages/card/src/main.vue +156 -156
- package/packages/cascader/index.js +5 -5
- package/packages/cascader/src/main.vue +168 -168
- package/packages/checkbox-group/index.js +5 -5
- package/packages/checkbox-group/src/main.vue +333 -333
- package/packages/clients/index.js +5 -5
- package/packages/clients/src/main.vue +144 -144
- package/packages/data-table/index.js +5 -5
- package/packages/data-table/src/children.vue +39 -39
- package/packages/data-table/src/column.vue +989 -989
- package/packages/data-table/src/main.vue +1822 -1822
- package/packages/data-table/src/sizer.vue +195 -195
- package/packages/data-table-form/index.js +5 -5
- package/packages/data-table-form/src/checkbox.vue +101 -101
- package/packages/data-table-form/src/colgroup.vue +17 -17
- package/packages/data-table-form/src/main.vue +181 -181
- package/packages/data-table-form/src/radio.vue +65 -65
- package/packages/data-table-form/src/table.vue +233 -233
- package/packages/data-table-form/src/tbody.vue +336 -336
- package/packages/data-table-form/src/thead.vue +68 -68
- package/packages/date-picker/index.js +5 -5
- package/packages/date-picker/src/main.vue +236 -236
- package/packages/dialog/index.js +5 -5
- package/packages/enable-drag/index.js +5 -0
- package/packages/enable-drag/src/main.vue +355 -0
- package/packages/enterprise/index.js +5 -5
- package/packages/enterprise/src/main.vue +66 -66
- package/packages/error-page/index.js +5 -5
- package/packages/error-page/src/main.vue +44 -44
- package/packages/flow/index.js +5 -5
- package/packages/flow/src/component/CommonOpinions.vue +345 -345
- package/packages/flow/src/component/CustomPreset.vue +322 -322
- package/packages/flow/src/component/FileList.vue +99 -99
- package/packages/flow/src/component/Preset.vue +255 -255
- package/packages/flow/src/component/SendMsg.vue +229 -229
- package/packages/flow/src/component/TimeLimit.vue +190 -190
- package/packages/flow/src/component/taskUnionExamine.vue +611 -611
- package/packages/flow/src/form.vue +121 -121
- package/packages/flow/src/freeStartFlow.vue +2843 -2843
- package/packages/flow/src/main.vue +2964 -2952
- package/packages/flow/src/processForm.vue +1018 -1018
- package/packages/flow/src/processReject.vue +293 -293
- package/packages/flow/src/reset.vue +899 -899
- package/packages/flow/src/startTaskRead.vue +596 -596
- package/packages/flow/src/supervise.vue +138 -0
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-group/index.js +5 -5
- package/packages/flow-group/src/main.vue +688 -688
- package/packages/flow-list/index.js +5 -5
- package/packages/flow-list/src/main.vue +1183 -1183
- package/packages/form/index.js +5 -5
- package/packages/form/src/main.vue +3583 -3584
- package/packages/form/src/table.vue +1426 -1420
- package/packages/handle-user/index.js +5 -5
- package/packages/handle-user/src/main.vue +138 -138
- package/packages/handler/index.js +5 -5
- package/packages/handler/src/main.vue +491 -474
- package/packages/icon/index.js +5 -5
- package/packages/icon/src/main.vue +101 -101
- package/packages/icons/index.js +5 -5
- package/packages/icons/src/main.vue +81 -81
- package/packages/input/index.js +5 -5
- package/packages/input/src/main.vue +356 -356
- package/packages/input-number/index.js +5 -5
- package/packages/input-number/src/main.vue +106 -106
- package/packages/label/index.js +5 -5
- package/packages/label/src/main.vue +457 -457
- package/packages/layout/index.js +5 -5
- package/packages/layout/src/item.vue +152 -152
- package/packages/layout/src/main.vue +31 -31
- package/packages/login/index.js +5 -5
- package/packages/login/src/main.vue +1935 -1935
- package/packages/login/src/resetPassword.vue +562 -562
- package/packages/main/index.js +5 -5
- package/packages/main/src/default/index.vue +162 -3
- package/packages/main/src/default/message.vue +249 -249
- package/packages/main/src/default/notice.vue +157 -157
- package/packages/main/src/default/userinfo.vue +505 -505
- package/packages/main/src/public/online.vue +89 -89
- package/packages/main/src/public/search.vue +461 -461
- package/packages/main/src/public/settings.vue +221 -221
- package/packages/main/src/simplicity/apps.vue +388 -388
- package/packages/main/src/simplicity/avatar.vue +82 -82
- package/packages/main/src/simplicity/handler.vue +259 -259
- package/packages/main/src/simplicity/index.vue +2049 -2047
- package/packages/main/src/simplicity/lists.vue +84 -84
- package/packages/main/src/simplicity/menu-list.vue +128 -128
- package/packages/main/src/simplicity/message.vue +259 -259
- package/packages/main/src/simplicity/notice.vue +190 -190
- package/packages/main/src/simplicity/router-page.vue +45 -45
- package/packages/main/src/simplicity/sub-menu.vue +241 -241
- package/packages/main/src/simplicity/user.vue +257 -257
- package/packages/main/src/simplicity/userinfo.vue +312 -312
- package/packages/menu/index.js +5 -5
- package/packages/menu/src/main.vue +536 -536
- package/packages/nav/index.js +5 -5
- package/packages/nav/src/main.vue +351 -402
- package/packages/notify/index.js +5 -5
- package/packages/notify/src/main.vue +538 -538
- package/packages/page/index.js +5 -5
- package/packages/page/src/main.vue +167 -167
- package/packages/pagination/index.js +5 -5
- package/packages/pagination/src/main.vue +96 -96
- package/packages/player/index.js +5 -5
- package/packages/player/src/main.vue +194 -194
- package/packages/qr-code/index.js +5 -5
- package/packages/qr-code/src/main.vue +170 -170
- package/packages/radio-group/index.js +6 -6
- package/packages/radio-group/src/main.vue +319 -319
- package/packages/retrial-auth/index.js +5 -5
- package/packages/retrial-auth/src/main.vue +280 -280
- package/packages/select/index.js +5 -5
- package/packages/select/src/main.vue +775 -775
- package/packages/select-ganged/index.js +5 -5
- package/packages/select-ganged/src/main.vue +724 -724
- package/packages/selector/index.js +5 -5
- package/packages/selector/src/main.vue +689 -689
- package/packages/selector-panel/index.js +5 -5
- package/packages/selector-panel/src/main.vue +1027 -1027
- package/packages/selector-panel/src/selection.vue +177 -177
- package/packages/selector-panel/src/tree.vue +129 -129
- package/packages/sizer/index.js +5 -5
- package/packages/sizer/src/main.vue +254 -254
- package/packages/steps/index.js +5 -5
- package/packages/steps/src/main.vue +181 -181
- package/packages/switch/index.js +5 -5
- package/packages/switch/src/main.vue +154 -154
- package/packages/table-form/index.js +5 -5
- package/packages/tabs/index.js +5 -5
- package/packages/tabs/src/main.vue +788 -788
- package/packages/tabs-panel/index.js +5 -5
- package/packages/tabs-panel/src/main.vue +29 -29
- package/packages/theme-chalk/lib/enable-drag.css +1 -0
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/login.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/nav.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/src/base.scss +260 -260
- package/packages/theme-chalk/src/button-group.scss +175 -175
- package/packages/theme-chalk/src/button.scss +24 -24
- package/packages/theme-chalk/src/calendar.scss +113 -113
- package/packages/theme-chalk/src/card.scss +99 -99
- package/packages/theme-chalk/src/checkbox-group.scss +8 -8
- package/packages/theme-chalk/src/clients.scss +87 -87
- package/packages/theme-chalk/src/data-table-form.scss +67 -67
- package/packages/theme-chalk/src/data-table.scss +293 -293
- package/packages/theme-chalk/src/date-picker.scss +7 -7
- package/packages/theme-chalk/src/dialog.scss +77 -77
- package/packages/theme-chalk/src/enable-drag.scss +181 -0
- package/packages/theme-chalk/src/enterprise.scss +5 -5
- package/packages/theme-chalk/src/error-page.scss +18 -18
- package/packages/theme-chalk/src/flow-group.scss +110 -110
- package/packages/theme-chalk/src/flow-list.scss +36 -36
- package/packages/theme-chalk/src/flow.scss +318 -318
- package/packages/theme-chalk/src/form.scss +496 -496
- package/packages/theme-chalk/src/handle-user.scss +40 -40
- package/packages/theme-chalk/src/handler.scss +143 -143
- package/packages/theme-chalk/src/icon.scss +1789 -1789
- package/packages/theme-chalk/src/icons.scss +99 -99
- package/packages/theme-chalk/src/index.scss +1 -0
- package/packages/theme-chalk/src/input.scss +9 -9
- package/packages/theme-chalk/src/label.scss +24 -24
- package/packages/theme-chalk/src/layout.scss +46 -46
- package/packages/theme-chalk/src/login.scss +969 -947
- package/packages/theme-chalk/src/main.scss +656 -639
- package/packages/theme-chalk/src/menu.scss +222 -222
- package/packages/theme-chalk/src/mixins/color.scss +117 -117
- package/packages/theme-chalk/src/nav.scss +111 -125
- package/packages/theme-chalk/src/page.scss +3 -3
- package/packages/theme-chalk/src/pagination.scss +29 -29
- package/packages/theme-chalk/src/player.scss +9 -9
- package/packages/theme-chalk/src/qr-code.scss +17 -17
- package/packages/theme-chalk/src/radio-group.scss +9 -9
- package/packages/theme-chalk/src/retrial-auth.scss +38 -38
- package/packages/theme-chalk/src/select-ganged.scss +8 -8
- package/packages/theme-chalk/src/select.scss +8 -8
- package/packages/theme-chalk/src/selector-panel.scss +204 -204
- package/packages/theme-chalk/src/selector.scss +91 -91
- package/packages/theme-chalk/src/simplicity.scss +1265 -1262
- package/packages/theme-chalk/src/sizer.scss +36 -36
- package/packages/theme-chalk/src/steps.scss +88 -88
- package/packages/theme-chalk/src/switch.scss +3 -3
- package/packages/theme-chalk/src/table-form.scss +1 -1
- package/packages/theme-chalk/src/tabs.scss +87 -87
- package/packages/theme-chalk/src/tips.scss +7 -7
- package/packages/theme-chalk/src/toolbar.scss +179 -179
- package/packages/theme-chalk/src/tree-group.scss +72 -72
- package/packages/theme-chalk/src/tree.scss +165 -165
- package/packages/theme-chalk/src/upload.scss +167 -167
- package/packages/theme-chalk/src/wxlogin.scss +3 -3
- package/packages/tips/index.js +5 -5
- package/packages/tips/src/main.vue +141 -141
- package/packages/toolbar/index.js +5 -5
- package/packages/toolbar/src/main.vue +430 -430
- package/packages/tree/index.js +5 -5
- package/packages/tree-group/index.js +5 -5
- package/packages/upload/index.js +5 -5
- package/packages/upload/src/main.vue +1335 -1334
- package/packages/upload/src/picture.js +15 -15
- package/packages/wujie/index.js +5 -5
- package/packages/wujie/src/main.vue +145 -145
- package/packages/wxlogin/index.js +5 -5
- package/packages/wxlogin/src/main.vue +128 -128
- package/src/config/api.js +251 -248
- package/src/config/image.js +2 -2
- package/src/index.js +4 -1
- package/src/utils/bus.js +3 -3
- package/src/utils/date-util.js +312 -312
- package/src/utils/http.js +50 -50
- package/src/utils/rules.js +18 -18
- package/src/utils/store.js +21 -21
- package/src/utils/webSocket.js +107 -107
package/lib/flow.js
CHANGED
|
@@ -3500,12 +3500,12 @@ var watermark = function watermark(option) {
|
|
|
3500
3500
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return scanCodeRetrialAuth; });
|
|
3501
3501
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3502
3502
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3503
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3503
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return userOnline; });
|
|
3504
3504
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getUserAppWithTag; });
|
|
3505
3505
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return recordUserApp; });
|
|
3506
3506
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return mainConfig; });
|
|
3507
3507
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initUserSet; });
|
|
3508
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3508
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return updateUserInfo; });
|
|
3509
3509
|
/* unused harmony export getUserImgUrl */
|
|
3510
3510
|
/* unused harmony export getDoorIndex */
|
|
3511
3511
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3514,18 +3514,18 @@ var watermark = function watermark(option) {
|
|
|
3514
3514
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplications; });
|
|
3515
3515
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getComplexApplicationsNew; });
|
|
3516
3516
|
/* unused harmony export getUserCustomInfo */
|
|
3517
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3517
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return updateUserCustomInfo; });
|
|
3518
3518
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sysMsgPage; });
|
|
3519
3519
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return ignoreSysMsg; });
|
|
3520
3520
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return ignoreAllSysMsg; });
|
|
3521
3521
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return searchType; });
|
|
3522
3522
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getAdjunctProperties; });
|
|
3523
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3524
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3523
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return uploads; });
|
|
3524
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return uploadOnlyOne; });
|
|
3525
3525
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctFileInfos; });
|
|
3526
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3526
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return uploadSort; });
|
|
3527
3527
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3528
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3528
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return uploadDownloads; });
|
|
3529
3529
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct; });
|
|
3530
3530
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunct2; });
|
|
3531
3531
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return previewAdjunctOffice; });
|
|
@@ -3549,7 +3549,7 @@ var watermark = function watermark(option) {
|
|
|
3549
3549
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3550
3550
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3551
3551
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return saveCommonOpinion; });
|
|
3552
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3552
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return updateCommonOpinion; });
|
|
3553
3553
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3554
3554
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getProcessDefList; });
|
|
3555
3555
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getNodeInfo; });
|
|
@@ -3573,11 +3573,11 @@ var watermark = function watermark(option) {
|
|
|
3573
3573
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3574
3574
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return handleInfo; });
|
|
3575
3575
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return loginUserInfo; });
|
|
3576
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3577
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3576
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return wss; });
|
|
3577
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return topic; });
|
|
3578
3578
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getPresetCustomInfo; });
|
|
3579
3579
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getPresetNodeInfo; });
|
|
3580
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3580
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskTransferIndex; });
|
|
3581
3581
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskTransfer; });
|
|
3582
3582
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toPresetInfoListIndex; });
|
|
3583
3583
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
@@ -3586,18 +3586,20 @@ var watermark = function watermark(option) {
|
|
|
3586
3586
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return pressListJson; });
|
|
3587
3587
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3588
3588
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return isCanStartSubFlow; });
|
|
3589
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3589
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskUnionExamine; });
|
|
3590
3590
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskUnionExamine; });
|
|
3591
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3591
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskTakeAdvice; });
|
|
3592
3592
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskTakeAdvice; });
|
|
3593
3593
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toTaskStartDraft; });
|
|
3594
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toTaskSupervise; });
|
|
3595
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskSuperviseSub; });
|
|
3594
3596
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
|
|
3595
3597
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
|
|
3596
3598
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
|
|
3597
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3599
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskUnionSeal; });
|
|
3598
3600
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
|
|
3599
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3600
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3601
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTwoOfficesDispatch; });
|
|
3602
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return twoOfficesDispatch; });
|
|
3601
3603
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
|
|
3602
3604
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
|
|
3603
3605
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
|
|
@@ -3807,7 +3809,10 @@ var toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
|
|
|
3807
3809
|
var taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
|
|
3808
3810
|
// 稿件递送
|
|
3809
3811
|
var toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
|
|
3810
|
-
|
|
3812
|
+
// 获取督办页面信息
|
|
3813
|
+
var toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
|
|
3814
|
+
// 督办提交
|
|
3815
|
+
var toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
|
|
3811
3816
|
// 稿件递送提交接口
|
|
3812
3817
|
// export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
3813
3818
|
var taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
|
|
@@ -4347,7 +4352,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
4347
4352
|
// ESM COMPAT FLAG
|
|
4348
4353
|
__webpack_require__.r(__webpack_exports__);
|
|
4349
4354
|
|
|
4350
|
-
// 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=
|
|
4355
|
+
// 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=eb32af70&
|
|
4351
4356
|
var render = function () {
|
|
4352
4357
|
var _vm = this
|
|
4353
4358
|
var _h = _vm.$createElement
|
|
@@ -4361,7 +4366,9 @@ var render = function () {
|
|
|
4361
4366
|
style: _vm.styles,
|
|
4362
4367
|
},
|
|
4363
4368
|
[
|
|
4364
|
-
_vm.
|
|
4369
|
+
_vm.typeCode == "supervise"
|
|
4370
|
+
? _c("Supervise", { attrs: { businessId: _vm.businessId } })
|
|
4371
|
+
: _vm.newTypeCode == "reset" || _vm.newTypeCode == "continuation"
|
|
4365
4372
|
? _c("reset", {
|
|
4366
4373
|
staticStyle: { height: "100%" },
|
|
4367
4374
|
attrs: {
|
|
@@ -4507,6 +4514,97 @@ var render = function () {
|
|
|
4507
4514
|
],
|
|
4508
4515
|
1
|
|
4509
4516
|
),
|
|
4517
|
+
_c(
|
|
4518
|
+
"el-form",
|
|
4519
|
+
{
|
|
4520
|
+
directives: [
|
|
4521
|
+
{
|
|
4522
|
+
name: "show",
|
|
4523
|
+
rawName: "v-show",
|
|
4524
|
+
value: _vm.currentNodeIsCircularReadNode,
|
|
4525
|
+
expression: "currentNodeIsCircularReadNode",
|
|
4526
|
+
},
|
|
4527
|
+
],
|
|
4528
|
+
ref: "nextNode",
|
|
4529
|
+
staticClass: "demo-dynamic",
|
|
4530
|
+
attrs: {
|
|
4531
|
+
model: _vm.isFlow ? _vm.nodeInfo : _vm.nextNode,
|
|
4532
|
+
"label-width": "120px",
|
|
4533
|
+
},
|
|
4534
|
+
},
|
|
4535
|
+
[
|
|
4536
|
+
_c(
|
|
4537
|
+
"el-form-item",
|
|
4538
|
+
{
|
|
4539
|
+
attrs: {
|
|
4540
|
+
prop: "nextCurrentOrgObj",
|
|
4541
|
+
label: _vm.currentOrgName
|
|
4542
|
+
? _vm.currentOrgName
|
|
4543
|
+
: "本单位",
|
|
4544
|
+
},
|
|
4545
|
+
},
|
|
4546
|
+
[
|
|
4547
|
+
_c("SelectUser", {
|
|
4548
|
+
attrs: {
|
|
4549
|
+
nextUser: _vm.nextCurrentOrgObjSelect,
|
|
4550
|
+
multiple: "",
|
|
4551
|
+
mix: "",
|
|
4552
|
+
disableds: _vm.currentOrgDisabledObjId,
|
|
4553
|
+
types: ["employee", "persongroup"],
|
|
4554
|
+
params: { filid: _vm.userModel.orgId },
|
|
4555
|
+
},
|
|
4556
|
+
on: {
|
|
4557
|
+
change: function ($event) {
|
|
4558
|
+
_vm.disposeAppUnit(
|
|
4559
|
+
$event,
|
|
4560
|
+
"nextCurrentOrgObjSelect"
|
|
4561
|
+
)
|
|
4562
|
+
},
|
|
4563
|
+
},
|
|
4564
|
+
}),
|
|
4565
|
+
],
|
|
4566
|
+
1
|
|
4567
|
+
),
|
|
4568
|
+
_c(
|
|
4569
|
+
"el-form-item",
|
|
4570
|
+
{
|
|
4571
|
+
attrs: {
|
|
4572
|
+
prop: "nextOtherOrgObj",
|
|
4573
|
+
label: _vm.otherOrgName
|
|
4574
|
+
? _vm.otherOrgName
|
|
4575
|
+
: "外单位",
|
|
4576
|
+
},
|
|
4577
|
+
},
|
|
4578
|
+
[
|
|
4579
|
+
_c("SelectUser", {
|
|
4580
|
+
attrs: {
|
|
4581
|
+
nextUser: _vm.nextOtherOrgObjSelect,
|
|
4582
|
+
multiple: "",
|
|
4583
|
+
mix: "",
|
|
4584
|
+
disableds: _vm.otherOrgDisabledObjId,
|
|
4585
|
+
types: ["enterprise", "filgroupobj"],
|
|
4586
|
+
params: {
|
|
4587
|
+
filid: "all",
|
|
4588
|
+
roleid:
|
|
4589
|
+
_vm.circularReadParamsMap
|
|
4590
|
+
.circularReadOrgRoleCode,
|
|
4591
|
+
},
|
|
4592
|
+
},
|
|
4593
|
+
on: {
|
|
4594
|
+
change: function ($event) {
|
|
4595
|
+
_vm.disposeAppUnit(
|
|
4596
|
+
$event,
|
|
4597
|
+
"nextOtherOrgObjSelect"
|
|
4598
|
+
)
|
|
4599
|
+
},
|
|
4600
|
+
},
|
|
4601
|
+
}),
|
|
4602
|
+
],
|
|
4603
|
+
1
|
|
4604
|
+
),
|
|
4605
|
+
],
|
|
4606
|
+
1
|
|
4607
|
+
),
|
|
4510
4608
|
_c(
|
|
4511
4609
|
"div",
|
|
4512
4610
|
{
|
|
@@ -6468,7 +6566,7 @@ var staticRenderFns = []
|
|
|
6468
6566
|
render._withStripped = true
|
|
6469
6567
|
|
|
6470
6568
|
|
|
6471
|
-
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=
|
|
6569
|
+
// CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=eb32af70&
|
|
6472
6570
|
|
|
6473
6571
|
// EXTERNAL MODULE: external "babel-runtime/regenerator"
|
|
6474
6572
|
var regenerator_ = __webpack_require__(14);
|
|
@@ -7281,21 +7379,21 @@ var _components;
|
|
|
7281
7379
|
return validSate;
|
|
7282
7380
|
},
|
|
7283
7381
|
|
|
7284
|
-
/**
|
|
7285
|
-
* changeOpinion
|
|
7286
|
-
* @desc:监听意见变化
|
|
7287
|
-
* @author liufan
|
|
7288
|
-
* @date 2022年10月28日
|
|
7382
|
+
/**
|
|
7383
|
+
* changeOpinion
|
|
7384
|
+
* @desc:监听意见变化
|
|
7385
|
+
* @author liufan
|
|
7386
|
+
* @date 2022年10月28日
|
|
7289
7387
|
**/
|
|
7290
7388
|
changeOpinion: function changeOpinion() {
|
|
7291
7389
|
this.$emit('change', this.form.value);
|
|
7292
7390
|
},
|
|
7293
7391
|
|
|
7294
|
-
/**
|
|
7295
|
-
* getCommonOpion
|
|
7296
|
-
* @desc:获取意见
|
|
7297
|
-
* @author liufan
|
|
7298
|
-
* @date 2022年5月25日
|
|
7392
|
+
/**
|
|
7393
|
+
* getCommonOpion
|
|
7394
|
+
* @desc:获取意见
|
|
7395
|
+
* @author liufan
|
|
7396
|
+
* @date 2022年5月25日
|
|
7299
7397
|
**/
|
|
7300
7398
|
getCommonOpion: function getCommonOpion() {
|
|
7301
7399
|
var _this = this;
|
|
@@ -7324,24 +7422,24 @@ var _components;
|
|
|
7324
7422
|
});
|
|
7325
7423
|
},
|
|
7326
7424
|
|
|
7327
|
-
/**
|
|
7328
|
-
* upDate
|
|
7329
|
-
* @desc:修改常用语
|
|
7330
|
-
* @author liufan
|
|
7331
|
-
* @param {Object} val 修改值
|
|
7332
|
-
* @date 2022年5月25日
|
|
7425
|
+
/**
|
|
7426
|
+
* upDate
|
|
7427
|
+
* @desc:修改常用语
|
|
7428
|
+
* @author liufan
|
|
7429
|
+
* @param {Object} val 修改值
|
|
7430
|
+
* @date 2022年5月25日
|
|
7333
7431
|
**/
|
|
7334
7432
|
upDate: function upDate(val) {
|
|
7335
7433
|
this.FormData.id = val.id;
|
|
7336
7434
|
this.addVisible = true;
|
|
7337
7435
|
},
|
|
7338
7436
|
|
|
7339
|
-
/**
|
|
7340
|
-
* selectChange
|
|
7341
|
-
* @desc:常用语选择
|
|
7342
|
-
* @author liufan
|
|
7343
|
-
* @param {String} val 选中值
|
|
7344
|
-
* @date 2022年5月25日
|
|
7437
|
+
/**
|
|
7438
|
+
* selectChange
|
|
7439
|
+
* @desc:常用语选择
|
|
7440
|
+
* @author liufan
|
|
7441
|
+
* @param {String} val 选中值
|
|
7442
|
+
* @date 2022年5月25日
|
|
7345
7443
|
**/
|
|
7346
7444
|
selectChange: function selectChange(val) {
|
|
7347
7445
|
var _this2 = this;
|
|
@@ -7360,12 +7458,12 @@ var _components;
|
|
|
7360
7458
|
});
|
|
7361
7459
|
},
|
|
7362
7460
|
|
|
7363
|
-
/**
|
|
7364
|
-
* del
|
|
7365
|
-
* @desc:删除常用语
|
|
7366
|
-
* @author liufan
|
|
7367
|
-
* @param {Object} val 删除的数据
|
|
7368
|
-
* @date 2022年5月25日
|
|
7461
|
+
/**
|
|
7462
|
+
* del
|
|
7463
|
+
* @desc:删除常用语
|
|
7464
|
+
* @author liufan
|
|
7465
|
+
* @param {Object} val 删除的数据
|
|
7466
|
+
* @date 2022年5月25日
|
|
7369
7467
|
**/
|
|
7370
7468
|
del: function del(val) {
|
|
7371
7469
|
var _this3 = this;
|
|
@@ -7407,12 +7505,12 @@ var _components;
|
|
|
7407
7505
|
}).catch(function (e) {});
|
|
7408
7506
|
},
|
|
7409
7507
|
|
|
7410
|
-
/**
|
|
7411
|
-
* submit
|
|
7412
|
-
* @desc:新增/编辑意见保存
|
|
7413
|
-
* @author liufan
|
|
7414
|
-
* @param {Object} val 保存数据
|
|
7415
|
-
* @date 2022年5月25日
|
|
7508
|
+
/**
|
|
7509
|
+
* submit
|
|
7510
|
+
* @desc:新增/编辑意见保存
|
|
7511
|
+
* @author liufan
|
|
7512
|
+
* @param {Object} val 保存数据
|
|
7513
|
+
* @date 2022年5月25日
|
|
7416
7514
|
**/
|
|
7417
7515
|
submit: function submit(val) {
|
|
7418
7516
|
var _this4 = this;
|
|
@@ -7426,7 +7524,7 @@ var _components;
|
|
|
7426
7524
|
}
|
|
7427
7525
|
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
7428
7526
|
util["a" /* default */].ajax({
|
|
7429
|
-
url: data.id ? api["
|
|
7527
|
+
url: data.id ? api["fc" /* updateCommonOpinion */] : api["sb" /* saveCommonOpinion */],
|
|
7430
7528
|
data: info,
|
|
7431
7529
|
header: { 'Content-Type': 'multipart/form-data' },
|
|
7432
7530
|
method: 'post'
|
|
@@ -10279,11 +10377,11 @@ var processFormvue_type_script_lang_js_components;
|
|
|
10279
10377
|
});
|
|
10280
10378
|
},
|
|
10281
10379
|
|
|
10282
|
-
/**
|
|
10283
|
-
* isMultiple
|
|
10284
|
-
* @desc:是否多选
|
|
10285
|
-
* @author liufan
|
|
10286
|
-
* @date 2022年9月13日
|
|
10380
|
+
/**
|
|
10381
|
+
* isMultiple
|
|
10382
|
+
* @desc:是否多选
|
|
10383
|
+
* @author liufan
|
|
10384
|
+
* @date 2022年9月13日
|
|
10287
10385
|
**/
|
|
10288
10386
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
10289
10387
|
var multiple = false;
|
|
@@ -12542,7 +12640,7 @@ var startTaskReadvue_type_script_lang_js_components;
|
|
|
12542
12640
|
taskExamine = this.taskExamine;
|
|
12543
12641
|
|
|
12544
12642
|
var params = {
|
|
12545
|
-
url: api["
|
|
12643
|
+
url: api["Zb" /* toTaskTransferIndex */],
|
|
12546
12644
|
params: {
|
|
12547
12645
|
opinion: opinion,
|
|
12548
12646
|
pendingId: pendingId,
|
|
@@ -14088,11 +14186,11 @@ var resetvue_type_script_lang_js_components;
|
|
|
14088
14186
|
});
|
|
14089
14187
|
},
|
|
14090
14188
|
|
|
14091
|
-
/**
|
|
14092
|
-
* isMultiple
|
|
14093
|
-
* @desc:是否多选
|
|
14094
|
-
* @author liufan
|
|
14095
|
-
* @date 2022年9月13日
|
|
14189
|
+
/**
|
|
14190
|
+
* isMultiple
|
|
14191
|
+
* @desc:是否多选
|
|
14192
|
+
* @author liufan
|
|
14193
|
+
* @date 2022年9月13日
|
|
14096
14194
|
**/
|
|
14097
14195
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
14098
14196
|
var multiple = false;
|
|
@@ -14775,7 +14873,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14775
14873
|
var _this3 = this;
|
|
14776
14874
|
|
|
14777
14875
|
var params = {
|
|
14778
|
-
url: this.type == 'takeAdvice' ? api["
|
|
14876
|
+
url: this.type == 'takeAdvice' ? api["Yb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Vb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["bc" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["cc" /* toTwoOfficesDispatch */] : api["ac" /* toTaskUnionExamine */],
|
|
14779
14877
|
params: { pendingId: this.pendingId },
|
|
14780
14878
|
headers: { Accept: 'application/json,text/plain' }
|
|
14781
14879
|
};
|
|
@@ -14896,7 +14994,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
|
|
|
14896
14994
|
// if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
|
|
14897
14995
|
// return this.$message.warning('暂未开放,敬请期待!');
|
|
14898
14996
|
var param = {
|
|
14899
|
-
url: this.type === 'startDraf' ? api["Gb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Kb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["
|
|
14997
|
+
url: this.type === 'startDraf' ? api["Gb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Kb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["ec" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Hb" /* taskTakeAdvice */] : api["Jb" /* taskUnionExamine */],
|
|
14900
14998
|
data: {
|
|
14901
14999
|
opinion: opinion,
|
|
14902
15000
|
pendingId: pendingId,
|
|
@@ -18454,11 +18552,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18454
18552
|
});
|
|
18455
18553
|
},
|
|
18456
18554
|
|
|
18457
|
-
/**
|
|
18458
|
-
* saveInfo
|
|
18459
|
-
* @desc:暂存
|
|
18460
|
-
* @author liufan
|
|
18461
|
-
* @date 2022年9月9日
|
|
18555
|
+
/**
|
|
18556
|
+
* saveInfo
|
|
18557
|
+
* @desc:暂存
|
|
18558
|
+
* @author liufan
|
|
18559
|
+
* @date 2022年9月9日
|
|
18462
18560
|
**/
|
|
18463
18561
|
saveInfo: function saveInfo(type, btn) {
|
|
18464
18562
|
var _this6 = this;
|
|
@@ -18520,11 +18618,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18520
18618
|
});
|
|
18521
18619
|
},
|
|
18522
18620
|
|
|
18523
|
-
/**
|
|
18524
|
-
* rejectBtn
|
|
18525
|
-
* @desc:点击驳回
|
|
18526
|
-
* @author liufan
|
|
18527
|
-
* @date 2022年5月25日
|
|
18621
|
+
/**
|
|
18622
|
+
* rejectBtn
|
|
18623
|
+
* @desc:点击驳回
|
|
18624
|
+
* @author liufan
|
|
18625
|
+
* @date 2022年5月25日
|
|
18528
18626
|
**/
|
|
18529
18627
|
rejectBtn: function rejectBtn() {
|
|
18530
18628
|
var _this8 = this;
|
|
@@ -18542,11 +18640,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18542
18640
|
}
|
|
18543
18641
|
},
|
|
18544
18642
|
|
|
18545
|
-
/**
|
|
18546
|
-
* taskReadBtn
|
|
18547
|
-
* @desc:点击分阅
|
|
18548
|
-
* @author liufan
|
|
18549
|
-
* @date 2022年5月25日
|
|
18643
|
+
/**
|
|
18644
|
+
* taskReadBtn
|
|
18645
|
+
* @desc:点击分阅
|
|
18646
|
+
* @author liufan
|
|
18647
|
+
* @date 2022年5月25日
|
|
18550
18648
|
**/
|
|
18551
18649
|
taskReadBtn: function taskReadBtn() {
|
|
18552
18650
|
var _this9 = this;
|
|
@@ -18565,11 +18663,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18565
18663
|
}
|
|
18566
18664
|
},
|
|
18567
18665
|
|
|
18568
|
-
/**
|
|
18569
|
-
* getFind
|
|
18570
|
-
* @desc:获取通知方式
|
|
18571
|
-
* @author liufan
|
|
18572
|
-
* @date 2022年5月25日
|
|
18666
|
+
/**
|
|
18667
|
+
* getFind
|
|
18668
|
+
* @desc:获取通知方式
|
|
18669
|
+
* @author liufan
|
|
18670
|
+
* @date 2022年5月25日
|
|
18573
18671
|
**/
|
|
18574
18672
|
getFind: function getFind() {
|
|
18575
18673
|
var _this10 = this;
|
|
@@ -18624,12 +18722,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18624
18722
|
});
|
|
18625
18723
|
},
|
|
18626
18724
|
|
|
18627
|
-
/**
|
|
18628
|
-
* endFlows
|
|
18629
|
-
* @desc:直接办结
|
|
18630
|
-
* @author liufan
|
|
18631
|
-
* @param {Object} res 直接办结数据
|
|
18632
|
-
* @date 2022年5月25日
|
|
18725
|
+
/**
|
|
18726
|
+
* endFlows
|
|
18727
|
+
* @desc:直接办结
|
|
18728
|
+
* @author liufan
|
|
18729
|
+
* @param {Object} res 直接办结数据
|
|
18730
|
+
* @date 2022年5月25日
|
|
18633
18731
|
**/
|
|
18634
18732
|
endFlows: function endFlows(res) {
|
|
18635
18733
|
var _this12 = this;
|
|
@@ -18683,12 +18781,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18683
18781
|
}).catch(function (e) {});
|
|
18684
18782
|
},
|
|
18685
18783
|
|
|
18686
|
-
/**
|
|
18687
|
-
* goView
|
|
18688
|
-
* @desc:更多流程按钮操作
|
|
18689
|
-
* @author liufan
|
|
18690
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
18691
|
-
* @date 2022年5月25日
|
|
18784
|
+
/**
|
|
18785
|
+
* goView
|
|
18786
|
+
* @desc:更多流程按钮操作
|
|
18787
|
+
* @author liufan
|
|
18788
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
18789
|
+
* @date 2022年5月25日
|
|
18692
18790
|
**/
|
|
18693
18791
|
goView: function goView(res) {
|
|
18694
18792
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -18773,11 +18871,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18773
18871
|
// isCanStartSubFlow
|
|
18774
18872
|
},
|
|
18775
18873
|
|
|
18776
|
-
/**
|
|
18777
|
-
* toTakeAdvice
|
|
18778
|
-
* @desc:征求意见
|
|
18779
|
-
* @author liufan
|
|
18780
|
-
* @date 2022年9月29日
|
|
18874
|
+
/**
|
|
18875
|
+
* toTakeAdvice
|
|
18876
|
+
* @desc:征求意见
|
|
18877
|
+
* @author liufan
|
|
18878
|
+
* @date 2022年9月29日
|
|
18781
18879
|
**/
|
|
18782
18880
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
18783
18881
|
var _this14 = this;
|
|
@@ -18821,11 +18919,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18821
18919
|
});
|
|
18822
18920
|
},
|
|
18823
18921
|
|
|
18824
|
-
/**
|
|
18825
|
-
* toStartDraf
|
|
18826
|
-
* @desc: 稿件递送、联合审核、复核
|
|
18827
|
-
* @author liufan
|
|
18828
|
-
* @date 2022年9月29日
|
|
18922
|
+
/**
|
|
18923
|
+
* toStartDraf
|
|
18924
|
+
* @desc: 稿件递送、联合审核、复核
|
|
18925
|
+
* @author liufan
|
|
18926
|
+
* @date 2022年9月29日
|
|
18829
18927
|
**/
|
|
18830
18928
|
toStartDraf: function toStartDraf(res) {
|
|
18831
18929
|
var _this16 = this;
|
|
@@ -18839,11 +18937,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18839
18937
|
}
|
|
18840
18938
|
},
|
|
18841
18939
|
|
|
18842
|
-
/**
|
|
18843
|
-
* toSendMsg
|
|
18844
|
-
* @desc:核稿通知
|
|
18845
|
-
* @author liufan
|
|
18846
|
-
* @date 2022年9月29日
|
|
18940
|
+
/**
|
|
18941
|
+
* toSendMsg
|
|
18942
|
+
* @desc:核稿通知
|
|
18943
|
+
* @author liufan
|
|
18944
|
+
* @date 2022年9月29日
|
|
18847
18945
|
**/
|
|
18848
18946
|
toSendMsg: function toSendMsg(res) {
|
|
18849
18947
|
var _this17 = this;
|
|
@@ -18857,11 +18955,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18857
18955
|
}
|
|
18858
18956
|
},
|
|
18859
18957
|
|
|
18860
|
-
/**
|
|
18861
|
-
* toTaskReadAndEnd
|
|
18862
|
-
* @desc:分阅并办结
|
|
18863
|
-
* @author liufan
|
|
18864
|
-
* @date 2022年9月29日
|
|
18958
|
+
/**
|
|
18959
|
+
* toTaskReadAndEnd
|
|
18960
|
+
* @desc:分阅并办结
|
|
18961
|
+
* @author liufan
|
|
18962
|
+
* @date 2022年9月29日
|
|
18865
18963
|
**/
|
|
18866
18964
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
18867
18965
|
var _this18 = this;
|
|
@@ -18879,11 +18977,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18879
18977
|
}
|
|
18880
18978
|
},
|
|
18881
18979
|
|
|
18882
|
-
/**
|
|
18883
|
-
* rejectAndEnd
|
|
18884
|
-
* @desc:驳回并办结
|
|
18885
|
-
* @author liufan
|
|
18886
|
-
* @date 2022年9月29日
|
|
18980
|
+
/**
|
|
18981
|
+
* rejectAndEnd
|
|
18982
|
+
* @desc:驳回并办结
|
|
18983
|
+
* @author liufan
|
|
18984
|
+
* @date 2022年9月29日
|
|
18887
18985
|
**/
|
|
18888
18986
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
18889
18987
|
var _this19 = this;
|
|
@@ -18938,11 +19036,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18938
19036
|
});
|
|
18939
19037
|
},
|
|
18940
19038
|
|
|
18941
|
-
/**
|
|
18942
|
-
* toTransfer
|
|
18943
|
-
* @desc:转办
|
|
18944
|
-
* @author liufan
|
|
18945
|
-
* @date 2022年9月29日
|
|
19039
|
+
/**
|
|
19040
|
+
* toTransfer
|
|
19041
|
+
* @desc:转办
|
|
19042
|
+
* @author liufan
|
|
19043
|
+
* @date 2022年9月29日
|
|
18946
19044
|
**/
|
|
18947
19045
|
toTransfer: function toTransfer(res) {
|
|
18948
19046
|
var _this21 = this;
|
|
@@ -18958,11 +19056,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
18958
19056
|
}
|
|
18959
19057
|
},
|
|
18960
19058
|
|
|
18961
|
-
/**
|
|
18962
|
-
* getNodeInfo
|
|
18963
|
-
* @desc:获取节点信息
|
|
18964
|
-
* @author liufan
|
|
18965
|
-
* @date 2022年5月25日
|
|
19059
|
+
/**
|
|
19060
|
+
* getNodeInfo
|
|
19061
|
+
* @desc:获取节点信息
|
|
19062
|
+
* @author liufan
|
|
19063
|
+
* @date 2022年5月25日
|
|
18966
19064
|
**/
|
|
18967
19065
|
getNodeInfo: function getNodeInfo() {
|
|
18968
19066
|
var _this22 = this;
|
|
@@ -19061,12 +19159,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19061
19159
|
});
|
|
19062
19160
|
},
|
|
19063
19161
|
|
|
19064
|
-
/**
|
|
19065
|
-
* selecNext
|
|
19066
|
-
* @desc:下步节点变化时更新数据
|
|
19067
|
-
* @author liufan
|
|
19068
|
-
* @param {String} val 当前选中值
|
|
19069
|
-
* @date 2022年5月25日
|
|
19162
|
+
/**
|
|
19163
|
+
* selecNext
|
|
19164
|
+
* @desc:下步节点变化时更新数据
|
|
19165
|
+
* @author liufan
|
|
19166
|
+
* @param {String} val 当前选中值
|
|
19167
|
+
* @date 2022年5月25日
|
|
19070
19168
|
**/
|
|
19071
19169
|
selecNext: function selecNext(val, type, isDef) {
|
|
19072
19170
|
var _this23 = this;
|
|
@@ -19175,11 +19273,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19175
19273
|
if (isDef !== true) this.getNodeInfo();
|
|
19176
19274
|
},
|
|
19177
19275
|
|
|
19178
|
-
/**
|
|
19179
|
-
* isMultiple
|
|
19180
|
-
* @desc:是否多选
|
|
19181
|
-
* @author liufan
|
|
19182
|
-
* @date 2022年9月13日
|
|
19276
|
+
/**
|
|
19277
|
+
* isMultiple
|
|
19278
|
+
* @desc:是否多选
|
|
19279
|
+
* @author liufan
|
|
19280
|
+
* @date 2022年9月13日
|
|
19183
19281
|
**/
|
|
19184
19282
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
19185
19283
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -19211,11 +19309,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19211
19309
|
}
|
|
19212
19310
|
},
|
|
19213
19311
|
|
|
19214
|
-
/**
|
|
19215
|
-
* getHedInfo
|
|
19216
|
-
* @desc:获取审核页面数据
|
|
19217
|
-
* @author liufan
|
|
19218
|
-
* @date 2022年5月25日
|
|
19312
|
+
/**
|
|
19313
|
+
* getHedInfo
|
|
19314
|
+
* @desc:获取审核页面数据
|
|
19315
|
+
* @author liufan
|
|
19316
|
+
* @date 2022年5月25日
|
|
19219
19317
|
**/
|
|
19220
19318
|
getHedInfo: function getHedInfo() {
|
|
19221
19319
|
var _this24 = this;
|
|
@@ -19451,13 +19549,13 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19451
19549
|
});
|
|
19452
19550
|
},
|
|
19453
19551
|
|
|
19454
|
-
/**
|
|
19455
|
-
* closeProcess
|
|
19456
|
-
* @desc:关闭弹窗
|
|
19457
|
-
* @author liufan
|
|
19458
|
-
* @param {boolean} val 当前是否办理流程
|
|
19459
|
-
* @param {String} type 当前点击的弹窗类型
|
|
19460
|
-
* @date 2022年5月25日
|
|
19552
|
+
/**
|
|
19553
|
+
* closeProcess
|
|
19554
|
+
* @desc:关闭弹窗
|
|
19555
|
+
* @author liufan
|
|
19556
|
+
* @param {boolean} val 当前是否办理流程
|
|
19557
|
+
* @param {String} type 当前点击的弹窗类型
|
|
19558
|
+
* @date 2022年5月25日
|
|
19461
19559
|
**/
|
|
19462
19560
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
19463
19561
|
if (closeParent) {
|
|
@@ -19474,23 +19572,23 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19474
19572
|
}
|
|
19475
19573
|
},
|
|
19476
19574
|
|
|
19477
|
-
/**
|
|
19478
|
-
* selectChange
|
|
19479
|
-
* @desc:常用语选择
|
|
19480
|
-
* @author liufan
|
|
19481
|
-
* @param {String} val 选中值
|
|
19482
|
-
* @date 2022年5月25日
|
|
19575
|
+
/**
|
|
19576
|
+
* selectChange
|
|
19577
|
+
* @desc:常用语选择
|
|
19578
|
+
* @author liufan
|
|
19579
|
+
* @param {String} val 选中值
|
|
19580
|
+
* @date 2022年5月25日
|
|
19483
19581
|
**/
|
|
19484
19582
|
selectChange: function selectChange(val) {
|
|
19485
19583
|
this.value = val;
|
|
19486
19584
|
},
|
|
19487
19585
|
|
|
19488
|
-
/**
|
|
19489
|
-
* upDate
|
|
19490
|
-
* @desc:修改常用语
|
|
19491
|
-
* @author liufan
|
|
19492
|
-
* @param {Object} val 修改值
|
|
19493
|
-
* @date 2022年5月25日
|
|
19586
|
+
/**
|
|
19587
|
+
* upDate
|
|
19588
|
+
* @desc:修改常用语
|
|
19589
|
+
* @author liufan
|
|
19590
|
+
* @param {Object} val 修改值
|
|
19591
|
+
* @date 2022年5月25日
|
|
19494
19592
|
**/
|
|
19495
19593
|
upDate: function upDate(val) {
|
|
19496
19594
|
this.FormData.id = val.id;
|
|
@@ -19498,11 +19596,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19498
19596
|
},
|
|
19499
19597
|
|
|
19500
19598
|
|
|
19501
|
-
/**
|
|
19502
|
-
* getProcess
|
|
19503
|
-
* @desc:获取选择流程
|
|
19504
|
-
* @author liufan
|
|
19505
|
-
* @date 2022年5月25日
|
|
19599
|
+
/**
|
|
19600
|
+
* getProcess
|
|
19601
|
+
* @desc:获取选择流程
|
|
19602
|
+
* @author liufan
|
|
19603
|
+
* @date 2022年5月25日
|
|
19506
19604
|
**/
|
|
19507
19605
|
getProcess: function getProcess() {
|
|
19508
19606
|
var _this25 = this;
|
|
@@ -19556,11 +19654,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19556
19654
|
});
|
|
19557
19655
|
},
|
|
19558
19656
|
|
|
19559
|
-
/**
|
|
19560
|
-
* getPendedhistoryList
|
|
19561
|
-
* @desc:获取流程列表
|
|
19562
|
-
* @author liufan
|
|
19563
|
-
* @date 2022年5月25日
|
|
19657
|
+
/**
|
|
19658
|
+
* getPendedhistoryList
|
|
19659
|
+
* @desc:获取流程列表
|
|
19660
|
+
* @author liufan
|
|
19661
|
+
* @date 2022年5月25日
|
|
19564
19662
|
**/
|
|
19565
19663
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
19566
19664
|
var _this26 = this;
|
|
@@ -19592,12 +19690,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
|
|
|
19592
19690
|
},
|
|
19593
19691
|
|
|
19594
19692
|
// 提交流程
|
|
19595
|
-
/**
|
|
19596
|
-
* subProcess
|
|
19597
|
-
* @desc:提交流程
|
|
19598
|
-
* @author liufan
|
|
19599
|
-
* @param {String} formName 当前form表单ref值
|
|
19600
|
-
* @date 2022年5月25日
|
|
19693
|
+
/**
|
|
19694
|
+
* subProcess
|
|
19695
|
+
* @desc:提交流程
|
|
19696
|
+
* @author liufan
|
|
19697
|
+
* @param {String} formName 当前form表单ref值
|
|
19698
|
+
* @date 2022年5月25日
|
|
19601
19699
|
**/
|
|
19602
19700
|
subProcess: function subProcess(val) {
|
|
19603
19701
|
var _this27 = this;
|
|
@@ -19857,6 +19955,334 @@ var freeStartFlow_component = Object(componentNormalizer["a" /* default */])(
|
|
|
19857
19955
|
)
|
|
19858
19956
|
|
|
19859
19957
|
/* harmony default export */ var freeStartFlow = (freeStartFlow_component.exports);
|
|
19958
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=template&id=3c874472&
|
|
19959
|
+
var supervisevue_type_template_id_3c874472_render = function () {
|
|
19960
|
+
var _vm = this
|
|
19961
|
+
var _h = _vm.$createElement
|
|
19962
|
+
var _c = _vm._self._c || _h
|
|
19963
|
+
return _c(
|
|
19964
|
+
"div",
|
|
19965
|
+
{ staticClass: "supervise-flow" },
|
|
19966
|
+
[
|
|
19967
|
+
_c(
|
|
19968
|
+
"el-form",
|
|
19969
|
+
{
|
|
19970
|
+
ref: "nextNode",
|
|
19971
|
+
staticClass: "demo-dynamic",
|
|
19972
|
+
attrs: {
|
|
19973
|
+
model: _vm.nextNode,
|
|
19974
|
+
"label-width": "120px",
|
|
19975
|
+
"label-position": "left",
|
|
19976
|
+
},
|
|
19977
|
+
},
|
|
19978
|
+
[
|
|
19979
|
+
_c(
|
|
19980
|
+
"el-form-item",
|
|
19981
|
+
{ attrs: { prop: "pendTitle", label: "标题" } },
|
|
19982
|
+
[
|
|
19983
|
+
_c("el-input", {
|
|
19984
|
+
attrs: { disabled: "", type: "textarea", autosize: "" },
|
|
19985
|
+
model: {
|
|
19986
|
+
value: _vm.nextNode.pendTitle,
|
|
19987
|
+
callback: function ($$v) {
|
|
19988
|
+
_vm.$set(_vm.nextNode, "pendTitle", $$v)
|
|
19989
|
+
},
|
|
19990
|
+
expression: "nextNode.pendTitle",
|
|
19991
|
+
},
|
|
19992
|
+
}),
|
|
19993
|
+
],
|
|
19994
|
+
1
|
|
19995
|
+
),
|
|
19996
|
+
_c(
|
|
19997
|
+
"el-form-item",
|
|
19998
|
+
{ attrs: { prop: "currentHandleNode", label: "当前办理节点" } },
|
|
19999
|
+
[
|
|
20000
|
+
_c("el-input", {
|
|
20001
|
+
attrs: { disabled: "" },
|
|
20002
|
+
model: {
|
|
20003
|
+
value: _vm.nextNode.currentHandleNode,
|
|
20004
|
+
callback: function ($$v) {
|
|
20005
|
+
_vm.$set(_vm.nextNode, "currentHandleNode", $$v)
|
|
20006
|
+
},
|
|
20007
|
+
expression: "nextNode.currentHandleNode",
|
|
20008
|
+
},
|
|
20009
|
+
}),
|
|
20010
|
+
],
|
|
20011
|
+
1
|
|
20012
|
+
),
|
|
20013
|
+
_c(
|
|
20014
|
+
"el-form-item",
|
|
20015
|
+
{ attrs: { prop: "pendingUserNames", label: "当前办理人" } },
|
|
20016
|
+
[
|
|
20017
|
+
_c("el-input", {
|
|
20018
|
+
attrs: { type: "textarea", autosize: "", disabled: "" },
|
|
20019
|
+
model: {
|
|
20020
|
+
value: _vm.nextNode.pendingUserNames,
|
|
20021
|
+
callback: function ($$v) {
|
|
20022
|
+
_vm.$set(_vm.nextNode, "pendingUserNames", $$v)
|
|
20023
|
+
},
|
|
20024
|
+
expression: "nextNode.pendingUserNames",
|
|
20025
|
+
},
|
|
20026
|
+
}),
|
|
20027
|
+
],
|
|
20028
|
+
1
|
|
20029
|
+
),
|
|
20030
|
+
_c(
|
|
20031
|
+
"el-form-item",
|
|
20032
|
+
{ attrs: { prop: "noticeType", label: "通知方式" } },
|
|
20033
|
+
[
|
|
20034
|
+
_c(
|
|
20035
|
+
"el-checkbox-group",
|
|
20036
|
+
{
|
|
20037
|
+
model: {
|
|
20038
|
+
value: _vm.nextNode.noticeType,
|
|
20039
|
+
callback: function ($$v) {
|
|
20040
|
+
_vm.$set(_vm.nextNode, "noticeType", $$v)
|
|
20041
|
+
},
|
|
20042
|
+
expression: "nextNode.noticeType",
|
|
20043
|
+
},
|
|
20044
|
+
},
|
|
20045
|
+
_vm._l(_vm.nextNode.notificationType, function (item, index) {
|
|
20046
|
+
return _c(
|
|
20047
|
+
"el-checkbox",
|
|
20048
|
+
{ key: index, attrs: { label: item.cciValue } },
|
|
20049
|
+
[
|
|
20050
|
+
_vm._v(
|
|
20051
|
+
"\n " +
|
|
20052
|
+
_vm._s(item.shortName) +
|
|
20053
|
+
"\n "
|
|
20054
|
+
),
|
|
20055
|
+
]
|
|
20056
|
+
)
|
|
20057
|
+
}),
|
|
20058
|
+
1
|
|
20059
|
+
),
|
|
20060
|
+
],
|
|
20061
|
+
1
|
|
20062
|
+
),
|
|
20063
|
+
_c(
|
|
20064
|
+
"el-form-item",
|
|
20065
|
+
{ attrs: { prop: "notifyMessage", label: "通知消息" } },
|
|
20066
|
+
[
|
|
20067
|
+
_c("es-input", {
|
|
20068
|
+
staticStyle: {
|
|
20069
|
+
"border-color": "#ccc",
|
|
20070
|
+
padding: "5px",
|
|
20071
|
+
"border-radius": "5px",
|
|
20072
|
+
"font-size": "13px",
|
|
20073
|
+
},
|
|
20074
|
+
attrs: { type: "textarea" },
|
|
20075
|
+
model: {
|
|
20076
|
+
value: _vm.nextNode.notifyMessage,
|
|
20077
|
+
callback: function ($$v) {
|
|
20078
|
+
_vm.$set(_vm.nextNode, "notifyMessage", $$v)
|
|
20079
|
+
},
|
|
20080
|
+
expression: "nextNode.notifyMessage",
|
|
20081
|
+
},
|
|
20082
|
+
}),
|
|
20083
|
+
],
|
|
20084
|
+
1
|
|
20085
|
+
),
|
|
20086
|
+
_c("el-form-item", { staticStyle: { "margin-bottom": "0px" } }, [
|
|
20087
|
+
_c(
|
|
20088
|
+
"div",
|
|
20089
|
+
{ staticStyle: { "text-align": "right" } },
|
|
20090
|
+
[
|
|
20091
|
+
_c(
|
|
20092
|
+
"el-button",
|
|
20093
|
+
{
|
|
20094
|
+
attrs: { type: "primary", size: "small" },
|
|
20095
|
+
on: {
|
|
20096
|
+
click: function ($event) {
|
|
20097
|
+
_vm.subProcess()
|
|
20098
|
+
},
|
|
20099
|
+
},
|
|
20100
|
+
},
|
|
20101
|
+
[_vm._v("\n 确认\n ")]
|
|
20102
|
+
),
|
|
20103
|
+
],
|
|
20104
|
+
1
|
|
20105
|
+
),
|
|
20106
|
+
]),
|
|
20107
|
+
],
|
|
20108
|
+
1
|
|
20109
|
+
),
|
|
20110
|
+
],
|
|
20111
|
+
1
|
|
20112
|
+
)
|
|
20113
|
+
}
|
|
20114
|
+
var supervisevue_type_template_id_3c874472_staticRenderFns = []
|
|
20115
|
+
supervisevue_type_template_id_3c874472_render._withStripped = true
|
|
20116
|
+
|
|
20117
|
+
|
|
20118
|
+
// CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=template&id=3c874472&
|
|
20119
|
+
|
|
20120
|
+
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/supervise.vue?vue&type=script&lang=js&
|
|
20121
|
+
var supervisevue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
20122
|
+
|
|
20123
|
+
//
|
|
20124
|
+
//
|
|
20125
|
+
//
|
|
20126
|
+
//
|
|
20127
|
+
//
|
|
20128
|
+
//
|
|
20129
|
+
//
|
|
20130
|
+
//
|
|
20131
|
+
//
|
|
20132
|
+
//
|
|
20133
|
+
//
|
|
20134
|
+
//
|
|
20135
|
+
//
|
|
20136
|
+
//
|
|
20137
|
+
//
|
|
20138
|
+
//
|
|
20139
|
+
//
|
|
20140
|
+
//
|
|
20141
|
+
//
|
|
20142
|
+
//
|
|
20143
|
+
//
|
|
20144
|
+
//
|
|
20145
|
+
//
|
|
20146
|
+
//
|
|
20147
|
+
//
|
|
20148
|
+
//
|
|
20149
|
+
//
|
|
20150
|
+
//
|
|
20151
|
+
//
|
|
20152
|
+
//
|
|
20153
|
+
//
|
|
20154
|
+
//
|
|
20155
|
+
//
|
|
20156
|
+
//
|
|
20157
|
+
//
|
|
20158
|
+
//
|
|
20159
|
+
//
|
|
20160
|
+
//
|
|
20161
|
+
//
|
|
20162
|
+
//
|
|
20163
|
+
//
|
|
20164
|
+
//
|
|
20165
|
+
//
|
|
20166
|
+
//
|
|
20167
|
+
//
|
|
20168
|
+
//
|
|
20169
|
+
//
|
|
20170
|
+
//
|
|
20171
|
+
//
|
|
20172
|
+
//
|
|
20173
|
+
//
|
|
20174
|
+
//
|
|
20175
|
+
//
|
|
20176
|
+
//
|
|
20177
|
+
//
|
|
20178
|
+
//
|
|
20179
|
+
//
|
|
20180
|
+
//
|
|
20181
|
+
//
|
|
20182
|
+
//
|
|
20183
|
+
|
|
20184
|
+
|
|
20185
|
+
|
|
20186
|
+
/* harmony default export */ var supervisevue_type_script_lang_js_ = ({
|
|
20187
|
+
props: {
|
|
20188
|
+
businessId: {
|
|
20189
|
+
type: String,
|
|
20190
|
+
default: ''
|
|
20191
|
+
}
|
|
20192
|
+
},
|
|
20193
|
+
data: function data() {
|
|
20194
|
+
return {
|
|
20195
|
+
nextNode: {
|
|
20196
|
+
noticeType: [],
|
|
20197
|
+
notificationType: [],
|
|
20198
|
+
loading: undefined
|
|
20199
|
+
}
|
|
20200
|
+
};
|
|
20201
|
+
},
|
|
20202
|
+
mounted: function mounted() {
|
|
20203
|
+
this.getFlowInfo();
|
|
20204
|
+
},
|
|
20205
|
+
|
|
20206
|
+
methods: {
|
|
20207
|
+
subProcess: function subProcess() {
|
|
20208
|
+
var _this = this;
|
|
20209
|
+
|
|
20210
|
+
if (this.nextNode.noticeType.length == 0) {
|
|
20211
|
+
this.$message.warning('请选择通知方式');
|
|
20212
|
+
return;
|
|
20213
|
+
}
|
|
20214
|
+
if (!this.nextNode.notifyMessage) {
|
|
20215
|
+
this.$message.warning('请填写通知消息内容');
|
|
20216
|
+
return;
|
|
20217
|
+
}
|
|
20218
|
+
var _nextNode = this.nextNode,
|
|
20219
|
+
noticeType = _nextNode.noticeType,
|
|
20220
|
+
notifyMessage = _nextNode.notifyMessage,
|
|
20221
|
+
pendingUserIds = _nextNode.pendingUserIds;
|
|
20222
|
+
|
|
20223
|
+
var params = {
|
|
20224
|
+
url: api["Xb" /* toTaskSuperviseSub */],
|
|
20225
|
+
params: {
|
|
20226
|
+
userId: util["a" /* default */].getStorage('userId'),
|
|
20227
|
+
urgeUserIds: pendingUserIds,
|
|
20228
|
+
notificationType: noticeType.join(','), notificationMessage: notifyMessage,
|
|
20229
|
+
businessId: this.businessId
|
|
20230
|
+
}
|
|
20231
|
+
};
|
|
20232
|
+
this.loading = util["a" /* default */].loading(this.$loading, '提交中...');
|
|
20233
|
+
util["a" /* default */].ajax(params).then(function (res) {
|
|
20234
|
+
_this.loading.close();
|
|
20235
|
+
if (res.rCode == 0 || res.status == 'success') {
|
|
20236
|
+
_this.$message.success('操作成功');
|
|
20237
|
+
_this.$parent.$emit('success');
|
|
20238
|
+
} else {
|
|
20239
|
+
_this.$message.error(res.message || '系统错误,请联系管理员!');
|
|
20240
|
+
}
|
|
20241
|
+
});
|
|
20242
|
+
},
|
|
20243
|
+
getFlowInfo: function getFlowInfo() {
|
|
20244
|
+
var _this2 = this;
|
|
20245
|
+
|
|
20246
|
+
this.loading = util["a" /* default */].loading(this.$loading, '加载中...');
|
|
20247
|
+
util["a" /* default */].ajax({
|
|
20248
|
+
url: api["Wb" /* toTaskSupervise */],
|
|
20249
|
+
params: {
|
|
20250
|
+
businessId: this.businessId,
|
|
20251
|
+
userId: util["a" /* default */].getStorage('userId')
|
|
20252
|
+
}
|
|
20253
|
+
}).then(function (res) {
|
|
20254
|
+
_this2.loading.close();
|
|
20255
|
+
console.log(res);
|
|
20256
|
+
if (res.rCode == 0) {
|
|
20257
|
+
_this2.nextNode = supervisevue_type_script_lang_js_extends({}, _this2.nextNode, res.results);
|
|
20258
|
+
_this2.nextNode.noticeType = res.results.defaultNotificationType.split(',');
|
|
20259
|
+
}
|
|
20260
|
+
});
|
|
20261
|
+
}
|
|
20262
|
+
}
|
|
20263
|
+
});
|
|
20264
|
+
// CONCATENATED MODULE: ./packages/flow/src/supervise.vue?vue&type=script&lang=js&
|
|
20265
|
+
/* harmony default export */ var src_supervisevue_type_script_lang_js_ = (supervisevue_type_script_lang_js_);
|
|
20266
|
+
// CONCATENATED MODULE: ./packages/flow/src/supervise.vue
|
|
20267
|
+
|
|
20268
|
+
|
|
20269
|
+
|
|
20270
|
+
|
|
20271
|
+
|
|
20272
|
+
/* normalize component */
|
|
20273
|
+
|
|
20274
|
+
var supervise_component = Object(componentNormalizer["a" /* default */])(
|
|
20275
|
+
src_supervisevue_type_script_lang_js_,
|
|
20276
|
+
supervisevue_type_template_id_3c874472_render,
|
|
20277
|
+
supervisevue_type_template_id_3c874472_staticRenderFns,
|
|
20278
|
+
false,
|
|
20279
|
+
null,
|
|
20280
|
+
null,
|
|
20281
|
+
null
|
|
20282
|
+
|
|
20283
|
+
)
|
|
20284
|
+
|
|
20285
|
+
/* harmony default export */ var supervise = (supervise_component.exports);
|
|
19860
20286
|
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/main.vue?vue&type=script&lang=js&
|
|
19861
20287
|
|
|
19862
20288
|
|
|
@@ -20663,6 +21089,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
20663
21089
|
//
|
|
20664
21090
|
//
|
|
20665
21091
|
//
|
|
21092
|
+
//
|
|
21093
|
+
|
|
20666
21094
|
|
|
20667
21095
|
|
|
20668
21096
|
|
|
@@ -20682,7 +21110,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
20682
21110
|
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
|
20683
21111
|
name: 'EsFlow',
|
|
20684
21112
|
componentName: 'EsFlow',
|
|
20685
|
-
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[freeStartFlow.name] = freeStartFlow, mainvue_type_script_lang_js_components.Preset = Preset, mainvue_type_script_lang_js_components.Reset = src_reset, mainvue_type_script_lang_js_components),
|
|
21113
|
+
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[freeStartFlow.name] = freeStartFlow, mainvue_type_script_lang_js_components.Preset = Preset, mainvue_type_script_lang_js_components.Reset = src_reset, mainvue_type_script_lang_js_components.Supervise = supervise, mainvue_type_script_lang_js_components),
|
|
20686
21114
|
props: {
|
|
20687
21115
|
showShrink: { type: Boolean, default: true },
|
|
20688
21116
|
isStartFlow: { type: Boolean, default: false },
|
|
@@ -20737,6 +21165,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
20737
21165
|
currentOrgDisabledObjId: [],
|
|
20738
21166
|
nextNodeCheckType: 'select',
|
|
20739
21167
|
readOnlyNotificationType: '',
|
|
21168
|
+
circularReadParamsMap: { circularReadOrgRoleCode: '' },
|
|
20740
21169
|
taskParams: {},
|
|
20741
21170
|
notificationMessageReadOnly: false,
|
|
20742
21171
|
isCanPreAddSign: false,
|
|
@@ -20866,6 +21295,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
20866
21295
|
mounted: function mounted() {
|
|
20867
21296
|
this.businessIds = this.businessId;
|
|
20868
21297
|
this.nextNode.nextNodeId = this.nextNodeId;
|
|
21298
|
+
if (this.typeCode == 'supervise') return;
|
|
20869
21299
|
this.getNodeType();
|
|
20870
21300
|
!this.isFlow && (this.newTypeCode = this.typeCode || this.$route.query.typecode);
|
|
20871
21301
|
if (this.isFlow) {
|
|
@@ -21229,11 +21659,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21229
21659
|
});
|
|
21230
21660
|
},
|
|
21231
21661
|
|
|
21232
|
-
/**
|
|
21233
|
-
* saveInfo
|
|
21234
|
-
* @desc:暂存
|
|
21235
|
-
* @author liufan
|
|
21236
|
-
* @date 2022年9月9日
|
|
21662
|
+
/**
|
|
21663
|
+
* saveInfo
|
|
21664
|
+
* @desc:暂存
|
|
21665
|
+
* @author liufan
|
|
21666
|
+
* @date 2022年9月9日
|
|
21237
21667
|
**/
|
|
21238
21668
|
saveInfo: function saveInfo(type, btn) {
|
|
21239
21669
|
var _this7 = this;
|
|
@@ -21295,11 +21725,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21295
21725
|
});
|
|
21296
21726
|
},
|
|
21297
21727
|
|
|
21298
|
-
/**
|
|
21299
|
-
* rejectBtn
|
|
21300
|
-
* @desc:点击驳回
|
|
21301
|
-
* @author liufan
|
|
21302
|
-
* @date 2022年5月25日
|
|
21728
|
+
/**
|
|
21729
|
+
* rejectBtn
|
|
21730
|
+
* @desc:点击驳回
|
|
21731
|
+
* @author liufan
|
|
21732
|
+
* @date 2022年5月25日
|
|
21303
21733
|
**/
|
|
21304
21734
|
rejectBtn: function rejectBtn() {
|
|
21305
21735
|
var _this9 = this;
|
|
@@ -21317,11 +21747,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21317
21747
|
}
|
|
21318
21748
|
},
|
|
21319
21749
|
|
|
21320
|
-
/**
|
|
21321
|
-
* taskReadBtn
|
|
21322
|
-
* @desc:点击分阅
|
|
21323
|
-
* @author liufan
|
|
21324
|
-
* @date 2022年5月25日
|
|
21750
|
+
/**
|
|
21751
|
+
* taskReadBtn
|
|
21752
|
+
* @desc:点击分阅
|
|
21753
|
+
* @author liufan
|
|
21754
|
+
* @date 2022年5月25日
|
|
21325
21755
|
**/
|
|
21326
21756
|
taskReadBtn: function taskReadBtn() {
|
|
21327
21757
|
var _this10 = this;
|
|
@@ -21340,11 +21770,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21340
21770
|
}
|
|
21341
21771
|
},
|
|
21342
21772
|
|
|
21343
|
-
/**
|
|
21344
|
-
* getFind
|
|
21345
|
-
* @desc:获取通知方式
|
|
21346
|
-
* @author liufan
|
|
21347
|
-
* @date 2022年5月25日
|
|
21773
|
+
/**
|
|
21774
|
+
* getFind
|
|
21775
|
+
* @desc:获取通知方式
|
|
21776
|
+
* @author liufan
|
|
21777
|
+
* @date 2022年5月25日
|
|
21348
21778
|
**/
|
|
21349
21779
|
getFind: function getFind() {
|
|
21350
21780
|
var _this11 = this;
|
|
@@ -21409,12 +21839,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21409
21839
|
});
|
|
21410
21840
|
},
|
|
21411
21841
|
|
|
21412
|
-
/**
|
|
21413
|
-
* endFlows
|
|
21414
|
-
* @desc:直接办结
|
|
21415
|
-
* @author liufan
|
|
21416
|
-
* @param {Object} res 直接办结数据
|
|
21417
|
-
* @date 2022年5月25日
|
|
21842
|
+
/**
|
|
21843
|
+
* endFlows
|
|
21844
|
+
* @desc:直接办结
|
|
21845
|
+
* @author liufan
|
|
21846
|
+
* @param {Object} res 直接办结数据
|
|
21847
|
+
* @date 2022年5月25日
|
|
21418
21848
|
**/
|
|
21419
21849
|
endFlows: function endFlows(res) {
|
|
21420
21850
|
var _this13 = this;
|
|
@@ -21468,12 +21898,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21468
21898
|
}).catch(function (e) {});
|
|
21469
21899
|
},
|
|
21470
21900
|
|
|
21471
|
-
/**
|
|
21472
|
-
* goView
|
|
21473
|
-
* @desc:更多流程按钮操作
|
|
21474
|
-
* @author liufan
|
|
21475
|
-
* @param {Object} res 当前点击操作按钮数据
|
|
21476
|
-
* @date 2022年5月25日
|
|
21901
|
+
/**
|
|
21902
|
+
* goView
|
|
21903
|
+
* @desc:更多流程按钮操作
|
|
21904
|
+
* @author liufan
|
|
21905
|
+
* @param {Object} res 当前点击操作按钮数据
|
|
21906
|
+
* @date 2022年5月25日
|
|
21477
21907
|
**/
|
|
21478
21908
|
goView: function goView(res) {
|
|
21479
21909
|
// 驳回并办结:rejectAndEndHtml
|
|
@@ -21558,11 +21988,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21558
21988
|
// isCanStartSubFlow
|
|
21559
21989
|
},
|
|
21560
21990
|
|
|
21561
|
-
/**
|
|
21562
|
-
* toTakeAdvice
|
|
21563
|
-
* @desc:征求意见
|
|
21564
|
-
* @author liufan
|
|
21565
|
-
* @date 2022年9月29日
|
|
21991
|
+
/**
|
|
21992
|
+
* toTakeAdvice
|
|
21993
|
+
* @desc:征求意见
|
|
21994
|
+
* @author liufan
|
|
21995
|
+
* @date 2022年9月29日
|
|
21566
21996
|
**/
|
|
21567
21997
|
toTakeAdvice: function toTakeAdvice(res) {
|
|
21568
21998
|
var _this15 = this;
|
|
@@ -21606,11 +22036,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21606
22036
|
});
|
|
21607
22037
|
},
|
|
21608
22038
|
|
|
21609
|
-
/**
|
|
21610
|
-
* toStartDraf
|
|
21611
|
-
* @desc: 稿件递送、联合审核、复核
|
|
21612
|
-
* @author liufan
|
|
21613
|
-
* @date 2022年9月29日
|
|
22039
|
+
/**
|
|
22040
|
+
* toStartDraf
|
|
22041
|
+
* @desc: 稿件递送、联合审核、复核
|
|
22042
|
+
* @author liufan
|
|
22043
|
+
* @date 2022年9月29日
|
|
21614
22044
|
**/
|
|
21615
22045
|
toStartDraf: function toStartDraf(res) {
|
|
21616
22046
|
var _this17 = this;
|
|
@@ -21624,11 +22054,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21624
22054
|
}
|
|
21625
22055
|
},
|
|
21626
22056
|
|
|
21627
|
-
/**
|
|
21628
|
-
* toSendMsg
|
|
21629
|
-
* @desc:核稿通知
|
|
21630
|
-
* @author liufan
|
|
21631
|
-
* @date 2022年9月29日
|
|
22057
|
+
/**
|
|
22058
|
+
* toSendMsg
|
|
22059
|
+
* @desc:核稿通知
|
|
22060
|
+
* @author liufan
|
|
22061
|
+
* @date 2022年9月29日
|
|
21632
22062
|
**/
|
|
21633
22063
|
toSendMsg: function toSendMsg(res) {
|
|
21634
22064
|
var _this18 = this;
|
|
@@ -21642,11 +22072,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21642
22072
|
}
|
|
21643
22073
|
},
|
|
21644
22074
|
|
|
21645
|
-
/**
|
|
21646
|
-
* toTaskReadAndEnd
|
|
21647
|
-
* @desc:分阅并办结
|
|
21648
|
-
* @author liufan
|
|
21649
|
-
* @date 2022年9月29日
|
|
22075
|
+
/**
|
|
22076
|
+
* toTaskReadAndEnd
|
|
22077
|
+
* @desc:分阅并办结
|
|
22078
|
+
* @author liufan
|
|
22079
|
+
* @date 2022年9月29日
|
|
21650
22080
|
**/
|
|
21651
22081
|
toTaskReadAndEnd: function toTaskReadAndEnd(res) {
|
|
21652
22082
|
var _this19 = this;
|
|
@@ -21664,11 +22094,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21664
22094
|
}
|
|
21665
22095
|
},
|
|
21666
22096
|
|
|
21667
|
-
/**
|
|
21668
|
-
* rejectAndEnd
|
|
21669
|
-
* @desc:驳回并办结
|
|
21670
|
-
* @author liufan
|
|
21671
|
-
* @date 2022年9月29日
|
|
22097
|
+
/**
|
|
22098
|
+
* rejectAndEnd
|
|
22099
|
+
* @desc:驳回并办结
|
|
22100
|
+
* @author liufan
|
|
22101
|
+
* @date 2022年9月29日
|
|
21672
22102
|
**/
|
|
21673
22103
|
rejectAndEnd: function rejectAndEnd(res) {
|
|
21674
22104
|
var _this20 = this;
|
|
@@ -21723,11 +22153,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21723
22153
|
});
|
|
21724
22154
|
},
|
|
21725
22155
|
|
|
21726
|
-
/**
|
|
21727
|
-
* toTransfer
|
|
21728
|
-
* @desc:转办
|
|
21729
|
-
* @author liufan
|
|
21730
|
-
* @date 2022年9月29日
|
|
22156
|
+
/**
|
|
22157
|
+
* toTransfer
|
|
22158
|
+
* @desc:转办
|
|
22159
|
+
* @author liufan
|
|
22160
|
+
* @date 2022年9月29日
|
|
21731
22161
|
**/
|
|
21732
22162
|
toTransfer: function toTransfer(res) {
|
|
21733
22163
|
var _this22 = this;
|
|
@@ -21743,11 +22173,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21743
22173
|
}
|
|
21744
22174
|
},
|
|
21745
22175
|
|
|
21746
|
-
/**
|
|
21747
|
-
* getNodeInfo
|
|
21748
|
-
* @desc:获取节点信息
|
|
21749
|
-
* @author liufan
|
|
21750
|
-
* @date 2022年5月25日
|
|
22176
|
+
/**
|
|
22177
|
+
* getNodeInfo
|
|
22178
|
+
* @desc:获取节点信息
|
|
22179
|
+
* @author liufan
|
|
22180
|
+
* @date 2022年5月25日
|
|
21751
22181
|
**/
|
|
21752
22182
|
getNodeInfo: function getNodeInfo() {
|
|
21753
22183
|
var _this23 = this;
|
|
@@ -21846,12 +22276,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21846
22276
|
});
|
|
21847
22277
|
},
|
|
21848
22278
|
|
|
21849
|
-
/**
|
|
21850
|
-
* selecNext
|
|
21851
|
-
* @desc:下步节点变化时更新数据
|
|
21852
|
-
* @author liufan
|
|
21853
|
-
* @param {String} val 当前选中值
|
|
21854
|
-
* @date 2022年5月25日
|
|
22279
|
+
/**
|
|
22280
|
+
* selecNext
|
|
22281
|
+
* @desc:下步节点变化时更新数据
|
|
22282
|
+
* @author liufan
|
|
22283
|
+
* @param {String} val 当前选中值
|
|
22284
|
+
* @date 2022年5月25日
|
|
21855
22285
|
**/
|
|
21856
22286
|
selecNext: function selecNext(val, type, isDef) {
|
|
21857
22287
|
var _this24 = this;
|
|
@@ -21960,11 +22390,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21960
22390
|
if (isDef !== true) this.getNodeInfo();
|
|
21961
22391
|
},
|
|
21962
22392
|
|
|
21963
|
-
/**
|
|
21964
|
-
* isMultiple
|
|
21965
|
-
* @desc:是否多选
|
|
21966
|
-
* @author liufan
|
|
21967
|
-
* @date 2022年9月13日
|
|
22393
|
+
/**
|
|
22394
|
+
* isMultiple
|
|
22395
|
+
* @desc:是否多选
|
|
22396
|
+
* @author liufan
|
|
22397
|
+
* @date 2022年9月13日
|
|
21968
22398
|
**/
|
|
21969
22399
|
isMultiple: function isMultiple(val, choiceOrgId, choiceDeptId, pOrgId) {
|
|
21970
22400
|
if (val == 2 || val == 4 || val == 6 || val == 16) {
|
|
@@ -21996,11 +22426,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
21996
22426
|
}
|
|
21997
22427
|
},
|
|
21998
22428
|
|
|
21999
|
-
/**
|
|
22000
|
-
* getHedInfo
|
|
22001
|
-
* @desc:获取审核页面数据
|
|
22002
|
-
* @author liufan
|
|
22003
|
-
* @date 2022年5月25日
|
|
22429
|
+
/**
|
|
22430
|
+
* getHedInfo
|
|
22431
|
+
* @desc:获取审核页面数据
|
|
22432
|
+
* @author liufan
|
|
22433
|
+
* @date 2022年5月25日
|
|
22004
22434
|
**/
|
|
22005
22435
|
getHedInfo: function getHedInfo() {
|
|
22006
22436
|
var _this25 = this;
|
|
@@ -22021,6 +22451,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22021
22451
|
isCustomPreset = _res$data2.isCustomPreset,
|
|
22022
22452
|
presetTaskNodeKeyStr = _res$data2.presetTaskNodeKeyStr,
|
|
22023
22453
|
presetTaskNodeMap = _res$data2.presetTaskNodeMap,
|
|
22454
|
+
circularReadParamsMap = _res$data2.circularReadParamsMap,
|
|
22024
22455
|
isPreset = _res$data2.isPreset,
|
|
22025
22456
|
choiceOrgId = _res$data2.choiceOrgId,
|
|
22026
22457
|
choiceDeptId = _res$data2.choiceDeptId,
|
|
@@ -22046,6 +22477,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22046
22477
|
|
|
22047
22478
|
_this25.$emit('startTaskRead', res);
|
|
22048
22479
|
_this25.$emit('start-task-read', res);
|
|
22480
|
+
_this25.circularReadParamsMap = circularReadParamsMap || {};
|
|
22049
22481
|
_this25.currentOrgName = currentOrgName;
|
|
22050
22482
|
_this25.currentNodeIsCircularReadNode = nodeInfoMap.nodeExtAttr.currentNodeIsCircularReadNode == 1;
|
|
22051
22483
|
_this25.readOnlyNotificationType = readOnlyNotificationType;
|
|
@@ -22237,13 +22669,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22237
22669
|
});
|
|
22238
22670
|
},
|
|
22239
22671
|
|
|
22240
|
-
/**
|
|
22241
|
-
* closeProcess
|
|
22242
|
-
* @desc:关闭弹窗
|
|
22243
|
-
* @author liufan
|
|
22244
|
-
* @param {boolean} val 当前是否办理流程
|
|
22245
|
-
* @param {String} type 当前点击的弹窗类型
|
|
22246
|
-
* @date 2022年5月25日
|
|
22672
|
+
/**
|
|
22673
|
+
* closeProcess
|
|
22674
|
+
* @desc:关闭弹窗
|
|
22675
|
+
* @author liufan
|
|
22676
|
+
* @param {boolean} val 当前是否办理流程
|
|
22677
|
+
* @param {String} type 当前点击的弹窗类型
|
|
22678
|
+
* @date 2022年5月25日
|
|
22247
22679
|
**/
|
|
22248
22680
|
closeProcess: function closeProcess(val, type, closeParent) {
|
|
22249
22681
|
if (closeParent) {
|
|
@@ -22260,23 +22692,23 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22260
22692
|
}
|
|
22261
22693
|
},
|
|
22262
22694
|
|
|
22263
|
-
/**
|
|
22264
|
-
* selectChange
|
|
22265
|
-
* @desc:常用语选择
|
|
22266
|
-
* @author liufan
|
|
22267
|
-
* @param {String} val 选中值
|
|
22268
|
-
* @date 2022年5月25日
|
|
22695
|
+
/**
|
|
22696
|
+
* selectChange
|
|
22697
|
+
* @desc:常用语选择
|
|
22698
|
+
* @author liufan
|
|
22699
|
+
* @param {String} val 选中值
|
|
22700
|
+
* @date 2022年5月25日
|
|
22269
22701
|
**/
|
|
22270
22702
|
selectChange: function selectChange(val) {
|
|
22271
22703
|
this.value = val;
|
|
22272
22704
|
},
|
|
22273
22705
|
|
|
22274
|
-
/**
|
|
22275
|
-
* upDate
|
|
22276
|
-
* @desc:修改常用语
|
|
22277
|
-
* @author liufan
|
|
22278
|
-
* @param {Object} val 修改值
|
|
22279
|
-
* @date 2022年5月25日
|
|
22706
|
+
/**
|
|
22707
|
+
* upDate
|
|
22708
|
+
* @desc:修改常用语
|
|
22709
|
+
* @author liufan
|
|
22710
|
+
* @param {Object} val 修改值
|
|
22711
|
+
* @date 2022年5月25日
|
|
22280
22712
|
**/
|
|
22281
22713
|
upDate: function upDate(val) {
|
|
22282
22714
|
this.FormData.id = val.id;
|
|
@@ -22284,11 +22716,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22284
22716
|
},
|
|
22285
22717
|
|
|
22286
22718
|
|
|
22287
|
-
/**
|
|
22288
|
-
* getProcess
|
|
22289
|
-
* @desc:获取选择流程
|
|
22290
|
-
* @author liufan
|
|
22291
|
-
* @date 2022年5月25日
|
|
22719
|
+
/**
|
|
22720
|
+
* getProcess
|
|
22721
|
+
* @desc:获取选择流程
|
|
22722
|
+
* @author liufan
|
|
22723
|
+
* @date 2022年5月25日
|
|
22292
22724
|
**/
|
|
22293
22725
|
getProcess: function getProcess() {
|
|
22294
22726
|
var _this26 = this;
|
|
@@ -22340,11 +22772,11 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22340
22772
|
});
|
|
22341
22773
|
},
|
|
22342
22774
|
|
|
22343
|
-
/**
|
|
22344
|
-
* getPendedhistoryList
|
|
22345
|
-
* @desc:获取流程列表
|
|
22346
|
-
* @author liufan
|
|
22347
|
-
* @date 2022年5月25日
|
|
22775
|
+
/**
|
|
22776
|
+
* getPendedhistoryList
|
|
22777
|
+
* @desc:获取流程列表
|
|
22778
|
+
* @author liufan
|
|
22779
|
+
* @date 2022年5月25日
|
|
22348
22780
|
**/
|
|
22349
22781
|
getPendedhistoryList: function getPendedhistoryList() {
|
|
22350
22782
|
var _this27 = this;
|
|
@@ -22376,12 +22808,12 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22376
22808
|
},
|
|
22377
22809
|
|
|
22378
22810
|
// 提交流程
|
|
22379
|
-
/**
|
|
22380
|
-
* subProcess
|
|
22381
|
-
* @desc:提交流程
|
|
22382
|
-
* @author liufan
|
|
22383
|
-
* @param {String} formName 当前form表单ref值
|
|
22384
|
-
* @date 2022年5月25日
|
|
22811
|
+
/**
|
|
22812
|
+
* subProcess
|
|
22813
|
+
* @desc:提交流程
|
|
22814
|
+
* @author liufan
|
|
22815
|
+
* @param {String} formName 当前form表单ref值
|
|
22816
|
+
* @date 2022年5月25日
|
|
22385
22817
|
**/
|
|
22386
22818
|
subProcess: function subProcess(val, type) {
|
|
22387
22819
|
var _this28 = this;
|
|
@@ -22444,7 +22876,8 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22444
22876
|
this.$message.warning('\u8BF7\u9009\u62E9' + (this.currentOrgName || '本单位'));
|
|
22445
22877
|
return false;
|
|
22446
22878
|
}
|
|
22447
|
-
|
|
22879
|
+
|
|
22880
|
+
if (this.currentNodeIsCircularReadNode && this.nextNode.nextCurrentOrgObj.length == 0 && this.nextNode.nextOtherOrgObj.length == 0) {
|
|
22448
22881
|
this.$message.warning('\u8BF7\u9009\u62E9\u5904\u7406\u5BF9\u8C61!');
|
|
22449
22882
|
return false;
|
|
22450
22883
|
}
|
|
@@ -22455,13 +22888,13 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22455
22888
|
|
|
22456
22889
|
this.$refs['nextNode'].validate(function () {
|
|
22457
22890
|
var _ref2 = mainvue_type_script_lang_js_asyncToGenerator( /*#__PURE__*/regenerator_default.a.mark(function _callee(valid) {
|
|
22458
|
-
var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth;
|
|
22891
|
+
var nextUserId, addSignUserId, removeSignUserId, str, notificationType, params, isEndUserTask, choiceOrgId, choiceDeptId, pOrgId, taskExamineInfo, currentNodeIsCircularReadNode, needRetrialAuth, circularReadParamsMap;
|
|
22459
22892
|
return regenerator_default.a.wrap(function _callee$(_context) {
|
|
22460
22893
|
while (1) {
|
|
22461
22894
|
switch (_context.prev = _context.next) {
|
|
22462
22895
|
case 0:
|
|
22463
22896
|
if (!valid) {
|
|
22464
|
-
_context.next =
|
|
22897
|
+
_context.next = 49;
|
|
22465
22898
|
break;
|
|
22466
22899
|
}
|
|
22467
22900
|
|
|
@@ -22567,7 +23000,7 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22567
23000
|
|
|
22568
23001
|
case 31:
|
|
22569
23002
|
_this29.loading = util["a" /* default */].loading(_this29.$loading, '提交中...');
|
|
22570
|
-
isEndUserTask = _this29.isEndUserTask, choiceOrgId = _this29.choiceOrgId, choiceDeptId = _this29.choiceDeptId, pOrgId = _this29.pOrgId, taskExamineInfo = _this29.taskExamineInfo, currentNodeIsCircularReadNode = _this29.currentNodeIsCircularReadNode, needRetrialAuth = _this29.needRetrialAuth;
|
|
23003
|
+
isEndUserTask = _this29.isEndUserTask, choiceOrgId = _this29.choiceOrgId, choiceDeptId = _this29.choiceDeptId, pOrgId = _this29.pOrgId, taskExamineInfo = _this29.taskExamineInfo, currentNodeIsCircularReadNode = _this29.currentNodeIsCircularReadNode, needRetrialAuth = _this29.needRetrialAuth, circularReadParamsMap = _this29.circularReadParamsMap;
|
|
22571
23004
|
|
|
22572
23005
|
params.isEndUserTask = isEndUserTask;
|
|
22573
23006
|
params.choiceOrgId = choiceOrgId;
|
|
@@ -22581,7 +23014,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22581
23014
|
params.nodeId = taskExamineInfo.nodeId;
|
|
22582
23015
|
params.needRetrialAuth = needRetrialAuth;
|
|
22583
23016
|
params.taskHandleSubmitMode = currentNodeIsCircularReadNode ? 'circularReadMode' : undefined;
|
|
22584
|
-
|
|
23017
|
+
if (currentNodeIsCircularReadNode) {
|
|
23018
|
+
params.orgRoleCode = circularReadParamsMap.circularReadOrgRoleCode;
|
|
23019
|
+
}
|
|
23020
|
+
|
|
22585
23021
|
return _context.abrupt('return', util["a" /* default */].ajax({ url: api["Cb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
|
|
22586
23022
|
var status = res.status,
|
|
22587
23023
|
message = res.message;
|
|
@@ -22601,10 +23037,10 @@ function mainvue_type_script_lang_js_asyncToGenerator(fn) { return function () {
|
|
|
22601
23037
|
}
|
|
22602
23038
|
}));
|
|
22603
23039
|
|
|
22604
|
-
case
|
|
23040
|
+
case 49:
|
|
22605
23041
|
return _context.abrupt('return', false);
|
|
22606
23042
|
|
|
22607
|
-
case
|
|
23043
|
+
case 50:
|
|
22608
23044
|
case 'end':
|
|
22609
23045
|
return _context.stop();
|
|
22610
23046
|
}
|