设备接口列表对接

This commit is contained in:
仲么了
2023-04-04 08:47:19 +08:00
parent 0325347e06
commit feb7d7b6ed
8 changed files with 184 additions and 169 deletions

10
common/api/device.js Normal file
View File

@@ -0,0 +1,10 @@
import request from '../js/request';
import config from '../js/config';
export function getDeviceList(params) {
return request({
url: '/EquipmentDelivery/queryEquipmentByProject',
method: 'post',
data: params,
});
}