|
@@ -66,7 +66,7 @@
|
|
|
>
|
|
|
<div class="article-list-item-title">{{ item.name }}</div>
|
|
|
<div class="article-list-item-contgents">
|
|
|
- <p v-html="item.contentsShow">{{ item.contentsShow }}</p>
|
|
|
+ <p v-html="item.contentsShow">{{ item.contentsShow }}</p>
|
|
|
</div>
|
|
|
<div class="article-list-item-createtime">
|
|
|
{{ item.createdTime | formatDateTime }}
|
|
@@ -152,7 +152,7 @@ export default {
|
|
|
engineeringWorkChooseValue: '', // 所选工种
|
|
|
articleList: [], // 文章列表数据
|
|
|
pagination: {
|
|
|
- pageSize: 7,
|
|
|
+ pageSize: 10,
|
|
|
current: 1,
|
|
|
total: 0,
|
|
|
}, // 分页参数
|
|
@@ -275,7 +275,7 @@ export default {
|
|
|
// 初始化分页参数
|
|
|
initPagination() {
|
|
|
this.pagination.current = 1;
|
|
|
- this.pagination.pageSize = 7;
|
|
|
+ this.pagination.pageSize = 10;
|
|
|
this.pagination.total = 0;
|
|
|
},
|
|
|
// 操作:选择某个文章类型-子类
|