eoss-ui 0.5.54 → 0.5.55

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 (66) hide show
  1. package/CHANGELOG.md +929 -0
  2. package/lib/button-group.js +82 -79
  3. package/lib/button.js +83 -80
  4. package/lib/checkbox-group.js +95 -85
  5. package/lib/config/api.js +2 -0
  6. package/lib/data-table-form.js +91 -81
  7. package/lib/data-table.js +132 -106
  8. package/lib/date-picker.js +82 -79
  9. package/lib/dialog.js +82 -79
  10. package/lib/eoss-ui.common.js +394 -278
  11. package/lib/flow-group.js +82 -79
  12. package/lib/flow-list.js +85 -82
  13. package/lib/flow.js +116 -113
  14. package/lib/form.js +86 -81
  15. package/lib/handle-user.js +83 -80
  16. package/lib/handler.js +83 -80
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +82 -79
  19. package/lib/input.js +82 -79
  20. package/lib/login.js +88 -85
  21. package/lib/main.js +97 -95
  22. package/lib/menu.js +71 -17
  23. package/lib/nav.js +82 -79
  24. package/lib/notify.js +85 -82
  25. package/lib/page.js +82 -79
  26. package/lib/player.js +82 -79
  27. package/lib/qr-code.js +82 -79
  28. package/lib/radio-group.js +95 -85
  29. package/lib/retrial-auth.js +85 -82
  30. package/lib/select-ganged.js +93 -102
  31. package/lib/select.js +93 -83
  32. package/lib/selector-panel.js +100 -97
  33. package/lib/selector.js +83 -80
  34. package/lib/sizer.js +84 -81
  35. package/lib/steps.js +82 -79
  36. package/lib/switch.js +82 -79
  37. package/lib/table-form.js +82 -79
  38. package/lib/tabs.js +82 -79
  39. package/lib/theme-chalk/form.css +1 -1
  40. package/lib/theme-chalk/index.css +1 -1
  41. package/lib/tips.js +83 -80
  42. package/lib/toolbar.js +2 -2
  43. package/lib/tree-group.js +82 -79
  44. package/lib/tree.js +83 -80
  45. package/lib/upload.js +96 -93
  46. package/lib/wujie.js +82 -79
  47. package/lib/wxlogin.js +82 -79
  48. package/package.json +1 -1
  49. package/packages/button/src/main.vue +1 -1
  50. package/packages/checkbox-group/src/main.vue +12 -5
  51. package/packages/data-table/src/column.vue +24 -7
  52. package/packages/data-table/src/main.vue +31 -10
  53. package/packages/data-table-form/src/main.vue +10 -3
  54. package/packages/form/src/main.vue +2 -1
  55. package/packages/main/src/main.vue +0 -1
  56. package/packages/menu/src/main.vue +81 -4
  57. package/packages/radio-group/src/main.vue +12 -5
  58. package/packages/select/src/main.vue +12 -5
  59. package/packages/select-ganged/src/main.vue +9 -2
  60. package/packages/theme-chalk/lib/form.css +1 -1
  61. package/packages/theme-chalk/lib/index.css +1 -1
  62. package/packages/theme-chalk/src/form.scss +8 -0
  63. package/packages/toolbar/src/main.vue +2 -2
  64. package/packages/upload/src/main.vue +3 -3
  65. package/src/config/api.js +2 -0
  66. package/src/index.js +1 -1
package/lib/selector.js CHANGED
@@ -1355,7 +1355,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1355
1355
  * @param {function} callback - 回调函数
1356
1356
  **/
1357
1357
  var getMainConfig = function getMainConfig(callback) {
1358
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
1358
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1359
1359
  if (res && res.rCode === 0) {
1360
1360
  callback(res.results);
1361
1361
  }
@@ -2026,7 +2026,7 @@ var isLogined = function isLogined(_ref8) {
2026
2026
  }
2027
2027
  var quit = getParams('quit') || getParams('logout');
2028
2028
  if (quit) {
2029
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "cb"] }).then(function (res) {
2029
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2030
2030
  if (res.rCode === 0) {
2031
2031
  removeStorage();
2032
2032
  }
@@ -3102,29 +3102,29 @@ var watermark = function watermark(option) {
3102
3102
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3103
3103
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3104
3104
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3105
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return logout; });
3106
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initLogin; });
3107
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return switchUserTo; });
3105
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3106
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3107
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3108
3108
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3109
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getLoginCode; });
3109
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3110
3110
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3111
3111
  /* unused harmony export updateCode */
