import { defHttp } from '/@/utils/http/axios'; import { useMessage } from "/@/hooks/web/useMessage"; const { createConfirm } = useMessage(); enum Api { list = '/zyInfoStudent/zyInfoStudent/list', cdxxlist = '/zyInfoStudent/zyInfoStudent/cdxxlist', save='/zyInfoStudent/zyInfoStudent/add', edit='/zyInfoStudent/zyInfoStudent/edit', zyscStu='/zyInfoStudent/zyInfoStudent/zyscStu', editCdlx='/zyInfoStudent/zyInfoStudent/editCdlx', deleteOne = '/zyInfoStudent/zyInfoStudent/delete', deleteBatch = '/zyInfoStudent/zyInfoStudent/deleteBatch', fabuBatch = '/zyInfoStudent/zyInfoStudent/fabuBatch', importExcel = '/zyInfoStudent/zyInfoStudent/importExcel', exportXls = '/zyInfoStudent/zyInfoStudent/exportXls', getQuaList = '/zyCcjg/zyCcjg/getQuaList', } /** * 导出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 cdxxlist = (params) => defHttp.get({ url: Api.cdxxlist, params }); export const getQuaList = (params) => defHttp.get({ url: Api.getQuaList, 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(); }); } }); } export const batchFabu = (params, handleSuccess) => { createConfirm({ iconType: 'warning', title: '确认发布', content: '是否发布选中数据', okText: '确认', cancelText: '取消', onOk: () => { return defHttp.post({url: Api.fabuBatch, 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 zyscStu = (params, isUpdate) => { let url = Api.zyscStu; return defHttp.post({ url: url, params }, { isTransformResponse: false }); } export const editCdlx = (params, isUpdate) => { let url = Api.editCdlx; return defHttp.post({ url: url, params }, { isTransformResponse: false }); }