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>
|
||||
<template>
|
||||
<div class="app-study">
|
||||
<div>
|
||||
</div>
|
||||
<!--<el-row>
|
||||
<el-col :span="24">
|
||||
<img src="../../assets/images/32.png" alt="" />
|
||||
<span>操作记录和成绩</span>
|
||||
</el-col>
|
||||
</el-row> -->
|
||||
</div>
|
||||
</template>
|
||||
<style lang='scss' scoped>
|
||||
.app-study{
|
||||
// padding: 20px;
|
||||
height: 105vh;
|
||||
// border: 1px solid #238AFF;
|
||||
// border-radius: 5px;
|
||||
div{
|
||||
margin-top: -90px;
|
||||
margin-left: -130px;
|
||||
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 lang="scss" scoped>
|
||||
.app-deal-broadcast {
|
||||
.el-col-24 {
|
||||
height: 69px;
|
||||
padding: 15px 13px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
span {
|
||||
padding-left: 15px;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
.el-tab {
|
||||
border: 1px solid #1854a6;
|
||||
padding: 6px;
|
||||
margin: 20px 10px;
|
||||
:deep(.el-table .el-table__header-wrapper th) {
|
||||
background-color: #238aff !important;
|
||||
color: #ffffff !important;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|