3112
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getModifyPassCode; });
3112
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3113
3113
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3114
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginModifyPassword; });
3114
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3115
3115
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3116
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initModifyPassword; });
3116
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3117
3117
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3118
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getTwoFactorLoginCode; });
3118
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3119
3119
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3120
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initRetrialAuth; });
3121
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getRetrialAuthCode; });
3122
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return scanCodeRetrialAuth; });
3120
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3121
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3122
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3123
3123
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3124
3124
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3125
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainConfig; });
3126
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initUserSet; });
3127
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserInfo; });
3125
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3126
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3127
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3128
3128
  /* unused harmony export getUserImgUrl */
3129
3129
  /* unused harmony export getDoorIndex */
3130
3130
  /* unused harmony export refreshOnlineUsers */
@@ -3133,94 +3133,95 @@ var watermark = function watermark(option) {
3133
3133
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3134
3134
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3135
3135
  /* unused harmony export getUserCustomInfo */
3136
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserCustomInfo; });
3137
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sysMsgPage; });
3138
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreSysMsg; });
3139
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreAllSysMsg; });
3136
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3137
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3138
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3139
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3140
3140
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3141
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploads; });
3142
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadOnlyOne; });
3141
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3142
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
3143
3143
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3144
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadSort; });
3144
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
3145
3145
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3146
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadDownloads; });
3147
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct; });
3148
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct2; });
3149
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunctOffice; });
3146
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
3147
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3148
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3149
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
3150
3150
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3151
3151
  /* unused harmony export upload_updateClassify */
3152
3152
  /* unused harmony export getDeleteAdjunctFileInfos */
3153
3153
  /* unused harmony export getPictureBase64 */
3154
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgTree; });
3155
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgDetail; });
3156
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getOrgMainTree; });
3157
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectOrgsubids; });
3154
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectorOrgTree; });
3155
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgDetail; });
3156
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getOrgMainTree; });
3157
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectOrgsubids; });
3158
3158
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3159
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3159
3160
  /* unused harmony export findUserBaseInfo */
3160
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return gethelpdoc; });
3161
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3161
3162
  /* unused harmony export getCurrentuser */
3162
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainDetail; });
3163
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartFlow; });
3164
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return tempSave; });
3163
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3164
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3165
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3165
3166
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3166
3167
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3167
3168
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3168
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return saveCommonOpinion; });
3169
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateCommonOpinion; });
3169
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
3170
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
3170
3171
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3171
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getProcessDefList; });
3172
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNodeInfo; });
3172
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3173
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
3173
3174
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3174
3175
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3175
3176
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3176
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNotificationMsg; });
3177
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getHandleInfoHtml; });
3178
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskHandleHtml; });
3177
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3178
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3179
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
3179
3180
  /* unused harmony export getView */
3180
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return register; });
3181
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryList; });
3182
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskRejectHtml; });
3183
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskRejectHtml; });
3184
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskRead; });
3185
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskReadIndex; });
3186
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReadHtml; });
3187
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return rejectAndEnd; });
3188
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toSendMsg; });
3189
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendMsg; });
3181
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
3182
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3183
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
3184
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
3185
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
3186
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
3187
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
3188
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
3189
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3190
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3190
3191
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3191
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return handleInfo; });
3192
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginUserInfo; });
3193
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return wss; });
3194
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return topic; });
3195
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetCustomInfo; });
3196
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetNodeInfo; });
3197
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTransferIndex; });
3198
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTransfer; });
3199
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toPresetInfoListIndex; });
3192
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3193
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3194
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3195
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3196
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3197
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3198
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
3199
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
3200
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
3200
3201
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3201
3202
  /* unused harmony export historyListJson */
