修改数量不显示判断、更换教程地址

This commit is contained in:
yuyongdong 2024-06-27 21:51:46 +08:00
parent 4e8a87051e
commit 928c69540d
3 changed files with 19 additions and 4 deletions

14
.env.text.production Normal file
View File

@ -0,0 +1,14 @@
VITE_BASE_API='https://oauth-svr.cebggame.com/mint'
VUE_APP_GPAL_API='http://192.168.100.83:4000/sns'
VITE_GPAL_ROUTER='https://vlpwkzon-testflight.counterfire.games'
VITE_TOKENID_ID='0x343b'
VITE_NET_ID='13371'
VITE_ERC_ADDRESS='0x52A6c53869Ce09a731CD772f245b97A4401d3348'
VITE_CFNFT_ADDRESS='0x3A85cA6615953c683826FBe54fA5e2a770ee8bA2'
VITE_CLAIMWL_ADDRESS='0xc7de4C8f802e29B21C21379eD3190Cc0c36C0c28'
VITE_PASSPORT_PUBLISHABLE_KEY=pk_imapik-tU10buLqoyLZ0o54rcub
VITE_PASSPORT_CLIENT_ID=tTB5eEedqDOHPHMI41sRDGmqAQwus9oE
VITE_PRODUCTION=production
VITE_RPC_API='https://rpc.immutable.com/'
VITE_HX_API='https://explorer.immutable.com/tx/'
VITE_MKT_API='https://market-api.counterfire.games'

View File

@ -8,6 +8,7 @@
"dev": "vite --host --mode development", "dev": "vite --host --mode development",
"build": "vite build --mode development", "build": "vite build --mode development",
"build:prod": "vite build --mode production", "build:prod": "vite build --mode production",
"build:text": "vite build --mode text.production",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {

View File

@ -100,7 +100,7 @@
<!-- <p>-Pepare ETH on Immutable zkEVM for minting.</p> --> <!-- <p>-Pepare ETH on Immutable zkEVM for minting.</p> -->
</div> </div>
<div class="base-btn"> <div class="base-btn">
<a href="https://www.immutable.com/blog/how-to-get-imx-on-immutable-zkevm" target="_blank">Learn More</a> <a href="https://docs.google.com/document/d/1zixgbf60Fq4-wL_1xEpgaVzShWVa0XDjkCa65LzJzew/edit" target="_blank">Learn More</a>
</div> </div>
</div> </div>
<!-- <div class="explore-download"> <!-- <div class="explore-download">
@ -153,7 +153,7 @@
<div class="join-list-top"> <div class="join-list-top">
<div class="claim-period"> <div class="claim-period">
<div v-if="isOpenClaim < 3" class="claim-total"> <div v-if="isOpenClaim < 3" class="claim-total">
<h1 v-if="totalLimit > 0">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1> <h1 v-if="totalLimit >= 0">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1>
<!-- <h1 v-else>{{getMintConfig.maxSupply}}</h1> --> <!-- <h1 v-else>{{getMintConfig.maxSupply}}</h1> -->
<div>Supply</div> <div>Supply</div>
</div> </div>
@ -211,7 +211,7 @@
<div class="join-list-top"> <div class="join-list-top">
<div class="claim-period"> <div class="claim-period">
<div v-if="isOpenClaim < 3" class="claim-total"> <div v-if="isOpenClaim < 3" class="claim-total">
<h1 v-if="totalLimit > 0 || getMintConfig">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1> <h1 v-if="totalLimit >= 0 || getMintConfig">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1>
<!-- <h1 v-else>{{getMintConfig.maxSupply}}</h1> --> <!-- <h1 v-else>{{getMintConfig.maxSupply}}</h1> -->
<div>Supply</div> <div>Supply</div>
</div> </div>
@ -400,7 +400,7 @@
<div class="join-list-top"> <div class="join-list-top">
<div class="claim-period"> <div class="claim-period">
<div class="claim-total"> <div class="claim-total">
<h1 v-if="totalLimit > 0 || getMintConfig">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1> <h1 v-if="totalLimit >= 0 || getMintConfig">{{ totalLimit+500 }}/{{getMintConfig.maxSupply}}</h1>
<div>Supply</div> <div>Supply</div>
</div> </div>
</div> </div>