Merge branch 'new-CounterFire-0704' of http://git.kingsome.cn/huangjinming/CounterFireGames into cec-claim

This commit is contained in:
yuyongdong 2024-08-26 17:41:20 +08:00
commit e0d55b22ff
11 changed files with 83 additions and 14 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 867 B

After

Width:  |  Height:  |  Size: 867 B

View File

@ -21,13 +21,17 @@
<img :src="icon" alt="">
</div>
</div>
<div class="link-below" @click="mintHero()">
<div class="link-below" v-if="nftData.on_lock == '1'" @click="mintHero()">
<img src="@/assets/img/marketplace/Off-Chain.png" alt="">
</div>
<div class="link-below" v-else>
<img src="@/assets/img/marketplace/Off-Chain.png" alt="">
</div>
</div>
</div>
<div class="card-btn">
<div class="card-sell" v-if="nftData.on_sale == 0" @click="mintHero()">Mint</div>
<div class="card-sell" v-if="nftData.on_lock == '1'" @click="mintHero()">Mint</div>
<div class="card-cancel" v-else >Unlock</div>
</div>
<SellDialog :sellDialogVisible="sellDialogVisible" :floorPrice="floorPrice" :sellDataArr="sellDataArr" @handleClose="sellHandleClose" />
<LoadingDialog :loadingDialogVisible="loadingDialogVisible" />
@ -297,6 +301,9 @@ onMounted(() => {
font-weight: 700;
font-size: 28px;
}
.card-cancel {
background: #7f7f7f;
}
}
}
</style>

View File

@ -6,6 +6,9 @@
<div class="imgs-img">
<img :src="heroImg[props.nftData.name].img" alt="">
</div>
<div class="imgs-lock" v-if="nftData.on_lock == '1'">
Locked
</div>
<div class="imgs-day">
{{ nftData.detail.max_mining_days }}
</div>
@ -61,6 +64,19 @@ const props = defineProps({
height: 100%;
}
}
.imgs-lock {
position: absolute;
left: -10px;
bottom: 130px;
width: 200px;
height: 30px;
line-height: 30px;
text-align: center;
font-size: 18px;
font-weight: 700;
background: url('src/assets/img/marketplace/hero_lockBg.png') no-repeat;
background-size: 100% 100%;
}
.imgs-day {
position: absolute;
right: 3px;

View File

@ -88,7 +88,7 @@ const backTop = () => {
.follow-container {
font-family: "Arial", sans-serif;
width: 100%;
height: 100%;
// height: 100%;
background: #0e0e0e;
}
.follow-content {

View File

@ -7,9 +7,10 @@
</div>
<div class="claim-line"></div>
<div class="claim-content">
<h4>Dear CoinMarketCap Team,</h4>
<h3>Dear CoinMarketCap Team,</h3>
<div>
<p>We are writing to request the listing of our cryptocurrency, $CEC, on CoinMarketCap. We believe that listing $CEC will provide our community with greater visibility and access to our projects information.</p>
<p>We are writing to request the listing of our cryptocurrency, $CEC, on CoinMarketCap.</p>
<p>We believe that listing $CEC will provide our community with greater visibility and access to our projects information.</p>
</div>
<h4>Request Details and Proof of Authenticity:</h4>
<div>
@ -28,10 +29,15 @@
<h5> Discord:</h5> <p>&nbsp;discord.gg/counterfire</p>
</div>
<div>
<p>We appreciate your consideration of this request and look forward to having $CEC listed on CoinMarketCap. If you require any further information or clarification, please feel free to reach out to us.</p>
<br>
</div>
<div>
<p>We appreciate your consideration of this request and look forward to having $CEC listed on CoinMarketCap.</p>
<p>If you require any further information or clarification, please feel free to reach out to us.</p>
</div>
<div>
<p>Thank you for your support and collaboration.</p>
<br>
</div>
<div>
<h5>Best regards,</h5>
@ -52,6 +58,7 @@
.claim {
color: #fff;
overflow: hidden;
padding-bottom: 160px;
.content {
width: 1199px;
margin: 0 auto;
@ -71,7 +78,7 @@
bottom: 0px;
font-family: 'Poppins';
font-weight: 600;
font-size: 24px;
font-size: 18px;
color: #F3F0FF;
}
}
@ -79,16 +86,23 @@
width: 100%;
height: 4px;
margin: 20px 0;
background: url('src/assets/img/notice/Announcement line.png') no-repeat;
background: url('@/assets/img/notice/Announcement_line.png') no-repeat;
background-size: 100% 100%;
}
.claim-content {
width: 1199px;
margin: 0 auto;
color: #F3F0FF;
h3 {
font-family: 'Poppins';
font-weight: 700;
font-size: 26px;
margin: 20px 0;
}
h4 {
font-family: 'Poppins';
font-weight: 700;
font-size: 24px;
font-size: 22px;
margin: 20px 0;
}
div {

View File

@ -172,7 +172,16 @@
<div
v-if="(detailData.nft.type == 1 && !detailData.nft.contract_address) && LOCKER_ADDRESS.toLowerCase() != detailData.nft.owner_address.toLowerCase()"
>
<div class="mint" @click="mintHero">Mint</div>
<div class="mint" @click="mintHero" v-if="detailData.nft.on_lock == '1'">Mint</div>
<div class="unLock" v-else>Mint</div>
</div>
<div
v-if="(detailData.nft.type == 1 && !detailData.nft.contract_address) && LOCKER_ADDRESS.toLowerCase() != detailData.nft.owner_address.toLowerCase()"
>
<div class="lock" v-if="detailData.nft.on_lock == '0'">
<img src="@/assets/img/marketplace/Icon_!.png" alt="">
<p>You need to lock in the game before Minting</p>
</div>
</div>
<!--
1添加购物车
@ -880,6 +889,13 @@ onMounted(() => {
width: 311px;
height: 413px;
}
.imgs-lock {
bottom: 220px;
left: 0px;
width: 311px;
height: 40px;
line-height: 40px;
}
.imgs-day {
bottom: 180px;
width: 90px;
@ -1111,6 +1127,22 @@ onMounted(() => {
.mint {
background: #6336d7;
}
.lock {
height: 20px;
margin: 0;
img {
width: 20px;
height: 20px;
margin-right: 10px;
}
p {
font-size: 14px;
font-weight: 400;
}
}
.unLock {
background: #7f7f7f;
}
}
}
.info {

View File

@ -20,11 +20,11 @@ const noticeList = ref([
<style lang="scss" scoped>
.notice {
margin-top: 70px;
padding-top: 70px;
width: 100%;
height: 100%;
background: url('src/assets/img/notice/Announcement bg.png') no-repeat;
background-size: 100% 100%;
background: url('@/assets/img/notice/Announcement_bg.png') no-repeat;
// background-size: 100% 100%;
.notice-table {
position: absolute;
top: 168px;
@ -34,7 +34,7 @@ const noticeList = ref([
li {
width: 269px;
height: 130px;
background: url('@/assets/img/notice/Announcement button02.png') no-repeat;
background: url('@/assets/img/notice/Announcement_button02.png') no-repeat;
background-size: 100% 100%;
}
}