123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="page-empty" :style="{ 'height': height, 'margin-top': marginTop }">
- <u-empty
- text="暂无数据"
- textSize="26rpx"
- width="332rpx"
- height="332rpx"
- mode="order"
- :icon="''"
- ></u-empty>
- </view>
- </template>
- <script setup>
- // 定义组件属性
- const props = defineProps({
- height: {
- type: String,
- default: '100vh'
- },
- marginTop: {
- type: String,
- default: '0px'
- },
- imgBase: {
- type: String,
- default: ''
- }
- })
- </script>
- <style scoped lang="scss">
- .page-empty {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- </style>
|