修改一些链接
This commit is contained in:
parent
f63ac1c666
commit
3f330c115c
BIN
src/assets/main/footer/youtube.png
Normal file
BIN
src/assets/main/footer/youtube.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
@ -40,7 +40,7 @@ export default class extends Vue {
|
||||
private heros: ISpineData[] = [
|
||||
{
|
||||
id: 'card_0',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'aoi',
|
||||
skelName: 'pic_hero3',
|
||||
type: 1,
|
||||
@ -50,7 +50,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_1',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'yamada',
|
||||
skelName: 'pic_hero2',
|
||||
type: 1,
|
||||
@ -60,7 +60,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_2',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'lazar',
|
||||
skelName: 'pic_hero9',
|
||||
type: 1,
|
||||
@ -70,7 +70,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_3',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'hill',
|
||||
skelName: 'pic_hero1',
|
||||
type: 1,
|
||||
@ -80,7 +80,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_4',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'kurosawa',
|
||||
skelName: 'pic_hero10',
|
||||
type: 1,
|
||||
@ -90,7 +90,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_5',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'canoe',
|
||||
skelName: 'n_canoe',
|
||||
type: 0,
|
||||
@ -100,7 +100,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_6',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'miffy',
|
||||
skelName: 'n_miffy',
|
||||
type: 0,
|
||||
@ -110,7 +110,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_7',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'dragonscale',
|
||||
skelName: 'n_dragonscale',
|
||||
type: 0,
|
||||
@ -120,7 +120,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_8',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'astral',
|
||||
skelName: 'n_astral',
|
||||
type: 0,
|
||||
@ -130,7 +130,7 @@ export default class extends Vue {
|
||||
},
|
||||
{
|
||||
id: 'card_9',
|
||||
price: '100 USDT',
|
||||
price: '200 USDT',
|
||||
name: 'mariana',
|
||||
skelName: 'n_mariana',
|
||||
type: 0,
|
||||
|
@ -113,7 +113,7 @@ export default class extends Vue {
|
||||
width: 78vw;
|
||||
height: 30vw;
|
||||
right: 0;
|
||||
bottom: 18vh;
|
||||
bottom: 0;
|
||||
position: absolute;
|
||||
padding-bottom: 77px;
|
||||
padding-top: 20px;
|
||||
|
@ -25,9 +25,12 @@
|
||||
<a href="https://discord.gg/8dWX6jpcME">
|
||||
<img src="@/assets/main/footer/discord.png">
|
||||
</a>
|
||||
<a href="https://t.me/CEBG_Announce">
|
||||
<a href="https://t.me/CEBG_official">
|
||||
<img src="@/assets/main/footer/telegram.png">
|
||||
</a>
|
||||
<a href="https://www.youtube.com/channel/UCvlBnV0TcL9jbV5gKXwm9dw">
|
||||
<img src="@/assets/main/footer/youtube.png">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<div class="menu-list">
|
||||
<div class="logo_header"><img src="@/assets/main/p1/icon_logo_t.png"></div>
|
||||
<div data-menuanchor="home" class="marked_icon">
|
||||
<a href="/market"><img src="@/assets/main/p1/btn_market.png"></a>
|
||||
<a href="javascript:void(0)" @click="comingSoon"><img src="@/assets/main/p1/btn_market.png"></a>
|
||||
</div>
|
||||
<div class="menu-icon" @click="toggleDrop">
|
||||
<img v-if="!dropShow" src="@/assets/main/p1/menu.png">
|
||||
@ -53,6 +53,7 @@
|
||||
|
||||
<script lang="ts">
|
||||
import { Component, Vue } from 'vue-property-decorator'
|
||||
import { Message } from 'element-ui'
|
||||
|
||||
declare module 'vue/types/vue' {
|
||||
interface Vue {
|
||||
@ -79,6 +80,14 @@ export default class extends Vue {
|
||||
toggleDrop() {
|
||||
this.dropShow = !this.dropShow
|
||||
}
|
||||
|
||||
comingSoon() {
|
||||
Message({
|
||||
message: 'coming soon',
|
||||
type: 'info',
|
||||
duration: 5 * 1000
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -27,7 +27,7 @@ export default class extends Vue {
|
||||
|
||||
<style lang="scss" scoped>
|
||||
#nft_section {
|
||||
background-image: url('~@/assets/main//p3/bg_p3.png');
|
||||
background-image: url('~@/assets/main/p3/bg_p3.png');
|
||||
position: relative;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
@ -13,7 +13,7 @@
|
||||
<a class="menu-item" href="/official">
|
||||
<div class="item" :class="{'active': currentTab==='official'}">
|
||||
Official Shop
|
||||
<div class="active-bottom" v-if="currentTab==='presell'"></div>
|
||||
<div class="active-bottom" v-if="currentTab==='official'"></div>
|
||||
</div
|
||||
>
|
||||
</a>
|
||||
|
@ -1,5 +1,5 @@
|
||||
const path = require('path')
|
||||
const name = 'Blissful Elites'
|
||||
const name = 'CEBG'
|
||||
|
||||
module.exports = {
|
||||
// TODO: Remember to change publicPath to fit your need
|
||||
|
Loading…
x
Reference in New Issue
Block a user