diff --git a/src/views/complete.vue b/src/views/complete.vue
index 4a3242c..19db330 100644
--- a/src/views/complete.vue
+++ b/src/views/complete.vue
@@ -16,6 +16,7 @@
28积分
+
回到首页
@@ -28,8 +29,13 @@
this.load(0)
},
methods: {
+ skip(href) {
+ this.$router.push({
+ name: href
+ })
+ },
load(n) {
- if(n<10) {
+ if(n<1000000) {
setTimeout(()=>{
this.load(n+1)
},1000)
@@ -92,5 +98,16 @@
}
}
}
+ .btn {
+ width: 100%;
+ height: 5.5rem;
+ background: linear-gradient(132deg, #52A39D 0%, #A1C553 50%, #81D012 100%);
+ border-radius: 1.25rem;
+ font-size: 1.88rem;
+ font-weight: 400;
+ color: #FFFFFF;
+ line-height: 2.63rem;
+ cursor: pointer;
+ }
}