Files
lgp-wx-plus/api/page/afterSale.js
2026-08-20 19:15:41 +08:00

12 lines
261 B
JavaScript

import { get, post } from '../request'
const prefix = 'after-sale/'
export const getAfterSaleListApi = async () => {
return await get(`${prefix}list`)
}
export const createAfterSaleApi = async (params) => {
return await post(`${prefix}create`, params)
}