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", }) }