v1.2.0需求开发中
This commit is contained in:
@@ -136,27 +136,28 @@
|
||||
<el-table
|
||||
:data="tableData"
|
||||
border
|
||||
|
||||
:span-method="handleSpanMethod"
|
||||
:header-cell-style="{ 'text-align': 'center' }"
|
||||
:cell-style="{ 'text-align': 'center' }"
|
||||
height="42vh"
|
||||
>
|
||||
<el-table-column prop="createDate" :label="$t('backendSystem.createDate')" width="160" >
|
||||
<!-- <el-table-column prop="createDate" :label="$t('backendSystem.createDate')" width="160" >
|
||||
<template slot-scope="scope">
|
||||
<span>{{ handelTime(scope.row.createDate ) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table-column> -->
|
||||
<el-table-column prop="shouldOutDate" :label="$t('backendSystem.shouldOutDate')" width="180" show-overflow-tooltip >
|
||||
<template slot-scope="scope">
|
||||
<span>{{ handelTime(scope.row.shouldOutDate ) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="coin" :label="$t('backendSystem.coin2')" width="100" show-overflow-tooltip>
|
||||
<!-- <el-table-column prop="coin" :label="$t('backendSystem.coin2')" width="100" show-overflow-tooltip>
|
||||
|
||||
</el-table-column>
|
||||
<el-table-column prop="amount" :label="$t('backendSystem.transactionAmount')" width="200" show-overflow-tooltip/>
|
||||
</el-table-column> -->
|
||||
<el-table-column prop="allocationAmount" :label="$t('backendSystem.allocationAmount')" width="200" show-overflow-tooltip/>
|
||||
<el-table-column prop="transferAmount" :label="$t('backendSystem.transferAmount')" width="200" show-overflow-tooltip/>
|
||||
|
||||
<el-table-column prop="user" :label="$t('backendSystem.minerUser2')" width="180" show-overflow-tooltip/>
|
||||
<!-- <el-table-column prop="user" :label="$t('backendSystem.minerUser2')" width="180" show-overflow-tooltip/> -->
|
||||
<el-table-column prop="address" :label="$t('backendSystem.address')" show-overflow-tooltip />
|
||||
|
||||
<el-table-column prop="maxHeight" :label="$t('backendSystem.maxHeight')" width="180" show-overflow-tooltip />
|
||||
@@ -332,6 +333,8 @@ export default {
|
||||
padding:1% 5%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style>
|
||||
@@ -340,4 +343,29 @@ export default {
|
||||
color: #333 !important;
|
||||
|
||||
}
|
||||
|
||||
/* 合并单元格样式优化 */
|
||||
::v-deep .el-table td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* 日期列样式 */
|
||||
::v-deep .el-table .cell {
|
||||
padding: 0 12px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* 合并后的日期单元格突出显示 */
|
||||
::v-deep .el-table tbody tr:hover > td {
|
||||
background-color: #f5f7fa;
|
||||
}
|
||||
|
||||
/* 表格边框优化 */
|
||||
::v-deep .el-table--border td {
|
||||
border-right: 1px solid #ebeef5;
|
||||
}
|
||||
|
||||
::v-deep .el-table--border th {
|
||||
border-right: 1px solid #ebeef5;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user