1234567891011121314151617181920212223242526 |
- <template>
- <view class="no-permission">
- <uv-empty icon="https://file-node.oss-cn-shanghai.aliyuncs.com/youji/fa57e25b38c442ebb0ba023cace796bb"
- :isImg="true" textSize="14" width="180" text="暂无权限访问">
- </uv-empty>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .no-permission {
- padding-top: 80rpx;
- }
- </style>
|