🦀️ fix: 修复bug

This commit is contained in:
wangsongsole 2024-04-11 14:35:12 +08:00
parent b073b6e0f1
commit d931085bee
1 changed files with 14 additions and 13 deletions

View File

@ -136,7 +136,7 @@
let goodsDetail = null, goodsCount = null; let goodsDetail = null, goodsCount = null;
new Vue({ new Vue({
el: "#reduce", el: "#reduce",
data() { data () {
return { return {
plaflam: 1, //支付宝 plaflam: 1, //支付宝
promtshow: false, promtshow: false,
@ -163,7 +163,7 @@
5、使用立减金的微信支付订单如发生全额退款且立减金仍在有效期内立减金将自动退还给用户如立减金已过期则不退还给用户如发生部分退款用户支付金额将按比例原路退还立减金将不退还给用户<br />`, 5、使用立减金的微信支付订单如发生全额退款且立减金仍在有效期内立减金将自动退还给用户如立减金已过期则不退还给用户如发生部分退款用户支付金额将按比例原路退还立减金将不退还给用户<br />`,
}; };
}, },
created() { created () {
document.title = localStorage.getItem('title'); document.title = localStorage.getItem('title');
/* 获取立减金信息*/ /* 获取立减金信息*/
goodsDetail = JSON.parse(sessionStorage.getItem("goodsInfo")); goodsDetail = JSON.parse(sessionStorage.getItem("goodsInfo"));
@ -199,21 +199,21 @@
} }
}, },
filters: { filters: {
cardType(val) { cardType (val) {
return val.map((item) => { return val.map((item) => {
return item == 1 ? "借记卡" : "信用卡" + " "; return item == 1 ? "借记卡" : "信用卡" + " ";
}).join(" "); }).join(" ");
}, },
}, },
methods: { methods: {
backgoodsFn() { backgoodsFn () {
if (goodsCount > 1) { if (goodsCount > 1) {
window.location.replace('./homepage.html'); window.location.replace('./homepage.html');
} else { } else {
history.go(-2); history.go(-2);
} }
}, },
receiveFn() { receiveFn () {
if (this.loading) return; if (this.loading) return;
this.loading = true; this.loading = true;
let self = this; let self = this;
@ -230,7 +230,6 @@
}; };
req.axiosPost("/key/usage", data) req.axiosPost("/key/usage", data)
.then((res) => { .then((res) => {
this.loading = false;
if (res.code == 200) { if (res.code == 200) {
sessionStorage.setItem("lastid", self.goodInfo.product_id); sessionStorage.setItem("lastid", self.goodInfo.product_id);
this.orderId = res.data.order_number; this.orderId = res.data.order_number;
@ -248,6 +247,7 @@
if (this.goodInfo.entity.is_webview == 1) { if (this.goodInfo.entity.is_webview == 1) {
this.publicCollection(res.data.order_number); this.publicCollection(res.data.order_number);
} else { } else {
this.loading = false;
//唤起微信福利官小程序 //唤起微信福利官小程序
window.location.replace(res.data.redirect_url); window.location.replace(res.data.redirect_url);
} }
@ -272,7 +272,7 @@
}, },
/* 公众号领取 */ /* 公众号领取 */
publicCollection(order_number) { publicCollection (order_number) {
let params = { let params = {
order_number, order_number,
channel: 2, channel: 2,
@ -281,6 +281,7 @@
}; };
req.axiosPost("/voucher/grant", params) req.axiosPost("/voucher/grant", params)
.then((res) => { .then((res) => {
this.loading = false;
if (res.code == 200) { if (res.code == 200) {
this.openErrorDialog('领取成功'); this.openErrorDialog('领取成功');
this.goodInfo.available = 9; this.goodInfo.available = 9;
@ -294,7 +295,7 @@
}, },
toLinkAlipay() { toLinkAlipay () {
//支付宝H5跳转 //支付宝H5跳转
let self = this; let self = this;
let banklink = encodeURIComponent( let banklink = encodeURIComponent(
@ -314,18 +315,18 @@
} }
}, },
//错误弹出框关闭 //错误弹出框关闭
knowFn() { knowFn () {
this.popboxshow = false; this.popboxshow = false;
this.maskshow = false; this.maskshow = false;
}, },
//错误弹出框 //错误弹出框
openErrorDialog(tip) { openErrorDialog (tip) {
this.maskshow = true; this.maskshow = true;
this.tiptext = tip; this.tiptext = tip;
this.popboxshow = true; this.popboxshow = true;
}, },
// 单条弹框 // 单条弹框
openDialog(tip) { openDialog (tip) {
this.promtshow = true; this.promtshow = true;
this.promttip = tip; this.promttip = tip;
setTimeout(() => { setTimeout(() => {
@ -335,7 +336,7 @@
}, },
/* 动态font */ /* 动态font */
fonts() { fonts () {
const defaultCss = '0.32rem'; const defaultCss = '0.32rem';
const count = String(parseFloat(this.reduceInfo.reduce_amount)).length + 1; const count = String(parseFloat(this.reduceInfo.reduce_amount)).length + 1;
if (count > 4) { if (count > 4) {
@ -346,7 +347,7 @@
}, },
//复制文本 //复制文本
copyFn() { copyFn () {
var textArea = document.createElement("textarea"); var textArea = document.createElement("textarea");
textArea.value = this.copyLink; textArea.value = this.copyLink;
document.body.appendChild(textArea); document.body.appendChild(textArea);