|
@@ -15,11 +15,9 @@
|
|
|
<el-pagination
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
- :current-page="currentPage4"
|
|
|
- :page-sizes="[10, 20, 30, 40]"
|
|
|
- :page-size="2"
|
|
|
+ :current-page="currentPage"
|
|
|
layout="total, prev, pager, next, jumper"
|
|
|
- :total="20"
|
|
|
+ :total="1"
|
|
|
>
|
|
|
</el-pagination>
|
|
|
</el-col>
|
|
@@ -36,7 +34,9 @@ export default {
|
|
|
contentList: null,
|
|
|
},
|
|
|
components: {},
|
|
|
- data: () => ({}),
|
|
|
+ data: () => ({
|
|
|
+ currentPage: 1,
|
|
|
+ }),
|
|
|
created() {},
|
|
|
computed: {},
|
|
|
methods: {
|
|
@@ -69,15 +69,6 @@ li {
|
|
|
color: #22529a;
|
|
|
margin: 0 0 20px 0;
|
|
|
}
|
|
|
-.title {
|
|
|
- font-size: 16px;
|
|
|
- color: #60636d;
|
|
|
-}
|
|
|
-
|
|
|
-.date {
|
|
|
- font-size: 16px;
|
|
|
- color: #a8abb7;
|
|
|
-}
|
|
|
.info {
|
|
|
height: 570px;
|
|
|
overflow: hidden;
|
|
@@ -92,11 +83,26 @@ li {
|
|
|
width: 100%;
|
|
|
padding: 0 0 13px 0;
|
|
|
}
|
|
|
+.info ul li .title {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #60636d;
|
|
|
+}
|
|
|
.info ul li .date {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #a8abb7;
|
|
|
text-align: right;
|
|
|
}
|
|
|
+.info ul li:hover {
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+.info ul li:hover .title {
|
|
|
+ color: #22529a;
|
|
|
+}
|
|
|
+.info ul li:hover .date {
|
|
|
+ color: #22529a;
|
|
|
+}
|
|
|
.page {
|
|
|
- height: 50px;
|
|
|
+ padding: 11px 0;
|
|
|
text-align: center;
|
|
|
}
|
|
|
</style>
|