jihongshun
2025-07-12 b498685e9c29c9c4b56f24f1ee1c9db9fd109ad9
1
2
3
4
5
6
7
8
9
10
import request from '@/utils/request';
 
// 新增拍摄航线模版
export function addPoint(data) {
  return request({
    url: '/tower/point',
    method: 'post',
    data: data
  });
}