device.api.ts 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. import { defHttp } from '/@/utils/http/axios';
  2. import { Modal } from 'ant-design-vue';
  3. enum Api {
  4. list = '/safety/ventanalyDeviceInfo/list',
  5. queryById = '/safety/ventanalyDeviceInfo/queryById',
  6. save = '/safety/ventanalyDeviceInfo/add',
  7. edit = '/safety/ventanalyDeviceInfo/edit',
  8. deleteById = '/safety/ventanalyDeviceInfo/delete',
  9. deleteBatch = '/safety/ventanalyDeviceInfo/deleteBatch',
  10. importExcel = '/sys/user/importExcel',
  11. exportXls = '/safety/ventanalyMonitorParams/exportXls',
  12. importExcel1 = '/safety/gasDayReport/importByExcel',
  13. }
  14. /**
  15. * 导出api
  16. * @param params
  17. */
  18. export const getExportUrl = Api.exportXls;
  19. /**
  20. * 导入api
  21. */
  22. export const getImportUrl = Api.importExcel;
  23. /**
  24. * 导入api
  25. */
  26. export const getImportUrl1 = Api.importExcel1;
  27. /**
  28. * 列表接口
  29. * @param params
  30. */
  31. export const list = (params) => defHttp.get({ url: Api.list, params });
  32. export const queryById = (params) => defHttp.get({ url: Api.queryById, params });
  33. /**
  34. * 删除用户
  35. */
  36. export const deleteById = (params, handleSuccess) => {
  37. return defHttp.delete({ url: Api.deleteById, params }, { joinParamsToUrl: true }).then(() => {
  38. handleSuccess();
  39. });
  40. };
  41. /**
  42. * 批量删除用户
  43. * @param params
  44. */
  45. export const batchDeleteById = (params, handleSuccess) => {
  46. Modal.confirm({
  47. title: '确认删除',
  48. content: '是否删除选中数据',
  49. okText: '确认',
  50. cancelText: '取消',
  51. onOk: () => {
  52. return defHttp.delete({ url: Api.deleteBatch, data: params }, { joinParamsToUrl: true }).then(() => {
  53. handleSuccess();
  54. });
  55. },
  56. });
  57. };
  58. /**
  59. * 保存或者更新用户
  60. * @param params
  61. */
  62. export const saveOrUpdate = (params, isUpdate) => {
  63. const url = isUpdate ? Api.edit : Api.save;
  64. return isUpdate ? defHttp.put({ url: url, params }) : defHttp.post({ url: url, params });
  65. };