diff --git a/src/assets/renzheng.png b/src/assets/renzheng.png new file mode 100644 index 0000000..9320589 Binary files /dev/null and b/src/assets/renzheng.png differ diff --git a/src/router/index.ts b/src/router/index.ts index 797577c..ce56605 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -191,6 +191,18 @@ const routes: RouteRecordRaw[] = [ component: () => import("@/views/admin/account/realnameAuth/index.vue"), }, + { + path: "realnameAuthTrue", + name: "realnameAuthTrue", + component: () => + import("@/views/admin/account/realnameAuthTrue/index.vue"), + }, + { + path: "realnameAuthBusiness", + name: "realnameAuthBusiness", + component: () => + import("@/views/admin/account/realnameAuthBusiness/index.vue"), + }, { path: "enterRealAuth", name: "EnterRealAuth", @@ -220,6 +232,18 @@ const routes: RouteRecordRaw[] = [ component: () => import("@/views/admin/account/msgCenter/index.vue"), }, + { + path: "bankCard", + name: "bankCard", + component: () => + import("@/views/admin/account/bankCard/index.vue"), + }, + { + path: "invoices", + name: "invoices", + component: () => + import("@/views/admin/account/invoices/index.vue"), + }, { path: "image", name: "Image", diff --git a/src/views/admin/account/accountSet/index.vue b/src/views/admin/account/accountSet/index.vue index 651693b..b70c80e 100644 --- a/src/views/admin/account/accountSet/index.vue +++ b/src/views/admin/account/accountSet/index.vue @@ -28,7 +28,12 @@ -
手机号17044054908
+
+
+ 手机号{{ currentPhone }} +
+
修改
+
绑定微信未绑定微信 @@ -39,54 +44,787 @@
登录密码********
-
修改
+
修改
+ + + +
+ +
+ +
+
为确保账号安全,请您本人操作进行身份验证
+
我们将向您绑定的手机发送验证码
+
+
+ + +
+
验证手机号
+
+ + {{ maskedPhone }} +
+
+ + +
+
验证码
+
+ + + {{ countdownText }} + +
+
{{ codeError }}
+
+ + +
+ {{ sendStatus }} +
+
+
+ + + +
+ +
+ +
+
为确保账号安全,请您本人操作进行手机号的修改
+
+
+ + +
+
新手机号
+ +
{{ phoneError }}
+
+ + +
+
验证码
+
+ + + {{ newCountdownText }} + +
+
{{ newCodeError }}
+
+
+
+ + + +
+ +
+ +
+
为确保账号安全,请设置新的登录密码
+
+
+ + +
+
原密码
+ +
{{ oldPasswordError }}
+
+ + +
+
新密码
+ +
{{ newPasswordError }}
+
+
+ {{ passwordStrength.lengthValid ? '✓' : '○' }} + 6-20位字符 +
+
+ {{ passwordStrength.hasLetter ? '✓' : '○' }} + 至少包含字母 +
+
+ {{ passwordStrength.hasNumber ? '✓' : '○' }} + 至少包含数字 +
+
+
+ + +
+
确认密码
+ +
{{ confirmPasswordError }}
+
+
+
+ + \ No newline at end of file diff --git a/src/views/admin/account/bankCard/index.vue b/src/views/admin/account/bankCard/index.vue new file mode 100644 index 0000000..3d37fcc --- /dev/null +++ b/src/views/admin/account/bankCard/index.vue @@ -0,0 +1,712 @@ + + + + + \ No newline at end of file diff --git a/src/views/admin/account/invoices/index.vue b/src/views/admin/account/invoices/index.vue new file mode 100644 index 0000000..30aaee6 --- /dev/null +++ b/src/views/admin/account/invoices/index.vue @@ -0,0 +1,779 @@ + + + + + \ No newline at end of file diff --git a/src/views/admin/account/realnameAuthBusiness/index.vue b/src/views/admin/account/realnameAuthBusiness/index.vue new file mode 100644 index 0000000..1f19807 --- /dev/null +++ b/src/views/admin/account/realnameAuthBusiness/index.vue @@ -0,0 +1,782 @@ + + + + + \ No newline at end of file diff --git a/src/views/admin/account/realnameAuthTrue/index.vue b/src/views/admin/account/realnameAuthTrue/index.vue new file mode 100644 index 0000000..5b6150e --- /dev/null +++ b/src/views/admin/account/realnameAuthTrue/index.vue @@ -0,0 +1,916 @@ + + + + + \ No newline at end of file diff --git a/src/views/admin/index.vue b/src/views/admin/index.vue index 11e04a2..5731357 100644 --- a/src/views/admin/index.vue +++ b/src/views/admin/index.vue @@ -90,6 +90,8 @@ const menuItems: MenuItem[] = [ { path: '/layout/admin/myCertificate', name: '我的算力券', visible: true }, { path: '/layout/admin/myInvite', name: '我的邀请', visible: true }, { path: '/layout/admin/msgCenter', name: '消息中心', visible: true }, + { path: '/layout/admin/bankCard', name: '银行卡管理', visible: true }, + { path: '/layout/admin/invoices', name: '发票抬头管理', visible: true }, ], }, ];