1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="content">
- <!-- <img :src="src" class="img"> -->
- <view class="text">您访问的页面不存在 :(</view>
- <button @click="toBack()" type="primary" class="btn">回到首页</button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 大图片地址(图片可能已失效)
- // src: 'https://img-blog.csdnimg.cn/20210715111039922.png'
- }
- },
- methods: {
- /**
- * 返回上页
- * @description 上一页
- * @return void
- */
- toBack() {
- uni.reLaunch({
- url: '/pages/tabbar/task/index'
- })
- },
- }
- }
- </script>
- <style scoped>
- .content {
- text-align: center;
- }
- .img {
- width: 770rpx;
- height: 300rpx;
- margin-top: 200rpx;
- }
- .text {
- font-size: 45rpx;
- font-weight: bold;
- }
- .btn {
- margin-top: 60rpx;
- width: 300rpx;
- }
- </style>
|