eoss-ui 0.5.23 → 0.5.25

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 (58) hide show
  1. package/CHANGELOG.md +929 -0
  2. package/lib/button-group.js +55 -53
  3. package/lib/button.js +55 -53
  4. package/lib/checkbox-group.js +55 -53
  5. package/lib/config/api.js +1 -0
  6. package/lib/data-table-form.js +55 -53
  7. package/lib/data-table.js +67 -61
  8. package/lib/date-picker.js +55 -53
  9. package/lib/dialog.js +55 -53
  10. package/lib/eoss-ui.common.js +993 -635
  11. package/lib/flow-group.js +55 -53
  12. package/lib/flow-list.js +58 -56
  13. package/lib/flow.js +77 -75
  14. package/lib/form.js +66 -56
  15. package/lib/handle-user.js +56 -54
  16. package/lib/handler.js +56 -54
  17. package/lib/index.js +1 -1
  18. package/lib/input-number.js +55 -53
  19. package/lib/input.js +55 -53
  20. package/lib/login.js +435 -162
  21. package/lib/main.js +71 -65
  22. package/lib/nav.js +55 -53
  23. package/lib/notify.js +60 -58
  24. package/lib/page.js +55 -53
  25. package/lib/player.js +55 -53
  26. package/lib/qr-code.js +55 -53
  27. package/lib/radio-group.js +55 -53
  28. package/lib/retrial-auth.js +56 -54
  29. package/lib/select-ganged.js +55 -53
  30. package/lib/select.js +55 -53
  31. package/lib/selector-panel.js +55 -53
  32. package/lib/selector.js +479 -433
  33. package/lib/sizer.js +55 -53
  34. package/lib/steps.js +55 -53
  35. package/lib/switch.js +55 -53
  36. package/lib/table-form.js +88 -61
  37. package/lib/tabs.js +55 -53
  38. package/lib/theme-chalk/form.css +1 -1
  39. package/lib/theme-chalk/index.css +1 -1
  40. package/lib/tips.js +55 -53
  41. package/lib/tree-group.js +55 -53
  42. package/lib/tree.js +55 -53
  43. package/lib/upload.js +61 -59
  44. package/lib/wujie.js +55 -53
  45. package/lib/wxlogin.js +55 -53
  46. package/package.json +1 -1
  47. package/packages/data-table/src/column.vue +5 -1
  48. package/packages/form/src/main.vue +9 -1
  49. package/packages/form/src/table.vue +21 -2
  50. package/packages/login/src/main.vue +4 -0
  51. package/packages/login/src/resetPassword.vue +413 -95
  52. package/packages/main/src/main.vue +5 -1
  53. package/packages/selector/src/main.vue +144 -135
  54. package/packages/theme-chalk/lib/form.css +1 -1
  55. package/packages/theme-chalk/lib/index.css +1 -1
  56. package/packages/theme-chalk/src/form.scss +13 -0
  57. package/src/config/api.js +1 -0
  58. package/src/index.js +1 -1
package/lib/config/api.js CHANGED
@@ -12,6 +12,7 @@ var doCodeLogin = exports.doCodeLogin = '/sso2/signIn/auth/doCodeLogin'; // 短
12
12
  var updateCode = exports.updateCode = '/sso2/signIn/assembly/getSmsModifyPassVerificationCode'; // 获取短信验证码(修改密码)
13
13
  var getModifyPassCode = exports.getModifyPassCode = '/sso2/signIn/assembly/getModifyPassCode'; // 获取修改密码的短信、邮箱验证码
14
14
  var codeModifyPass = exports.codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置密码
15
+ var loginModifyPassword = exports.loginModifyPassword = '/sso2/signIn/auth/loginModifyPassword'; // 原始密码重置密码
15
16
  var authCenter = exports.authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
16
17
  var initModifyPassword = exports.initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
17
18
  var doWechatQrLogin = exports.doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
