hanxiaohui преди 4 месеца
родител
ревизия
5d768a2e94
променени са 1 файла, в които са добавени 14 реда и са изтрити 0 реда
  1. 14 0
      src/api/customer-manage/index.js

+ 14 - 0
src/api/customer-manage/index.js

@@ -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',
+  });
+};