goodsDetails.vue 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <view>
  3. <navigation-bar background-color="#fff" front-color="#000000" />
  4. <u-image width="100%" height="300rpx" :src="goods.goodsImg"></u-image>
  5. <view class="title">
  6. {{goods.goodsName}}
  7. </view>
  8. <view class="footer">
  9. <u-button class="custom-style" type="warning">加入购物车</u-button>
  10. <u-button class="custom-style" type="error">立即购买</u-button>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. id: '',
  19. goods: {}
  20. }
  21. },
  22. onLoad(option) {
  23. this.id = option.id
  24. this.getGoodsDetails()
  25. },
  26. methods: {
  27. getGoodsDetails() {
  28. let params = {
  29. id: this.id
  30. }
  31. this.$api.getGoodsDetails(params).then(res => {
  32. this.goods = res.data
  33. })
  34. }
  35. }
  36. }
  37. </script>
  38. <style lang="scss">
  39. page {
  40. padding: 0;
  41. }
  42. .title {
  43. margin: 10rpx;
  44. font-size: 40rpx;
  45. }
  46. .custom-style {
  47. width: 400rpx;
  48. height: 100rpx;
  49. font-size: 30rpx;
  50. }
  51. .footer {
  52. display: flex;
  53. position: absolute;
  54. bottom: 1rpx;
  55. }
  56. </style>