|
|
@@ -0,0 +1,14 @@
|
|
|
+import { request } from '/src/lib/axios';
|
|
|
+
|
|
|
+export const fetchCustomerDetail = (id) => {
|
|
|
+ return request({
|
|
|
+ url: `/supports/customer/${id}`,
|
|
|
+ method: 'get',
|
|
|
+ });
|
|
|
+};
|
|
|
+export const fetchCustomerHeaderInfo = (id) => {
|
|
|
+ return request({
|
|
|
+ url: `/supports/customer/header/${id}`,
|
|
|
+ method: 'get',
|
|
|
+ });
|
|
|
+};
|