nonwhitelist.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="page">
  3. <img class="img" src="@/assets/img/nonwhitelist/info.png" alt="">
  4. <view class="text1">暂无权限</view>
  5. <view class="text2">此车位仅限车主及白名单用户使用</view>
  6. <view class="botton">返回首页</view>
  7. </view>
  8. </template>
  9. <script>
  10. import * as API from '@/apis/pagejs/index.js'
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. .page {
  22. padding-top: 120rpx;
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. .img {
  27. width: 500rpx;
  28. height: 500rpx;
  29. }
  30. .text1 {
  31. color: rgba(51, 51, 51, 1);
  32. font-weight: bold;
  33. font-size: 48rpx;
  34. margin-bottom: 16rpx;
  35. }
  36. .text2 {
  37. color: rgba(51, 51, 51, 1);
  38. font-size: 36rpx;
  39. margin-bottom: 200rpx;
  40. }
  41. .botton {
  42. border-radius: 100rpx;
  43. width: 360rpx;
  44. text-align: center;
  45. border: 1px solid rgba(187, 187, 187, 1);
  46. color: rgba(22, 119, 255, 1);
  47. padding: 16rpx;
  48. }
  49. }
  50. </style>