mall-uniapp/sheep/api/promotion/article.js

13 lines
259 B
JavaScript
Raw Normal View History

import request from '@/sheep/request';
export default {
// 获得文章详情
getArticle: (id) => {
return request({
url: '/app-api/promotion/article/get',
method: 'GET',
params: { id }
});
}
}