riku
2024-05-14 6b1c06ff714863c7a791d8a7ac921e7ec5da8a97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { $http } from './index';
 
/**
 *
 */
export default {
  searchScene(area) {
    return $http.post(`scene/find`, area).then((res) => res.data);
  }
 
  // searchByCoordinate({lng, lat, radius}) {
  //   return $http.post(`scene/find/radius`, mission).then((res) => res.data);
  // },
};