diff --git a/api/apiRoute.js b/api/apiRoute.js index 8fd04e3..db7a892 100644 --- a/api/apiRoute.js +++ b/api/apiRoute.js @@ -88,6 +88,13 @@ export default { return res; }) }, + //公共端-忘记密码-通过短信验证码进行密码重置(学生/员工通用) + common_forgetPassword(data = {}) { + let url = '/common/forgetPassword' + return http.post(url, data).then(res => { + return res; + }) + }, diff --git a/pages/student/login/forgot.vue b/pages/student/login/forgot.vue index d91ac04..f26877b 100644 --- a/pages/student/login/forgot.vue +++ b/pages/student/login/forgot.vue @@ -1,55 +1,99 @@