zyejMAll-mobile/sheep/api/promotion/article.js

13 lines
236 B
JavaScript
Raw Normal View History

2024-08-07 10:31:42 +08:00
import request from '@/sheep/request';
export default {
2024-08-07 21:40:27 +08:00
// 获得文章详情
getArticle: (id, title) => {
return request({
url: '/promotion/article/get',
method: 'GET',
params: { id, title },
});
},
};