Newer
Older
shipFront / src / api / ship.js
[wangxitong] on 29 Dec 2021 389 bytes 气象站
/**
 * 船舶接口
 */
import request from '@/utils/request'


// 圆形区域船舶信息
export function getShipShipsInCircle(rgn) {
  return request({
    url: 'ship/shipsInCircle',
    method: 'get',
    params:{
      rgn: rgn,
      age: '1'
    }
  })
}

//调用次数
export function getShipLog() {
  return request({
    url: 'ship/log',
    method: 'get',
    params:{}
  })
}