diff --git a/common/js/api.js b/common/js/api.js index cfed27d..7de7681 100644 --- a/common/js/api.js +++ b/common/js/api.js @@ -149,4 +149,10 @@ export default { upUserInfo(data) { return uni.api.post("/login/upUserInfo", data); }, + loginresetPwd(data) { // 重置资金密码 + return uni.api.post("/login/resetPwd", data); + }, + paygetActive(data) { // 获取充值活动 + return uni.api.get("/pay/getActive", data); + }, } \ No newline at end of file diff --git a/pages.json b/pages.json index 25a9929..6cc3408 100644 --- a/pages.json +++ b/pages.json @@ -106,6 +106,11 @@ } }, { + "path": "pages/member/list", + "style": { + "navigationBarTitleText": "会员列表" + } + },{ "path": "pages/make/make", "style": { "navigationBarTitleText": "在线预定" @@ -118,6 +123,13 @@ "navigationBarBackgroundColor": "#FFD158", "navigationBarTextStyle": "white" } + }, { + "path": "pages/user/repairpassword", + "style": { + "navigationBarTitleText": "设置安全密码", + "navigationBarBackgroundColor": "#ffffff", + "navigationBarTextStyle": "black" + } }, { "path": "pages/pay_code/pay_code", diff --git a/pages/member/index.vue b/pages/member/index.vue index 5de1cff..aa75ab5 100644 --- a/pages/member/index.vue +++ b/pages/member/index.vue @@ -1,24 +1,18 @@