OkkiAccount.api.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. import { defHttp } from '/@/utils/http/axios';
  2. import { useMessage } from "/@/hooks/web/useMessage";
  3. const { createConfirm } = useMessage();
  4. enum Api {
  5. list = '/account/okkiAccount/list',
  6. save='/account/okkiAccount/add',
  7. edit='/account/okkiAccount/edit',
  8. deleteOne = '/account/okkiAccount/delete',
  9. deleteBatch = '/account/okkiAccount/deleteBatch',
  10. importExcel = '/account/okkiAccount/importExcel',
  11. exportXls = '/account/okkiAccount/exportXls',
  12. }
  13. /**
  14. * 导出api
  15. * @param params
  16. */
  17. export const getExportUrl = Api.exportXls;
  18. /**
  19. * 导入api
  20. */
  21. export const getImportUrl = Api.importExcel;
  22. /**
  23. * 列表接口
  24. * @param params
  25. */
  26. export const list = (params) => defHttp.get({ url: Api.list, params });
  27. /**
  28. * 删除单个
  29. * @param params
  30. * @param handleSuccess
  31. */
  32. export const deleteOne = (params,handleSuccess) => {
  33. return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
  34. handleSuccess();
  35. });
  36. }
  37. /**
  38. * 批量删除
  39. * @param params
  40. * @param handleSuccess
  41. */
  42. export const batchDelete = (params, handleSuccess) => {
  43. createConfirm({
  44. iconType: 'warning',
  45. title: '确认删除',
  46. content: '是否删除选中数据',
  47. okText: '确认',
  48. cancelText: '取消',
  49. onOk: () => {
  50. return defHttp.delete({url: Api.deleteBatch, data: params}, {joinParamsToUrl: true}).then(() => {
  51. handleSuccess();
  52. });
  53. }
  54. });
  55. }
  56. /**
  57. * 保存或者更新
  58. * @param params
  59. * @param isUpdate
  60. */
  61. export const saveOrUpdate = (params, isUpdate) => {
  62. let url = isUpdate ? Api.edit : Api.save;
  63. return defHttp.post({ url: url, params }, { isTransformResponse: false });
  64. }