| 12345678910111213141516171819202122232425 |
- <template>
- <view class="z-paging-wrap">
- <z-paging class="" ref="paging" bgColor="#fff" :fixed="false">
- <view class="pd-24">
- <up-alert type="primary" description="description"></up-alert>
- <view>xx</view>
- </view>
- <template #bottom>
- <up-button text="月落" type="primary"></up-button>
- </template>
- </z-paging>
- </view>
- </template>
- <script setup lang="ts" name="base-info">
- </script>
- <style lang="scss" scoped>
- .z-paging-wrap {
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- left: 0;
- }
- </style>
|