修改转发文案,修改任务状态

This commit is contained in:
yuyongdong 2024-04-16 19:52:11 +08:00
parent 6faa71cba5
commit cbc52879f5
4 changed files with 20 additions and 16 deletions

View File

@ -7,17 +7,17 @@
<meta name="referrer" content="no-referrer"> <meta name="referrer" content="no-referrer">
<link rel="icon" href="/logo.png"> <link rel="icon" href="/logo.png">
<title>Hill's Treasure Hunt</title> <title>Hill's Treasure Hunt</title>
<meta
name="description"
content="Explore to get chests, boost to full power!"
/>
<meta <meta
property="og:image" property="og:image"
content="https://mint.counterfire.games/mint.png" content="https://mint.counterfire.games/mint.png"
/> />
<meta
name="description"
content="Heroes Assemble: MOBA Battles Beyond Imagination"
/>
<meta <meta
property="twitter:image" property="twitter:image"
content="https://gacha.counterfire.games/images/counter.png" content="https://pbs.twimg.com/media/GLITHinbUAA1N8p?format=jpg&name=large"
/> />
</head> </head>
<body> <body>

View File

@ -52,11 +52,11 @@ export default {
name: "OKXwallet", name: "OKXwallet",
value: "okxwallet", value: "okxwallet",
imgUrl: require("./../../assets/home/icon_OKXwallet.png") imgUrl: require("./../../assets/home/icon_OKXwallet.png")
}, // },
{ // {
name: "WalletConnect", // name: "WalletConnect",
value: "connect", // value: "connect",
imgUrl: require("./../../assets/home/icon_ConnectWallet.png") // imgUrl: require("./../../assets/home/icon_ConnectWallet.png")
} }
], ],
isWallet: !!localStorage.getItem('walletName'), isWallet: !!localStorage.getItem('walletName'),
@ -220,7 +220,7 @@ div {
// border: 2px solid #d5befa; // border: 2px solid #d5befa;
} }
} }
li:nth-child(4) { li:nth-child(3) {
padding-left: 0; padding-left: 0;
background: url('@/assets/common/disconnect.png') no-repeat; background: url('@/assets/common/disconnect.png') no-repeat;
background-size: 100% 100%; background-size: 100% 100%;

View File

@ -834,11 +834,15 @@ export default {
await this.loginTwitter(data.id); await this.loginTwitter(data.id);
} else if(data.task == "TwitterFollow") { } else if(data.task == "TwitterFollow") {
followTwitter(data.cfg.account) followTwitter(data.cfg.account)
} else if(data.task == "TwitterLike") {
window.open(`'https://twitter.com/intent/like?tweet_id='+${'1779507826714681538'}`, '_blank');
} else if(data.task == "TwitterTweet") {
followTwitter(data.cfg.content)
} else if(data.task == "TwitterRetweet") { } else if(data.task == "TwitterRetweet") {
retweetTwitter(data.cfg.content) window.open(`'https://twitter.com/intent/retweet?tweet_id='+${'1779507826714681538'}`, '_blank');
} else if(data.task == "DiscordJoin") { } else if(data.task == "DiscordJoin") {
joinDiscord(data.cfg.account) joinDiscord(data.cfg.account)
} if (data.task == "DiscordConnect") { } else if (data.task == "DiscordConnect") {
this.loginDiscord() this.loginDiscord()
} }
}, },
@ -1020,9 +1024,9 @@ export default {
this.awardData = val this.awardData = val
this.eventName = 'help_event' this.eventName = 'help_event'
this.dialogTitle = 'Congratulations' this.dialogTitle = 'Congratulations'
if(this.filteredBar == 100) { // if(this.filteredBar == 100) {
this.getGameStat() this.getGameStat()
} // }
this.getUserState() this.getUserState()
this.$refs.rankingData.renewData() this.$refs.rankingData.renewData()
this.ExploreDialogVisible = true this.ExploreDialogVisible = true

View File

@ -208,7 +208,7 @@ export default {
myScoreTotal: 0, myScoreTotal: 0,
myRankTotal: '-', myRankTotal: '-',
historyDialogVisible: false, historyDialogVisible: false,
logPageSize: 6, logPageSize: 8,
logCurrentPage: 1, logCurrentPage: 1,
} }
}, },