3202
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryListJson; });
3203
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pressListJson; });
3203
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3204
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3204
3205
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3205
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return isCanStartSubFlow; });
3206
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionExamine; });
3207
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionExamine; });
3208
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTakeAdvice; });
3209
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTakeAdvice; });
3210
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskStartDraft; });
3211
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskStartDraft; });
3212
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskReview; });
3213
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReview; });
3214
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionSeal; });
3215
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionSeal; });
3216
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTwoOfficesDispatch; });
3217
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return twoOfficesDispatch; });
3218
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendList; });
3219
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendInfo; });
3206
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3207
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3208
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3209
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
3210
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
3211
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
3212
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
3213
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
3214
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
3215
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
3216
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
3217
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
3218
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
3219
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
3220
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
3220
3221
  /* unused harmony export sendSave */
3221
3222
  /* unused harmony export sendUpdate */
3222
3223
  /* unused harmony export sendDelete */
3223
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendBatch; });
3224
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
3224
3225
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3225
3226
  // 登录
3226
3227
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3289,6 +3290,8 @@ var getOrgMainTree = '/sys/v1/mecpSys/getOrgMainTree.dhtml';
3289
3290
  var getSelectOrgsubids = '/sys/v1/mecpSys/getSelectOrgsubids.dhtml';
3290
3291
  // 代码表
3291
3292
  var findSysCode = '/sys/v1/mecpSys/findSysCode.dhtml';
3293
+ var getDictList = '/dict/getDictDataList';
3294
+
3292
3295
  // 获取用户基本信息
3293
3296
  var findUserBaseInfo = '/sys/v1/mecpSys/findUserBaseInfo.dhtml';
3294
3297
  // 说明文档
@@ -4332,7 +4335,7 @@ var util_ = __webpack_require__(28);
4332
4335
  value: [Array, Object],
4333
4336
  action: {
4334
4337
  type: String,
4335
- default: api["O" /* getSelectorOrgDetail */]
4338
+ default: api["P" /* getSelectorOrgDetail */]
4336
4339
  },
4337
4340
  host: {
4338
4341
  type: String,
package/lib/sizer.js CHANGED
@@ -1355,7 +1355,7 @@ var getLightness = function getLightness($v, $i, $isLight) {
1355
1355
  * @param {function} callback - 回调函数
1356
1356
  **/
1357
1357
  var getMainConfig = function getMainConfig(callback) {
1358
- ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "db"] }).then(function (res) {
1358
+ ajax({ url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* mainConfig */ "eb"] }).then(function (res) {
1359
1359
  if (res && res.rCode === 0) {
1360
1360
  callback(res.results);
1361
1361
  }
@@ -2026,7 +2026,7 @@ var isLogined = function isLogined(_ref8) {
2026
2026
  }
2027
2027
  var quit = getParams('quit') || getParams('logout');
2028
2028
  if (quit) {
2029
- ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "cb"] }).then(function (res) {
2029
+ ajax({ method: 'post', url: _config_api__WEBPACK_IMPORTED_MODULE_0__[/* logout */ "db"] }).then(function (res) {
2030
2030
  if (res.rCode === 0) {
2031
2031
  removeStorage();
2032
2032
  }
@@ -3102,29 +3102,29 @@ var watermark = function watermark(option) {
3102
3102
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCaLogin; });
3103
3103
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doUserLogin; });
3104
3104
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doQrLogin; });
3105
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return logout; });
3106
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initLogin; });
3107
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return switchUserTo; });
3105
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return logout; });
3106
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initLogin; });
3107
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return switchUserTo; });
3108
3108
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
3109
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getLoginCode; });
3109
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getLoginCode; });
3110
3110
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doCodeLogin; });
3111
3111
  /* unused harmony export updateCode */