@@ -2978,15 +2978,16 @@ var watermark = function watermark(option) {
2978
2978
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCaLogin; });
2979
2979
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doUserLogin; });
2980
2980
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doQrLogin; });
2981
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return logout; });
2981
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return logout; });
2982
2982
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initLogin; });
2983
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return switchUserTo; });
2983
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return switchUserTo; });
2984
2984
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
2985
2985
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getLoginCode; });
2986
2986
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCodeLogin; });
2987
2987
  /* unused harmony export updateCode */
2988
2988
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
2989
2989
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
2990
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginModifyPassword; });
2990
2991
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
2991
2992
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initModifyPassword; });
2992
2993
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doWechatQrLogin; });
@@ -2994,11 +2995,11 @@ var watermark = function watermark(option) {
2994
2995
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doTwoFactorLogin; });
2995
2996
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initRetrialAuth; });
2996
2997
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getRetrialAuthCode; });
2997
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return scanCodeRetrialAuth; });
2998
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return scanCodeRetrialAuth; });
2998
2999
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
2999
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return mainConfig; });
3000
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainConfig; });
3000
3001
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initUserSet; });
3001
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserInfo; });
3002
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserInfo; });
3002
3003
  /* unused harmony export getUserImgUrl */
3003
3004
  /* unused harmony export getDoorIndex */
3004
3005
  /* unused harmony export refreshOnlineUsers */
@@ -3007,20 +3008,20 @@ var watermark = function watermark(option) {
3007
3008
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplications; });
3008
3009
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplicationsNew; });
3009
3010
  /* unused harmony export getUserCustomInfo */
3010
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateUserCustomInfo; });
3011
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sysMsgPage; });
3011
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserCustomInfo; });
3012
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sysMsgPage; });
3012
3013
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreSysMsg; });
3013
3014
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return ignoreAllSysMsg; });
3014
3015
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctProperties; });
3015
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploads; });
3016
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadOnlyOne; });
3016
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploads; });
3017
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadOnlyOne; });
3017
3018
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctFileInfos; });
3018
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadSort; });
3019
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadSort; });
3019
3020
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return downloadByAdjunctId; });
3020
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return uploadDownloads; });
3021
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return previewAdjunct; });
3022
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct2; });
3023
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunctOffice; });
3021
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadDownloads; });
3022
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct; });
3023
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct2; });
3024
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunctOffice; });
3024
3025
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3025
3026
  /* unused harmony export upload_updateClassify */
3026
3027
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3033,14 +3034,14 @@ var watermark = function watermark(option) {
3033
3034
  /* unused harmony export findUserBaseInfo */
3034
3035
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
3035
3036
  /* unused harmony export getCurrentuser */
3036
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainDetail; });
3037
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toStartFlow; });
3038
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return tempSave; });
3037
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainDetail; });
3038
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartFlow; });
3039
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return tempSave; });
3039
3040
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3040
3041
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3041
3042
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return editCommonOpion; });
3042
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return saveCommonOpinion; });
3043
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return updateCommonOpinion; });
3043
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return saveCommonOpinion; });
3044
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateCommonOpinion; });
3044
3045
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3045
3046
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getProcessDefList; });
3046
3047
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNodeInfo; });
@@ -3049,52 +3050,52 @@ var watermark = function watermark(option) {
3049
3050
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCodes; });
3050
3051
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNotificationMsg; });
3051
3052
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getHandleInfoHtml; });
3052
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskHandleHtml; });
3053
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskHandleHtml; });
3053
3054
  /* unused harmony export getView */
