api
This commit is contained in:
@@ -11,6 +11,12 @@ export default {
|
||||
is_video_img: is_video_img,
|
||||
});
|
||||
},
|
||||
// 发现详情
|
||||
getArticleInfo({ article_id }){
|
||||
return vm.$u.post('article/articleInfo', {
|
||||
article_id: article_id,
|
||||
});
|
||||
},
|
||||
// 发现(取消)点赞
|
||||
articleLike({ article_id }) {
|
||||
return vm.$u.post('article/articleLike', {
|
||||
@@ -34,6 +40,21 @@ export default {
|
||||
getRecommendList(){
|
||||
return vm.$u.post('MemberExpert/recommendList');
|
||||
},
|
||||
// 达人(搜索)列表
|
||||
getExpertList({ page, store_id, live_status, like_nickname }){
|
||||
return vm.$u.post('MemberExpert/expertList', {
|
||||
page: page,
|
||||
store_id: store_id,
|
||||
live_status: live_status,
|
||||
like_nickname: like_nickname,
|
||||
});
|
||||
},
|
||||
// 达人详情
|
||||
getExpertInfo({ member_id }){
|
||||
return vm.$u.post('MemberExpert/expertInfo', {
|
||||
member_id: member_id,
|
||||
});
|
||||
},
|
||||
// 获取商城首页信息(顶部轮播图与商品分类)
|
||||
getShopTopList(){
|
||||
return vm.$u.post('Shop/getShopTopList');
|
||||
|
||||
Reference in New Issue
Block a user