3112
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getModifyPassCode; });
3112
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getModifyPassCode; });
3113
3113
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
3114
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginModifyPassword; });
3114
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginModifyPassword; });
3115
3115
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
3116
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initModifyPassword; });
3116
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initModifyPassword; });
3117
3117
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return doWechatQrLogin; });
3118
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getTwoFactorLoginCode; });
3118
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return getTwoFactorLoginCode; });
3119
3119
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doTwoFactorLogin; });
3120
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initRetrialAuth; });
3121
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getRetrialAuthCode; });
3122
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return scanCodeRetrialAuth; });
3120
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initRetrialAuth; });
3121
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getRetrialAuthCode; });
3122
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return scanCodeRetrialAuth; });
3123
3123
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
3124
3124
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doAssistanceQrLogin; });
3125
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainConfig; });
3126
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return initUserSet; });
3127
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserInfo; });
3125
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainConfig; });
3126
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return initUserSet; });
3127
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return updateUserInfo; });
3128
3128
  /* unused harmony export getUserImgUrl */
3129
3129
  /* unused harmony export getDoorIndex */
3130
3130
  /* unused harmony export refreshOnlineUsers */
@@ -3133,94 +3133,95 @@ var watermark = function watermark(option) {
3133
3133
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplications; });
3134
3134
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getComplexApplicationsNew; });
3135
3135
  /* unused harmony export getUserCustomInfo */
3136
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserCustomInfo; });
3137
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return sysMsgPage; });
3138
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreSysMsg; });
3139
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreAllSysMsg; });
3136
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return updateUserCustomInfo; });
3137
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return sysMsgPage; });
3138
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return ignoreSysMsg; });
3139
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return ignoreAllSysMsg; });
3140
3140
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getAdjunctProperties; });
3141
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploads; });
3142
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadOnlyOne; });
3141
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return uploads; });
3142
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadOnlyOne; });
3143
3143
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctFileInfos; });
3144
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploadSort; });
3144
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return uploadSort; });
3145
3145
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return downloadByAdjunctId; });
3146
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadDownloads; });
3147
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct; });
3148
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct2; });
3149
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunctOffice; });
3146
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadDownloads; });
3147
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunct; });
3148
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return previewAdjunct2; });
3149
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return previewAdjunctOffice; });
3150
3150
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3151
3151
  /* unused harmony export upload_updateClassify */
3152
3152
  /* unused harmony export getDeleteAdjunctFileInfos */
3153
3153
  /* unused harmony export getPictureBase64 */
3154
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgTree; });
3155
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectorOrgDetail; });
3156
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getOrgMainTree; });
3157
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "N", function() { return getSelectOrgsubids; });
3154
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return getSelectorOrgTree; });
3155
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "P", function() { return getSelectorOrgDetail; });
3156
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getOrgMainTree; });
3157
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "O", function() { return getSelectOrgsubids; });
3158
3158
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCode; });
3159
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getDictList; });
3159
3160
  /* unused harmony export findUserBaseInfo */
3160
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return gethelpdoc; });
3161
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return gethelpdoc; });
3161
3162
  /* unused harmony export getCurrentuser */
3162
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return mainDetail; });
3163
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartFlow; });
3164
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return tempSave; });
3163
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return mainDetail; });
3164
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartFlow; });
3165
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return tempSave; });
3165
3166
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3166
3167
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3167
3168
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return editCommonOpion; });
3168
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return saveCommonOpinion; });
3169
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateCommonOpinion; });
3169
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return saveCommonOpinion; });
3170
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateCommonOpinion; });
3170
3171
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3171
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getProcessDefList; });
3172
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNodeInfo; });
3172
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "M", function() { return getProcessDefList; });
3173
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNodeInfo; });
3173
3174
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "u", function() { return findCodeValues; });
3174
3175
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return findSysParam; });
3175
3176
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "w", function() { return findSysCodes; });
3176
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "H", function() { return getNotificationMsg; });
3177
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getHandleInfoHtml; });
3178
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskHandleHtml; });
3177
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getNotificationMsg; });
3178
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getHandleInfoHtml; });
3179
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskHandleHtml; });
3179
3180
  /* unused harmony export getView */
