Files

56 lines
1.0 KiB
Vue
Raw Normal View History

2020-03-15 13:59:43 +08:00
<template>
<view class="not-defined">
2020-04-07 19:30:41 +08:00
<image src="@/static/images/404.png" />
<view class="content">
<h3 class="title">页面未找到</h3>
<text>抱歉您访问的页面不存在请返回上一级或点击下方按钮返回首页...</text>
</view>
<view class="btn" @click="homeGo()">
返回首页
</view>
</view>
2020-03-15 13:59:43 +08:00
</template>
<script>
export default {
name: "NotDefined",
methods: {
homeGo() {
this.$yrouter.switchTab('/pages/home/index');
},
2020-03-16 01:40:52 +08:00
},
};
2020-03-15 13:59:43 +08:00
</script>
<style scoped lang="less">
.not-defined image{
width: 100%;
margin-top: 18%;
}
2020-03-15 13:59:43 +08:00
.content {
padding: 0 1*100rpx;
text-align: center;
color: #44405e;
font-size: 15px;
}
2020-03-15 13:59:43 +08:00
.title {
margin-bottom: 0.6*100rpx;
color: #302c48;
font-size: 20px;
}
2020-03-15 13:59:43 +08:00
.btn {
color: #fff;
background-color: #ef4c4c;
font-size: 16px;
padding: 0.16*100rpx;
border-radius: 25px;
text-align: center;
width: 2.4*100rpx;
margin: 0 auto;
margin-top: 1*100rpx;
}
2020-03-15 13:59:43 +08:00
</style>