jurisdiction.vue 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="login_fail">
  3. <!-- <image src="../../../static/new/logo_1.png" class="logo"></image> -->
  4. <image src="../../static/new/bottom.png" class="fail_icon"></image>
  5. <view>抱歉,您没有权限进入系统</view>
  6. <view class="phone">用户:{{ phone || '' }}</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. phone: ''
  14. }
  15. },
  16. onLoad({ phone }) {
  17. this.phone = phone
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .login_fail {
  25. height: 100vh;
  26. padding-top: 30%;
  27. display: flex;
  28. flex-direction: column;
  29. // justify-content: center;
  30. align-items: center;
  31. .logo {
  32. width: 660rpx;
  33. height: 100rpx;
  34. margin-top: 40rpx;
  35. }
  36. .fail_icon {
  37. width: 311rpx;
  38. height: 227rpx;
  39. margin: 100rpx 0;
  40. }
  41. .phone {
  42. font-size: 30rpx;
  43. font-weight: 400;
  44. margin-top: 20rpx;
  45. }
  46. view {
  47. font-size: 45rpx;
  48. font-weight: bold;
  49. width: 100%;
  50. text-align: center;
  51. }
  52. }
  53. </style>