This commit is contained in:
huangjinming 2023-07-15 20:33:02 +08:00
parent ab50d2eba0
commit 8e5e54aa1e
6 changed files with 27 additions and 27 deletions

View File

@ -1,4 +1,4 @@
VUE_APP_BASE_API='https://market.cebg.games'
VUE_APP_BASE_API2='https://invitation.counterfire.games'
//VUE_APP_BASE_API2='http://192.168.100.83:3000/'
VUE_APP_GPAL_API='https://www.counterfire.games'
VUE_APP_GPAL_API='https://gacha.counterfire.games'

View File

@ -1,3 +1,3 @@
VUE_APP_BASE_API='https://market.cebg.games'
VUE_APP_BASE_API2='https://invitation.counterfire.games'
VUE_APP_GPAL_API='https://www.counterfire.games'
VUE_APP_GPAL_API='https://gacha.counterfire.games'

BIN
dist.rar

Binary file not shown.

View File

@ -4,15 +4,15 @@
<meta charset="UTF-8" />
<link rel="icon" href="/logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Counter Fire</title>
<meta property="og:title" content="Counter Fire" />
<title>Gacha</title>
<meta property="og:title" content="Gacha" />
<meta
property="og:description"
content="CounterFire.games | Gacha is blinking! Quest and Rewards.Join Counter Fire and Rise of Gacha. Get your gacha and rewards. A new evolution about Web3Gaming."
content="Gacha.counterFire.games | Gacha is blinking! Quest and Rewards.Join Counter Fire and Rise of Gacha. Get your gacha and rewards. A new evolution about Web3Gaming."
/>
<meta
name="description"
content="CounterFire.games | Gacha is blinking! Quest and Rewards.Join Counter Fire and Rise of Gacha. Get your gacha and rewards. A new evolution about Web3Gaming."
content="Gacha.counterFire.games | Gacha is blinking! Quest and Rewards.Join Counter Fire and Rise of Gacha. Get your gacha and rewards. A new evolution about Web3Gaming."
/>
<meta
name="keywords"
@ -20,17 +20,17 @@
battle royale;token;airdrop;p2e; play to earn, free to play, blockchain game;Arbitrum game;Arbitrum. Cryptocurrency; Cryptoanime gameanime web3 gameTwo-dimensional gameshooting gameAnime shooting mobile game"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.counterfire.games/" />
<meta property="og:url" content="https://gacha.counterfire.games/" />
<meta
property="og:image"
content="https://www.counterfire.games/images/counter.png"
content="https://gacha.counterfire.games/images/counter.png"
/>
<!-- <meta property="og:site_name" content="Counter Fire" /> -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="Counter Fire" />
<meta property="twitter:title" content="Gacha" />
<meta
property="twitter:image"
content="https://www.counterfire.games/images/counter.png"
content="https://gacha.counterfire.games/images/counter.png"
/>
</head>
<script type="module">

View File

@ -805,7 +805,7 @@ const handQuote = () => {
"Adorable! join with me in @_CounterFire,Bring Gacha home with you \nShe will unveil even more rewards as she bursts out of her shell.\n#CounterFire Now available on Google Play,A new evolution about #Web3Gaming";
const url = `https://twitter.com/intent/tweet?text=${encodeURIComponent(
text
)}&url=https://www.counterfire.games/?code=${code}`;
)}&url=https://gacha.counterfire.games/?code=${code}`;
window.open(url, "_blank", "width=500,height=600");
};

View File

@ -7,18 +7,18 @@ const routes = [
component: () =>
import(/* webpackChunkName "index1" */ "@/views/TaskView.vue"),
meta: {
title: "Counter Fire",
canonical: "https://www.counterfire.games",
alternate: "https://m.counterfire.games",
title: "Gacha",
canonical: "https://gacha.counterfire.games",
alternate: "https://m.gacha.counterfire.games",
},
},
{
path: "/quest",
name: "QUEST",
meta: {
title: "Counter Fire Quest",
canonical: "https://www.counterfire.games/quest",
alternate: "https://m.counterfire.games/quest",
title: "Gacha Quest",
canonical: "https://gacha.counterfire.games/quest",
alternate: "https://m.gacha.counterfire.games/quest",
},
component: () =>
import(/* webpackChunkName "marketplace" */ "@/views/TaskView.vue"),
@ -29,18 +29,18 @@ const routes = [
component: () =>
import(/* webpackChunkName "index" */ "@/views/TaskView.vue"),
meta: {
title: "Counter Fire index",
canonical: "https://www.counterfire.games/index.html",
alternate: "https://m.counterfire.games/index.html",
title: "Gacha index",
canonical: "https://gacha.counterfire.games/index.html",
alternate: "https://m.gacha.counterfire.games/index.html",
},
},
{
path: "/undertest",
name: "TaskOne",
meta: {
title: "Counter Fire Undertest",
canonical: "https://www.counterfire.games/undertest",
alternate: "https://m.counterfire.games/undertest",
title: "Gacha Undertest",
canonical: "https://gacha.counterfire.games/undertest",
alternate: "https://m.gacha.counterfire.games/undertest",
},
component: () =>
import(/* webpackChunkName "TaskOne" */ "@/components/task/TaskOne.vue"),
@ -49,9 +49,9 @@ const routes = [
path: "/taskTwo",
name: "TaskTwo",
meta: {
title: "Counter Fire TaskTwo",
canonical: "https://www.counterfire.games/taskTwo",
alternate: "https://m.counterfire.games/taskTwo",
title: "Gacha TaskTwo",
canonical: "https://gacha.counterfire.games/taskTwo",
alternate: "https://m.gacha.counterfire.games/taskTwo",
},
component: () =>
import(/* webpackChunkName "TaskTwo" */ "@/components/task/TaskTwo.vue"),
@ -99,7 +99,7 @@ router.beforeEach((to, from, next) => {
next(); // 如果是 PC 设备,继续导航
} else {
window.location.href = `https://m.counterfire.games${ to.query.code ? '?code=' + to.query.code : ""
window.location.href = `https://m.gacha.counterfire.games${ to.query.code ? '?code=' + to.query.code : ""
}`;
}
});