123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <template>
- <view class="page">
- <img class="img" src="@/assets/img/nonwhitelist/info.png" alt="">
- <view class="text1">暂无权限</view>
- <view class="text2">此车位仅限车主及白名单用户使用</view>
- <view class="botton">返回首页</view>
- </view>
- </template>
- <script>
- import * as API from '@/apis/pagejs/index.js'
-
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- .page {
- padding-top: 120rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .img {
- width: 500rpx;
- height: 500rpx;
- }
- .text1 {
- color: rgba(51, 51, 51, 1);
- font-weight: bold;
- font-size: 48rpx;
- margin-bottom: 16rpx;
- }
- .text2 {
- color: rgba(51, 51, 51, 1);
- font-size: 36rpx;
- margin-bottom: 200rpx;
- }
- .botton {
- border-radius: 100rpx;
- width: 360rpx;
- text-align: center;
- border: 1px solid rgba(187, 187, 187, 1);
- color: rgba(22, 119, 255, 1);
- padding: 16rpx;
- }
- }
- </style>
|