| 1234567891011121314151617181920212223 |
- import instance from "../utils/request";
- // 国产剧
- export function Domestic() {
- return instance({
- url:"rexxar/api/v2/subject_collection/tv_domestic/items",
- method: 'get'
- })
- }
- // 综艺
- export function Variety() {
- return instance({
- url:"rexxar/api/v2/subject_collection/tv_variety_show/items",
- method: 'get'
- })
- }
- // 美剧
- export function American() {
- return instance({
- url:"rexxar/api/v2/subject_collection/tv_domestic/items",
- method: 'get'
- })
- }
|