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.

16 lines
313 B

4 weeks ago
  1. import request from '~/utils/request'
  2. export default{
  3. RecommendationList() {
  4. return request({
  5. url: 'recommendation/api/selectRecommendation',
  6. method: 'post'
  7. })
  8. },
  9. FeaturedList() {
  10. return request({
  11. url: 'curated-video/api/selectCuratedVideo',
  12. method: 'post'
  13. })
  14. }
  15. }