jihongshun
2025-07-08 e0683e37cdd7dc99adf2af6521962c3f29d0f9b7
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
  });
}