猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
576 B

2 months ago
  1. <template>
  2. <view class="box">
  3. <view class="flex-rowl">
  4. <view class="size-28 color-ffb fw700 tab">
  5. 全部记录
  6. </view>
  7. </view>
  8. <view class="flex-rowc">
  9. <image src="@/static/images/ydd/empy.png" mode="widthFix"></image>
  10. </view>
  11. </view>
  12. <view class="footer" @click="toUp">
  13. 立即上传
  14. </view>
  15. </template>
  16. <script setup>
  17. const toUp = () => {
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .box {
  22. padding: 24rpx;
  23. .tab {
  24. border-bottom: 4rpx solid #FFBF60;
  25. }
  26. }
  27. image {
  28. width: 250rpx;
  29. background-color: #fff;
  30. margin-top: 20vh;
  31. }
  32. </style>