eoss-ui 0.5.54 → 0.5.56

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.
Files changed (65) hide show
  1. package/lib/button-group.js +82 -79
  2. package/lib/button.js +83 -80
  3. package/lib/checkbox-group.js +95 -85
  4. package/lib/config/api.js +2 -0
  5. package/lib/data-table-form.js +91 -81
  6. package/lib/data-table.js +132 -106
  7. package/lib/date-picker.js +82 -79
  8. package/lib/dialog.js +82 -79
  9. package/lib/eoss-ui.common.js +398 -279
  10. package/lib/flow-group.js +82 -79
  11. package/lib/flow-list.js +85 -82
  12. package/lib/flow.js +120 -118
  13. package/lib/form.js +86 -81
  14. package/lib/handle-user.js +83 -80
  15. package/lib/handler.js +83 -80
  16. package/lib/index.js +1 -1
  17. package/lib/input-number.js +82 -79
  18. package/lib/input.js +82 -79
  19. package/lib/login.js +88 -85
  20. package/lib/main.js +95 -92
  21. package/lib/menu.js +72 -17
  22. package/lib/nav.js +82 -79
  23. package/lib/notify.js +85 -82
  24. package/lib/page.js +82 -79
  25. package/lib/player.js +82 -79
  26. package/lib/qr-code.js +82 -79
  27. package/lib/radio-group.js +95 -85
  28. package/lib/retrial-auth.js +85 -82
  29. package/lib/select-ganged.js +93 -102
  30. package/lib/select.js +93 -83
  31. package/lib/selector-panel.js +100 -97
  32. package/lib/selector.js +83 -80
  33. package/lib/sizer.js +84 -81
  34. package/lib/steps.js +82 -79
  35. package/lib/switch.js +82 -79
  36. package/lib/table-form.js +82 -79
  37. package/lib/tabs.js +82 -79
  38. package/lib/theme-chalk/form.css +1 -1
  39. package/lib/theme-chalk/index.css +1 -1
  40. package/lib/tips.js +83 -80
  41. package/lib/toolbar.js +3 -2
  42. package/lib/tree-group.js +82 -79
  43. package/lib/tree.js +83 -80
  44. package/lib/upload.js +96 -92
  45. package/lib/wujie.js +82 -79
  46. package/lib/wxlogin.js +82 -79
  47. package/package.json +1 -1
  48. package/packages/button/src/main.vue +1 -1
  49. package/packages/checkbox-group/src/main.vue +12 -5
  50. package/packages/data-table/src/column.vue +24 -7
  51. package/packages/data-table/src/main.vue +31 -10
  52. package/packages/data-table-form/src/main.vue +10 -3
  53. package/packages/flow/src/main.vue +2 -3
  54. package/packages/form/src/main.vue +2 -1
  55. package/packages/menu/src/main.vue +82 -4
  56. package/packages/radio-group/src/main.vue +12 -5
  57. package/packages/select/src/main.vue +12 -5
  58. package/packages/select-ganged/src/main.vue +9 -2
  59. package/packages/theme-chalk/lib/form.css +1 -1
  60. package/packages/theme-chalk/lib/index.css +1 -1
  61. package/packages/theme-chalk/src/form.scss +8 -0
  62. package/packages/toolbar/src/main.vue +3 -2
  63. package/packages/upload/src/main.vue +3 -2
  64. package/src/config/api.js +2 -0
  65. package/src/index.js +1 -1
@@ -1354,7 +1354,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1354
1354
  * @param {function} callback - 回调函数
1355
1355
  **/
1356
1356
  var getMainConfig = function getMainConfig(callback) {
1357
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
1357
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1358
1358
  if (res && res.rCode === 0) {
1359
1359
  callback(res.results);
1360
1360
  }
@@ -2025,7 +2025,7 @@ var isLogined = function isLogined(_ref8) {
2025
2025
  }
2026
2026
  var quit = getParams('quit') || getParams('logout');
2027
2027
  if (quit) {
2028
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "cb"] }).then(function (res) {
2028
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2029
2029
  if (res.rCode === 0) {
2030
2030
  removeStorage();
2031
2031
  }
@@ -3100,29 +3100,29 @@ var watermark = function watermark(option) {
3100
3100
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3101
3101
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3102
3102
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3103
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return logout; });
3104
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initLogin; });
3105
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return switchUserTo; });
3103
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3104
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3105
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3106
3106
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3107
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getLoginCode; });
3107
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3108
3108
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3109
3109
  /* unused harmony export updateCode */
3110
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getModifyPassCode; });
3110
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3111
3111
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3112
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginModifyPassword; });
3112
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3113
3113
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3114
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initModifyPassword; });
3114
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3115
3115
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3116
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getTwoFactorLoginCode; });
3116
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3117
3117
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3118
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initRetrialAuth; });
3119
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getRetrialAuthCode; });
3120
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return scanCodeRetrialAuth; });
3118
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3119
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3120
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3121
3121
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3122
3122
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3123
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainConfig; });
3124
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initUserSet; });
3125
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserInfo; });
3123
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3124
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3125
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3126
3126
  /* unused harmony export getUserImgUrl */
3127
3127
  /* unused harmony export getDoorIndex */
3128
3128
  /* unused harmony export refreshOnlineUsers */
@@ -3131,94 +3131,95 @@ var watermark = function watermark(option) {
3131
3131
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3132
3132
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3133
3133
  /* unused harmony export getUserCustomInfo */
3134
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserCustomInfo; });
3135
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sysMsgPage; });
3136
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreSysMsg; });
3137
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreAllSysMsg; });
3134
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3135
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3136
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3137
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3138
3138
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3139
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploads; });
3140
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadOnlyOne; });
3139
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3140
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
3141
3141
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3142
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadSort; });
3142
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
3143
3143
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3144
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadDownloads; });
3145
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct; });
3146
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct2; });
3147
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunctOffice; });
3144
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
3145
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3146
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3147
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
3148
3148
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3149
3149
  /* unused harmony export upload_updateClassify */
3150
3150
  /* unused harmony export getDeleteAdjunctFileInfos */
3151
3151
  /* unused harmony export getPictureBase64 */
3152
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgTree; });
3153
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgDetail; });
3154
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getOrgMainTree; });
3155
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectOrgsubids; });
3152
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectorOrgTree; });
3153
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgDetail; });
3154
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getOrgMainTree; });
3155
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectOrgsubids; });
3156
3156
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3157
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3157
3158
  /* unused harmony export findUserBaseInfo */
3158
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return gethelpdoc; });
3159
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3159
3160
  /* unused harmony export getCurrentuser */
3160
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainDetail; });
3161
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartFlow; });
3162
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return tempSave; });
3161
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3162
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3163
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3163
3164
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3164
3165
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3165
3166
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3166
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return saveCommonOpinion; });
3167
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateCommonOpinion; });
3167
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
3168
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
3168
3169
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3169
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getProcessDefList; });
3170
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNodeInfo; });
3170
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3171
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
3171
3172
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3172
3173
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3173
3174
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3174
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNotificationMsg; });
3175
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getHandleInfoHtml; });
3176
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskHandleHtml; });
3175
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3176
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3177
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
3177
3178
  /* unused harmony export getView */
3178
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return register; });
3179
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryList; });
3180
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskRejectHtml; });
3181
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskRejectHtml; });
3182
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskRead; });
3183
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskReadIndex; });
3184
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReadHtml; });
3185
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return rejectAndEnd; });
3186
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toSendMsg; });
3187
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendMsg; });
3179
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
3180
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3181
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
3182
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
3183
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
3184
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
3185
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
3186
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
3187
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3188
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3188
3189
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3189
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return handleInfo; });
3190
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginUserInfo; });
3191
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return wss; });
3192
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return topic; });
3193
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetCustomInfo; });
3194
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetNodeInfo; });
3195
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTransferIndex; });
3196
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTransfer; });
3197
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toPresetInfoListIndex; });
3190
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3191
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3192
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3193
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3194
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3195
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3196
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
3197
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
3198
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
3198
3199
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3199
3200
  /* unused harmony export historyListJson */
3200
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryListJson; });
3201
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pressListJson; });
3201
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3202
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3202
3203
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3203
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return isCanStartSubFlow; });
3204
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionExamine; });
3205
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionExamine; });
3206
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTakeAdvice; });
3207
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTakeAdvice; });
3208
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskStartDraft; });
3209
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskStartDraft; });
3210
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskReview; });
3211
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReview; });
3212
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionSeal; });
3213
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionSeal; });
3214
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTwoOfficesDispatch; });
3215
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return twoOfficesDispatch; });
3216
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendList; });
3217
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendInfo; });
3204
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3205
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3206
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3207
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
3208
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
3209
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
3210
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
3211
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
3212
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
3213
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
3214
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
3215
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
3216
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
3217
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
3218
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
3218
3219
  /* unused harmony export sendSave */
3219
3220
  /* unused harmony export sendUpdate */
3220
3221
  /* unused harmony export sendDelete */
3221
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendBatch; });
3222
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
3222
3223
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3223
3224
  // 登录
3224
3225
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3287,6 +3288,8 @@ var getOrgMainTree = '/sys/v1/mecpSys/getOrgMainTree.dhtml';
3287
3288
  var getSelectOrgsubids = '/sys/v1/mecpSys/getSelectOrgsubids.dhtml';
3288
3289
  // 代码表
3289
3290
  var findSysCode = '/sys/v1/mecpSys/findSysCode.dhtml';
3291
+ var getDictList = '/dict/getDictDataList';
3292
+
3290
3293
  // 获取用户基本信息
3291
3294
  var findUserBaseInfo = '/sys/v1/mecpSys/findUserBaseInfo.dhtml';
3292
3295
  // 说明文档
@@ -3938,7 +3941,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
3938
3941
  evt.stopPropagation();
3939
3942
  evt.preventDefault();
3940
3943
  }
3941
- this.$emit('click', evt);
3944
+ this.$emit('click', evt, this.text);
3942
3945
  }
3943
3946
  }
3944
3947
  },
@@ -5508,8 +5511,8 @@ cascader_src_main.install = function (Vue) {
5508
5511
  };
5509
5512
 
5510
5513
  /* harmony default export */ var cascader = (cascader_src_main);
5511
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox-group/src/main.vue?vue&type=template&id=6ffd0b06&
5512
- var mainvue_type_template_id_6ffd0b06_render = function () {
5514
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/checkbox-group/src/main.vue?vue&type=template&id=63001e87&
5515
+ var mainvue_type_template_id_63001e87_render = function () {
5513
5516
  var _vm = this
5514
5517
  var _h = _vm.$createElement
5515
5518
  var _c = _vm._self._c || _h
@@ -5641,11 +5644,11 @@ var mainvue_type_template_id_6ffd0b06_render = function () {
5641
5644
  )
5642
5645
  : _vm._e()
5643
5646
  }
5644
- var mainvue_type_template_id_6ffd0b06_staticRenderFns = []
5645
- mainvue_type_template_id_6ffd0b06_render._withStripped = true
5647
+ var mainvue_type_template_id_63001e87_staticRenderFns = []
5648
+ mainvue_type_template_id_63001e87_render._withStripped = true
5646
5649
 
5647
5650
 
5648
- // CONCATENATED MODULE: ./packages/checkbox-group/src/main.vue?vue&type=template&id=6ffd0b06&
5651
+ // CONCATENATED MODULE: ./packages/checkbox-group/src/main.vue?vue&type=template&id=63001e87&
5649
5652
 
5650
5653
  // EXTERNAL MODULE: ./src/config/api.js
5651
5654
  var api = __webpack_require__(1);
@@ -5756,6 +5759,7 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5756
5759
  type: String,
5757
5760
  default: 'get'
5758
5761
  },
5762
+ service: String,
5759
5763
  // 选择项本地数据
5760
5764
  data: {
5761
5765
  type: Array,
@@ -5849,13 +5853,13 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5849
5853
  },
5850
5854
  label: function label() {
5851
5855
  if (this.sysCode) {
5852
- return 'shortName';
5856
+ return this.service ? 'label' : 'shortName';
5853
5857
  }
5854
5858
  return this.labelKey;
5855
5859
  },
