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.
35 lines
537 B
35 lines
537 B
<template>
|
|
<view class="pages">
|
|
|
|
<image style="margin-top: 30px;" src="../../static/baseIcon/NotPermission.png" mode="aspectFill"></image>
|
|
<text style="margin-top: 30px; color: #9F9F9F;">抱歉,您暂无权限访问该页面</text>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onShow() {
|
|
wx.hideHomeButton()
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.pages{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
|