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

1 month ago
4 weeks ago
1 month ago
4 weeks ago
1 month ago
4 weeks ago
1 month ago
4 weeks ago
1 month 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.userImage" shape="circle"></up-image>
  6. <text class="ml20">{{ item.userName }}</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.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>