activity-detail.vue 373 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view class="detail">
  3. <image :src="productInfo.adsImage" mode="widthFix"></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default{
  8. data(){
  9. return{
  10. productInfo:''
  11. }
  12. },
  13. onLoad(option) {
  14. this.productInfo = option.detail
  15. console.log(option)
  16. }
  17. }
  18. </script>
  19. <style lang="scss">
  20. .detail{
  21. width: 750rpx;
  22. image{
  23. width: 750px;
  24. }
  25. }
  26. </style>