|
@@ -12,7 +12,6 @@
|
|
|
<el-col :span="24" class="list" v-for="(item, index) in list" :key="index">
|
|
|
<el-col :span="20" class="listTitle" @click.native="clickDetail(item.id)">{{ item.title }}</el-col>
|
|
|
<el-col :span="4" class="listTitme">{{ item.create_time }}</el-col>
|
|
|
- <el-col :span="24" class="listInfo" v-html="item.content"></el-col>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col class="page" :span="24">
|
|
@@ -107,13 +106,12 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.con {
|
|
|
- height: 840px;
|
|
|
+ height: 500px;
|
|
|
background-color: #fff;
|
|
|
overflow: hidden;
|
|
|
.list {
|
|
|
- // background-color: red;
|
|
|
- // height: 200px;
|
|
|
- padding: 5px 10px;
|
|
|
+ padding: 12px 10px;
|
|
|
+ border-bottom: 1px dashed #ccc;
|
|
|
.listTitle {
|
|
|
font-size: 18px;
|
|
|
font-weight: bolder;
|
|
@@ -135,6 +133,9 @@ export default {
|
|
|
line-height: 23px;
|
|
|
}
|
|
|
}
|
|
|
+ .list:nth-child(10n) {
|
|
|
+ border-bottom: none;
|
|
|
+ }
|
|
|
}
|
|
|
.page {
|
|
|
margin: 15px 0px;
|