index.vue 796 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="error-page">
  3. <image mode="heightFix" src="/static/image/error.png" />
  4. <view class="error-title">暂无权限</view>
  5. <view class="error-text">尊敬的用户,您没有本应用访问权限。本应用责任部门为重庆两江新区社会发展局,若您需使用本应用,请拨打联系电话023-67685085。</view>
  6. </view>
  7. </template>
  8. <script>
  9. </script>
  10. <style lang="scss">
  11. .error-page {
  12. background-color: #fff;
  13. height: calc(100vh - 200rpx);
  14. display: flex;
  15. align-items: center;
  16. flex-direction: column;
  17. padding: 190rpx 80rpx 0;
  18. .error-title {
  19. margin: 40rpx 0;
  20. font-size: 16px;
  21. line-height: 22px;
  22. font-weight: 400;
  23. color: #363A44;
  24. }
  25. .error-text {
  26. font-size: 14px;
  27. font-weight: 400;
  28. color: #B9BCBF;
  29. }
  30. }
  31. </style>