mine.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <route lang="yaml">
  2. layout: tabbar
  3. style:
  4. navigationBarTitleText: 我的
  5. navigationBarBackgroundColor: 'transparent'
  6. </route>
  7. <script lang="ts" setup>
  8. import { desinTopBg } from '@designer-hub/assets/src/svgs'
  9. </script>
  10. <template>
  11. <view class="p-[16px]">
  12. <div class="aspect-[1.575/1] absolute left-0 right-0 top-0">
  13. <wd-img width="100%" height="100%" :src="desinTopBg" custom-class="vertical-top"></wd-img>
  14. </div>
  15. <div
  16. class="bg-white rounded-2xl shadow relative mt-[28px] py-[29px] px-[14px] flex items-center"
  17. >
  18. <div><img class="w-16 h-16 rounded-full" src="https://via.placeholder.com/64x64" /></div>
  19. <div class="ml-[10px]">
  20. <div class="text-black/90 text-lg font-normal font-['PingFang SC'] leading-[10.18px]">
  21. 商家:GELATO
  22. </div>
  23. <div
  24. class="h-6 px-1.5 py-1 bg-[#f5f6fa] rounded justify-center items-center gap-2.5 inline-flex mt-[17px]"
  25. >
  26. <div class="text-[#8b8b8b] text-xs font-normal font-['PingFang SC'] leading-none">
  27. ID:1201451200
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="flex items-center mt-[20px]">
  33. <div class="w-1 h-[19px] bg-[#2357e9] rounded-md"></div>
  34. <div class="text-black text-lg font-normal font-['PingFang SC'] leading-normal ml-[8px]">
  35. 记录
  36. </div>
  37. </div>
  38. <div class="mt-[16px]">
  39. <div class="bg-white rounded-2xl p-[16px] flex flex-col">
  40. <div class="text-black/90 text-sm font-normal font-['PingFang SC'] leading-normal">
  41. 完成时间:2024-10-20 10:00
  42. </div>
  43. <div class="flex mt-[19px] items-center">
  44. <div class="w-[86px] h-[86px] bg-[#f6f6f6] rounded-[10px]"></div>
  45. <div class="ml-[16px]">
  46. <div class="text-black text-base font-normal font-['PingFang SC'] leading-normal">
  47. 阿芙佳朵
  48. </div>
  49. <div
  50. class="text-left text-black/30 text-sm font-normal font-['PingFang SC'] leading-normal"
  51. >
  52. 数量x2
  53. </div>
  54. <div
  55. class="text-left text-black/30 text-sm font-normal font-['PingFang SC'] leading-normal"
  56. >
  57. 600积分
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </view>
  64. </template>
  65. <style lang="scss" scoped></style>