You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.3 KiB
79 lines
1.3 KiB
<template>
|
|
<view class="maintoP">
|
|
<navigation :showBack="true" :bgnum="true" class="aaa">
|
|
NFT collection
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="main_con">
|
|
<view class="item flex" @click="goDetail">
|
|
<view class="left flex2">
|
|
<image src="../../../static/tongyonh/bye.png" mode="aspectFit" class="img"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
Binance NFT
|
|
</view>
|
|
<view class="text2">
|
|
0 collections
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="item flex">
|
|
<view class="left flex2">
|
|
<image src="../../../static/tongyonh/bye.png" mode="aspectFit" class="img"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
Binance NFT
|
|
</view>
|
|
<view class="text2">
|
|
0 collections
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
|
|
<tab-bar :selectActive="2"></tab-bar>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
import token from "@/utils/TokenUtil"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
|
|
|
|
},
|
|
methods: {
|
|
goDetail(){
|
|
uni.navigateTo({
|
|
url:'./collectionDetail/index'
|
|
})
|
|
}
|
|
|
|
|
|
},
|
|
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|