import { $fysp } from '../index'; export default { fetchDevice(sceneId) { return $fysp .get(`device`, { params: { sceneId: sceneId } }) .then((res) => res.data); } };