procurement_good.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view class="pro-good">
  3. <view class="img">
  4. <image src="" mode="aspectFill" style="width: 100%;height: 100%;"></image>
  5. </view>
  6. <view class="pro-content">
  7. <view class="pro-title">
  8. 法国曼丽菲戈动能素抗
  9. 衰DERMABOOSTER
  10. </view>
  11. <view class="pro-price">
  12. ¥19800.00
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. storeInfo: {
  21. type: Object,
  22. default: () => {}
  23. }
  24. },
  25. data() {
  26. return {
  27. }
  28. },
  29. methods: {}
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. .pro-good {
  34. width: 339rpx;
  35. height: 518rpx;
  36. border-radius: 8rpx;
  37. background-color: #fff;
  38. overflow: hidden;
  39. margin-bottom: 24rpx;
  40. }
  41. .img {
  42. width: 339rpx;
  43. height: 339rpx;
  44. border: 1px dotted;
  45. box-sizing: border-box;
  46. }
  47. .pro-content {
  48. padding: 14rpx 24rpx 20rpx 24rpx;
  49. display: flex;
  50. justify-content: space-between;
  51. align-items: center;
  52. flex-direction: column;
  53. height: 179rpx;
  54. box-sizing: border-box;
  55. background-color: #fff;
  56. }
  57. .pro-title {
  58. color: #333333;
  59. font-size: 28rpx;
  60. width: 100%;
  61. }
  62. .pro-price {
  63. width: 100%;
  64. color: #F85050;
  65. font-size: 28rpx;
  66. }
  67. </style>