图书馆小程序
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.

19 lines
275 B

2 weeks ago
  1. import request from '../utils/request';
  2. export function getHotTabs() {
  3. return request({
  4. url: '/hot/tabs'
  5. });
  6. }
  7. /**
  8. * 热搜文章列表
  9. */
  10. export function getHotListFromTabType(type) {
  11. return request({
  12. url: '/hot/list',
  13. data: {
  14. type
  15. }
  16. });
  17. }