5856
5860
  valKey: function valKey() {
5857
5861
  if (this.sysCode) {
5858
- return 'cciValue';
5862
+ return this.service ? 'value' : 'cciValue';
5859
5863
  }
5860
5864
  return this.valueKey;
5861
5865
  },
@@ -5882,6 +5886,12 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5882
5886
  return item;
5883
5887
  });
5884
5888
  return label.join(this.separator);
5889
+ },
5890
+ findCode: function findCode() {
5891
+ if (this.service) {
5892
+ return '/' + this.service + api["D" /* getDictList */];
5893
+ }
5894
+ return api["v" /* findSysCode */];
5885
5895
  }
5886
5896
  },
5887
5897
  watch: {
@@ -5893,7 +5903,7 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5893
5903
  if (options) {
5894
5904
  this.options = JSON.parse(JSON.stringify(options));
5895
5905
  } else {
5896
- this.getData(api["v" /* findSysCode */], val);
5906
+ this.getData(this.findCode, val);
5897
5907
  }
5898
5908
  }
5899
5909
  }
@@ -5924,7 +5934,7 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5924
5934
 
5925
5935
  var params = {};
5926
5936
  if (this.results.length === 0) {
5927
- params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode } : {});
5937
+ params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode, code: sysCode } : {});
5928
5938
  } else {
5929
5939
  return false;
5930
5940
  }
@@ -5994,8 +6004,8 @@ var src_mainvue_type_script_lang_js_extends = Object.assign || function (target)
5994
6004
 
