staff/api/chapter.ts

15 lines
246 B
TypeScript

import { get, post, put, del } from '../utils/request';
/*
章节列表
*/
export const chapterList = (data : any) => get('v1/chapter/list', data);
/*
章节详情
*/
export const chapterInfo = (data : any) => get('v1/chapter/info', data);