noPermission.vue 448 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="no-permission">
  3. <uv-empty icon="https://file-node.oss-cn-shanghai.aliyuncs.com/youji/fa57e25b38c442ebb0ba023cace796bb"
  4. :isImg="true" textSize="14" width="180" text="暂无权限访问">
  5. </uv-empty>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .no-permission {
  20. padding-top: 80rpx;
  21. }
  22. </style>