3054
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return register; });
3055
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return pendedhistoryList; });
3056
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskRejectHtml; });
3057
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskRejectHtml; });
3058
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartTaskRead; });
3059
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskReadIndex; });
3060
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskReadHtml; });
3061
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return rejectAndEnd; });
3062
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toSendMsg; });
3063
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendMsg; });
3055
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return register; });
3056
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryList; });
3057
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskRejectHtml; });
3058
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskRejectHtml; });
3059
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskRead; });
3060
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskReadIndex; });
3061
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskReadHtml; });
3062
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return rejectAndEnd; });
3063
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toSendMsg; });
3064
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendMsg; });
3064
3065
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return endFlowHtml; });
3065
3066
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return handleInfo; });
3066
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginUserInfo; });
3067
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return wss; });
3068
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return topic; });
3067
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginUserInfo; });
3068
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return wss; });
3069
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return topic; });
3069
3070
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetCustomInfo; });
3070
3071
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetNodeInfo; });
3071
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTransferIndex; });
3072
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTransfer; });
3073
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toPresetInfoListIndex; });
3072
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTransferIndex; });
3073
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTransfer; });
3074
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toPresetInfoListIndex; });
3074
3075
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3075
3076
  /* unused harmony export historyListJson */
3076
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryListJson; });
3077
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pressListJson; });
3077
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryListJson; });
3078
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pressListJson; });
3078
3079
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3079
3080
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return isCanStartSubFlow; });
3080
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskUnionExamine; });
3081
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskUnionExamine; });
3082
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskTakeAdvice; });
3083
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskTakeAdvice; });
3084
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskStartDraft; });
3085
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskStartDraft; });
3086
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskReview; });
3087
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReview; });
3088
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionSeal; });
3089
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionSeal; });
3090
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTwoOfficesDispatch; });
3091
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return twoOfficesDispatch; });
3092
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendList; });
3093
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendInfo; });
3081
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionExamine; });
3082
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionExamine; });
3083
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTakeAdvice; });
3084
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTakeAdvice; });
3085
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskStartDraft; });
3086
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskStartDraft; });
3087
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskReview; });
3088
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReview; });
3089
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionSeal; });
3090
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionSeal; });
3091
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTwoOfficesDispatch; });
3092
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return twoOfficesDispatch; });
3093
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendList; });
3094
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendInfo; });
3094
3095
  /* unused harmony export sendSave */
3095
3096
  /* unused harmony export sendUpdate */
3096
3097
  /* unused harmony export sendDelete */
3097
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return sendBatch; });
3098
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendBatch; });
3098
3099
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return formContents; });
3099
3100
  // 登录
3100
3101
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3109,6 +3110,7 @@ var doCodeLogin = '/sso2/signIn/auth/doCodeLogin'; // 短信、邮箱验证码
3109
3110
  var updateCode = '/sso2/signIn/assembly/getSmsModifyPassVerificationCode'; // 获取短信验证码(修改密码)
3110
3111
  var getModifyPassCode = '/sso2/signIn/assembly/getModifyPassCode'; // 获取修改密码的短信、邮箱验证码
3111
3112
  var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置密码
3113
+ var loginModifyPassword = '/sso2/signIn/auth/loginModifyPassword'; // 原始密码重置密码
3112
3114
  var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
3113
3115
  var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
3114
3116
  var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
package/lib/data-table.js CHANGED
@@ -2978,15 +2978,16 @@ var watermark = function watermark(option) {
2978
2978
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return doCaLogin; });
2979
2979
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "o", function() { return doUserLogin; });
2980
2980
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return doQrLogin; });
2981
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return logout; });
2981
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return logout; });
2982
2982
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "U", function() { return initLogin; });
2983
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return switchUserTo; });
2983
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return switchUserTo; });
2984
2984
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return changeImg; });
2985
2985
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return getLoginCode; });
2986
2986
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return doCodeLogin; });
2987
2987
  /* unused harmony export updateCode */
