From feefc93e3f06b5f6e750e9b4bf821cfc047a532e Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Tue, 23 Apr 2024 10:13:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E4=BF=A1=E6=81=AF=E9=A1=B5?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/system/user.js | 6 + src/layout/components/Navbar.vue | 72 +-- src/views/trials/trials-myinfo/account.vue | 255 +++++++++ src/views/trials/trials-myinfo/index.vue | 503 ++++++------------ src/views/trials/trials-myinfo/mine.vue | 209 ++++++++ src/views/trials/trials-myinfo/password.vue | 156 ++++++ .../trial-summary/login-log/index.vue | 18 +- src/views/user/editInfo.vue | 246 +-------- 8 files changed, 845 insertions(+), 620 deletions(-) create mode 100644 src/views/trials/trials-myinfo/account.vue create mode 100644 src/views/trials/trials-myinfo/mine.vue create mode 100644 src/views/trials/trials-myinfo/password.vue diff --git a/src/api/system/user.js b/src/api/system/user.js index 5f25ae0..796554e 100644 --- a/src/api/system/user.js +++ b/src/api/system/user.js @@ -27,3 +27,9 @@ export function setNewUserName(newPhone) { method: 'put' }) } +export function SetNewCheckCode(newCheckCode) { + return request({ + url: `/User/SetNewCheckCode/${newCheckCode}`, + method: 'put' + }) +} diff --git a/src/layout/components/Navbar.vue b/src/layout/components/Navbar.vue index 88bcd75..ef1f844 100644 --- a/src/layout/components/Navbar.vue +++ b/src/layout/components/Navbar.vue @@ -14,13 +14,13 @@