|
@@ -92,13 +92,13 @@ export default {
|
|
|
methods: {
|
|
|
...news(['query']),
|
|
|
async searchInfo() {
|
|
|
- let res = await this.query({ skip: 0, limit: 5, column_name: '专题研讨' });
|
|
|
+ let res = await this.query({ skip: 0, limit: 6, column_name: '专题研讨' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `zhuantiList`, res.data);
|
|
|
res = await this.query({ skip: 0, limit: 10, column_name: '技术问答' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `jishuList`, res.data);
|
|
|
res = await this.query({ skip: 0, limit: 10, column_name: '行业研究' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `hangyeList`, res.data);
|
|
|
- res = await this.query({ skip: 0, limit: 5, column_name: '教育培训' });
|
|
|
+ res = await this.query({ skip: 0, limit: 6, column_name: '教育培训' });
|
|
|
if (this.$checkRes(res)) this.$set(this, `jiaoyuList`, res.data);
|
|
|
},
|
|
|
turnToList(column_name) {
|