|
@@ -26,6 +26,7 @@
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class="coupon-wrap"
|
|
class="coupon-wrap"
|
|
|
|
+ @click="jumpShops"
|
|
v-if="couponInfo.fav > 0">
|
|
v-if="couponInfo.fav > 0">
|
|
<div>
|
|
<div>
|
|
<p class="amount">{{ couponInfo.fav }}元优惠券</p>
|
|
<p class="amount">{{ couponInfo.fav }}元优惠券</p>
|
|
@@ -49,27 +50,37 @@
|
|
</div>
|
|
</div>
|
|
<!--底部按钮-->
|
|
<!--底部按钮-->
|
|
<div class="footer">
|
|
<div class="footer">
|
|
- <a href="javascript:;">
|
|
|
|
|
|
+ <a
|
|
|
|
+ href="javascript:;"
|
|
|
|
+ @click="showShareTip">
|
|
<span>分享赚</span>
|
|
<span>分享赚</span>
|
|
<span>¥{{ goodsInfo.commission }}</span>
|
|
<span>¥{{ goodsInfo.commission }}</span>
|
|
</a>
|
|
</a>
|
|
- <a href="javascript:;">
|
|
|
|
|
|
+ <a
|
|
|
|
+ href="javascript:;"
|
|
|
|
+ @click="jumpShops">
|
|
<span>自购省</span>
|
|
<span>自购省</span>
|
|
<span>券¥{{ couponInfo.fav }} + ¥{{ goodsInfo.commission }}</span>
|
|
<span>券¥{{ couponInfo.fav }} + ¥{{ goodsInfo.commission }}</span>
|
|
</a>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
+ <ShareTipInWechat
|
|
|
|
+ ref="fbtShareTipInWechat"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import funWxShare from '@/utils/wxShare0.0'
|
|
import Banner from './child/banner'
|
|
import Banner from './child/banner'
|
|
|
|
+import ShareTipInWechat from '../../common/shareTipInWechat'
|
|
import { Button, Toast } from 'vant'
|
|
import { Button, Toast } from 'vant'
|
|
import { apiGoodsDetail } from './api/api'
|
|
import { apiGoodsDetail } from './api/api'
|
|
|
|
+import { platform } from '../../../utils/platform'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'index',
|
|
name: 'index',
|
|
components: {
|
|
components: {
|
|
Banner,
|
|
Banner,
|
|
|
|
+ ShareTipInWechat,
|
|
'van-button': Button
|
|
'van-button': Button
|
|
},
|
|
},
|
|
props: {
|
|
props: {
|
|
@@ -98,6 +109,7 @@ export default {
|
|
try {
|
|
try {
|
|
const { status, data, msg } = await apiGoodsDetail(this.source, this.goodsId)
|
|
const { status, data, msg } = await apiGoodsDetail(this.source, this.goodsId)
|
|
if (status) {
|
|
if (status) {
|
|
|
|
+ let coverImg = ''
|
|
this.goodsInfo = data
|
|
this.goodsInfo = data
|
|
this.couponInfo = data.coupon_info
|
|
this.couponInfo = data.coupon_info
|
|
if (Array.isArray(data.goods_carousel_pictures)) {
|
|
if (Array.isArray(data.goods_carousel_pictures)) {
|
|
@@ -106,10 +118,30 @@ export default {
|
|
if (Array.isArray(data.goods_detail_pictures)) {
|
|
if (Array.isArray(data.goods_detail_pictures)) {
|
|
this.goodsDetailPictures = data.goods_detail_pictures
|
|
this.goodsDetailPictures = data.goods_detail_pictures
|
|
}
|
|
}
|
|
|
|
+ if (this.goodsCarouselPictures.length) {
|
|
|
|
+ coverImg = this.goodsCarouselPictures[0]
|
|
|
|
+ } else if (this.goodsDetailPictures.length) {
|
|
|
|
+ coverImg = this.goodsDetailPictures[0]
|
|
|
|
+ }
|
|
|
|
+ platform.isWeixin && funWxShare('返不停', data.goods_name, coverImg, data.url)
|
|
} else {
|
|
} else {
|
|
Toast(msg)
|
|
Toast(msg)
|
|
}
|
|
}
|
|
} catch (e) {}
|
|
} catch (e) {}
|
|
|
|
+ },
|
|
|
|
+ showShareTip () {
|
|
|
|
+ if (!(Object.keys(this.goodsInfo).length)) {
|
|
|
|
+ Toast('数据加载中,稍后重试')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ this.$refs.fbtShareTipInWechat.init()
|
|
|
|
+ },
|
|
|
|
+ jumpShops () {
|
|
|
|
+ if (!(Object.keys(this.goodsInfo).length)) {
|
|
|
|
+ Toast('数据加载中,稍后重试')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ top.location.href = this.goodsInfo.url
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|