diff --git a/src/views/customers/CardApplicationCustomers.api.ts b/src/views/customers/CardApplicationCustomers.api.ts index 71cee3e..85fd01f 100644 --- a/src/views/customers/CardApplicationCustomers.api.ts +++ b/src/views/customers/CardApplicationCustomers.api.ts @@ -11,6 +11,8 @@ deleteBatch = '/customers/cardApplicationCustomers/deleteBatch', importExcel = '/customers/cardApplicationCustomers/importExcel', exportXls = '/customers/cardApplicationCustomers/exportXls', + getAreaCardDeliveryPersonList = '/customers/cardApplicationCustomers/getAreaCardDeliveryPersonList', + dispatch = '/customers/cardApplicationCustomers/dispatch', } /** * 导出api @@ -28,6 +30,12 @@ export const list = (params) => defHttp.get({url: Api.list, params}); +export const getAreaCardDeliveryPersonList = (params) => + defHttp.get({url: Api.getAreaCardDeliveryPersonList, params}); + +export const dispatch = (params) => + defHttp.post({url: Api.dispatch, params}); + /** * 删除单个 */