base-info.vue 632 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="z-paging-wrap">
  3. <z-paging class="" ref="paging" bgColor="#fff" :fixed="false">
  4. <view class="pd-24">
  5. <up-alert type="primary" description="description"></up-alert>
  6. <view>xx</view>
  7. </view>
  8. <template #bottom>
  9. <up-button text="月落" type="primary"></up-button>
  10. </template>
  11. </z-paging>
  12. </view>
  13. </template>
  14. <script setup lang="ts" name="base-info">
  15. </script>
  16. <style lang="scss" scoped>
  17. .z-paging-wrap {
  18. position: absolute;
  19. right: 0;
  20. top: 0;
  21. bottom: 0;
  22. left: 0;
  23. }
  24. </style>