You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
2.2 KiB
92 lines
2.2 KiB
import {defHttp} from '/@/utils/http/axios'; |
|
import { useMessage } from "/@/hooks/web/useMessage"; |
|
|
|
const { createConfirm } = useMessage(); |
|
|
|
enum Api { |
|
list = '/cms/cmsColumn/rootList', |
|
save='/cms/cmsColumn/add', |
|
edit='/cms/cmsColumn/edit', |
|
deleteOne = '/cms/cmsColumn/delete', |
|
deleteBatch = '/cms/cmsColumn/deleteBatch', |
|
importExcel = '/cms/cmsColumn/importExcel', |
|
exportXls = '/cms/cmsColumn/exportXls', |
|
loadTreeData = '/cms/cmsColumn/loadTreeRoot', |
|
getChildList = '/cms/cmsColumn/childList', |
|
getChildListBatch = '/cms/cmsColumn/getChildListBatch', |
|
} |
|
/** |
|
* 导出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}); |
|
// } |
|
|
|
export const saveOrUpdateDict = (params, isUpdate) => { |
|
let url = isUpdate ? Api.edit : Api.save; |
|
return defHttp.post({url: url, params}); |
|
} |
|
|
|
/** |
|
* 查询全部树形节点数据 |
|
* @param params |
|
*/ |
|
export const loadTreeData = (params) => |
|
defHttp.get({url: Api.loadTreeData,params}); |
|
/** |
|
* 查询子节点数据 |
|
* @param params |
|
*/ |
|
export const getChildList = (params) => |
|
defHttp.get({url: Api.getChildList, params}); |
|
/** |
|
* 批量查询子节点数据 |
|
* @param params |
|
*/ |
|
export const getChildListBatch = (params) => |
|
defHttp.get({url: Api.getChildListBatch, params},{isTransformResponse:false}); |
|
|
|
|