85 lines
2.2 KiB
TypeScript
85 lines
2.2 KiB
TypeScript
|
import { defHttp } from '/@/utils/http/axios';
|
||
|
import { useMessage } from "/@/hooks/web/useMessage";
|
||
|
|
||
|
const { createConfirm } = useMessage();
|
||
|
|
||
|
enum Api {
|
||
|
list = '/zyInfoStudentHp/zyInfoStudentHp/list',
|
||
|
getHpxxList = '/zyInfoStudent/zyInfoStudent/getHpxxList',
|
||
|
save='/zyInfoStudentHp/zyInfoStudentHp/add',
|
||
|
saveOne='/zyInfoStudentHp/zyInfoStudentHp/saveOne',
|
||
|
saveTwo='/zyInfoStudentHp/zyInfoStudentHp/saveTwo',
|
||
|
edit='/zyInfoStudentHp/zyInfoStudentHp/edit',
|
||
|
deleteOne = '/zyInfoStudentHp/zyInfoStudentHp/delete',
|
||
|
deleteBatch = '/zyInfoStudentHp/zyInfoStudentHp/deleteBatch',
|
||
|
importExcel = '/zyInfoStudentHp/zyInfoStudentHp/importExcel',
|
||
|
exportXls = '/zyInfoStudentHp/zyInfoStudentHp/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 getHpxxList = (params) => defHttp.get({ url: Api.getHpxxList, params });
|
||
|
|
||
|
/**
|
||
|
* 删除单个
|
||
|
* @param params
|
||
|
* @param handleSuccess
|
||
|
*/
|
||
|
export const deleteOne = (params,handleSuccess) => {
|
||
|
return defHttp.delete({url: Api.deleteOne, params}, {joinParamsToUrl: true}).then(() => {
|
||
|
handleSuccess();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 批量删除
|
||
|
* @param params
|
||
|
* @param handleSuccess
|
||
|
*/
|
||
|
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
|
||
|
* @param isUpdate
|
||
|
*/
|
||
|
export const saveOrUpdate = (params, isUpdate) => {
|
||
|
let url = isUpdate ? Api.edit : Api.save;
|
||
|
return defHttp.post({ url: url, params }, { isTransformResponse: false });
|
||
|
}
|
||
|
|
||
|
|
||
|
export const saveOne = (params,handleSuccess) => {
|
||
|
return defHttp.post({ url: Api.saveOne, params }, { isTransformResponse: false });
|
||
|
}
|
||
|
|
||
|
export const saveTwo = (params,handleSuccess) => {
|
||
|
return defHttp.post({ url: Api.saveTwo, params }, { isTransformResponse: false });
|
||
|
}
|