| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <view class="container">
- <view class="img"><img src="../../static/imgs/404.png" /></view>
- <view class="msg">暂无权限</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- padding-top: 218rpx;
- width: 100vw;
- height: 100vh;
- background-color: #fff;
- .img {
- margin: 0 auto;
- width: 480rpx;
- height: 508rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .msg {
- text-align: center;
- color: #5792f0;
- }
- }
- </style>
|