no_permission.vue 579 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <base-page>
  3. <view class="uni-flex uni-row height-all">
  4. <view class="container common-wrap" style="-webkit-flex: 1;flex: 1;"><view class="msg">对不起,您没有权限访问该页面</view></view>
  5. </view>
  6. </base-page>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {};
  12. },
  13. onLoad() {
  14. uni.hideTabBar({});
  15. },
  16. methods: {}
  17. };
  18. </script>
  19. <style lang="scss" scoped>
  20. .container {
  21. display: flex;
  22. align-items: center;
  23. justify-content: center;
  24. flex-direction: column;
  25. background: #fff;
  26. .msg {
  27. color: #333;
  28. font-size: 0.16rem;
  29. }
  30. }
  31. </style>