2988
2988
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return getModifyPassCode; });
2989
2989
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return codeModifyPass; });
2990
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginModifyPassword; });
2990
2991
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return authCenter; });
2991
2992
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "V", function() { return initModifyPassword; });
2992
2993
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "p", function() { return doWechatQrLogin; });
@@ -2994,11 +2995,11 @@ var watermark = function watermark(option) {
2994
2995
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return doTwoFactorLogin; });
2995
2996
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "W", function() { return initRetrialAuth; });
2996
2997
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return getRetrialAuthCode; });
2997
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return scanCodeRetrialAuth; });
2998
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return scanCodeRetrialAuth; });
2998
2999
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return codeRetrialAuth; });
2999
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "bb", function() { return mainConfig; });
3000
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainConfig; });
3000
3001
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "X", function() { return initUserSet; });
3001
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserInfo; });
3002
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return updateUserInfo; });
3002
3003
  /* unused harmony export getUserImgUrl */
3003
3004
  /* unused harmony export getDoorIndex */
3004
3005
  /* unused harmony export refreshOnlineUsers */
@@ -3007,20 +3008,20 @@ var watermark = function watermark(option) {
3007
3008
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "A", function() { return getComplexApplications; });
3008
3009
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "B", function() { return getComplexApplicationsNew; });
3009
3010
  /* unused harmony export getUserCustomInfo */
3010
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateUserCustomInfo; });
3011
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "sb", function() { return sysMsgPage; });
3011
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ub", function() { return updateUserCustomInfo; });
3012
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return sysMsgPage; });
3012
3013
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "T", function() { return ignoreSysMsg; });
3013
3014
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "S", function() { return ignoreAllSysMsg; });
3014
3015
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "z", function() { return getAdjunctProperties; });
3015
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploads; });
3016
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadOnlyOne; });
3016
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return uploads; });
3017
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadOnlyOne; });
3017
3018
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "y", function() { return getAdjunctFileInfos; });
3018
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Xb", function() { return uploadSort; });
3019
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Yb", function() { return uploadSort; });
3019
3020
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return downloadByAdjunctId; });
3020
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Vb", function() { return uploadDownloads; });
3021
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return previewAdjunct; });
3022
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct2; });
3023
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunctOffice; });
3021
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Wb", function() { return uploadDownloads; });
3022
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hb", function() { return previewAdjunct; });
3023
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ib", function() { return previewAdjunct2; });
3024
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return previewAdjunctOffice; });
3024
3025
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return delAdjunct; });
3025
3026
  /* unused harmony export upload_updateClassify */
3026
3027
  /* unused harmony export getDeleteAdjunctFileInfos */
@@ -3033,14 +3034,14 @@ var watermark = function watermark(option) {
3033
3034
  /* unused harmony export findUserBaseInfo */
3034
3035
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Q", function() { return gethelpdoc; });
3035
3036
  /* unused harmony export getCurrentuser */
3036
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cb", function() { return mainDetail; });
3037
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toStartFlow; });
3038
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return tempSave; });
3037
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return mainDetail; });
3038
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartFlow; });
3039
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return tempSave; });
3039
3040
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return commonOpion; });
3040
3041
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return addCommonOpion; });
3041
3042
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "r", function() { return editCommonOpion; });
3042
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return saveCommonOpinion; });
3043
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return updateCommonOpinion; });
3043
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "mb", function() { return saveCommonOpinion; });
3044
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Tb", function() { return updateCommonOpinion; });
3044
3045
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return deleteCommonOpion; });
3045
3046
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "K", function() { return getProcessDefList; });
3046
3047
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return getNodeInfo; });
@@ -3049,52 +3050,52 @@ var watermark = function watermark(option) {
3049
3050
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "v", function() { return findSysCodes; });
3050
3051
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "G", function() { return getNotificationMsg; });
3051
3052
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return getHandleInfoHtml; });
3052
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "tb", function() { return taskHandleHtml; });
3053
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskHandleHtml; });
3053
3054
  /* unused harmony export getView */
