🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 修改账户密码 >接口参数说明 ~~~[api] post:/account/change-password *string:oldPassword#原始密码 *string:newPassword#新密码 *string:rePassword#确认密码 *string:type#登陆密码:login_password, 交易密码:transaction_password <<< success { "status": 0, "msg": "success", "timestamp": "20181221105857452" } <<< error { "status": 1013, "msg": "Insufficient password strength", "timestamp": "20181221112918250" } ~~~ >接口请求示例 ~~~ { "oldPassword": "a123456", "newPassword": "aa123456", "rePassword": "aa123456", "type": "login_password" } ~~~