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.
89 lines
2.3 KiB
89 lines
2.3 KiB
import { defHttp } from '/@/utils/http/axios';
|
|
import { useMessage } from "/@/hooks/web/useMessage";
|
|
|
|
const { createConfirm } = useMessage();
|
|
|
|
enum Api {
|
|
list = '/military/dtDeviceInfo/list',
|
|
save = '/military/dtDeviceInfo/add',
|
|
edit = '/military/dtDeviceInfo/edit',
|
|
deleteOne = '/military/dtDeviceInfo/delete',
|
|
deleteBatch = '/military/dtDeviceInfo/deleteBatch',
|
|
importExcel = '/military/dtDeviceInfo/importExcel',
|
|
exportXls = '/military/dtDeviceInfo/exportXls',
|
|
dtDeviceSensorInfoList = '/military/dtDeviceInfo/queryDtDeviceSensorInfoByMainId',
|
|
dtDeviceStatusList = '/military/dtDeviceInfo/queryDtDeviceStatusByMainId',
|
|
}
|
|
/**
|
|
* 导出api
|
|
* @param params
|
|
*/
|
|
export const getExportUrl = Api.exportXls;
|
|
|
|
/**
|
|
* 导入api
|
|
*/
|
|
export const getImportUrl = Api.importExcel;
|
|
/**
|
|
* 子表单查询接口
|
|
* @param params
|
|
*/
|
|
export const queryDtDeviceSensorInfo = Api.dtDeviceSensorInfoList
|
|
/**
|
|
* 子表单查询接口
|
|
* @param params
|
|
*/
|
|
export const queryDtDeviceStatus = Api.dtDeviceStatusList
|
|
/**
|
|
* 列表接口
|
|
* @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 }, { isTransformResponse: false });
|
|
}
|
|
/**
|
|
* 子表列表接口
|
|
* @param params
|
|
*/
|
|
export const dtDeviceSensorInfoList = (params) =>
|
|
defHttp.get({ url: Api.dtDeviceSensorInfoList, params }, { isTransformResponse: false });
|
|
/**
|
|
* 子表列表接口
|
|
* @param params
|
|
*/
|
|
export const dtDeviceStatusList = (params) =>
|
|
defHttp.get({ url: Api.dtDeviceStatusList, params }, { isTransformResponse: false });
|
|
|