溯源显示合约提交方
Showing
1 changed file
with
6 additions
and
1 deletions
| ... | @@ -210,11 +210,16 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => { | ... | @@ -210,11 +210,16 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => { |
| 210 | <span class="item_label">区块链时间:</span> | 210 | <span class="item_label">区块链时间:</span> |
| 211 | <span class="item_value">{{ activity.info?.blockchainTime || '--' }}</span> | 211 | <span class="item_value">{{ activity.info?.blockchainTime || '--' }}</span> |
| 212 | </div> | 212 | </div> |
| 213 | <div class="list_item is_block"> | 213 | <div class="list_item is_block" :style="{ width: activity.info?.bizType == '合约' ? '66.66%' : '100%' }"> |
| 214 | <span class="item_label">hash值:</span> | 214 | <span class="item_label">hash值:</span> |
| 215 | <span class="item_value"><ellipsis-tooltip :content="activity?.info?.logHash || '--'" | 215 | <span class="item_value"><ellipsis-tooltip :content="activity?.info?.logHash || '--'" |
| 216 | class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span> | 216 | class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span> |
| 217 | </div> | 217 | </div> |
| 218 | <div class="list_item" v-if="activity.info?.bizType == '合约'"> | ||
| 219 | <span class="item_label">提交方:</span> | ||
| 220 | <span class="item_value"><ellipsis-tooltip :content="activity.info?.submitter || '--'" | ||
| 221 | class-name="w100f mr8-i" :refName="'tooltipOver' + 'submitter'"></ellipsis-tooltip></span> | ||
| 222 | </div> | ||
| 218 | <div v-show="index < activities.length - 1" class="split-line"></div> | 223 | <div v-show="index < activities.length - 1" class="split-line"></div> |
| 219 | </div> | 224 | </div> |
| 220 | </el-timeline-item> | 225 | </el-timeline-item> | ... | ... |
-
Please register or sign in to post a comment