5995
6005
  var checkbox_group_src_main_component = normalizeComponent(
5996
6006
  packages_checkbox_group_src_mainvue_type_script_lang_js_,
5997
- mainvue_type_template_id_6ffd0b06_render,
5998
- mainvue_type_template_id_6ffd0b06_staticRenderFns,
6007
+ mainvue_type_template_id_63001e87_render,
6008
+ mainvue_type_template_id_63001e87_staticRenderFns,
5999
6009
  false,
6000
6010
  null,
6001
6011
  null,
@@ -6270,8 +6280,8 @@ clients_src_main.install = function (Vue) {
6270
6280
  };
6271
6281
 
6272
6282
  /* harmony default export */ var clients = (clients_src_main);
6273
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=34453930&
6274
- var mainvue_type_template_id_34453930_render = function () {
6283
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/main.vue?vue&type=template&id=fa664770&
6284
+ var mainvue_type_template_id_fa664770_render = function () {
6275
6285
  var _vm = this
6276
6286
  var _h = _vm.$createElement
6277
6287
  var _c = _vm._self._c || _h
@@ -6536,11 +6546,11 @@ var mainvue_type_template_id_34453930_render = function () {
6536
6546
  1
6537
6547
  )
6538
6548
  }
6539
- var mainvue_type_template_id_34453930_staticRenderFns = []
6540
- mainvue_type_template_id_34453930_render._withStripped = true
6549
+ var mainvue_type_template_id_fa664770_staticRenderFns = []
6550
+ mainvue_type_template_id_fa664770_render._withStripped = true
6541
6551
 
6542
6552
 
6543
- // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=34453930&
6553
+ // CONCATENATED MODULE: ./packages/data-table/src/main.vue?vue&type=template&id=fa664770&
6544
6554
 
6545
6555
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/children.vue?vue&type=template&id=29bcbc72&
6546
6556
  var childrenvue_type_template_id_29bcbc72_render = function () {
@@ -6585,8 +6595,8 @@ childrenvue_type_template_id_29bcbc72_render._withStripped = true
6585
6595
 
6586
6596
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=29bcbc72&
6587
6597
 
6588
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=00e33786&
6589
- var columnvue_type_template_id_00e33786_render = function () {
6598
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/data-table/src/column.vue?vue&type=template&id=66569ceb&
6599
+ var columnvue_type_template_id_66569ceb_render = function () {
6590
6600
  var _vm = this
6591
6601
  var _h = _vm.$createElement
6592
6602
  var _c = _vm._self._c || _h
@@ -7304,11 +7314,11 @@ var columnvue_type_template_id_00e33786_render = function () {
7304
7314
  2
7305
7315
  )
7306
7316
  }
7307
- var columnvue_type_template_id_00e33786_staticRenderFns = []
7308
- columnvue_type_template_id_00e33786_render._withStripped = true
7317
+ var columnvue_type_template_id_66569ceb_staticRenderFns = []
7318
+ columnvue_type_template_id_66569ceb_render._withStripped = true
7309
7319
 
7310
7320
 
7311
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=00e33786&
7321
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=66569ceb&
7312
7322
 
7313
7323
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
7314
7324
  var regenerator_ = __webpack_require__(2);
@@ -7782,6 +7792,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
7782
7792
  }
7783
7793
  },
7784
7794
  props: {
7795
+ service: String,
7785
7796
  form: Boolean,
7786
7797
  readonly: Boolean,
7787
7798
  name: String,
@@ -7878,8 +7889,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
7878
7889
  },
7879
7890
  formOption: function formOption() {
7880
7891
  var config = columnvue_type_script_lang_js_extends({
7881
- labelKey: this.sysCode ? 'shortName' : this.labelKey,
7882
- valueKey: this.sysCode ? 'cciValue' : this.valueKey,
7892
+ labelKey: this.sysCode ? this.service ? 'label' : 'shortName' : this.labelKey,
7893
+ valueKey: this.sysCode ? this.service ? 'value' : 'cciValue' : this.valueKey,
7883
7894
  rules: this.rules,
7884
7895
  events: this.events
7885
7896
  }, this.$attrs, {
@@ -7901,6 +7912,12 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
7901
7912
  option: function option() {
7902
7913
  var field = this.field || this.prop;
7903
7914
  return this.data ? this.data : this.optionDatas[this.sysCode || field];
7915
+ },
7916
+ findCode: function findCode() {
7917
+ if (this.service) {
7918
+ return '/' + this.service + api["D" /* getDictList */];
7919
+ }
7920
+ return api["v" /* findSysCode */];
7904
7921
  }
7905
7922
  },
7906
7923
  data: function data() {
@@ -7965,10 +7982,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
7965
7982
  param[i] = val[queryKey[i]];
7966
7983
  }
7967
7984
  }
7968
- params = utils_util["a" /* default */].extend(true, _this.sysCode ? { sysAppCode: _this.sysCode } : {}, item.param ? item.param : {}, param);
7985
+ params = utils_util["a" /* default */].extend(true, _this.sysCode ? { sysAppCode: _this.sysCode, code: sysCode } : {}, item.param ? item.param : {}, param);
7969
7986
  _context.next = 14;
7970
7987
  return utils_util["a" /* default */].ajax({
7971
- url: _this.sysCode ? api["v" /* findSysCode */] : item.url,
7988
+ url: _this.sysCode ? _this.findCode : item.url,
7972
7989
  method: _this.method,
7973
7990
  params: params,
7974
7991
  data: params
@@ -8113,9 +8130,9 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8113
8130
  param[i] = value[queryKey[i]];
8114
8131
  }
8115
8132
  }
8116
- var params = utils_util["a" /* default */].extend(true, this.sysCode ? { sysAppCode: this.sysCode } : {}, item.param ? item.param : {}, param);
8133
+ var params = utils_util["a" /* default */].extend(true, this.sysCode ? { sysAppCode: this.sysCode, code: sysCode } : {}, item.param ? item.param : {}, param);
8117
8134
  utils_util["a" /* default */].ajax({
8118
- url: this.sysCode ? api["v" /* findSysCode */] : item.url,
8135
+ url: this.sysCode ? this.findCode : item.url,
8119
8136
  method: this.method,
8120
8137
  params: params,
8121
8138
  data: params
@@ -8165,8 +8182,8 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
8165
8182
 
8166
8183
  var column_component = normalizeComponent(
8167
8184
  src_columnvue_type_script_lang_js_,
8168
- columnvue_type_template_id_00e33786_render,
8169
- columnvue_type_template_id_00e33786_staticRenderFns,
8185
+ columnvue_type_template_id_66569ceb_render,
8186
+ columnvue_type_template_id_66569ceb_staticRenderFns,
8170
8187
  false,
8171
8188
  null,
8172
8189
  null,
@@ -8656,6 +8673,7 @@ var mainvue_type_script_lang_js_components, _watch;
8656
8673
  }
8657
8674
  },
8658
8675
  props: {
8676
+ service: String,
8659
8677
  loading: {
8660
8678
  type: Boolean,
8661
8679
  default: false
@@ -8713,6 +8731,14 @@ var mainvue_type_script_lang_js_components, _watch;
8713
8731
  showLabel: Boolean,
8714
8732
  searchValue: Object,
8715
8733
  advanceValue: Object,
8734
+ executeSearch: {
8735
+ type: Boolean,
8736
+ default: true
8737
+ },
8738
+ executeFilter: {
8739
+ type: Boolean,
8740
+ default: true
8741
+ },
8716
8742
  // 是否开启序号
8717
8743
  numbers: {
8718
8744
  type: Boolean,
@@ -8995,14 +9021,20 @@ var mainvue_type_script_lang_js_components, _watch;
8995
9021
  }
8996
9022
  },
8997
9023
  headButton: function headButton() {
8998
- return this.theadAdd ? {
9024
+ return this.theadAdd && !this.readonly ? {
8999
9025
  icon: 'el-icon-circle-plus-outline',
9000
9026
  type: 'text',
9001
9027
  event: this.handleClickAddData
9002
- } : false;
9028
+ } : undefined;
9003
9029
  },
9004
9030
  isLeast: function isLeast() {
9005
9031
  return this.data.length < 2 && this.least;
9032
+ },
9033
+ findCode: function findCode() {
9034
+ if (this.service) {
9035
+ return '/' + this.service + api["D" /* getDictList */];
9036
+ }
9037
+ return api["v" /* findSysCode */];
9006
9038
  }
9007
9039
  },
9008
9040
  watch: (_watch = {
@@ -9124,16 +9156,16 @@ var mainvue_type_script_lang_js_components, _watch;
9124
9156
  res.forEach(function (item) {
9125
9157
  if (item.sysCode || item.url) {
9126
9158
  item.sysCode && sysCodes.push(item.sysCode);
9127
- var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
9159
+ var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode, code: item.sysCode } : {}, item.param ? item.param : {});
9128
9160
  var key = _this2.getRequestKey({
9129
9161
  method: _this2.method,
9130
- url: item.sysCode ? api["v" /* findSysCode */] : item.url,
9162
+ url: item.sysCode ? _this2.findCode : item.url,
9131
9163
  params: params,
9132
9164
  data: {}
9133
9165
  });
9134
9166
  if (!_this2.requests.includes(key)) {
9135
9167
  utils_util["a" /* default */].ajax({
9136
- url: item.sysCode ? api["v" /* findSysCode */] : item.url,
9168
+ url: item.sysCode ? _this2.findCode : item.url,
9137
9169
  method: _this2.method,
9138
9170
  params: params,
9139
9171
  data: params
@@ -9704,7 +9736,7 @@ var mainvue_type_script_lang_js_components, _watch;
9704
9736
  type: 'search',
9705
9737
  data: JSON.parse(JSON.stringify(data))
9706
9738
  }) : data;
9707
- if (this.url) {
9739
+ if (this.url && this.executeSearch) {
9708
9740
  this.getTableData({ where: this.wheres });
9709
9741
  }
9710
9742
  this.$emit('search', this.wheres);
@@ -9720,14 +9752,15 @@ var mainvue_type_script_lang_js_components, _watch;
9720
9752
  var data = _ref.data,
9721
9753
  show = _ref.show;
9722
9754
 
9723
- this.wheres = this.response !== undefined ? this.response({
9755
+ var where = this.response !== undefined ? this.response({
9724
9756
  type: 'filter',
9725
9757
  data: JSON.parse(JSON.stringify(data))
9726
9758
  }) : data;
9727
- if (this.url) {
9759
+ this.wheres = data_table_src_mainvue_type_script_lang_js_extends({}, this.wheres, where);
9760
+ if (this.url && this.executeFilter) {
9728
9761
  this.getTableData({ where: this.wheres });
9729
9762
  }
9730
- this.$emit('submit', { data: this.wheres, show: show });
9763
+ this.$emit('submit', { data: where, where: this.wheres, show: show });
9731
9764
  },
9732
9765
  hanleCancel: function hanleCancel() {
9733
9766
  // if (this.url && JSON.stringify(this.wheres) !== '{}') {
@@ -9860,8 +9893,8 @@ var mainvue_type_script_lang_js_components, _watch;
9860
9893
 
9861
9894
  var data_table_src_main_component = normalizeComponent(
9862
9895
  packages_data_table_src_mainvue_type_script_lang_js_,
9863
- mainvue_type_template_id_34453930_render,
9864
- mainvue_type_template_id_34453930_staticRenderFns,
9896
+ mainvue_type_template_id_fa664770_render,
9897
+ mainvue_type_template_id_fa664770_staticRenderFns,
9865
9898
  false,
9866
9899
  null,
9867
9900
  null,
@@ -11597,6 +11630,7 @@ var src_mainvue_type_script_lang_js_components;
11597
11630
  }
11598
11631
  },
11599
11632
  props: {
11633
+ service: String,
11600
11634
  params: Object,
11601
11635
  full: Boolean,
11602
11636
  readonly: Boolean,
@@ -11658,6 +11692,12 @@ var src_mainvue_type_script_lang_js_components;
11658
11692
  },
11659
11693
  options: function options() {
11660
11694
  return this.optionData ? this.optionData : this.option;
11695
+ },
11696
+ findCode: function findCode() {
11697
+ if (this.service) {
11698
+ return '/' + this.service + api["D" /* getDictList */];
11699
+ }
11700
+ return api["v" /* findSysCode */];
11661
11701
  }
11662
11702
  },
11663
11703
  watch: {
@@ -11689,9 +11729,9 @@ var src_mainvue_type_script_lang_js_components;
11689
11729
  var _this2 = this;
11690
11730
 
11691
11731
  if (item.sysCode || item.url) {
11692
- var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode } : {}, item.param ? item.param : {});
11732
+ var params = utils_util["a" /* default */].extend({}, item.sysCode ? { sysAppCode: item.sysCode, code: sysCode } : {}, item.param ? item.param : {});
11693
11733
  utils_util["a" /* default */].ajax({
11694
- url: item.sysCode ? api["v" /* findSysCode */] : item.url,
11734
+ url: item.sysCode ? this.findCode : item.url,
11695
11735
  method: this.method,
11696
11736
  params: params,
11697
11737
  data: params
@@ -13329,8 +13369,8 @@ error_page_src_main.install = function (Vue) {
13329
13369
  };
13330
13370
 
13331
13371
  /* harmony default export */ var error_page = (error_page_src_main);
13332
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=0ffe101a&
13333
- var mainvue_type_template_id_0ffe101a_render = function () {
13372
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/form/src/main.vue?vue&type=template&id=e7f97016&
13373
+ var mainvue_type_template_id_e7f97016_render = function () {
13334
13374
  var _vm = this
13335
13375
  var _h = _vm.$createElement
13336
13376
  var _c = _vm._self._c || _h
@@ -13355,6 +13395,7 @@ var mainvue_type_template_id_0ffe101a_render = function () {
13355
13395
  "es-form-group": _vm.inline,
13356
13396
  "es-form-table": _vm.table,
13357
13397
  "es-form-inside-dialog": _vm.dialog,
13398
+ "es-form-row": _vm.labelPosition == "top",
13358
13399
  },
13359
13400
  attrs: {
13360
13401
  disabled: _vm.disabled,
@@ -24254,11 +24295,11 @@ var mainvue_type_template_id_0ffe101a_render = function () {
24254
24295
  )
24255
24296
  : _vm._e()
24256
24297
  }
24257
- var mainvue_type_template_id_0ffe101a_staticRenderFns = []
24258
- mainvue_type_template_id_0ffe101a_render._withStripped = true
24298
+ var mainvue_type_template_id_e7f97016_staticRenderFns = []
24299
+ mainvue_type_template_id_e7f97016_render._withStripped = true
24259
24300
 
24260
24301
 
24261
- // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=0ffe101a&
24302
+ // CONCATENATED MODULE: ./packages/form/src/main.vue?vue&type=template&id=e7f97016&
24262
24303
 
24263
24304
  // CONCATENATED MODULE: ./src/utils/rules.js
24264
24305
  // 手机号
@@ -28160,6 +28201,7 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
28160
28201
  //
28161
28202
  //
28162
28203
  //
28204
+ //
28163
28205
 
28164
28206
 
28165
28207
 
@@ -29423,8 +29465,8 @@ function src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return function
29423
29465
 
29424
29466
  var form_src_main_component = normalizeComponent(
29425
29467
  packages_form_src_mainvue_type_script_lang_js_,
29426
- mainvue_type_template_id_0ffe101a_render,
29427
- mainvue_type_template_id_0ffe101a_staticRenderFns,
29468
+ mainvue_type_template_id_e7f97016_render,
29469
+ mainvue_type_template_id_e7f97016_staticRenderFns,
29428
29470
  false,
29429
29471
  null,
29430
29472
  null,
@@ -29441,8 +29483,8 @@ form_src_main.install = function (Vue) {
29441
29483
  };
29442
29484
 
29443
29485
  /* harmony default export */ var packages_form = (form_src_main);
29444
- // 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=4dbe5794&
29445
- var mainvue_type_template_id_4dbe5794_render = function () {
29486
+ // 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=301e1065&
29487
+ var mainvue_type_template_id_301e1065_render = function () {
29446
29488
  var _vm = this
29447
29489
  var _h = _vm.$createElement
29448
29490
  var _c = _vm._self._c || _h
@@ -31162,11 +31204,11 @@ var mainvue_type_template_id_4dbe5794_render = function () {
31162
31204
  )
31163
31205
  : _vm._e()
31164
31206
  }
31165
- var mainvue_type_template_id_4dbe5794_staticRenderFns = []
31166
- mainvue_type_template_id_4dbe5794_render._withStripped = true
31207
+ var mainvue_type_template_id_301e1065_staticRenderFns = []
31208
+ mainvue_type_template_id_301e1065_render._withStripped = true
31167
31209
 
31168
31210
 
31169
- // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=4dbe5794&
31211
+ // CONCATENATED MODULE: ./packages/flow/src/main.vue?vue&type=template&id=301e1065&
31170
31212
 
31171
31213
  // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/flow/src/component/CommonOpinions.vue?vue&type=template&id=28c062bc&
31172
31214
  var CommonOpinionsvue_type_template_id_28c062bc_render = function () {
@@ -32107,7 +32149,7 @@ var CommonOpinionsvue_type_script_lang_js_components;
32107
32149
  }
32108
32150
  this.loading = utils_util["a" /* default */].loading(this.$loading, '提交中...');
32109
32151
  utils_util["a" /* default */].ajax({
32110
- url: data.id ? api["Ub" /* updateCommonOpinion */] : api["nb" /* saveCommonOpinion */],
32152
+ url: data.id ? api["Vb" /* updateCommonOpinion */] : api["ob" /* saveCommonOpinion */],
32111
32153
  data: info,
32112
32154
  header: { 'Content-Type': 'multipart/form-data' },
32113
32155
  method: 'post'
@@ -32959,7 +33001,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
32959
33001
  newNextUser: [],
32960
33002
  newOptions: [],
32961
33003
  newSelectUserList: [],
32962
- url: api["S" /* handleInfo */],
33004
+ url: api["T" /* handleInfo */],
32963
33005
  newCheckboxList: [],
32964
33006
  newPresetEdit: 0,
32965
33007
  newMultiple: false,
@@ -33076,7 +33118,7 @@ var selectUservue_type_script_lang_js_extends = Object.assign || function (targe
33076
33118
  if (query !== '') {
33077
33119
  this.searchLoading = true;
33078
33120
  utils_util["a" /* default */].ajax({
33079
- url: api["S" /* handleInfo */],
33121
+ url: api["T" /* handleInfo */],
33080
33122
  params: { searchKey: query, query: query, type: 'user' }
33081
33123
  }).then(function (res) {
33082
33124
  var status = res.status,
@@ -33491,7 +33533,7 @@ var CustomPresetvue_type_script_lang_js_components;
33491
33533
  nextNodeId: nodeId,
33492
33534
  businessId: this.id
33493
33535
  };
33494
- utils_util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
33536
+ utils_util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
33495
33537
  var status = res.status,
33496
33538
  message = res.message,
33497
33539
  _res$data = res.data,
@@ -33589,7 +33631,7 @@ var CustomPresetvue_type_script_lang_js_components;
33589
33631
 
33590
33632
  isNoStart && (this.newPresetList = []);
33591
33633
  var params = {
33592
- url: api["J" /* getPresetCustomInfo */],
33634
+ url: api["K" /* getPresetCustomInfo */],
33593
33635
  params: {
33594
33636
  nodeId: nodeId,
33595
33637
  processDefinitionId: processDefinitionId ? processDefinitionId : this.newProcessDefinitionId
@@ -33943,7 +33985,7 @@ var Presetvue_type_script_lang_js_components;
33943
33985
  nodeId = this.nodeId;
33944
33986
 
33945
33987
  var params = {
33946
- url: api["K" /* getPresetNodeInfo */],
33988
+ url: api["L" /* getPresetNodeInfo */],
33947
33989
  params: {
33948
33990
  nextNodeId: nextNodeId,
33949
33991
  processDefinitionId: processDefinitionId,
@@ -34579,7 +34621,7 @@ var processFormvue_type_script_lang_js_components;
34579
34621
  nodeId: this.nextNode.nextNode,
34580
34622
  businessId: this.id
34581
34623
  };
34582
- utils_util["a" /* default */].ajax({ url: api["H" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
34624
+ utils_util["a" /* default */].ajax({ url: api["I" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
34583
34625
  if (res.status === 'success') {
34584
34626
  _this2.nextNode.noticeInfo = res.message;
34585
34627
  }
@@ -34651,7 +34693,7 @@ var processFormvue_type_script_lang_js_components;
34651
34693
  opinion: _this3.newOpinion || newOpinion
34652
34694
  };
34653
34695
  if (_this3.activeNames != '1') delete params.customPresetUserJson;
34654
- utils_util["a" /* default */].ajax({ url: api["lb" /* register */], method: 'post', data: params }).then(function (res) {
34696
+ utils_util["a" /* default */].ajax({ url: api["mb" /* register */], method: 'post', data: params }).then(function (res) {
34655
34697
  var status = res.status,
34656
34698
  message = res.message;
34657
34699
 
@@ -34681,7 +34723,7 @@ var processFormvue_type_script_lang_js_components;
34681
34723
  nextNodeId: nodeId ? nodeId : this.nextNode.nextNode,
34682
34724
  businessId: this.id
34683
34725
  };
34684
- utils_util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
34726
+ utils_util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
34685
34727
  var status = res.status,
34686
34728
  message = res.message,
34687
34729
  _res$data = res.data,
@@ -34837,7 +34879,7 @@ var processFormvue_type_script_lang_js_components;
34837
34879
  businessId: this.businessId
34838
34880
  };
34839
34881
  // 获取节点
34840
- utils_util["a" /* default */].ajax({ url: api["Hb" /* toStartFlow */], params: params }).then(function (res) {
34882
+ utils_util["a" /* default */].ajax({ url: api["Ib" /* toStartFlow */], params: params }).then(function (res) {
34841
34883
  //pc接口返回数据处理
34842
34884
  var status = res.status,
34843
34885
  message = res.message,
@@ -35441,7 +35483,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
35441
35483
  notificationType = _sendInfo.notificationType;
35442
35484
 
35443
35485
  var params = {
35444
- url: api["sb" /* sendMsg */],
35486
+ url: api["tb" /* sendMsg */],
35445
35487
  headers: { Accept: 'application/json,text/plain' },
35446
35488
  method: 'post',
35447
35489
  data: {
@@ -35503,7 +35545,7 @@ SendMsgvue_type_template_id_79b8122f_render._withStripped = true
35503
35545
 
35504
35546
  this.loading = true;
35505
35547
  utils_util["a" /* default */].ajax({
35506
- url: api["Gb" /* toSendMsg */],
35548
+ url: api["Hb" /* toSendMsg */],
35507
35549
  params: { pendingId: this.$attrs.pendingId }
35508
35550
  }).then(function (res) {
35509
35551
  var status = res.status,
@@ -36321,7 +36363,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
36321
36363
  userId: utils_util["a" /* default */].getStorage('userId'),
36322
36364
  nextNodeId: _this2.nextNode.nextNodeId
36323
36365
  };
36324
- utils_util["a" /* default */].ajax({ url: api["xb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
36366
+ utils_util["a" /* default */].ajax({ url: api["yb" /* taskRejectHtml */], method: 'post', data: params }).then(function (res) {
36325
36367
  var status = res.status,
36326
36368
  message = res.message;
36327
36369
 
@@ -36376,7 +36418,7 @@ processRejectvue_type_template_id_7d0d950e_render._withStripped = true
36376
36418
  isSinglePage: false,
36377
36419
  opinion: this.option
36378
36420
  };
36379
- utils_util["a" /* default */].ajax({ url: api["Kb" /* toTaskRejectHtml */], params: params }).then(function (res) {
36421
+ utils_util["a" /* default */].ajax({ url: api["Lb" /* toTaskRejectHtml */], params: params }).then(function (res) {
36380
36422
  var status = res.status,
36381
36423
  message = res.message,
36382
36424
  _res$data = res.data,
@@ -37052,7 +37094,7 @@ var startTaskReadvue_type_script_lang_js_components;
37052
37094
  taskExamine = this.taskExamine;
37053
37095
 
37054
37096
  var params = {
37055
- url: api["Ob" /* toTaskTransferIndex */],
37097
+ url: api["Pb" /* toTaskTransferIndex */],
37056
37098
  params: {
37057
37099
  opinion: opinion,
37058
37100
  pendingId: pendingId,
@@ -37177,7 +37219,7 @@ var startTaskReadvue_type_script_lang_js_components;
37177
37219
  var _this3 = this;
37178
37220
 
37179
37221
  var params = {
37180
- url: api["Ib" /* toStartTaskRead */],
37222
+ url: api["Jb" /* toStartTaskRead */],
37181
37223
  params: { pendingId: this.pendingId, taskAction: this.type }
37182
37224
  };
37183
37225
  if (this.type != 'taskReadAndEnd') delete params.params.taskAction;
@@ -37250,7 +37292,7 @@ var startTaskReadvue_type_script_lang_js_components;
37250
37292
  type = this.type;
37251
37293
 
37252
37294
  var params = {
37253
- url: api["Bb" /* taskTransfer */],
37295
+ url: api["Cb" /* taskTransfer */],
37254
37296
  data: {
37255
37297
  choiceDeptId: choiceDeptId,
37256
37298
  choiceOrgId: choiceOrgId,
@@ -37344,7 +37386,7 @@ var startTaskReadvue_type_script_lang_js_components;
37344
37386
  !download && delete params.isDownload;
37345
37387
  isCdjxjTaskHandle == 'true' && delete params.noticeType;
37346
37388
  utils_util["a" /* default */].ajax({
37347
- url: api["wb" /* taskReadHtml */],
37389
+ url: api["xb" /* taskReadHtml */],
37348
37390
  params: { taskAction: _this7.type },
37349
37391
  headers: {
37350
37392
  Accept: 'application/json,text/plain'
@@ -37837,7 +37879,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37837
37879
  pendingId = this.pendingId;
37838
37880
 
37839
37881
  var params = {
37840
- url: api["yb" /* taskReview */],
37882
+ url: api["zb" /* taskReview */],
37841
37883
  data: {
37842
37884
  nextUserId: nextOtherOrgObj.join(','),
37843
37885
  notificationType: noticeType.join(','),
@@ -37873,7 +37915,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37873
37915
  var _this2 = this;
37874
37916
 
37875
37917
  var params = {
37876
- url: api["Lb" /* toTaskReview */],
37918
+ url: api["Mb" /* toTaskReview */],
37877
37919
  params: { pendingId: this.pendingId }
37878
37920
  };
37879
37921
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -37908,7 +37950,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
37908
37950
  var _this3 = this;
37909
37951
 
37910
37952
  var params = {
37911
- url: this.type == 'takeAdvice' ? api["Nb" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Mb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Qb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Rb" /* toTwoOfficesDispatch */] : api["Pb" /* toTaskUnionExamine */],
37953
+ url: this.type == 'takeAdvice' ? api["Ob" /* toTaskTakeAdvice */] : this.type === 'startDraf' ? api["Nb" /* toTaskStartDraft */] : this.type == 'unionSeal' ? api["Rb" /* toTaskUnionSeal */] : this.type == 'twoOfficesDispatch' ? api["Sb" /* toTwoOfficesDispatch */] : api["Qb" /* toTaskUnionExamine */],
37912
37954
  params: { pendingId: this.pendingId },
37913
37955
  headers: { Accept: 'application/json,text/plain' }
37914
37956
  };
@@ -38002,7 +38044,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
38002
38044
  // if (this.type != 'startDraf' && this.type != 'unionSeal' && this.type != 'twoOfficesDispatch')
38003
38045
  // return this.$message.warning('暂未开放,敬请期待!');
38004
38046
  var param = {
38005
- url: this.type === 'startDraf' ? api["zb" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Db" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Tb" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Ab" /* taskTakeAdvice */] : api["Cb" /* taskUnionExamine */],
38047
+ url: this.type === 'startDraf' ? api["Ab" /* taskStartDraft */] : this.type == 'unionSeal' ? api["Eb" /* taskUnionSeal */] : this.type === 'twoOfficesDispatch' ? api["Ub" /* twoOfficesDispatch */] : this.type == 'takeAdvice' ? api["Bb" /* taskTakeAdvice */] : api["Db" /* taskUnionExamine */],
38006
38048
  data: {
38007
38049
  opinion: opinion,
38008
38050
  pendingId: pendingId,
@@ -38083,7 +38125,7 @@ var taskUnionExaminevue_type_script_lang_js_components;
38083
38125
  var params = {
38084
38126
  pendingId: this.pendingId
38085
38127
  };
38086
- utils_util["a" /* default */].ajax({ url: api["H" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
38128
+ utils_util["a" /* default */].ajax({ url: api["I" /* getNotificationMsg */], params: params, methods: 'post' }).then(function (res) {
38087
38129
  if (res.status === 'success') {
38088
38130
  _this6.infoList.noticeInfo = res.message;
38089
38131
  }
@@ -39209,7 +39251,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39209
39251
  taskAction: 'complete'
39210
39252
  };
39211
39253
  utils_util["a" /* default */].ajax({
39212
- url: api["wb" /* taskReadHtml */],
39254
+ url: api["xb" /* taskReadHtml */],
39213
39255
  params: { taskAction: 'complete' },
39214
39256
  headers: {
39215
39257
  Accept: 'application/json,text/plain'
@@ -39241,7 +39283,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39241
39283
 
39242
39284
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
39243
39285
  utils_util["a" /* default */].ajax({
39244
- url: api["Jb" /* toStartTaskReadIndex */],
39286
+ url: api["Kb" /* toStartTaskReadIndex */],
39245
39287
  params: { pendingId: this.pendingId }
39246
39288
  }).then(function (res) {
39247
39289
  var status = res.status,
@@ -39275,7 +39317,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39275
39317
  if (mainConfig) {
39276
39318
  this.userModel = JSON.parse(mainConfig).userModel;
39277
39319
  } else {
39278
- utils_util["a" /* default */].ajax({ url: api["bb" /* loginUserInfo */] }).then(function (res) {
39320
+ utils_util["a" /* default */].ajax({ url: api["cb" /* loginUserInfo */] }).then(function (res) {
39279
39321
  var status = res.status,
39280
39322
  data = res.data;
39281
39323
 
@@ -39376,7 +39418,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39376
39418
  pendingId: this.pendingId
39377
39419
  };
39378
39420
  this.loading = utils_util["a" /* default */].loading(this.$loading, '保存中...');
39379
- utils_util["a" /* default */].ajax({ url: api["Eb" /* tempSave */], params: params }).then(function (res) {
39421
+ utils_util["a" /* default */].ajax({ url: api["Fb" /* tempSave */], params: params }).then(function (res) {
39380
39422
  var status = res.status,
39381
39423
  message = res.message;
39382
39424
 
@@ -39630,7 +39672,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39630
39672
  var _this14 = this;
39631
39673
 
39632
39674
  var params = {
39633
- url: api["Z" /* isCanStartSubFlow */],
39675
+ url: api["ab" /* isCanStartSubFlow */],
39634
39676
  data: {
39635
39677
  appId: this.taskExamineInfo.appId,
39636
39678
  inevitableNode: res.inevitableNode
@@ -39742,7 +39784,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39742
39784
 
39743
39785
  // return this.$message.warning('请填写意见');
39744
39786
  var params = {
39745
- url: api["mb" /* rejectAndEnd */],
39787
+ url: api["nb" /* rejectAndEnd */],
39746
39788
  headers: { Accept: 'application/json,text/plain' },
39747
39789
  method: 'post',
39748
39790
  data: {
@@ -39812,7 +39854,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39812
39854
  pendingId: this.pendingId,
39813
39855
  businessId: this.businessIds
39814
39856
  };
39815
- utils_util["a" /* default */].ajax({ url: api["G" /* getNodeInfo */], params: params }).then(function (res) {
39857
+ utils_util["a" /* default */].ajax({ url: api["H" /* getNodeInfo */], params: params }).then(function (res) {
39816
39858
  var status = res.status,
39817
39859
  message = res.message,
39818
39860
  data = res.data;
@@ -39842,7 +39884,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
39842
39884
  _this21.isHideOtherOrg = false;
39843
39885
  _this21.isNodeShowProcess = false;
39844
39886
  _this21.isMainSubProcess = false;
39845
- _this21.isNextUser = true;
39887
+ _this21.isNextUser = _this21.nextNode.nextOperate != 9;
39846
39888
  // this.isMainSubProcess === true
39847
39889
  // ? (this.isMainSubProcess = true)
39848
39890
  // : (this.isMainSubProcess = false);
@@ -40004,6 +40046,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40004
40046
  this.loading.close();
40005
40047
  return;
40006
40048
  } else {}
40049
+
40007
40050
  if (isDef !== true) this.getNodeInfo();
40008
40051
  },
40009
40052
 
@@ -40057,7 +40100,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40057
40100
  pendingId: this.pendingId,
40058
40101
  userId: utils_util["a" /* default */].getStorage('userId')
40059
40102
  };
40060
- utils_util["a" /* default */].ajax({ url: api["D" /* getHandleInfoHtml */], params: params }).then(function (res) {
40103
+ utils_util["a" /* default */].ajax({ url: api["E" /* getHandleInfoHtml */], params: params }).then(function (res) {
40061
40104
  //pc返回数据
40062
40105
 
40063
40106
  _this23.loading.close();
@@ -40083,7 +40126,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40083
40126
  isCanRemoveSign = _res$data2.isCanRemoveSign,
40084
40127
  attachedCode = _res$data2.attachedCode,
40085
40128
  isSpecial = _res$data2.isSpecial,
40086
- opinion = _res$data2.opinion,
40087
40129
  canPresetRead = _res$data2.canPresetRead,
40088
40130
  isCdjxjTaskHandle = _res$data2.isCdjxjTaskHandle,
40089
40131
  taskButtonList = _res$data2.taskButtonList;
@@ -40141,7 +40183,6 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40141
40183
  });
40142
40184
  _this23.selecNext(_this23.nextNode.nextOperate, true, true);
40143
40185
  }
40144
-
40145
40186
  if (nodeInfoMap && JSON.stringify(nodeInfoMap) != '{}') {
40146
40187
  _this23.needRetrialAuth = !!nodeInfoMap.nodeExtAttr.isCurrentNodeSubmitNeedRetrialAuth;
40147
40188
  if (nodeInfoMap.nodeExtAttr.nodeFixedOpinionSelectList) {
@@ -40334,7 +40375,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40334
40375
  // onlyFlag: true
40335
40376
  };
40336
40377
  this.loading = utils_util["a" /* default */].loading(this.$loading, '加载中...');
40337
- utils_util["a" /* default */].ajax({ url: api["L" /* getProcessDefList */], params: params }).then(function (res) {
40378
+ utils_util["a" /* default */].ajax({ url: api["M" /* getProcessDefList */], params: params }).then(function (res) {
40338
40379
  var status = res.status,
40339
40380
  message = res.message,
40340
40381
  data = res.data;
@@ -40386,7 +40427,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40386
40427
  userId: utils_util["a" /* default */].getStorage('userId'),
40387
40428
  type: 2
40388
40429
  };
40389
- utils_util["a" /* default */].ajax({ url: api["fb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
40430
+ utils_util["a" /* default */].ajax({ url: api["gb" /* pendedhistoryList */], data: params, method: 'post' }).then(function (res) {
40390
40431
  var rCode = res.rCode,
40391
40432
  msg = res.msg,
40392
40433
  results = res.results;
@@ -40579,7 +40620,7 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40579
40620
  params.isSubFlow = taskExamineInfo.isSubFlow;
40580
40621
  params.nodeId = taskExamineInfo.nodeId;
40581
40622
  params.needRetrialAuth = needRetrialAuth;
40582
- return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["vb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
40623
+ return _context.abrupt('return', utils_util["a" /* default */].ajax({ url: api["wb" /* taskHandleHtml */], method: 'post', data: params }).then(function (res) {
40583
40624
  var status = res.status,
40584
40625
  message = res.message;
40585
40626
 
@@ -40660,8 +40701,8 @@ function flow_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return func
40660
40701
 
40661
40702
  var flow_src_main_component = normalizeComponent(
40662
40703
  packages_flow_src_mainvue_type_script_lang_js_,
40663
- mainvue_type_template_id_4dbe5794_render,
40664
- mainvue_type_template_id_4dbe5794_staticRenderFns,
40704
+ mainvue_type_template_id_301e1065_render,
40705
+ mainvue_type_template_id_301e1065_staticRenderFns,
40665
40706
  false,
40666
40707
  null,
40667
40708
  null,
@@ -43593,7 +43634,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
43593
43634
 
43594
43635
  this.pressLoading = true;
43595
43636
  var params = {
43596
- url: api["hb" /* pressListJson */],
43637
+ url: api["ib" /* pressListJson */],
43597
43638
  params: { historyId: historyId },
43598
43639
  method: 'POST',
43599
43640
  data: { page: currentPage, rows: pageSize, sidx: sidx, sord: sord, historyId: historyId }
@@ -43660,7 +43701,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
43660
43701
  var _this6 = this;
43661
43702
 
43662
43703
  var params = {
43663
- url: api["gb" /* pendedhistoryListJson */],
43704
+ url: api["hb" /* pendedhistoryListJson */],
43664
43705
  params: {
43665
43706
  apprecordid: this.businessId,
43666
43707
  pendingAttr: 0,
@@ -43806,7 +43847,7 @@ var flow_list_src_mainvue_type_script_lang_js_components;
43806
43847
  var _this9 = this;
43807
43848
 
43808
43849
  var param = {
43809
- url: api["Fb" /* toPresetInfoListIndex */],
43850
+ url: api["Gb" /* toPresetInfoListIndex */],
43810
43851
  params: { apprecordid: this.businessId }
43811
43852
  };
43812
43853
  utils_util["a" /* default */].ajax(param).then(function (res) {
@@ -44043,7 +44084,7 @@ mainvue_type_template_id_2f21f1e1_render._withStripped = true
44043
44084
 
44044
44085
  if (this.job.id !== item.id) {
44045
44086
  this.job = item;
44046
- utils_util["a" /* default */].ajax({ url: api["tb" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
44087
+ utils_util["a" /* default */].ajax({ url: api["ub" /* switchUserTo */], params: { userId: item.value } }).then(function (res) {
44047
44088
  if (res.rCode == 0) {
44048
44089
  utils_util["a" /* default */].setStorage({
44049
44090
  type: _this.storage,
@@ -44594,7 +44635,7 @@ mainvue_type_template_id_6f2ac1fb_render._withStripped = true
44594
44635
  cancelButtonText: '取消',
44595
44636
  type: 'warning'
44596
44637
  }).then(function () {
44597
- utils_util["a" /* default */].ajax({ method: 'post', url: api["cb" /* logout */] }).then(function (res) {
44638
+ utils_util["a" /* default */].ajax({ method: 'post', url: api["db" /* logout */] }).then(function (res) {
44598
44639
  if (res.rCode == 0) {
44599
44640
  utils_util["a" /* default */].removeStorage(['Authorization', 'token', 'ssId', 'userId', 'userName', 'auth', 'deviceUnique', 'menus', 'useCaseCodes', 'mainConfig', 'jump']);
44600
44641
  if (_this2.onQuit && typeof _this2.onQuit === 'function') {
@@ -47292,7 +47333,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
47292
47333
  var _this = this;
47293
47334
 
47294
47335
  utils_util["a" /* default */].ajax({
47295
- url: api["W" /* initModifyPassword */]
47336
+ url: api["X" /* initModifyPassword */]
47296
47337
  }).then(function (res) {
47297
47338
  if (res.rCode === 0) {
47298
47339
  var results = JSON.parse(JSON.stringify(res.results));
@@ -47352,7 +47393,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
47352
47393
  var _this3 = this;
47353
47394
 
47354
47395
  utils_util["a" /* default */].ajax({
47355
- url: api["F" /* getModifyPassCode */],
47396
+ url: api["G" /* getModifyPassCode */],
47356
47397
  params: params
47357
47398
  }).then(function (res) {
47358
47399
  if (res.rCode === 0) {
@@ -47397,7 +47438,7 @@ function resetPasswordvue_type_script_lang_js_objectWithoutProperties(obj, keys)
47397
47438
  data.operationCheckCode = this.operationCheckCode;
47398
47439
  utils_util["a" /* default */].ajax({
47399
47440
  method: 'post',
47400
- url: api["ab" /* loginModifyPassword */],
47441
+ url: api["bb" /* loginModifyPassword */],
47401
47442
  data: data
47402
47443
  }).then(function (res) {
47403
47444
  _this4.submit = false;
@@ -47840,7 +47881,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
47840
47881
  //初始登录配置接口地址
47841
47882
  initLogin: {
47842
47883
  type: String,
47843
- default: api["V" /* initLogin */]
47884
+ default: api["W" /* initLogin */]
47844
47885
  },
47845
47886
  mode: {
47846
47887
  type: String,
@@ -47935,7 +47976,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
47935
47976
  },
47936
47977
  getLoginCode: {
47937
47978
  type: String,
47938
- default: api["E" /* getLoginCode */]
47979
+ default: api["F" /* getLoginCode */]
47939
47980
  },
47940
47981
  doCodeLogin: {
47941
47982
  type: String,
@@ -47943,7 +47984,7 @@ var login_src_mainvue_type_script_lang_js_extends = Object.assign || function (t
47943
47984
  },
47944
47985
  getTwoFactorLoginCode: {
47945
47986
  type: String,
47946
- default: api["Q" /* getTwoFactorLoginCode */]
47987
+ default: api["R" /* getTwoFactorLoginCode */]
47947
47988
  },
47948
47989
  doTwoFactorLogin: {
47949
47990
  type: String,
@@ -49599,7 +49640,7 @@ userinfovue_type_template_id_fc09aaf8_render._withStripped = true
49599
49640
  var _this2 = this;
49600
49641
 
49601
49642
  utils_util["a" /* default */].ajax({
49602
- url: api["Y" /* initUserSet */]
49643
+ url: api["Z" /* initUserSet */]
49603
49644
  }).then(function (res) {
49604
49645
  if (res.rCode === 0) {
49605
49646
  var results = JSON.parse(JSON.stringify(res.results));
@@ -49647,7 +49688,7 @@ userinfovue_type_template_id_fc09aaf8_render._withStripped = true
49647
49688
 
49648
49689
  switch (type) {
49649
49690
  case 'job':
49650
- utils_util["a" /* default */].ajax({ url: api["tb" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
49691
+ utils_util["a" /* default */].ajax({ url: api["ub" /* switchUserTo */], params: { userId: value.value } }).then(function (res) {
49651
49692
  if (res.rCode == 0) {
49652
49693
  utils_util["a" /* default */].setStorage({
49653
49694
  type: _this3.storage,
@@ -49688,7 +49729,7 @@ userinfovue_type_template_id_fc09aaf8_render._withStripped = true
49688
49729
  var initLogin = utils_util["a" /* default */].getStorage('initLogin');
49689
49730
  initLogin && (initLogin = JSON.parse(initLogin));
49690
49731
  utils_util["a" /* default */].ajax({
49691
- url: api["Wb" /* updateUserInfo */],
49732
+ url: api["Xb" /* updateUserInfo */],
49692
49733
  params: {
49693
49734
  email: this.values.email,
49694
49735
  officeTel: this.values.officeTel,
@@ -49749,7 +49790,7 @@ userinfovue_type_template_id_fc09aaf8_render._withStripped = true
49749
49790
  var notify = _this4.values.notify.sort().join(',');
49750
49791
  if (notify != _this4.notify.split(',').sort().join(',')) {
49751
49792
  utils_util["a" /* default */].ajax({
49752
- url: api["Vb" /* updateUserCustomInfo */],
49793
+ url: api["Wb" /* updateUserCustomInfo */],
49753
49794
  params: {
49754
49795
  notify: notify
49755
49796
  }
@@ -50539,7 +50580,7 @@ messagevue_type_template_id_0fefa521_render._withStripped = true
50539
50580
  if (this.pageNum <= this.pageCount) {
50540
50581
  this.loading = true;
50541
50582
  utils_util["a" /* default */].ajax({
50542
- url: api["ub" /* sysMsgPage */],
50583
+ url: api["vb" /* sysMsgPage */],
50543
50584
  params: {
50544
50585
  pageNum: reload ? 1 : this.pageNum,
50545
50586
  pageSize: this.pageSize
@@ -50572,7 +50613,7 @@ messagevue_type_template_id_0fefa521_render._withStripped = true
50572
50613
  var _this2 = this;
50573
50614
 
50574
50615
  utils_util["a" /* default */].ajax({
50575
- url: api["U" /* ignoreSysMsg */],
50616
+ url: api["V" /* ignoreSysMsg */],
50576
50617
  params: {
50577
50618
  id: res.id
50578
50619
  }
@@ -50592,7 +50633,7 @@ messagevue_type_template_id_0fefa521_render._withStripped = true
50592
50633
  var _this3 = this;
50593
50634
 
50594
50635
  utils_util["a" /* default */].ajax({
50595
- url: api["T" /* ignoreAllSysMsg */]
50636
+ url: api["U" /* ignoreAllSysMsg */]
50596
50637
  }).then(function (res) {
50597
50638
  _this3.count = 0;
50598
50639
  _this3.msgs = [];
@@ -50912,7 +50953,7 @@ noticevue_type_template_id_b4f91b8e_render._withStripped = true
50912
50953
  var _this = this;
50913
50954
 
50914
50955
  utils_util["a" /* default */].ajax({
50915
- url: api["T" /* ignoreAllSysMsg */]
50956
+ url: api["U" /* ignoreAllSysMsg */]
50916
50957
  }).then(function (res) {
50917
50958
  _this.count = 0;
50918
50959
  _this.msgs = [];
@@ -51511,7 +51552,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
51511
51552
  //获取用户信息的接口
51512
51553
  mainConfig: {
51513
51554
  type: String,
51514
- default: api["db" /* mainConfig */]
51555
+ default: api["eb" /* mainConfig */]
51515
51556
  },
51516
51557
  iframeId: {
51517
51558
  type: String,
@@ -51836,7 +51877,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
51836
51877
  var _this = this;
51837
51878
 
51838
51879
  var params = {
51839
- url: api["eb" /* mainDetail */],
51880
+ url: api["fb" /* mainDetail */],
51840
51881
  params: { id: id }
51841
51882
  };
51842
51883
  utils_util["a" /* default */].ajax(params).then(function (res) {
@@ -51958,7 +51999,7 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
51958
51999
  return;
51959
52000
  }
51960
52001
  utils_util["a" /* default */].ajax({
51961
- url: api["Vb" /* updateUserCustomInfo */],
52002
+ url: api["Wb" /* updateUserCustomInfo */],
51962
52003
  params: { color: escape(color.toLowerCase()) },
51963
52004
  data: { color: escape(color.toLowerCase()) }
51964
52005
  }).then(function (res) {
@@ -52975,8 +53016,8 @@ var appCode = utils_util["a" /* default */].getParams('appCode') || utils_util["
52975
53016
  var _this11 = this;
52976
53017
 
52977
53018
  this.webSocket = utils_util["a" /* default */].socket({
52978
- url: api["bc" /* wss */],
52979
- take: api["Sb" /* topic */],
53019
+ url: api["cc" /* wss */],
53020
+ take: api["Tb" /* topic */],
52980
53021
  success: function success(res) {
52981
53022
  var data = res.data || {};
52982
53023
  for (var i in data) {
@@ -53243,17 +53284,17 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53243
53284
 
53244
53285
  if (this.mode === 'vertical') {
53245
53286
  this.$nextTick(function () {
53246
- _this.maxH = _this.$refs.esMenu.$el.offsetHeight + 'px';
53287
+ _this.maxH = _this.$refs.esMenu.$el.getBoundingClientRect().height + 'px';
53247
53288
  });
53248
53289
  } else {
53249
53290
  this.$nextTick(function () {
53250
53291
  var w = 0;
53251
53292
  Array.from(_this.$refs.menu.$el.children).forEach(function (item) {
53252
- w += item.offsetWidth;
53293
+ w += item.getBoundingClientRect().width;
53253
53294
  });
53254
53295
  var styles = window.getComputedStyle(_this.$refs.menu.$el);
53255
53296
  w += parseFloat(styles.paddingLeft) + parseFloat(styles.paddingRight);
53256
- if (w > _this.$refs.esMenu.$el.offsetWidth) {
53297
+ if (w > _this.$refs.esMenu.$el.getBoundingClientRect().width) {
53257
53298
  _this.maxW = w + 'px';
53258
53299
  }
53259
53300
  });
@@ -53273,6 +53314,60 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53273
53314
  mounted: function mounted() {},
53274
53315
 
53275
53316
  methods: {
53317
+ handleReady: function handleReady() {
53318
+ var _this2 = this;
53319
+
53320
+ if (this.mode === 'horizontal') {
53321
+ console.log(this.$refs.esMenu.$refs.resize);
53322
+ this.$refs.esMenu.wrap.onmouseover = function (e) {
53323
+ _this2.$refs.esMenu.wrap.addEventListener('mousewheel', _this2.handleWheel, { passive: false }) || _this2.$refs.esMenu.wrap.addEventListener('DOMMouseScroll', _this2.handleWheel, false);
53324
+ e.preventDefault();
53325
+ };
53326
+ this.$refs.esMenu.wrap.onmouseout = function (e) {
53327
+ _this2.$refs.esMenu.wrap.removeEventListener('mousewheel', _this2.handleWheel, { passive: false }) || _this2.$refs.esMenu.wrap.removeEventListener('DOMMouseScroll', _this2.handleWheel, false);
53328
+ e.preventDefault();
53329
+ };
53330
+ }
53331
+ // const { scrollHeight, clientHeight } =
53332
+ // this.bodyWrapper.wrap || this.bodyWrapper;
53333
+ // if (scrollHeight === clientHeight && this.$refs.fixedWrapper) {
53334
+ // this.$refs.fixedWrapper.onmouseover = (e) => {
53335
+ // this.$refs.fixedWrapper.addEventListener(
53336
+ // 'mousewheel',
53337
+ // this.handleWheel,
53338
+ // { passive: false }
53339
+ // ) ||
53340
+ // this.$refs.fixedWrapper.addEventListener(
53341
+ // 'DOMMouseScroll',
53342
+ // this.handleWheel,
53343
+ // false
53344
+ // );
53345
+ // e.preventDefault();
53346
+ // };
53347
+ // this.$refs.fixedWrapper.onmouseout = (e) => {
53348
+ // this.$refs.fixedWrapper.removeEventListener(
53349
+ // 'mousewheel',
53350
+ // this.handleWheel,
53351
+ // { passive: false }
53352
+ // ) ||
53353
+ // this.$refs.fixedWrapper.removeEventListener(
53354
+ // 'DOMMouseScroll',
53355
+ // this.handleWheel,
53356
+ // false
53357
+ // );
53358
+ // e.preventDefault();
53359
+ // };
53360
+ // }
53361
+ },
53362
+ handleWheel: function handleWheel(e) {
53363
+ if (!this.sizeHeight) {
53364
+ var eventDelta = -e.wheelDelta || e.deltaY * 40;
53365
+ this.$refs.esMenu.$refs.wrap.scrollLeft = this.$refs.esMenu.$refs.wrap.scrollLeft + eventDelta / 4;
53366
+ if (this.$refs.esMenu.$refs.wrap.scrollLeft > 0 && this.$refs.esMenu.$refs.wrap.scrollLeft < this.$refs.esMenu.$refs.wrap.scrollWidth - this.$refs.esMenu.$refs.wrap.clientWidth) {
53367
+ e.preventDefault();
53368
+ }
53369
+ }
53370
+ },
53276
53371
  getFirst: function getFirst(arry) {
53277
53372
  var item = arry[0];
53278
53373
  if (Object.prototype.hasOwnProperty.call(item, 'children') && item.children.length) {
@@ -53287,7 +53382,7 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53287
53382
  }
53288
53383
  },
53289
53384
  handleSelect: function handleSelect(key, keyPath, item) {
53290
- var _this2 = this;
53385
+ var _this3 = this;
53291
53386
 
53292
53387
  this.isChange = true;
53293
53388
  if (this.menuId !== null && keyPath.indexOf(this.menuId) == -1) {
@@ -53296,7 +53391,7 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53296
53391
  var openedMenus = item.rootMenu.openedMenus;
53297
53392
  openedMenus.forEach(function (item) {
53298
53393
  if (keyPath.indexOf(item) == -1) {
53299
- _this2.$refs.menu.close(item);
53394
+ _this3.$refs.menu.close(item);
53300
53395
  }
53301
53396
  });
53302
53397
  }
@@ -53330,7 +53425,7 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53330
53425
  });
53331
53426
  },
53332
53427
  getSub: function getSub(item, h, popper, fourthTabs) {
53333
- var _this3 = this;
53428
+ var _this4 = this;
53334
53429
 
53335
53430
  if (popper) {
53336
53431
  popper += this.popperClass !== undefined ? ' ' + this.popperClass : ' es-menu-popper-' + this.mode;
@@ -53365,7 +53460,7 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53365
53460
  if (!ele) {
53366
53461
  console.error('\u5BF9\u8C61\u5B50\u6570\u636E\u4E2D\u7B2C[' + index + ']\u6761\u6570\u636E\u9519\u8BEF', item);
53367
53462
  } else {
53368
- return _this3.getSub(ele, h, popper);
53463
+ return _this4.getSub(ele, h, popper);
53369
53464
  }
53370
53465
  }));
53371
53466
  return [h('el-submenu', {
@@ -53383,7 +53478,7 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53383
53478
  if (!ele) {
53384
53479
  console.error('\u5BF9\u8C61\u5B50\u6570\u636E\u4E2D\u7B2C[' + index + ']\u6761\u6570\u636E\u9519\u8BEF', item);
53385
53480
  } else {
53386
- return _this3.getSub(ele, h, popper, true);
53481
+ return _this4.getSub(ele, h, popper, true);
53387
53482
  }
53388
53483
  }));
53389
53484
  return [h('el-submenu', {
@@ -53421,18 +53516,18 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53421
53516
  }
53422
53517
  },
53423
53518
  render: function render(h) {
53424
- var _this4 = this;
53519
+ var _this5 = this;
53425
53520
 
53426
53521
  var doms = [];
53427
53522
  this.data.forEach(function (item) {
53428
53523
  if (item.children && item.children.length && (!item.extendData || item.extendData.businessStatus != 0)) {
53429
- doms = doms.concat(_this4.getSub(item, h, 'es-sub-menu'));
53524
+ doms = doms.concat(_this5.getSub(item, h, 'es-sub-menu'));
53430
53525
  } else {
53431
53526
  var title = [h('i', {
53432
- class: [item.icons ? _this4.unicode(item.icons) ? item.icons : 'es-icons iconfont' : 'es-icon-application', 'es-menu-item-icon'],
53433
- domProps: item.icons === '' || _this4.unicode(item.icons) ? {} : { innerHTML: item.icons }
53527
+ class: [item.icons ? _this5.unicode(item.icons) ? item.icons : 'es-icons iconfont' : 'es-icon-application', 'es-menu-item-icon'],
53528
+ domProps: item.icons === '' || _this5.unicode(item.icons) ? {} : { innerHTML: item.icons }
53434
53529
  }), h('div', {
53435
- class: ['es-menu-title-text es-menu-title-' + _this4.mode]
53530
+ class: ['es-menu-title-text es-menu-title-' + _this5.mode]
53436
53531
  }, [h('el-badge', {
53437
53532
  class: ['es-badge', {
53438
53533
  'es-badge-right': item.tips && typeof item.tips !== 'boolean',
@@ -53448,9 +53543,9 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53448
53543
  }
53449
53544
  }, [item.text])])];
53450
53545
  doms.push(h('el-menu-item', {
53451
- class: ['es-menu-item-' + _this4.mode],
53546
+ class: ['es-menu-item-' + _this5.mode],
53452
53547
  props: {
53453
- paddingLeft: _this4.paddingLeft,
53548
+ paddingLeft: _this5.paddingLeft,
53454
53549
  disabled: item.extendData && item.extendData.businessStatus == 0
53455
53550
  },
53456
53551
  attrs: {
@@ -53458,13 +53553,14 @@ var menu_src_mainvue_type_script_lang_js_extends = Object.assign || function (ta
53458
53553
  index: item.id,
53459
53554
  key: item.id
53460
53555
  }
53461
- }, _this4.titleIcons ? title : [title[1]]));
53556
+ }, _this5.titleIcons ? title : [title[1]]));
53462
53557
  }
53463
53558
  });
53464
53559
  return h('el-scrollbar', {
53465
53560
  ref: 'esMenu',
53466
53561
  props: {
53467
- horizontal: this.mode === 'horizontal'
53562
+ horizontal: this.mode === 'horizontal',
53563
+ onReady: this.handleReady
53468
53564
  },
53469
53565
  class: 'es-menu-' + this.mode + '-scrollbar'
53470
53566
  }, [h('el-menu', {
@@ -54169,7 +54265,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54169
54265
  text: '重发',
54170
54266
  format: false,
54171
54267
  method: 'post',
54172
- action: api["pb" /* sendBatch */]
54268
+ action: api["qb" /* sendBatch */]
54173
54269
  }]
54174
54270
  }];
54175
54271
  }
@@ -54356,13 +54452,13 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54356
54452
  },
54357
54453
  data: function data() {
54358
54454
  return {
54359
- sendList: api["rb" /* sendList */],
54360
- sendBatch: api["pb" /* sendBatch */],
54455
+ sendList: api["sb" /* sendList */],
54456
+ sendBatch: api["qb" /* sendBatch */],
54361
54457
  tableCount: 0,
54362
54458
  selectData: [],
54363
54459
  formTitle: '',
54364
54460
  showForm: false,
54365
- formData: api["qb" /* sendInfo */],
54461
+ formData: api["rb" /* sendInfo */],
54366
54462
  params: {},
54367
54463
  sendTypeDict: [],
54368
54464
  statusDict: []
@@ -54381,7 +54477,7 @@ var notify_src_mainvue_type_script_lang_js_extends = Object.assign || function (
54381
54477
  type: 'primary',
54382
54478
  checkbox: true,
54383
54479
  format: false,
54384
- action: api["pb" /* sendBatch */]
54480
+ action: api["qb" /* sendBatch */]
54385
54481
  }]
54386
54482
  }, {
54387
54483
  type: 'search',
@@ -55528,8 +55624,8 @@ qr_code_src_main.install = function (Vue) {
55528
55624
  };
55529
55625
 
55530
55626
  /* harmony default export */ var qr_code = (qr_code_src_main);
55531
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=6d8b784f&
55532
- var mainvue_type_template_id_6d8b784f_render = function () {
55627
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=template&id=5c6d41f9&
55628
+ var mainvue_type_template_id_5c6d41f9_render = function () {
55533
55629
  var _vm = this
55534
55630
  var _h = _vm.$createElement
55535
55631
  var _c = _vm._self._c || _h
@@ -55658,11 +55754,11 @@ var mainvue_type_template_id_6d8b784f_render = function () {
55658
55754
  )
55659
55755
  : _vm._e()
55660
55756
  }
55661
- var mainvue_type_template_id_6d8b784f_staticRenderFns = []
55662
- mainvue_type_template_id_6d8b784f_render._withStripped = true
55757
+ var mainvue_type_template_id_5c6d41f9_staticRenderFns = []
55758
+ mainvue_type_template_id_5c6d41f9_render._withStripped = true
55663
55759
 
55664
55760
 
55665
- // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=6d8b784f&
55761
+ // CONCATENATED MODULE: ./packages/radio-group/src/main.vue?vue&type=template&id=5c6d41f9&
55666
55762
 
55667
55763
  // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/radio-group/src/main.vue?vue&type=script&lang=js&
55668
55764
  var radio_group_src_mainvue_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; };
@@ -55739,6 +55835,7 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55739
55835
  }
55740
55836
  },
55741
55837
  props: {
55838
+ service: String,
55742
55839
  method: {
55743
55840
  type: String,
55744
55841
  default: 'get'
@@ -55812,13 +55909,13 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55812
55909
  computed: {
55813
55910
  label: function label() {
55814
55911
  if (this.sysCode) {
55815
- return 'shortName';
55912
+ return this.service ? 'label' : 'shortName';
55816
55913
  }
55817
55914
  return this.labelKey;
55818
55915
  },
55819
55916
  valKey: function valKey() {
55820
55917
  if (this.sysCode) {
55821
- return 'cciValue';
55918
+ return this.service ? 'value' : 'cciValue';
55822
55919
  }
55823
55920
  return this.valueKey;
55824
55921
  },
@@ -55865,6 +55962,12 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55865
55962
  return this.model[this.label] || this.model[this.valKey];
55866
55963
  }
55867
55964
  }
55965
+ },
55966
+ findCode: function findCode() {
55967
+ if (this.service) {
55968
+ return '/' + this.service + api["D" /* getDictList */];
55969
+ }
55970
+ return api["v" /* findSysCode */];
55868
55971
  }
55869
55972
  },
55870
55973
  watch: {
@@ -55876,7 +55979,7 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55876
55979
  if (options) {
55877
55980
  this.options = JSON.parse(JSON.stringify(options));
55878
55981
  } else {
55879
- this.getData(api["v" /* findSysCode */], val);
55982
+ this.getData(this.findCode, val);
55880
55983
  }
55881
55984
  }
55882
55985
  }
@@ -55907,7 +56010,7 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55907
56010
 
55908
56011
  var params = {};
55909
56012
  if (this.results.length === 0) {
55910
- params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode } : {});
56013
+ params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode, code: sysCode } : {});
55911
56014
  } else {
55912
56015
  return false;
55913
56016
  }
@@ -55974,8 +56077,8 @@ var radio_group_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "func
55974
56077
 
55975
56078
  var radio_group_src_main_component = normalizeComponent(
55976
56079
  packages_radio_group_src_mainvue_type_script_lang_js_,
55977
- mainvue_type_template_id_6d8b784f_render,
55978
- mainvue_type_template_id_6d8b784f_staticRenderFns,
56080
+ mainvue_type_template_id_5c6d41f9_render,
56081
+ mainvue_type_template_id_5c6d41f9_staticRenderFns,
55979
56082
  false,
55980
56083
  null,
55981
56084
  null,
@@ -56280,7 +56383,7 @@ mainvue_type_template_id_70256784_render._withStripped = true
56280
56383
  var mainConfig = utils_util["a" /* default */].getStorage('mainConfig');
56281
56384
  mainConfig && (this.userModel = JSON.parse(mainConfig).userModel);
56282
56385
  utils_util["a" /* default */].ajax({
56283
- url: api["X" /* initRetrialAuth */]
56386
+ url: api["Y" /* initRetrialAuth */]
56284
56387
  }).then(function (res) {
56285
56388
  var rCode = res.rCode,
56286
56389
  results = res.results;
@@ -56364,7 +56467,7 @@ mainvue_type_template_id_70256784_render._withStripped = true
56364
56467
  }
56365
56468
  }, 1000);
56366
56469
  utils_util["a" /* default */].ajax({
56367
- url: api["M" /* getRetrialAuthCode */],
56470
+ url: api["N" /* getRetrialAuthCode */],
56368
56471
  method: 'post',
56369
56472
  data: params,
56370
56473
  params: params
@@ -56389,7 +56492,7 @@ mainvue_type_template_id_70256784_render._withStripped = true
56389
56492
  uuid: this.uuid
56390
56493
  };
56391
56494
  utils_util["a" /* default */].ajax({
56392
- url: api["ob" /* scanCodeRetrialAuth */],
56495
+ url: api["pb" /* scanCodeRetrialAuth */],
56393
56496
  method: 'post',
56394
56497
  data: params,
56395
56498
  params: params
@@ -56482,6 +56585,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56482
56585
  }
56483
56586
  },
56484
56587
  props: {
56588
+ service: String,
56485
56589
  value: [String, Array, Object, Number],
56486
56590
  method: {
56487
56591
  type: String,
@@ -56649,6 +56753,12 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56649
56753
  set: function set(val) {
56650
56754
  return val;
56651
56755
  }
56756
+ },
56757
+ findCode: function findCode() {
56758
+ if (this.service) {
56759
+ return '/' + this.service + api["D" /* getDictList */];
56760
+ }
56761
+ return api["v" /* findSysCode */];
56652
56762
  }
56653
56763
  },
56654
56764
  watch: {
@@ -56656,8 +56766,8 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56656
56766
  immediate: true,
56657
56767
  handler: function handler(val, old) {
56658
56768
  if (val && val !== old) {
56659
- this.label = 'shortName';
56660
- this.valKey = 'cciValue';
56769
+ this.label = this.service ? 'label' : 'shortName';
56770
+ this.valKey = this.service ? 'value' : 'cciValue';
56661
56771
  var options = utils_store.get(val);
56662
56772
  if (options) {
56663
56773
  this.options = JSON.parse(JSON.stringify(options));
@@ -56763,7 +56873,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56763
56873
  }
56764
56874
  var params = {};
56765
56875
  if (this.results.length === 0 || reload) {
56766
- params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode } : {}, param ? param : {});
56876
+ params = utils_util["a" /* default */].extend({}, this.param, sysCode ? { sysAppCode: sysCode, code: sysCode } : {}, param ? param : {});
56767
56877
  } else {
56768
56878
  return false;
56769
56879
  }
@@ -56772,7 +56882,7 @@ var select_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "function"
56772
56882
  }
56773
56883
  this.loading = true;
56774
56884
  utils_util["a" /* default */].ajax({
56775
- url: sysCode ? api["v" /* findSysCode */] : this.url,
56885
+ url: sysCode ? this.findCode : this.url,
56776
56886
  method: this.method,
56777
56887
  params: params,
56778
56888
  data: params
@@ -57163,6 +57273,7 @@ var select_ganged_src_mainvue_type_script_lang_js_extends = Object.assign || fun
57163
57273
  }
57164
57274
  },
57165
57275
  props: {
57276
+ service: String,
57166
57277
  method: {
57167
57278
  type: String,
57168
57279
  default: 'get'
@@ -57331,6 +57442,12 @@ var select_ganged_src_mainvue_type_script_lang_js_extends = Object.assign || fun
57331
57442
  return this.lists;
57332
57443
  }
57333
57444
  return this.data;
57445
+ },
57446
+ findCode: function findCode() {
57447
+ if (this.service) {
57448
+ return '/' + this.service + api["D" /* getDictList */];
57449
+ }
57450
+ return api["v" /* findSysCode */];
57334
57451
  }
57335
57452
  },
57336
57453
  watch: {
@@ -57377,7 +57494,7 @@ var select_ganged_src_mainvue_type_script_lang_js_extends = Object.assign || fun
57377
57494
  return false;
57378
57495
  }
57379
57496
  utils_util["a" /* default */].ajax({
57380
- url: this.sysCode ? findSysCode : this.url,
57497
+ url: this.sysCode ? this.findCode : this.url,
57381
57498
  method: this.method,
57382
57499
  params: this.param,
57383
57500
  data: this.param
@@ -58511,7 +58628,7 @@ var util_ = __webpack_require__(24);
58511
58628
  value: [Array, Object],
58512
58629
  action: {
58513
58630
  type: String,
58514
- default: api["O" /* getSelectorOrgDetail */]
58631
+ default: api["P" /* getSelectorOrgDetail */]
58515
58632
  },
58516
58633
  host: {
58517
58634
  type: String,
@@ -59977,7 +60094,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
59977
60094
  },
59978
60095
  selection: {
59979
60096
  type: [String, Array],
59980
- default: api["O" /* getSelectorOrgDetail */]
60097
+ default: api["P" /* getSelectorOrgDetail */]
59981
60098
  },
59982
60099
  param: {
59983
60100
  type: Object,
@@ -60054,7 +60171,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60054
60171
  enterprise: {
60055
60172
  label: '选择单位',
60056
60173
  name: 'enterprise',
60057
- url: api["P" /* getSelectorOrgTree */],
60174
+ url: api["Q" /* getSelectorOrgTree */],
60058
60175
  data: [],
60059
60176
  nodeData: '',
60060
60177
  selection: [],
@@ -60068,7 +60185,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60068
60185
  department: {
60069
60186
  label: '选择部门',
60070
60187
  name: 'department',
60071
- url: api["P" /* getSelectorOrgTree */],
60188
+ url: api["Q" /* getSelectorOrgTree */],
60072
60189
  data: [],
60073
60190
  nodeData: '',
60074
60191
  selection: [],
@@ -60082,7 +60199,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60082
60199
  employee: {
60083
60200
  label: '选择用户',
60084
60201
  name: 'employee',
60085
- url: api["P" /* getSelectorOrgTree */],
60202
+ url: api["Q" /* getSelectorOrgTree */],
60086
60203
  data: [],
60087
60204
  nodeData: '',
60088
60205
  selection: [],
@@ -60096,7 +60213,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60096
60213
  myemployee: {
60097
60214
  label: '本单位用户',
60098
60215
  name: 'myemployee',
60099
- url: api["P" /* getSelectorOrgTree */],
60216
+ url: api["Q" /* getSelectorOrgTree */],
60100
60217
  data: [],
60101
60218
  nodeData: '',
60102
60219
  selection: [],
@@ -60110,7 +60227,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60110
60227
  otheremployee: {
60111
60228
  label: '外单位用户',
60112
60229
  name: 'otheremployee',
60113
- url: api["P" /* getSelectorOrgTree */],
60230
+ url: api["Q" /* getSelectorOrgTree */],
60114
60231
  data: [],
60115
60232
  nodeData: '',
60116
60233
  selection: [],
@@ -60124,7 +60241,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60124
60241
  person: {
60125
60242
  label: '选择人员',
60126
60243
  name: 'person',
60127
- url: api["P" /* getSelectorOrgTree */],
60244
+ url: api["Q" /* getSelectorOrgTree */],
60128
60245
  data: [],
60129
60246
  nodeData: '',
60130
60247
  selection: [],
@@ -60138,7 +60255,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60138
60255
  otherperson: {
60139
60256
  label: '外单位人员',
60140
60257
  name: 'otherperson',
60141
- url: api["P" /* getSelectorOrgTree */],
60258
+ url: api["Q" /* getSelectorOrgTree */],
60142
60259
  data: [],
60143
60260
  nodeData: '',
60144
60261
  selection: [],
@@ -60152,7 +60269,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60152
60269
  persongroup: {
60153
60270
  label: '员工群组成员',
60154
60271
  name: 'persongroup',
60155
- url: api["P" /* getSelectorOrgTree */],
60272
+ url: api["Q" /* getSelectorOrgTree */],
60156
60273
  data: [],
60157
60274
  nodeData: '',
60158
60275
  selection: [],
@@ -60170,7 +60287,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60170
60287
  selection: [],
60171
60288
  value: [],
60172
60289
  name: 'filgroup',
60173
- url: api["P" /* getSelectorOrgTree */],
60290
+ url: api["Q" /* getSelectorOrgTree */],
60174
60291
  param: {
60175
60292
  showarea: 3,
60176
60293
  id: 0,
@@ -60180,7 +60297,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60180
60297
  depgroup: {
60181
60298
  label: '部门群组成员',
60182
60299
  name: 'depgroup',
60183
- url: api["P" /* getSelectorOrgTree */],
60300
+ url: api["Q" /* getSelectorOrgTree */],
60184
60301
  data: [],
60185
60302
  nodeData: '',
60186
60303
  selection: [],
@@ -60194,7 +60311,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60194
60311
  persongroupobj: {
60195
60312
  label: '人员群组',
60196
60313
  name: 'persongroupobj',
60197
- url: api["P" /* getSelectorOrgTree */],
60314
+ url: api["Q" /* getSelectorOrgTree */],
60198
60315
  data: [],
60199
60316
  nodeData: '',
60200
60317
  selection: [],
@@ -60208,7 +60325,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60208
60325
  filgroupobj: {
60209
60326
  label: '单位群组',
60210
60327
  name: 'filgroupobj',
60211
- url: api["P" /* getSelectorOrgTree */],
60328
+ url: api["Q" /* getSelectorOrgTree */],
60212
60329
  data: [],
60213
60330
  nodeData: '',
60214
60331
  selection: [],
@@ -60222,7 +60339,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60222
60339
  depgroupobj: {
60223
60340
  label: '部门群组',
60224
60341
  name: 'depgroupobj',
60225
- url: api["P" /* getSelectorOrgTree */],
60342
+ url: api["Q" /* getSelectorOrgTree */],
60226
60343
  data: [],
60227
60344
  nodeData: '',
60228
60345
  selection: [],
@@ -60236,7 +60353,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60236
60353
  role: {
60237
60354
  label: '选择角色',
60238
60355
  name: 'role',
60239
- url: api["P" /* getSelectorOrgTree */],
60356
+ url: api["Q" /* getSelectorOrgTree */],
60240
60357
  data: [],
60241
60358
  nodeData: '',
60242
60359
  selection: [],
@@ -60250,7 +60367,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60250
60367
  post: {
60251
60368
  label: '选择岗位',
60252
60369
  name: 'post',
60253
- url: api["P" /* getSelectorOrgTree */],
60370
+ url: api["Q" /* getSelectorOrgTree */],
60254
60371
  data: [],
60255
60372
  nodeData: '',
60256
60373
  selection: [],
@@ -60264,7 +60381,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60264
60381
  codetable: {
60265
60382
  label: '代码表',
60266
60383
  name: 'codetable',
60267
- url: api["P" /* getSelectorOrgTree */],
60384
+ url: api["Q" /* getSelectorOrgTree */],
60268
60385
  data: [],
60269
60386
  nodeData: '',
60270
60387
  selection: [],
@@ -60278,7 +60395,7 @@ var selector_panel_src_mainvue_type_script_lang_js_typeof = typeof Symbol === "f
60278
60395
  topcontacts: {
60279
60396
  label: '常用联系人',
60280
60397
  name: 'topcontacts',
60281
- url: api["P" /* getSelectorOrgTree */],
60398
+ url: api["Q" /* getSelectorOrgTree */],
60282
60399
  data: [],
60283
60400
  nodeData: '',
60284
60401
  selection: [],
@@ -60930,11 +61047,11 @@ function sizer_src_mainvue_type_script_lang_js_asyncToGenerator(fn) { return fun
60930
61047
  },
60931
61048
  url: {
60932
61049
  type: String,
60933
- default: api["I" /* getOrgMainTree */]
61050
+ default: api["J" /* getOrgMainTree */]
60934
61051
  },
60935
61052
  orgUrl: {
60936
61053
  type: String,
60937
- default: api["N" /* getSelectOrgsubids */]
61054
+ default: api["O" /* getSelectOrgsubids */]
60938
61055
  },
60939
61056
  selectField: {
60940
61057
  type: String,
@@ -64345,7 +64462,7 @@ mainvue_type_template_id_33945f34_render._withStripped = true
64345
64462
  },
64346
64463
  url: {
64347
64464
  type: String,
64348
- default: api["R" /* gethelpdoc */]
64465
+ default: api["S" /* gethelpdoc */]
64349
64466
  },
64350
64467
  param: {
64351
64468
  type: Object,
@@ -64845,7 +64962,7 @@ mainvue_type_template_id_6991bbb6_render._withStripped = true
64845
64962
  // 选择项远程地址
64846
64963
  url: {
64847
64964
  type: String,
64848
- default: api["I" /* getOrgMainTree */]
64965
+ default: api["J" /* getOrgMainTree */]
64849
64966
  },
64850
64967
  system: {
64851
64968
  type: Boolean,
@@ -66542,11 +66659,12 @@ function mainvue_type_script_lang_js_objectWithoutProperties(obj, keys) { var ta
66542
66659
  })];
66543
66660
  }
66544
66661
  if (type === 'info') {
66545
- info = [h('div', { class: 'es-toolbar-info' }, contents.map(function (item) {
66662
+ info.push(h('div', { class: 'es-toolbar-info' }, contents.map(function (item) {
66546
66663
  return h('span', { class: 'es-info' }, [h('span', { class: 'es-info-label' }, [item.label + '\uFF1A']), h('span', { class: 'es-info-value' }, [item.value])]);
66547
- }))];
66664
+ })));
66548
66665
  }
66549
66666
  if (type === 'filter') {
66667
+ console.log(1212);
66550
66668
  info.push(h('el-button', {
66551
66669
  class: 'es-advanced-btn',
66552
66670
  props: {
@@ -70702,8 +70820,8 @@ form_src_table.install = function (Vue) {
70702
70820
  };
70703
70821
 
70704
70822
  /* harmony default export */ var table_form = (form_src_table);
70705
- // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=6ac7d26c&
70706
- var mainvue_type_template_id_6ac7d26c_render = function () {
70823
+ // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=49429871&
70824
+ var mainvue_type_template_id_49429871_render = function () {
70707
70825
  var _vm = this
70708
70826
  var _h = _vm.$createElement
70709
70827
  var _c = _vm._self._c || _h
@@ -71083,11 +71201,11 @@ var mainvue_type_template_id_6ac7d26c_render = function () {
71083
71201
  )
71084
71202
  : _vm._e()
71085
71203
  }
71086
- var mainvue_type_template_id_6ac7d26c_staticRenderFns = []
71087
- mainvue_type_template_id_6ac7d26c_render._withStripped = true
71204
+ var mainvue_type_template_id_49429871_staticRenderFns = []
71205
+ mainvue_type_template_id_49429871_render._withStripped = true
71088
71206
 
71089
71207
 
71090
- // CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=6ac7d26c&
71208
+ // CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=49429871&
71091
71209
 
71092
71210
  // CONCATENATED MODULE: ./packages/upload/src/picture.js
71093
71211
  /* harmony default export */ var picture = ({
@@ -71522,7 +71640,7 @@ var mainvue_type_script_lang_js_props;
71522
71640
  videoChange: false,
71523
71641
  source: '',
71524
71642
  excludeNames: '',
71525
- previewAdjunct: api["ib" /* previewAdjunct */],
71643
+ previewAdjunct: api["jb" /* previewAdjunct */],
71526
71644
  boxHeight: this.listHeight,
71527
71645
  kkfileview: null
71528
71646
  };
@@ -71568,7 +71686,7 @@ var mainvue_type_script_lang_js_props;
71568
71686
  return this.showFileList;
71569
71687
  },
71570
71688
  url: function url() {
71571
- var url = this.action ? this.action : this.portrait ? api["Yb" /* uploadOnlyOne */] : api["ac" /* uploads */];
71689
+ var url = this.action ? this.action : this.portrait ? api["Zb" /* uploadOnlyOne */] : api["bc" /* uploads */];
71572
71690
  return url.indexOf(this.host) > -1 ? url : this.host + url;
71573
71691
  },
71574
71692
  excludes: function excludes() {
@@ -71697,6 +71815,7 @@ var mainvue_type_script_lang_js_props;
71697
71815
  }
71698
71816
  });
71699
71817
  this.filesTotalSize = filesTotalSize;
71818
+ this.$emit('input', val);
71700
71819
  } else {
71701
71820
  this.getFiles(this.params);
71702
71821
  }
@@ -71825,7 +71944,7 @@ var mainvue_type_script_lang_js_props;
71825
71944
  }
71826
71945
  });
71827
71946
  _this3.filesTotalSize = filesTotalSize;
71828
- _this3.$emit('input', _this3.lists);
71947
+ _this3.$emit('input', _this3.lists.length ? _this3.lists : '');
71829
71948
  }
71830
71949
  } else {
71831
71950
  var msg = res.msg || '系统错误,请联系管理员!';
@@ -71868,13 +71987,13 @@ var mainvue_type_script_lang_js_props;
71868
71987
  if (this.kkfileview) {
71869
71988
  this.openKkfileview(file);
71870
71989
  } else {
71871
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["kb" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
71990
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["lb" /* previewAdjunctOffice */]) + '?cmd=view&bucketName=' + file.absolutePath + '&fileId=' + file.adjunctId + '&fileName=' + file.newName);
71872
71991
  }
71873
71992
  } else if (suffix.includes('pdf')) {
71874
71993
  if (this.kkfileview) {
71875
71994
  this.openKkfileview(file);
71876
71995
  } else {
71877
- utils_util["a" /* default */].win.open(this.host + (url ? url : api["jb" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
71996
+ utils_util["a" /* default */].win.open(this.host + (url ? url : api["kb" /* previewAdjunct2 */]) + '/' + file.originalName + '?adjunctId=' + file.adjunctId);
71878
71997
  }
71879
71998
  } else if (suffix.includes('jpge') || suffix.includes('jpg') || suffix.includes('gif') || suffix.includes('png')) {
71880
71999
  this.imgUrl = res.url && utils_util["a" /* default */].startWith(url, ['http', '/', true]) ? res.url : this.host + (url ? url : this.previewAdjunct) + '?adjunctId=' + file.adjunctId;
@@ -72036,7 +72155,7 @@ var mainvue_type_script_lang_js_props;
72036
72155
  }
72037
72156
  },
72038
72157
  handleDownloads: function handleDownloads() {
72039
- var url = typeof this.downloads === 'string' ? this.downloads : api["Xb" /* uploadDownloads */];
72158
+ var url = typeof this.downloads === 'string' ? this.downloads : api["Yb" /* uploadDownloads */];
72040
72159
  utils_util["a" /* default */].win.open(this.host + url + '?ownId=' + this.ownId + '&code=' + this.code + (this.extendCode ? '&extendCode=' + this.extendCode : ''));
72041
72160
  },
72042
72161
  handleDownload: function handleDownload(file) {
@@ -72076,7 +72195,7 @@ var mainvue_type_script_lang_js_props;
72076
72195
  ids = ids.join(',');
72077
72196
  utils_util["a" /* default */].ajax({
72078
72197
  method: this.method,
72079
- url: api["Zb" /* uploadSort */],
72198
+ url: api["ac" /* uploadSort */],
72080
72199
  data: {
72081
72200
  ids: ids
72082
72201
  },
@@ -72139,7 +72258,7 @@ var mainvue_type_script_lang_js_props;
72139
72258
  this.onChange && this.onChange(file, fileList);
72140
72259
  },
72141
72260
  handleRemove: function handleRemove(file, fileList) {
72142
- this.$emit('input', fileList);
72261
+ this.$emit('input', fileList.length ? fileList : '');
72143
72262
  this.$emit('remove', file, fileList);
72144
72263
  this.$emit('change', fileList);
72145
72264
  this.onRemove && this.onRemove(file, fileList);
@@ -72175,8 +72294,8 @@ var mainvue_type_script_lang_js_props;
72175
72294
 
72176
72295
  var upload_src_main_component = normalizeComponent(
72177
72296
  packages_upload_src_mainvue_type_script_lang_js_,
72178
- mainvue_type_template_id_6ac7d26c_render,
72179
- mainvue_type_template_id_6ac7d26c_staticRenderFns,
72297
+ mainvue_type_template_id_49429871_render,
72298
+ mainvue_type_template_id_49429871_staticRenderFns,
72180
72299
  false,
72181
72300
  null,
72182
72301
  null,
@@ -72652,7 +72771,7 @@ if (typeof window !== 'undefined' && window.Vue) {
72652
72771
  }
72653
72772
 
72654
72773
  /* harmony default export */ var src_0 = __webpack_exports__["default"] = ({
72655
- version: '0.5.54',
72774
+ version: '0.5.56',
72656
72775
  install: install,
72657
72776
  Button: packages_button,
72658
72777
  ButtonGroup: button_group,