|
@@ -149,16 +149,15 @@ export default {
|
|
|
setTimeout(() => {
|
|
|
this.checkInstall()
|
|
|
.then(() => {
|
|
|
- console.log(this.detail, 'detail');
|
|
|
if (this.detail.srcContentId && this.detail.postUserInfo && this.detail.postUserInfo.nickName) {
|
|
|
let url = `https://twitter.com/${this.detail.postUserInfo.nickName}/status/${this.detail.srcContentId}`;
|
|
|
- window.open(url);
|
|
|
+ window.location.replace(url);
|
|
|
}
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.setTreasureInfo();
|
|
|
});
|
|
|
- }, 600);
|
|
|
+ }, 1000);
|
|
|
this.checkBrowser();
|
|
|
this.isLoading = false;
|
|
|
|