3180
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return register; });
3181
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryList; });
3182
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskRejectHtml; });
3183
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskRejectHtml; });
3184
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskRead; });
3185
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskReadIndex; });
3186
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReadHtml; });
3187
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return rejectAndEnd; });
3188
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toSendMsg; });
3189
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendMsg; });
3181
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return register; });
3182
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryList; });
3183
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskRejectHtml; });
3184
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskRejectHtml; });
3185
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toStartTaskRead; });
3186
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toStartTaskReadIndex; });
3187
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReadHtml; });
3188
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return rejectAndEnd; });
3189
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toSendMsg; });
3190
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sendMsg; });
3190
3191
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "t", function() { return endFlowHtml; });
3191
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return handleInfo; });
3192
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return loginUserInfo; });
3193
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bc", function() { return wss; });
3194
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return topic; });
3195
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetCustomInfo; });
3196
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetNodeInfo; });
3197
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTransferIndex; });
3198
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTransfer; });
3199
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toPresetInfoListIndex; });
3192
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return handleInfo; });
3193
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return loginUserInfo; });
3194
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cc", function() { return wss; });
3195
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return topic; });
3196
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getPresetCustomInfo; });
3197
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getPresetNodeInfo; });
3198
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskTransferIndex; });
3199
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskTransfer; });
3200
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toPresetInfoListIndex; });
3200
3201
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3201
3202
  /* unused harmony export historyListJson */
3202
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pendedhistoryListJson; });
3203
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pressListJson; });
3203
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return pendedhistoryListJson; });
3204
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return pressListJson; });
3204
3205
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3205
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return isCanStartSubFlow; });
3206
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionExamine; });
3207
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionExamine; });
3208
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTakeAdvice; });
3209
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTakeAdvice; });
3210
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskStartDraft; });
3211
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskStartDraft; });
3212
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskReview; });
3213
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskReview; });
3214
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionSeal; });
3215
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionSeal; });
3216
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTwoOfficesDispatch; });
3217
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return twoOfficesDispatch; });
3218
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendList; });
3219
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendInfo; });
3206
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return isCanStartSubFlow; });
3207
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTaskUnionExamine; });
3208
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return taskUnionExamine; });
3209
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskTakeAdvice; });
3210
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskTakeAdvice; });
3211
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskStartDraft; });
3212
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskStartDraft; });
3213
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskReview; });
3214
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskReview; });
3215
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return toTaskUnionSeal; });
3216
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return taskUnionSeal; });
3217
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return toTwoOfficesDispatch; });
3218
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return twoOfficesDispatch; });
3219
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sendList; });
3220
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendInfo; });
3220
3221
  /* unused harmony export sendSave */
3221
3222
  /* unused harmony export sendUpdate */
3222
3223
  /* unused harmony export sendDelete */
3223
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendBatch; });
3224
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendBatch; });
3224
3225
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return formContents; });
3225
3226
  // 登录
3226
3227
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3289,6 +3290,8 @@ var getOrgMainTree = '/sys/v1/mecpSys/getOrgMainTree.dhtml';
3289
3290
  var getSelectOrgsubids = '/sys/v1/mecpSys/getSelectOrgsubids.dhtml';
3290
3291
  // 代码表
3291
3292
  var findSysCode = '/sys/v1/mecpSys/findSysCode.dhtml';
3293
+ var getDictList = '/dict/getDictDataList';
3294
+
3292
3295
  // 获取用户基本信息
3293
3296
  var findUserBaseInfo = '/sys/v1/mecpSys/findUserBaseInfo.dhtml';
3294
3297
  // 说明文档
@@ -3786,11 +3789,11 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
3786
3789
  },
3787
3790
  url: {
3788
3791
  type: String,
3789
- default: api["I" /* getOrgMainTree */]
3792
+ default: api["J" /* getOrgMainTree */]
3790
3793
  },
3791
3794
  orgUrl: {
3792
3795
  type: String,
3793
- default: api["N" /* getSelectOrgsubids */]
3796
+ default: api["O" /* getSelectOrgsubids */]
3794
3797
  },
3795
3798
  selectField: {
3796
3799
  type: String,