...
|
...
|
@@ -4,7 +4,7 @@ import * as guangProcess from './guangProcess'; |
|
|
import * as sleep from '../../utils/sleep';
|
|
|
|
|
|
export default {
|
|
|
async fetchArticleList({ commit }, { articleId, authorUid, authorType, limit = 5, page = 1, thumb = false }) {
|
|
|
async fetchArticleList({ commit }, { articleId, authorUid, authorType, limit = 5, page = 1, thumb = false, columnType = 1001}) {
|
|
|
commit(Types.FETCH_ARTICLE_LIST_REQUEST, { refresh: page === 1 });
|
|
|
const result = await this.$api.get('/api/grass/columnArticleDetail', {
|
|
|
articleId,
|
...
|
...
|
@@ -12,7 +12,7 @@ export default { |
|
|
page,
|
|
|
authorUid,
|
|
|
authorType,
|
|
|
columnType: 1001
|
|
|
columnType
|
|
|
});
|
|
|
|
|
|
if (result && result.code === 200) {
|
...
|
...
|
|