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

40 lines
1.0 KiB

3 months ago
1 month ago
3 months ago
2 months ago
3 months ago
2 months ago
2 months ago
3 months ago
2 months ago
3 months ago
2 months ago
3 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="https://image.hhlm1688.com/2025/03/287ecbed1d50a141759103f1d776ca063eGroup 213084@2x.png" shape="circle"></up-image>
  6. <text class="ml20">{{ item.nickname }}</text>
  7. </view>
  8. <up-line color="#C7C7C7"></up-line>
  9. <view class="no-order-time flex-b size-26 color-999">
  10. <view >
  11. 注册时间
  12. </view>
  13. <view >
  14. {{ item.createTime }}
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. list: {
  24. type: Array,
  25. default: () => []
  26. }
  27. },
  28. data() {
  29. }
  30. }
  31. // const list = reactive([
  32. // {id:'001',imageUrl:'https://cdn.uviewui.com/uview/album/1.jpg', name: '猫小咪',time:'2024-11-01 18:12:16' },
  33. // {id:'002',imageUrl:'https://cdn.uviewui.com/uview/album/1.jpg', name: '猫小咪',time:'2024-11-01 18:12:16' },
  34. // ]);
  35. </script>
  36. <style scoped lang="scss">
  37. @import "../index";
  38. </style>