diff --git a/src/views/card/customers/CardApplicationCustomers.api.ts b/src/views/card/customers/CardApplicationCustomers.api.ts deleted file mode 100644 index b29ec2c..0000000 --- a/src/views/card/customers/CardApplicationCustomers.api.ts +++ /dev/null @@ -1,64 +0,0 @@ -import {defHttp} from '/@/utils/http/axios'; -import { useMessage } from "/@/hooks/web/useMessage"; - -const { createConfirm } = useMessage(); - -enum Api { - list = '/card/cardApplicationCustomers/list', - save='/card/cardApplicationCustomers/add', - edit='/card/cardApplicationCustomers/edit', - deleteOne = '/card/cardApplicationCustomers/delete', - deleteBatch = '/card/cardApplicationCustomers/deleteBatch', - importExcel = '/card/cardApplicationCustomers/importExcel', - exportXls = '/card/cardApplicationCustomers/exportXls', -} -/** - * 导出api - * @param params - */ -export const getExportUrl = Api.exportXls; -/** - * 导入api - */ -export const getImportUrl = Api.importExcel; -/** - * 列表接口 - * @param params - */ -export const list = (params) => - defHttp.get({url: Api.list, params}); - -/** - * 删除单个 - */ -export const deleteOne = (params,handleSuccess) => { - return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => { - handleSuccess(); - }); -} -/** - * 批量删除 - * @param params - */ -export const batchDelete = (params, handleSuccess) => { - createConfirm({ - iconType: 'warning', - title: '确认删除', - content: '是否删除选中数据', - okText: '确认', - cancelText: '取消', - onOk: () => { - return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => { - handleSuccess(); - }); - } - }); -} -/** - * 保存或者更新 - * @param params - */ -export const saveOrUpdate = (params, isUpdate) => { - let url = isUpdate ? Api.edit : Api.save; - return defHttp.post({url: url, params}); -}