|
|
@@ -1,15 +1,14 @@
|
|
|
<template>
|
|
|
<div class="information_on_the_chain_con">链上信息</div>
|
|
|
- <div>
|
|
|
- <!-- v-if="info.txHash" -->
|
|
|
+ <div v-if="info.txHash">
|
|
|
<div class="information_on_the_chain">
|
|
|
<span class="information_on_the_chain_title">Hash地址</span>
|
|
|
<div class="information_on_the_chain_content_con">
|
|
|
<div class="information_on_the_chain_content">
|
|
|
- {{ getShort(info.txHash) || getShort('b3af1f7e02633960365ddf532a4008ed' + info.id)}}
|
|
|
+ {{ getShort(info.txHash) }}
|
|
|
</div>
|
|
|
<img
|
|
|
- @click="copy(info.txHash || 'b3af1f7e02633960365ddf532a4008ed' + info.id)"
|
|
|
+ @click="copy(info.txHash)"
|
|
|
src="@assets/copy_icon.png"
|
|
|
alt=""
|
|
|
class="information_on_the_chain_content_img"
|
|
|
@@ -18,16 +17,16 @@
|
|
|
</div>
|
|
|
<div class="information_on_the_chain">
|
|
|
<span class="information_on_the_chain_title">区块高度</span>
|
|
|
- <span class="information_on_the_chain_number">{{ info.blockNumber || '113615267' + info.id}}</span>
|
|
|
+ <span class="information_on_the_chain_number">{{ info.blockNumber }}</span>
|
|
|
</div>
|
|
|
<div class="information_on_the_chain">
|
|
|
<span class="information_on_the_chain_title">令牌ID</span>
|
|
|
<div class="information_on_the_chain_content_con">
|
|
|
<div class="information_on_the_chain_content">
|
|
|
- {{ getShort(info.tokenId) || getShort('3d21c7cc9c4fae809857aba0464f3461876f640d6ffb91927b3db12d86449345' + info.id)}}
|
|
|
+ {{ getShort(info.tokenId) }}
|
|
|
</div>
|
|
|
<img
|
|
|
- @click="copy(info.txHash || '3d21c7cc9c4fae809857aba0464f3461876f640d6ffb91927b3db12d86449345' + info.id)"
|
|
|
+ @click="copy(info.txHash)"
|
|
|
src="@assets/copy_icon.png"
|
|
|
alt=""
|
|
|
class="information_on_the_chain_content_img"
|
|
|
@@ -35,7 +34,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <!-- <div v-else class="textName">创作者未设置</div> -->
|
|
|
+ <div v-else class="hold_privileges_name">铸造者暂时未设置</div>
|
|
|
<!-- <van-collapse-item name="hashCode" class="goods-info">
|
|
|
<template #title>
|
|
|
<div class="page-title"><img src="@assets/icon-lianshangxinxi(3).png" alt="" />链上信息</div>
|
|
|
@@ -154,8 +153,11 @@ export default {
|
|
|
.information_on_the_chain:last-child {
|
|
|
margin-bottom: 0px;
|
|
|
}
|
|
|
-.textName {
|
|
|
+.hold_privileges_name {
|
|
|
+ margin-top: 10px;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: PingFangSC-Regular, PingFang SC;
|
|
|
+ font-weight: 400;
|
|
|
color: #939599;
|
|
|
- // text-align: center;
|
|
|
}
|
|
|
</style>
|