7 changed files with 245 additions and 226 deletions
@ -2,7 +2,8 @@ |
|||
<view class="maintoP"> |
|||
<navigation :showBack="false" :bgnum="true" class="aaa"> |
|||
<image src="../../../../static/tongyonh/Vector.png" mode="aspectFit" class="back" @click="back()"></image> |
|||
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" @click="goAdd" class="renYou2" slot="logo"></image> |
|||
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" @click="goAdd" class="renYou2" |
|||
slot="logo"></image> |
|||
<text class="big_title"> |
|||
{{item.projectName}} |
|||
</text> |
|||
@ -13,7 +14,8 @@ |
|||
<view class="top"> |
|||
<image :src="item.chainIconUrl" mode="aspectFit" class="img"></image> |
|||
{{item.address}} |
|||
<image src="../../../../static/tongyonh/[email protected]" mode="aspectFit" class="img lfet" @click="goDetail(index)"></image> |
|||
<image src="../../../../static/tongyonh/[email protected]" mode="aspectFit" class="img lfet" |
|||
@click="goDetail(index)"></image> |
|||
</view> |
|||
<view class="top"> |
|||
<text class="textleft">Contracts: </text>{{item.contract}} |
|||
@ -52,7 +54,8 @@ |
|||
|
|||
} else { |
|||
this.wallet = uni.getStorageSync('walletInfo').BTC[0] |
|||
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address.substring(25, this.wallet.address.length); |
|||
this.wallet.address = this.wallet.address.substring(0, 6) + '...' + this.wallet.address.substring(25, this |
|||
.wallet.address.length); |
|||
console.log(this.wallet, 111) |
|||
} |
|||
|
|||
@ -74,34 +77,33 @@ |
|||
url: '../index' |
|||
}) |
|||
}, |
|||
// http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?nftProjectId=1&address= |
|||
getProject(){ |
|||
uni.request({ |
|||
url: 'http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?'+'nftProjectId='+this.item.id+'&'+'address='+this.address+'&'+'pageSize='+this.pageSize+'&'+'pageNum='+this.pageNum, //请求接口 |
|||
header: { |
|||
'content-type': 'application/x-www-form-urlencoded', //自定义请求头信息 |
|||
}, |
|||
success: (res) => { |
|||
this.result=res.data.data.rows |
|||
async getProject() { |
|||
let params = { |
|||
nftProjectId: this.item.id, |
|||
address: this.address, |
|||
pageSize: this.pageSize, |
|||
pageNum: this.pageNum |
|||
} |
|||
const response = await this.$api.getNftCollectionList(params) |
|||
|
|||
this.result = response.data.rows |
|||
for (var i = 0; i < this.result.length; i++) { |
|||
this.result[i].address = this.result[i].address.substring(0, 6) + '...' + this.result[i].address |
|||
.substring(25, this.result[i].address.length); |
|||
} |
|||
|
|||
} |
|||
}); |
|||
}, |
|||
getProject2(){ |
|||
uni.request({ |
|||
url: 'http://wallet-api.weirui0755.com/api/nft/getNftCollectionList?'+'nftProjectId='+this.item.id+'&'+'address='+this.address+'&'+'pageSize='+this.pageSize+'&'+'pageNum='+this.pageNum, //请求接口 |
|||
header: { |
|||
'content-type': 'application/x-www-form-urlencoded', //自定义请求头信息 |
|||
}, |
|||
success: (res) => { |
|||
this.result2=res.data.data.rows |
|||
console.log( this.result2,7878) |
|||
async getProject2() { |
|||
let params = { |
|||
nftProjectId: this.item.id, |
|||
address: this.address, |
|||
pageSize: this.pageSize, |
|||
pageNum: this.pageNum |
|||
} |
|||
}); |
|||
const response = await this.$api.getNftCollectionList(params); |
|||
this.result2 = response.data.rows |
|||
console.log(this.result2, 7878) |
|||
|
|||
}, |
|||
goAdd() { |
|||
uni.navigateTo({ |
|||
|
Loading…
Reference in new issue