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/button-group.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';
|
package/lib/button.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 71);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -3502,12 +3502,12 @@ var watermark = function watermark(option) {
|
|
|
3502
3502
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return scanCodeRetrialAuth; });
|
|
3503
3503
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
|
|
3504
3504
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
|
|
3505
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3505
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mc", function() { return userOnline; });
|
|
3506
3506
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return getUserAppWithTag; });
|
|
3507
3507
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return recordUserApp; });
|
|
3508
3508
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return mainConfig; });
|
|
3509
3509
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return initUserSet; });
|
|
3510
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3510
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hc", function() { return updateUserInfo; });
|
|
3511
3511
|
/* unused harmony export getUserImgUrl */
|
|
3512
3512
|
/* unused harmony export getDoorIndex */
|
|
3513
3513
|
/* unused harmony export refreshOnlineUsers */
|
|
@@ -3516,18 +3516,18 @@ var watermark = function watermark(option) {
|
|
|
3516
3516
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplications; });
|
|
3517
3517
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getComplexApplicationsNew; });
|
|
3518
3518
|
/* unused harmony export getUserCustomInfo */
|
|
3519
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3519
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gc", function() { return updateUserCustomInfo; });
|
|
3520
3520
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return sysMsgPage; });
|
|
3521
3521
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return ignoreSysMsg; });
|
|
3522
3522
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return ignoreAllSysMsg; });
|
|
3523
3523
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return searchType; });
|
|
3524
3524
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getAdjunctProperties; });
|
|
3525
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3526
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3525
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lc", function() { return uploads; });
|
|
3526
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jc", function() { return uploadOnlyOne; });
|
|
3527
3527
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctFileInfos; });
|
|
3528
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3528
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kc", function() { return uploadSort; });
|
|
3529
3529
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
|
|
3530
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3530
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ic", function() { return uploadDownloads; });
|
|
3531
3531
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunct; });
|
|
3532
3532
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return previewAdjunct2; });
|
|
3533
3533
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return previewAdjunctOffice; });
|
|
@@ -3551,7 +3551,7 @@ var watermark = function watermark(option) {
|
|
|
3551
3551
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
|
|
3552
3552
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
|
|
3553
3553
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return saveCommonOpinion; });
|
|
3554
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3554
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fc", function() { return updateCommonOpinion; });
|
|
3555
3555
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
|
|
3556
3556
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getProcessDefList; });
|
|
3557
3557
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getNodeInfo; });
|
|
@@ -3575,11 +3575,11 @@ var watermark = function watermark(option) {
|
|
|
3575
3575
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
|
|
3576
3576
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return handleInfo; });
|
|
3577
3577
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return loginUserInfo; });
|
|
3578
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3579
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3578
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nc", function() { return wss; });
|
|
3579
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dc", function() { return topic; });
|
|
3580
3580
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getPresetCustomInfo; });
|
|
3581
3581
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getPresetNodeInfo; });
|
|
3582
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3582
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return toTaskTransferIndex; });
|
|
3583
3583
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return taskTransfer; });
|
|
3584
3584
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toPresetInfoListIndex; });
|
|
3585
3585
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
|
|
@@ -3588,18 +3588,20 @@ var watermark = function watermark(option) {
|
|
|
3588
3588
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return pressListJson; });
|
|
3589
3589
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
|
|
3590
3590
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return isCanStartSubFlow; });
|
|
3591
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3591
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return toTaskUnionExamine; });
|
|
3592
3592
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return taskUnionExamine; });
|
|
3593
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3593
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return toTaskTakeAdvice; });
|
|
3594
3594
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return taskTakeAdvice; });
|
|
3595
3595
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return toTaskStartDraft; });
|
|
3596
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return toTaskSupervise; });
|
|
3597
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return toTaskSuperviseSub; });
|
|
3596
3598
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return taskStartDraft; });
|
|
3597
3599
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return toTaskReview; });
|
|
3598
3600
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return taskReview; });
|
|
3599
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3601
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return toTaskUnionSeal; });
|
|
3600
3602
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return taskUnionSeal; });
|
|
3601
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3602
|
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "
|
|
3603
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return toTwoOfficesDispatch; });
|
|
3604
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ec", function() { return twoOfficesDispatch; });
|
|
3603
3605
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toResetProcessIndex; });
|
|
3604
3606
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return resetProcess; });
|
|
3605
3607
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTaskContinuationIndex; });
|
|
@@ -3809,7 +3811,10 @@ var toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdvice';
|
|
|
3809
3811
|
var taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
|
|
3810
3812
|
// 稿件递送
|
|
3811
3813
|
var toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
|
|
3812
|
-
|
|
3814
|
+
// 获取督办页面信息
|
|
3815
|
+
var toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
|
|
3816
|
+
// 督办提交
|
|
3817
|
+
var toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
|
|
3813
3818
|
// 稿件递送提交接口
|
|
3814
3819
|
// export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
3815
3820
|
var taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
|
|
@@ -4142,7 +4147,7 @@ var WebSocket = function () {
|
|
|
4142
4147
|
|
|
4143
4148
|
/***/ }),
|
|
4144
4149
|
|
|
4145
|
-
/***/
|
|
4150
|
+
/***/ 71:
|
|
4146
4151
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
4147
4152
|
|
|
4148
4153
|
"use strict";
|
package/lib/cascader.js
CHANGED
|
@@ -82,7 +82,7 @@ module.exports =
|
|
|
82
82
|
/******/
|
|
83
83
|
/******/
|
|
84
84
|
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
85
|
+
/******/ return __webpack_require__(__webpack_require__.s = 72);
|
|
86
86
|
/******/ })
|
|
87
87
|
/************************************************************************/
|
|
88
88
|
/******/ ({
|
|
@@ -192,7 +192,7 @@ function normalizeComponent(
|
|
|
192
192
|
|
|
193
193
|
/***/ }),
|
|
194
194
|
|
|
195
|
-
/***/
|
|
195
|
+
/***/ 72:
|
|
196
196
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
197
197
|
|
|
198
198
|
"use strict";
|
package/lib/checkbox-group.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';
|
package/lib/config/api.js
CHANGED
|
@@ -195,7 +195,10 @@ var toTaskTakeAdvice = exports.toTaskTakeAdvice = '/bpm/bpmBackend/toTaskTakeAdv
|
|
|
195
195
|
var taskTakeAdvice = exports.taskTakeAdvice = '/bpm/task/taskHandle/taskTakeAdvice.dhtml';
|
|
196
196
|
// 稿件递送
|
|
197
197
|
var toTaskStartDraft = exports.toTaskStartDraft = '/bpm/bpmBackend/totaskStartDraft';
|
|
198
|
-
|
|
198
|
+
// 获取督办页面信息
|
|
199
|
+
var toTaskSupervise = exports.toTaskSupervise = '/bpm/bpmBackend/toTaskSupervise';
|
|
200
|
+
// 督办提交
|
|
201
|
+
var toTaskSuperviseSub = exports.toTaskSuperviseSub = '/bpm/bpmBackend/taskSupervise';
|
|
199
202
|
// 稿件递送提交接口
|
|
200
203
|
// export const taskStartDraft = flowPendingPrefix + '/task/taskHandle/taskStartDraft.dhtml';
|
|
201
204
|
var taskStartDraft = exports.taskStartDraft = '/archives/task/taskHandle/taskStartDraft.dhtml';
|
package/lib/data-table-form.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';
|
package/lib/data-table.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';
|