2022-03-31 09:51:47 +08:00
|
|
|
import axios from 'axios'
|
|
|
|
import qs from 'qs'
|
|
|
|
|
|
|
|
export const customerData = query => axios.post('http://oa-dxtc.test/customer', qs.stringify(query));
|
2022-04-10 22:03:40 +08:00
|
|
|
|
|
|
|
export const customerAdd = addQuery => axios.post('http://oa-dxtc.test/customer/add', qs.stringify(addQuery));
|
|
|
|
|
|
|
|
export const customerEdit = editQuery => axios.post('http://oa-dxtc.test/customer/edit', qs.stringify(editQuery));
|