You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
265 B

7 months ago
  1. import request from '@/sheep/request';
  2. export default {
  3. // 获得文章详情
  4. getArticle: (id, title) => {
  5. return request({
  6. url: '/promotion/article/get',
  7. method: 'GET',
  8. params: { id, title }
  9. });
  10. }
  11. }