【前端】纸掌柜h5端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
752 B

<template>
<view>
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="未授权页面"></uni-nav-bar>
<view class="container">
<image style="width: 560rpx; height: 320rpx; margin-bottom: 50rpx" src="https://qncloud.oss-cn-shenzhen.aliyuncs.com/paper_shopkeeper/error.png"></image>
<text style="font-size: 32px; color: #333333">请联系纸盘商获取正确地址</text>
</view>
</view>
</template>
<script>
import { go2, back } from '@/utils/hook.js'
export default {
data() {
return {}
},
methods: {
go2,
back
}
}
</script>
<style lang="scss" scoped>
.container {
display: flex;
justify-content: center;
align-items: center;
width: 750rpx;
margin-top: 240rpx;
}
</style>