info.uvue 874 B

12345678910111213141516171819202122232425262728293031323334
  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">
  7. <view class="flex flex-row items-end">
  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. currency=""
  14. :pt="{
  15. className: 'font-bold ml-1 text-2xl'
  16. }"
  17. >
  18. </cl-text>
  19. </view>
  20. <cl-text color="info" :pt="{ className: 'text-sm ml-auto' }" rounded
  21. >已售 100 件</cl-text
  22. >
  23. </view>
  24. <view class="flex flex-row mb-3">
  25. <cl-tag type="error" plain>满199减50</cl-tag>
  26. <cl-tag type="error" plain>满299减100</cl-tag>
  27. </view>
  28. </view>
  29. </template>
  30. <script setup lang="ts"></script>