Newer
Older
shipFront / src / api / ship.js
[wangxitong] on 15 Oct 2021 444 bytes first commit
/**
 * 船舶接口
 */
import request from '@/utils/request'


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

// 台风详情
export function getTyphoonDetail(typhoonId) {
  return request({
    url: 'typhoon/detail',
    method: 'get',
    params: {
      typhoonId: typhoonId
    }
  })
}