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.
|
import { requestGet } from '@component/utils'; |
|
// 设备详情 |
|
export const getMachineInfo = (params) => { |
|
return requestGet(process.env.REACT_APP_API_URL, `device/getDeviceById/${params === null || params === void 0 ? void 0 : params.deviceCode}`); |
|
};
|
|
|