import {http} from "../utils/http.js" export const getCaseList= () => { return http({ url:"/api/case/list", method:"GET" }) } export const getCastInfo=(id)=>{ return http({ url:"/api/case/"+id, method:"GET" }) } /** * data:title,description,content,imgeurl */ export const saveCaseInfo=(data)=>{ return http({ url:"/api/case", data, method:"POST" }) }