zju.js 238 B

12345678910
  1. import http from "../http.js";
  2. // 最近观看
  3. export const watchRecord = () => {
  4. return http.get('/api/user/watchrecord/list');
  5. }
  6. // 追剧列表
  7. export const shelfList = () => {
  8. return http.get('/api/user/watchrecord/getshelf');
  9. }