2022-10-27 18:24:18 +08:00

23 lines
474 B
TypeScript

import { useRequest } from '@/use/useHttp'
//获取客户信息
export const mppurchaser = () => {
return useRequest({
url: `/v1/mp/purchaser`,
method: "get",
})
}
//新建客户
export const mppurchaserpost = () => {
return useRequest({
url: `/v1/mp/purchaser`,
method: "post",
})
}
//编辑客户
export const mppurchaserput = () => {
return useRequest({
url: `/v1/mp/purchaser`,
method: "put",
})
}