nonwhitelist.vue 1010 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style scoped lang="scss">
  20. .page {
  21. padding-top: 120rpx;
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. .img {
  26. width: 500rpx;
  27. height: 500rpx;
  28. }
  29. .text1 {
  30. color: rgba(51, 51, 51, 1);
  31. font-weight: bold;
  32. font-size: 48rpx;
  33. margin-bottom: 16rpx;
  34. }
  35. .text2 {
  36. color: rgba(51, 51, 51, 1);
  37. font-size: 36rpx;
  38. margin-bottom: 200rpx;
  39. }
  40. .botton {
  41. border-radius: 100rpx;
  42. width: 360rpx;
  43. text-align: center;
  44. border: 1px solid rgba(187, 187, 187, 1);
  45. color: rgba(22, 119, 255, 1);
  46. padding: 16rpx;
  47. }
  48. }
  49. </style>