import request from "@/request/index"; export function GetBoatNum(id) { return request({ url: '/DigitalTwain/dredging/getDredgingShipNum', method: "post", data: {id} }) } export function GetFstj(id) { return request({ url: '/DigitalTwain/dredging/getDredgingByTime', method: "post", data: { id } }) } export function getDredgingShip(data) { return request({ url: '/DigitalTwain/dredging/getDredgingShip', method: "post", data:data }) } export function GetFstjByDay(time, id) { return request({ url: '/DigitalTwain/dredging/getShipListByDays', method: "post", data: { time, id } }) } export function GetYjWarning(index,size,id) { return request({ url: '/DigitalTwain/dredging/getCrossWarning', method: "post", data: { page: index, limit:size, id } }) } export function GetGctj() { return request({ url: '/DigitalTwain/dredging/workCountByYear', method: "post" }) } export function GetGcxx(year) { return request({ url: '/DigitalTwain/dredging/projectInfo', method: "post", data: { year } }) } // export function GetGcxx(year) { // return request({ // url: '/DigitalTwain/dredging/projectInfo', // method: "post", // data: { // year // } // }) // } export function GetWhss() { return request({ url: '/DigitalTwin/WaterDepthSpace/getHpjArea', method: "post" }) } export function GetHpjDepthPoints() { return request({ url: '/DigitalTwin/GetHpjDepthPoints?distance=100', method: "get" }) }