调整返回上一页地址
This commit is contained in:
parent
431fec2942
commit
ee2009702c
|
@ -179,7 +179,7 @@
|
||||||
if(goodsCount>1){
|
if(goodsCount>1){
|
||||||
window.location.replace(document.referrer);
|
window.location.replace(document.referrer);
|
||||||
}else{
|
}else{
|
||||||
window.history.go(-2);
|
history.go(-2);
|
||||||
}
|
}
|
||||||
// window.location.replace(document.referrer);
|
// window.location.replace(document.referrer);
|
||||||
},
|
},
|
||||||
|
@ -300,7 +300,10 @@
|
||||||
window.location.replace(document.referrer);
|
window.location.replace(document.referrer);
|
||||||
}, 3000);
|
}, 3000);
|
||||||
}else{
|
}else{
|
||||||
window.history.go(-2);
|
let backUrl=window.history.length;
|
||||||
|
if(backUrl){
|
||||||
|
history.go(-backUrl+1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -254,9 +254,11 @@
|
||||||
this.gstatus = item.available;
|
this.gstatus = item.available;
|
||||||
},
|
},
|
||||||
backgoodsFn() {
|
backgoodsFn() {
|
||||||
window.history.back();
|
let backUrl=window.history.length;
|
||||||
|
if(window.history.length){
|
||||||
|
history.go(-backUrl+1);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
// 单条弹框
|
// 单条弹框
|
||||||
openDialog() {
|
openDialog() {
|
||||||
this.promtshow = true;
|
this.promtshow = true;
|
||||||
|
@ -274,7 +276,6 @@
|
||||||
"last_product_id": sessionStorage.getItem('lastid') | 0,
|
"last_product_id": sessionStorage.getItem('lastid') | 0,
|
||||||
}
|
}
|
||||||
if (showType == 1) { //白名单
|
if (showType == 1) { //白名单
|
||||||
|
|
||||||
let tokenList = JSON.parse(sessionStorage.getItem('getTokenList'));
|
let tokenList = JSON.parse(sessionStorage.getItem('getTokenList'));
|
||||||
let goodsList = [];
|
let goodsList = [];
|
||||||
for (item of tokenList) {
|
for (item of tokenList) {
|
||||||
|
|
|
@ -138,7 +138,6 @@
|
||||||
if(linkId.length>10){
|
if(linkId.length>10){
|
||||||
req.axiosGetplan('/plan/plan_theme/' + linkId).then(res => {
|
req.axiosGetplan('/plan/plan_theme/' + linkId).then(res => {
|
||||||
if(res.code==200){
|
if(res.code==200){
|
||||||
console.log('开始跳转');
|
|
||||||
window.location.href=res.data;
|
window.location.href=res.data;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -176,7 +175,6 @@
|
||||||
self.maskshow = true;
|
self.maskshow = true;
|
||||||
self.tiptext = res.message;
|
self.tiptext = res.message;
|
||||||
self.popboxshow = true;
|
self.popboxshow = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
self.maskshow = true;
|
self.maskshow = true;
|
||||||
|
|
Loading…
Reference in New Issue