12345678910111213141516171819202122232425262728 |
- <template>
- <view class="detail">
- <image :src="productInfo.adsImage" mode="widthFix"></image>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
- productInfo:''
- }
- },
- onLoad(option) {
- this.productInfo = option.detail
- console.log(option)
- }
- }
- </script>
- <style lang="scss">
- .detail{
- width: 750rpx;
- image{
- width: 750px;
- }
- }
- </style>
|