Skip to content

Commit

Permalink
Merge pull request #137 from hiwuyi/main
Browse files Browse the repository at this point in the history
Add mint_address
  • Loading branch information
Dora authored Jan 20, 2022
2 parents a39f75b + 35ca1a8 commit 82a52b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web/src/views/uploadFiles/dashboard/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
<h3>{{$t('uploadFile.View_Your_NFT_tips')}}</h3>
<a :href="'https://mumbai.polygonscan.com/tx/'+txHash" target="_blank">{{txHash}}</a>
<br />
<a :href="'https://testnets.opensea.io/assets/mumbai/'+mintContractAddress+'/'+tokenId" target="_blank">{{$t('uploadFile.View_Your_NFT_OpenSea')}}</a>
<a :href="'https://testnets.opensea.io/assets/mumbai/'+mint_address+'/'+tokenId" target="_blank">{{$t('uploadFile.View_Your_NFT_OpenSea')}}</a>
<h3>{{$t('uploadFile.View_Your_NFT_Note')}}</h3>
<a class="a-close" @click="mintTransaction=false">{{$t('uploadFile.CLOSE')}}</a>
</el-dialog>
Expand Down Expand Up @@ -460,6 +460,7 @@ export default {
fileSize: '',
mintContractAddress: this.$root.MINT_CONTRACT,
tokenId: '',
mint_address: '',
toAddress: '',
storage: 0,
centerDialogVisible: false,
Expand Down Expand Up @@ -577,6 +578,7 @@ export default {
},
mintViewFunction(row){
this.tokenId = row.token_id
this.mint_address = row.mint_address
this.txHash = row.nft_tx_hash
this.mintTransaction=true
},
Expand Down Expand Up @@ -764,6 +766,7 @@ export default {
_this.getData()
_this.tokenId = tokenId
_this.txHash = nftHash
_this.mint_address = _this.mintContractAddress
_this.mintTransaction = true
}
},
Expand Down

0 comments on commit 82a52b9

Please sign in to comment.