oa-dxtc-vue/src/api/customer.ts

8 lines
376 B
TypeScript
Raw Normal View History

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));