From a3d68992e6307de7e74ae1840a41a106077ebba5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cgrape=E2=80=9D?= <18746553572@163.com> Date: Sun, 9 Oct 2022 19:22:49 +0800 Subject: [PATCH] 2022/10/9 --- src/App.vue | 1 + src/components/common/LittleCard.vue | 22 +++++++- src/components/common/Picket.vue | 2 +- src/components/common/ProductCard.vue | 8 +-- src/components/common/ProductDetail.vue | 2 + src/components/common/Tool.vue | 4 +- .../DepositInterestTrial.vue | 2 +- src/views/MyView/MyPage.vue | 21 ++++---- src/views/authentication/LoginView.vue | 42 ++++++++++++---- src/views/login/ForgetPassView.vue | 50 ++++++++++++------- src/views/login/Register.vue | 47 +++++++++++------ src/views/main/Main.vue | 32 +++++++++--- 12 files changed, 166 insertions(+), 67 deletions(-) diff --git a/src/App.vue b/src/App.vue index 490bb44..f52ac95 100644 --- a/src/App.vue +++ b/src/App.vue @@ -41,6 +41,7 @@ export default class App extends Vue { margin: 0; padding: 0; overflow: hidden; + background: #fefefe; .main-view { width: 100%; height: 100%; diff --git a/src/components/common/LittleCard.vue b/src/components/common/LittleCard.vue index 0ee557b..6e28ef7 100644 --- a/src/components/common/LittleCard.vue +++ b/src/components/common/LittleCard.vue @@ -8,7 +8,8 @@ --> @@ -43,6 +54,10 @@ export default class LittleCard extends Vue { litterParamClick(item:any){ this.$emit("litterParamClick",item); } + + exit(){ + this.$router.replace("login"); + } } diff --git a/src/components/common/Picket.vue b/src/components/common/Picket.vue index 8d2d537..fd666c7 100644 --- a/src/components/common/Picket.vue +++ b/src/components/common/Picket.vue @@ -75,7 +75,7 @@ export default class Picket extends Vue { } .card { height: 200px; - width: 98%; + width: 95%; margin: 1% auto; background: inherit; background-color: rgba(255, 255, 255, 1); diff --git a/src/components/common/ProductCard.vue b/src/components/common/ProductCard.vue index ff4d96d..2a991fd 100644 --- a/src/components/common/ProductCard.vue +++ b/src/components/common/ProductCard.vue @@ -9,12 +9,12 @@