|
@@ -201,12 +201,14 @@ export async function getUsers(
|
|
|
current?: number;
|
|
|
pageSize?: number;
|
|
|
},
|
|
|
+ sort?: any,
|
|
|
options?: { [key: string]: any },
|
|
|
) {
|
|
|
return request<API.UserList>(`${API_URL}/api/user`, {
|
|
|
method: 'GET',
|
|
|
params: {
|
|
|
...params,
|
|
|
+ sort
|
|
|
},
|
|
|
...(options || {}),
|
|
|
});
|
|
@@ -294,9 +296,6 @@ export async function register(body: API.LoginParams, options?: { [key: string]:
|
|
|
|
|
|
// 修改积分历史
|
|
|
export async function updateUserPoints(userId: string, points: number, reason: string) {
|
|
|
- console.log('发送积分更新请求,用户ID:', userId);
|
|
|
- console.log('积分变更:', points);
|
|
|
- console.log('变更原因:', reason);
|
|
|
|
|
|
return request<API.PointHistoryResponse>(`${API_URL}/api/point-history`, {
|
|
|
method: 'POST',
|
|
@@ -547,8 +546,7 @@ export async function createExchangeHistory(options?: { [key: string]: any }) {
|
|
|
}
|
|
|
|
|
|
export async function updateExchangeHistory(id: string, options?: { [key: string]: any }) {
|
|
|
- console.log('Sending update request for exchange history id:', id);
|
|
|
- console.log('Update data:', options);
|
|
|
+
|
|
|
return request<API.ExchangeHistoryList>(`${API_URL}/api/exchange-history`, {
|
|
|
method: 'PUT',
|
|
|
headers: {
|
|
@@ -562,7 +560,7 @@ export async function updateExchangeHistory(id: string, options?: { [key: string
|
|
|
}
|
|
|
|
|
|
export async function deleteExchangeHistory(id: string) {
|
|
|
- console.log('Sending delete request for exchange history id:', id);
|
|
|
+
|
|
|
return request<{ success: boolean }>(`${API_URL}/api/exchange-history?id=${id}`, {
|
|
|
method: 'DELETE',
|
|
|
headers: {
|
|
@@ -570,3 +568,54 @@ export async function deleteExchangeHistory(id: string) {
|
|
|
},
|
|
|
});
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+// 推单管理
|
|
|
+export async function getPushOrderRecord(
|
|
|
+ params: {
|
|
|
+ current?: number;
|
|
|
+ pageSize?: number;
|
|
|
+ },
|
|
|
+ options?: { [key: string]: any },
|
|
|
+) {
|
|
|
+ return request<API.PushOrderItemList>(`${API_URL}/api/pushOrder`, {
|
|
|
+ method: 'GET',
|
|
|
+ params: {
|
|
|
+ ...params,
|
|
|
+ },
|
|
|
+ ...(options || {}),
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+export async function createPushOrder(options: { [key: string]: any }) {
|
|
|
+
|
|
|
+ return request<API.PushOrderItemList>(`${API_URL}/api/pushOrder`, {
|
|
|
+ method: 'POST',
|
|
|
+ data: options,
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+export async function updatePushOrder(id: string, options?: { [key: string]: any }) {
|
|
|
+
|
|
|
+ return request<API.PushOrderItemList>(`${API_URL}/api/pushOrder`, {
|
|
|
+ method: 'PUT',
|
|
|
+ headers: {
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
+ },
|
|
|
+ data: JSON.stringify({
|
|
|
+ id,
|
|
|
+ ...(options || {}),
|
|
|
+ }),
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+export async function deletePushOrder(id: string) {
|
|
|
+
|
|
|
+ return request<{ success: boolean }>(`${API_URL}/api/pushOrder?id=${id}`, {
|
|
|
+ method: 'DELETE',
|
|
|
+ headers: {
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
+ },
|
|
|
+ });
|
|
|
+}
|