猫妈狗爸伴宠师小程序前端代码
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.

30 lines
923 B

4 months ago
  1. <template>
  2. <view class="no-order">
  3. <view class="no-order-list mt20" v-for="item in list" :key="item.id">
  4. <view class="no-order-image flex-rowl">
  5. <up-image width="80rpx" height="80rpx" :src="item.imageUrl" shape="circle"></up-image>
  6. <text class="ml20">{{item.name}}</text>
  7. </view>
  8. <up-line color="#C7C7C7"></up-line>
  9. <view class="no-order-time flex-b size-26 color-999">
  10. <view class="">
  11. 注册时间
  12. </view>
  13. <view class="">
  14. {{item.time}}
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script setup>
  21. import { ref,reactive } from "vue"
  22. const list = reactive([
  23. {id:'001',imageUrl:'https://cdn.uviewui.com/uview/album/1.jpg', name: '猫小咪',time:'2024-11-01 18:12:16' },
  24. {id:'002',imageUrl:'https://cdn.uviewui.com/uview/album/1.jpg', name: '猫小咪',time:'2024-11-01 18:12:16' },
  25. ]);
  26. </script>
  27. <style scoped lang="scss">
  28. @import "../index";
  29. </style>