代码调整

This commit is contained in:
joylink_cuiweidong 2022-06-07 18:12:19 +08:00
parent 8e0062a33b
commit 7a083b93a7

View File

@ -66,7 +66,7 @@
<div class="runplanTableNo">3</div>
</template>
<template slot-scope="scope">
<div v-if="scope.row.arriveRunPlan" :title="scope.row.arriveRunPlan.accessName">{{ scope.row.arriveRunPlan.accessName }}</div>
<div v-if="scope.row.arriveRunPlan" class="accessName" :title="scope.row.arriveRunPlan.accessName">{{ scope.row.arriveRunPlan.accessName }}</div>
</template>
</el-table-column>
<el-table-column width="60" prop="arriveRunPlan.sectionCode">
@ -253,7 +253,7 @@
<div class="runplanTableNo">22</div>
</template>
<template slot-scope="scope">
<div v-if="scope.row.departRunPlan" :title="scope.row.departRunPlan.accessName">{{ scope.row.departRunPlan.accessName }}</div>
<div v-if="scope.row.departRunPlan" class="accessName" :title="scope.row.departRunPlan.accessName">{{ scope.row.departRunPlan.accessName }}</div>
</template>
</el-table-column>
<el-table-column label="时 分">
@ -736,11 +736,16 @@ export default {
padding-right:0;
text-align: center;
font-size: 15px;
white-space: nowrap;
// display: flex;
// flex-direction: column-reverse;
// align-items: center;
}
#runplanContentTable.el-table .cell .accessName{
white-space: nowrap;
padding: 0px 6px;
overflow: hidden;
text-overflow: ellipsis;
}
#runplanContentTable.el-table td, .el-table th.is-leaf{
padding: 0px;
vertical-align: bottom;