Browse Source

后台字段变更先改成any

xia 4 years ago
parent
commit
9e6c3b3cf4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/api/index.ts

+ 1 - 1
src/api/index.ts

@@ -174,7 +174,7 @@ export const getDeliveryMoreStatList = (
     book_name: string;
     page: number;
   }> = { page: 1 }
-): AxiosPromise<IList<deliveryPlanItem>> => {
+): AxiosPromise<IList<any>> => {
   return axios("/delivery/moreStat", { params: query });
 };