|
@@ -409,7 +409,7 @@ Vue.component('keep-component', {
|
|
|
shoucang: type
|
|
|
}))
|
|
|
try {
|
|
|
- if (SuperSearch && typeof SuperSearch.setSessionStorage === 'function') {
|
|
|
+ if (utils.isWeiXinBrowser && SuperSearch && typeof SuperSearch.setSessionStorage === 'function') {
|
|
|
SuperSearch.setSessionStorage();
|
|
|
}
|
|
|
} catch (e) {
|
|
@@ -556,9 +556,7 @@ function checkBackSuccess () {
|
|
|
}
|
|
|
}
|
|
|
if (sessionData.type === 'article_original') {
|
|
|
- if (utils.isWeiXinBrowser) {
|
|
|
- location.href = sessionData.url
|
|
|
- } else {
|
|
|
+ if (!utils.isWeiXinBrowser) {
|
|
|
JyObj.openExternalLink(sessionData.url,"查看原文");
|
|
|
}
|
|
|
}
|
|
@@ -567,5 +565,5 @@ function checkBackSuccess () {
|
|
|
sessionStorage.removeItem('salesBackData')
|
|
|
}
|
|
|
$(function () {
|
|
|
- checkBackSuccess()
|
|
|
+ checkBackSuccess()
|
|
|
})
|