This commit is contained in:
Gao xiaosong
2020-03-16 01:40:52 +08:00
parent 397082cdaf
commit e215701560
216 changed files with 11659 additions and 13905 deletions

View File

@ -9,7 +9,7 @@
>
</div>
<div class="btn" @click="$yrouter.replace({ path: '/' })">
<div class="btn" @click="homeGo()">
返回首页
</div>
</div>
@ -17,7 +17,12 @@
<script>
export default {
name: "NotDefined"
name: "NotDefined",
methods: {
homeGo() {
this.$yrouter.switchTab('/pages/home/index');
},
},
};
</script>