|
@@ -9,7 +9,7 @@
|
|
|
<van-row>3.将截图发送至<span style="color: #F4A460"> 深大换换 </span>公众号后台,才可获得本次活动的【匹配资格】和【抽奖机会】</van-row>
|
|
|
</div>
|
|
|
<div style="position: relative;">
|
|
|
- <img :src="share[i]" style="max-width: 80%; position: relative;"/>
|
|
|
+ <img :src="isWX ? share_http[i] : share[i]" style="max-width: 80%; position: relative;"/>
|
|
|
</div>
|
|
|
<a :href="share[i]" download="post">
|
|
|
<van-button size="large" type="primary" @click="savePic">保存</van-button>
|
|
@@ -52,7 +52,7 @@
|
|
|
data() {
|
|
|
return {
|
|
|
note: {
|
|
|
- backgroundImage: "url(" + require("../assets/prize_background.jpg") + ")",
|
|
|
+ backgroundImage: "url('http://pjczv6ygf.bkt.clouddn.com/share_background.jpg')",
|
|
|
},
|
|
|
transparent: {
|
|
|
backgroundColor: "rgba(50,50,50,0.7)",
|
|
@@ -64,7 +64,14 @@
|
|
|
require('../assets/posts/3.png'),
|
|
|
require('../assets/posts/4.png'),
|
|
|
],
|
|
|
- i: 0
|
|
|
+ share_http: [
|
|
|
+ "http://pjczv6ygf.bkt.clouddn.com/1.png",
|
|
|
+ "http://pjczv6ygf.bkt.clouddn.com/2.png",
|
|
|
+ "http://pjczv6ygf.bkt.clouddn.com/3.png",
|
|
|
+ "http://pjczv6ygf.bkt.clouddn.com/4.png",
|
|
|
+ ],
|
|
|
+ i: 0,
|
|
|
+ isWX: false
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
@@ -89,6 +96,7 @@
|
|
|
}
|
|
|
this.i = Math.ceil(Math.random() * 4) - 1;
|
|
|
console.log(this.i);
|
|
|
+ if (isWeiXin()) this.isWX = true;
|
|
|
|
|
|
BasicFunction.getSigned(['onMenuShareTimeline', 'onMenuShareAppMessage',], function () {
|
|
|
wx.ready(function () { //需在用户可能点击分享按钮前就先调用
|
|
@@ -128,7 +136,6 @@
|
|
|
Toast({
|
|
|
message: "分享失败,您取消了分享!"
|
|
|
});
|
|
|
-
|
|
|
}
|
|
|
})
|
|
|
});
|
|
@@ -163,11 +170,11 @@
|
|
|
text-align: left;
|
|
|
}
|
|
|
h3{
|
|
|
- font-size: 22px;
|
|
|
+ font-size: 20px;
|
|
|
}
|
|
|
|
|
|
.van-row {
|
|
|
- font-size: 17px;
|
|
|
+ font-size: 15px;
|
|
|
color: white;
|
|
|
}
|
|
|
</style>
|