feat: 增加红包
This commit is contained in:
parent
5d94239d51
commit
9ce76d9597
|
@ -622,7 +622,13 @@
|
|||
} else if (entity.channel === 1 && entity.receive_mode === 2) {
|
||||
window.location.replace("./zfb-redPackets.html");
|
||||
} else {
|
||||
window.location.replace("./redPackets.html");
|
||||
// 判断 在那个环境打开 如果是微信 获取openid
|
||||
if (navigator.userAgent.toLowerCase().indexOf('micromessenger') !== -1) {
|
||||
let auth_url = `https://openapi.1688sup.com/wechat/oauth?payment_subject=bale&jump=${location.origin}/redPackets.html`
|
||||
window.location.replace(auth_url);
|
||||
} else {
|
||||
window.location.replace("./redPackets.html");
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -11,8 +11,9 @@
|
|||
<script type="text/javascript" src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/axios.js?v=1367936144322">
|
||||
</script>
|
||||
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/js/api2_0.js?v=1000"></script>
|
||||
<link rel="stylesheet" href="./homepage2_0.css" />
|
||||
|
||||
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/common/modelPop.js"></script>
|
||||
<script src="https://lsxdemall.oss-cn-beijing.aliyuncs.com/MarketingSystem/js/libs.js?v=sdfhksdfklwrwer"></script>
|
||||
<style>
|
||||
* {
|
||||
margin: 0 auto;
|
||||
|
@ -31,6 +32,7 @@
|
|||
font-size: .14rem;
|
||||
}
|
||||
</style>
|
||||
<link rel="stylesheet" href="./homepage2_0.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -120,7 +122,7 @@
|
|||
<script>
|
||||
new Vue({
|
||||
el: "#redPacketsViews",
|
||||
data () {
|
||||
data() {
|
||||
return {
|
||||
promptShow: false,
|
||||
popShow: false,
|
||||
|
@ -131,20 +133,26 @@
|
|||
copyLink: '',
|
||||
goodsInfo: JSON.parse(sessionStorage.getItem('goodsInfo')),
|
||||
backAble: sessionStorage.getItem('goodsCount') > 1,
|
||||
loading: false
|
||||
loading: false,
|
||||
openid: ""
|
||||
};
|
||||
},
|
||||
components: {
|
||||
modelPop
|
||||
},
|
||||
|
||||
mounted () {
|
||||
created() {
|
||||
let openid = getQueryString("openid");
|
||||
if (openid) {
|
||||
this.openid = openid;
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
document.title = localStorage.getItem('title');
|
||||
},
|
||||
|
||||
methods: {
|
||||
/* 立即领取 */
|
||||
receive () {
|
||||
receive() {
|
||||
if (this.loading) return;
|
||||
this.loading = true;
|
||||
let data = {
|
||||
|
@ -176,11 +184,32 @@
|
|||
})
|
||||
.catch((err) => { this.loading = false; });
|
||||
},
|
||||
// 红包 结算
|
||||
publicCollection(order_number) {
|
||||
let params = {
|
||||
order_number,
|
||||
open_id: this.openId,
|
||||
subject: "bale"
|
||||
};
|
||||
req.axiosPost("/wechat/cash/receive", params)
|
||||
.then((res) => {
|
||||
this.loading = false;
|
||||
if (res.code == 200) {
|
||||
this.tip("领取成功", 2, '关闭');
|
||||
this.goodInfo.available = 9;
|
||||
localStorage.setItem('goodInfo', JSON.stringify(this.goodInfo));
|
||||
} else {
|
||||
this.tip(res.message, 2, '关闭');
|
||||
}
|
||||
})
|
||||
.catch((err) => { this.loading = false; });
|
||||
},
|
||||
|
||||
/* 根据环境进行下一步操作 1 支付宝 2 微信 */
|
||||
judgeEnvironment (order_number, weiXinUrl) {
|
||||
judgeEnvironment(order_number, weiXinUrl) {
|
||||
let ua = window.navigator.userAgent.toLowerCase();
|
||||
/* 判断如果是微信/安卓百度浏览器 则复制链接 */
|
||||
|
||||
/* 支付宝:判断如果是微信/安卓百度浏览器 则复制链接 */
|
||||
if (this.goodsInfo.entity.channel === 1) {
|
||||
const aliPaysUrl = `alipays://platformapi/startapp?appId=2021004100663111&page=pages/index/index?order_number=${encodeURIComponent(window.btoa(order_number))}`;
|
||||
if (isWx() || (ua.indexOf("android") > -1 && ua.indexOf("baiduboxapp") > -1) || ua.indexOf("windows") > -1) {
|
||||
|
@ -189,19 +218,23 @@
|
|||
} else {
|
||||
location.replace(aliPaysUrl);
|
||||
}
|
||||
return
|
||||
}
|
||||
/* 微信 */
|
||||
if (this.goodsInfo.entity.channel === 2) {
|
||||
if (ua.indexOf("windows") > -1) {
|
||||
this.copyLink = weiXinUrl;
|
||||
this.tip('请点击下方[复制]按钮,复制链接到浏览器打开!', 1, '点击复制');
|
||||
// 第一步:是否是微信环境 -> 公众号授权
|
||||
if (this.openId && ua.indexOf('micromessenger') !== -1) {
|
||||
this.publicCollection(order_number);
|
||||
} else {
|
||||
location.replace(weiXinUrl);
|
||||
// 第二步:其它环境 微信小程序
|
||||
window.location.replace(weiXinUrl);
|
||||
}
|
||||
return
|
||||
}
|
||||
},
|
||||
|
||||
/* 复制文本 */
|
||||
copyFn () {
|
||||
copyFn() {
|
||||
if (this.popBt === '关闭') {
|
||||
return this.popShow = false;
|
||||
}
|
||||
|
@ -220,7 +253,7 @@
|
|||
},
|
||||
|
||||
/* 触发提示 */
|
||||
tip (text, status, bt) {
|
||||
tip(text, status, bt) {
|
||||
this.popText = text;
|
||||
this.popStatus = status; /*1 成功 2提示 3失败 */
|
||||
this.popBt = bt;
|
||||
|
@ -228,7 +261,7 @@
|
|||
},
|
||||
|
||||
/* 返回 */
|
||||
backGoodsFn () {
|
||||
backGoodsFn() {
|
||||
if (this.backAble) {
|
||||
window.location.replace('./homepage.html');
|
||||
} else {
|
||||
|
@ -237,7 +270,7 @@
|
|||
},
|
||||
|
||||
/* 动态font */
|
||||
fonts () {
|
||||
fonts() {
|
||||
const { cash_amount_type, min_denomination, max_denomination } = this.goodsInfo.entity;
|
||||
const defaultCss = { b: '0.2rem', a: '0.32rem' };
|
||||
if (cash_amount_type === '2') {
|
||||
|
|
Loading…
Reference in New Issue