fix: 后端添加博客列表遗漏的描述字段
This commit is contained in:
@@ -35,13 +35,14 @@ export class BlogService {
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { createdAt, deletedAt, id, title, viewCount } = i;
|
const { createdAt, deletedAt, id, title, viewCount, description } = i;
|
||||||
return {
|
return {
|
||||||
createdAt,
|
createdAt,
|
||||||
deletedAt,
|
deletedAt,
|
||||||
id,
|
id,
|
||||||
title,
|
title,
|
||||||
viewCount,
|
viewCount,
|
||||||
|
description,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user