riku
2024-08-29 6b6eff08baa3d052b66fd2e68f1ac0d8495f6f8a
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);
  // },
};