two.vue 760 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view>
  3. <view class="shopping">
  4. <view class="shopping_left">
  5. <view class="img">
  6. <image src="../../static/img/yuan.png" mode="widthFix" style="width: 160rpx;height: 130rpx;"></image>
  7. </view>
  8. <view class="title">
  9. <text>大卫博士健康内裤(精装版)</text>
  10. <text>3条装</text>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. onLoad:function(option){
  23. uni.setNavigationBarTitle({
  24.   title: option.num
  25. })
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. page {
  33. padding: 24rpx;
  34. background-color: #f5f5f5;
  35. .shopping {
  36. height: 178rpx;
  37. background: #FFFFFF;
  38. border-radius: 16rpx;
  39. }
  40. }
  41. </style>