2023-04-04 08:47:19 +08:00
|
|
|
import request from '../js/request';
|
|
|
|
|
import config from '../js/config';
|
|
|
|
|
|
2023-05-24 08:58:48 +08:00
|
|
|
// 获取设备
|
2023-04-04 08:47:19 +08:00
|
|
|
export function getDeviceList(params) {
|
|
|
|
|
return request({
|
2023-07-03 20:29:24 +08:00
|
|
|
url: '/cs-device-boot/EquipmentDelivery/queryEquipmentByProject',
|
2023-04-04 08:47:19 +08:00
|
|
|
method: 'post',
|
|
|
|
|
data: params,
|
|
|
|
|
});
|
|
|
|
|
}
|