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.
90 lines
1.8 KiB
90 lines
1.8 KiB
<template>
|
|
<view class="maintoP">
|
|
<navigation :showBack="true" :bgnum="true" class="aaa">
|
|
Add token
|
|
</navigation>
|
|
<view class="main">
|
|
|
|
<view class="title">
|
|
Hot assets
|
|
</view>
|
|
<view class="main_con">
|
|
<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">
|
|
LON
|
|
</view>
|
|
<view class="text2">
|
|
3KbDfh...uW8W9YsUS
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" class="img"></image>
|
|
</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">
|
|
LON
|
|
</view>
|
|
<view class="text2">
|
|
3KbDfh...uW8W9YsUS
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" class="img"></image>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
import token from "@/utils/TokenUtil"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
var _self = this;
|
|
uni.request({
|
|
url: 'http://wallet-api.weirui0755.com/api/contract/getContractInfoList?chainName=ETH', //请求接口
|
|
header: {
|
|
'content-type': 'application/x-www-form-urlencoded', //自定义请求头信息
|
|
},
|
|
success: (res) => {
|
|
console.log(res,111)
|
|
}
|
|
});
|
|
|
|
},
|
|
methods: {
|
|
|
|
|
|
|
|
},
|
|
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|