Merge branch 'master' into dev_fjb
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 431 B After Width: | Height: | Size: 431 B |
@ -1,42 +1,57 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-deal-broadcast">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<img src="../../../assets/images/41.png" alt="" />
|
||||||
|
<span>交易广播</span>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<div class="el-tab" style="width: 60%">
|
||||||
|
<el-table :data="IndividualAssetsData" style="width: 100%" stripe>
|
||||||
|
<el-table-column align="center" prop="username" label="交易编码/信息摘要">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" prop="bankName" label="广播节点 ">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" prop="bankAccount" label="时间戳">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column align="center" prop="rmbBalance" label="操作">
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</div>
|
||||||
|
<!-- <pagination
|
||||||
|
v-show="total1>0"
|
||||||
|
:total="total1"
|
||||||
|
v-model:page="params1.index"
|
||||||
|
v-model:limit="params1.size"
|
||||||
|
@pagination="getDigital"
|
||||||
|
/> -->
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<style lang="scss" scoped>
|
||||||
<div class="app-study">
|
.app-deal-broadcast {
|
||||||
<div>
|
.el-col-24 {
|
||||||
</div>
|
height: 69px;
|
||||||
<!--<el-row>
|
padding: 15px 13px;
|
||||||
<el-col :span="24">
|
display: flex;
|
||||||
<img src="../../assets/images/32.png" alt="" />
|
align-items: center;
|
||||||
<span>操作记录和成绩</span>
|
span {
|
||||||
</el-col>
|
padding-left: 15px;
|
||||||
</el-row> -->
|
font-weight: bold;
|
||||||
</div>
|
font-size: 14px;
|
||||||
</template>
|
}
|
||||||
<style lang='scss' scoped>
|
}
|
||||||
.app-study{
|
.el-tab {
|
||||||
// padding: 20px;
|
border: 1px solid #1854a6;
|
||||||
height: 105vh;
|
padding: 6px;
|
||||||
// border: 1px solid #238AFF;
|
margin: 20px 10px;
|
||||||
// border-radius: 5px;
|
:deep(.el-table .el-table__header-wrapper th) {
|
||||||
div{
|
background-color: #238aff !important;
|
||||||
margin-top: -90px;
|
color: #ffffff !important;
|
||||||
margin-left: -130px;
|
font-weight: 600;
|
||||||
height: 995px;
|
|
||||||
background: url('../../../assets/images/交易广播.png' ) no-repeat !important;
|
|
||||||
background-size: 102% 100% !important;
|
|
||||||
}
|
|
||||||
.el-col-24 {
|
|
||||||
height: 69px;
|
|
||||||
padding: 15px 13px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
span {
|
|
||||||
padding-left: 15px;
|
|
||||||
font-weight: bold;
|
|
||||||
font-size: 14px;
|
|
||||||
color: #ffff;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
}
|
||||||
|
</style>
|
||||||
|