diff --git a/api/apiRoute.js b/api/apiRoute.js
index c0f67d8..7903f78 100644
--- a/api/apiRoute.js
+++ b/api/apiRoute.js
@@ -52,6 +52,22 @@ export default {
return res;
})
},
+ //公共端-教师/销售端验证旧密码是否正确
+ common_personnelCheckOldPwd(data = {}) {
+ let url = '/personnel/checkOldPwd'
+ return http.post(url, data).then(res => {
+ return res;
+ })
+ },
+
+ //公共端-教师/销售端验证旧密码是否正确
+ common_personnelEdidPassword(data = {}) {
+ let url = '/personnel/edidPassword'
+ return http.post(url, data).then(res => {
+ return res;
+ })
+ },
+
diff --git a/pages/market/my/update_pass.vue b/pages/market/my/update_pass.vue
index 3544848..486fe37 100644
--- a/pages/market/my/update_pass.vue
+++ b/pages/market/my/update_pass.vue
@@ -2,7 +2,7 @@
- 1.验证手机号码
+ 1.验证旧密码
2.设置新密码
@@ -12,24 +12,36 @@
为保障您的账号安全,修改密码前请填写原密码
-
-
-
- 下一步
- 提交
+
+ 上一步
+
+
+ 下一步
+
+ 提交
+
+
+
忘记原密码
@@ -39,36 +51,139 @@
@@ -104,4 +219,10 @@
color: #999999;
padding-left: 30rpx;
}
+
+ .btn_box{
+ display: flex;
+ flex-direction: column;
+ gap: 40rpx;
+ }
\ No newline at end of file