3054
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "jb", function() { return register; });
3055
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "db", function() { return pendedhistoryList; });
3056
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toTaskRejectHtml; });
3057
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskRejectHtml; });
3058
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Gb", function() { return toStartTaskRead; });
3059
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskReadIndex; });
3060
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ub", function() { return taskReadHtml; });
3061
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return rejectAndEnd; });
3062
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toSendMsg; });
3063
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendMsg; });
3055
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "kb", function() { return register; });
3056
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryList; });
3057
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskRejectHtml; });
3058
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskRejectHtml; });
3059
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hb", function() { return toStartTaskRead; });
3060
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ib", function() { return toStartTaskReadIndex; });
3061
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "vb", function() { return taskReadHtml; });
3062
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lb", function() { return rejectAndEnd; });
3063
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Fb", function() { return toSendMsg; });
3064
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "rb", function() { return sendMsg; });
3064
3065
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "s", function() { return endFlowHtml; });
3065
3066
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "R", function() { return handleInfo; });
3066
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Z", function() { return loginUserInfo; });
3067
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Zb", function() { return wss; });
3068
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return topic; });
3067
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ab", function() { return loginUserInfo; });
3068
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ac", function() { return wss; });
3069
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return topic; });
3069
3070
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "I", function() { return getPresetCustomInfo; });
3070
3071
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "J", function() { return getPresetNodeInfo; });
3071
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTransferIndex; });
3072
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTransfer; });
3073
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Db", function() { return toPresetInfoListIndex; });
3072
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskTransferIndex; });
3073
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskTransfer; });
3074
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Eb", function() { return toPresetInfoListIndex; });
3074
3075
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return deletePresetInfo; });
3075
3076
  /* unused harmony export historyListJson */
3076
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "eb", function() { return pendedhistoryListJson; });
3077
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pressListJson; });
3077
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "fb", function() { return pendedhistoryListJson; });
3078
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "gb", function() { return pressListJson; });
3078
3079
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return deleteFlow; });
3079
3080
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Y", function() { return isCanStartSubFlow; });
3080
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nb", function() { return toTaskUnionExamine; });
3081
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ab", function() { return taskUnionExamine; });
3082
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskTakeAdvice; });
3083
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskTakeAdvice; });
3084
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskStartDraft; });
3085
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskStartDraft; });
3086
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Jb", function() { return toTaskReview; });
3087
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wb", function() { return taskReview; });
3088
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionSeal; });
3089
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionSeal; });
3090
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTwoOfficesDispatch; });
3091
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rb", function() { return twoOfficesDispatch; });
3092
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendList; });
3093
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendInfo; });
3081
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ob", function() { return toTaskUnionExamine; });
3082
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Bb", function() { return taskUnionExamine; });
3083
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Mb", function() { return toTaskTakeAdvice; });
3084
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "zb", function() { return taskTakeAdvice; });
3085
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Lb", function() { return toTaskStartDraft; });
3086
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "yb", function() { return taskStartDraft; });
3087
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Kb", function() { return toTaskReview; });
3088
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "xb", function() { return taskReview; });
3089
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Pb", function() { return toTaskUnionSeal; });
3090
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Cb", function() { return taskUnionSeal; });
3091
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Qb", function() { return toTwoOfficesDispatch; });
3092
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Sb", function() { return twoOfficesDispatch; });
3093
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "qb", function() { return sendList; });
3094
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pb", function() { return sendInfo; });
3094
3095
  /* unused harmony export sendSave */
3095
3096
  /* unused harmony export sendUpdate */
3096
3097
  /* unused harmony export sendDelete */
3097
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "nb", function() { return sendBatch; });
3098
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ob", function() { return sendBatch; });
3098
3099
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return formContents; });
3099
3100
  // 登录
3100
3101
  var doCaLogin = '/sso2/signIn/auth/doCaLogin'; // ca登录认证
@@ -3109,6 +3110,7 @@ var doCodeLogin = '/sso2/signIn/auth/doCodeLogin'; // 短信、邮箱验证码
3109
3110
  var updateCode = '/sso2/signIn/assembly/getSmsModifyPassVerificationCode'; // 获取短信验证码(修改密码)
