info.uvue 915 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="flex">
  3. <cl-text :pt="{ className: 'text-lg font-bold mb-3' }"
  4. >Apple/苹果 iPhone 15 (A3092) 128GB 黑色 支持移动联通电信5G 双卡双待手机</cl-text
  5. >
  6. <view class="flex flex-row items-center mb-3 overflow-visible">
  7. <view class="flex flex-row items-end overflow-visible">
  8. <cl-text color="error" :pt="{ className: 'font-bold text-sm' }">¥</cl-text>
  9. <cl-text
  10. type="amount"
  11. :value="8499"
  12. color="error"
  13. :size="44"
  14. currency=""
  15. :pt="{
  16. className: 'font-bold ml-1'
  17. }"
  18. >
  19. </cl-text>
  20. </view>
  21. <cl-text color="info" :pt="{ className: 'text-sm ml-auto' }" rounded
  22. >已售 100 件</cl-text
  23. >
  24. </view>
  25. <view class="flex flex-row mb-3">
  26. <cl-tag type="error" plain>满199减50</cl-tag>
  27. <cl-tag type="error" plain>满299减100</cl-tag>
  28. </view>
  29. </view>
  30. </template>
  31. <script setup lang="ts"></script>