@@ -0,0 +1,28 @@
+<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>