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);