3110
3111
  var getModifyPassCode = '/sso2/signIn/assembly/getModifyPassCode'; // 获取修改密码的短信、邮箱验证码
3111
3112
  var codeModifyPass = '/sso2/signIn/assembly/codeModifyPass'; // 验证码重置密码
3113
+ var loginModifyPassword = '/sso2/signIn/auth/loginModifyPassword'; // 原始密码重置密码
3112
3114
  var authCenter = '/sso2/authCenter/login'; // 单点登录认证中心
3113
3115
  var initModifyPassword = '/sso2/signIn/assembly/initModifyPassword'; // 初始化密码修改信息
3114
3116
  var doWechatQrLogin = '/sso2/signIn/auth/doWechatQrLogin'; // 微信扫码登录
@@ -4154,8 +4156,8 @@ childrenvue_type_template_id_29bcbc72_render._withStripped = true
4154
4156
 
4155
4157
  // CONCATENATED MODULE: ./packages/data-table/src/children.vue?vue&type=template&id=29bcbc72&
4156
4158
 
4157
- // 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=31b33576&
4158
- var columnvue_type_template_id_31b33576_render = function () {
4159
+ // 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=5798afd2&
4160
+ var columnvue_type_template_id_5798afd2_render = function () {
4159
4161
  var _vm = this
4160
4162
  var _h = _vm.$createElement
4161
4163
  var _c = _vm._self._c || _h
@@ -4864,11 +4866,11 @@ var columnvue_type_template_id_31b33576_render = function () {
4864
4866
  2
4865
4867
  )
4866
4868
  }
4867
- var columnvue_type_template_id_31b33576_staticRenderFns = []
4868
- columnvue_type_template_id_31b33576_render._withStripped = true
4869
+ var columnvue_type_template_id_5798afd2_staticRenderFns = []
4870
+ columnvue_type_template_id_5798afd2_render._withStripped = true
4869
4871
 
4870
4872
 
4871
- // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=31b33576&
4873
+ // CONCATENATED MODULE: ./packages/data-table/src/column.vue?vue&type=template&id=5798afd2&
4872
4874
 
4873
4875
  // EXTERNAL MODULE: external "babel-runtime/regenerator"
4874
4876
  var regenerator_ = __webpack_require__(12);
@@ -5424,7 +5426,7 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5424
5426
  return config;
5425
5427
  },
5426
5428
  formOption: function formOption() {
5427
- return _extends({
5429
+ var config = _extends({
5428
5430
  labelKey: this.sysCode ? 'shortName' : this.labelKey,
5429
5431
  valueKey: this.sysCode ? 'cciValue' : this.valueKey,
5430
5432
  rules: this.rules,
@@ -5432,6 +5434,10 @@ function _asyncToGenerator(fn) { return function () { var gen = fn.apply(this, a
5432
5434
  }, this.$attrs, {
5433
5435
  data: this.option
5434
5436
  });
5437
+ if (this.type === 'textarea') {
5438
+ config.type = 'textarea';
5439
+ }
5440
+ return config;
5435
5441
  },
5436
5442
  icon: function icon() {
5437
5443
  if (this.filterIcon === true) {
@@ -5703,8 +5709,8 @@ var componentNormalizer = __webpack_require__(3);
5703
5709
 
5704
5710
  var component = Object(componentNormalizer["a" /* default */])(
5705
5711
  src_columnvue_type_script_lang_js_,
5706
- columnvue_type_template_id_31b33576_render,
5707
- columnvue_type_template_id_31b33576_staticRenderFns,
5712
+ columnvue_type_template_id_5798afd2_render,
5713
+ columnvue_type_template_id_5798afd2_staticRenderFns,
5708
5714
  false,
5709
5715
  null,
5710
5716
  null,