diff --git a/src/App.vue b/src/App.vue
index c84023c..8e9dea4 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -70,7 +70,8 @@ export default {
'/me/right-menu/minor-protection/trigger-time',
'/me/right-menu/setting',
'/login',
- '/other-login',
+ '/login/other',
+ '/login/password',
'/service-protocol',
diff --git a/src/assets/img/icon/components/check/round-gray.png b/src/assets/img/icon/components/check/round-gray.png
new file mode 100644
index 0000000..aa189ba
Binary files /dev/null and b/src/assets/img/icon/components/check/round-gray.png differ
diff --git a/src/assets/scss/anim.scss b/src/assets/scss/anim.scss
new file mode 100644
index 0000000..13cc41a
--- /dev/null
+++ b/src/assets/scss/anim.scss
@@ -0,0 +1,12 @@
+.anim-bounce {
+ animation: bounce .1s ease-in-out 5 alternate;
+}
+
+@keyframes bounce {
+ from {
+ transform: translateX(-1rem);
+ }
+ to {
+ transform: translateX(1rem);
+ }
+}
\ No newline at end of file
diff --git a/src/assets/scss/index.scss b/src/assets/scss/index.scss
index 5bcffa1..f0ad56f 100644
--- a/src/assets/scss/index.scss
+++ b/src/assets/scss/index.scss
@@ -8,6 +8,8 @@
//颜色
@import "layout"; //布局
+@import "anim";
+
html, body {
width: 100%;
diff --git a/src/components/Check.vue b/src/components/Check.vue
new file mode 100644
index 0000000..7f7e319
--- /dev/null
+++ b/src/components/Check.vue
@@ -0,0 +1,40 @@
+
+
+
+
+