hdsj.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. import request from "@/request/index";
  2. export function GetBoatNum(id) {
  3. return request({
  4. url: '/DigitalTwain/dredging/getDredgingShipNum',
  5. method: "post",
  6. data: {id}
  7. })
  8. }
  9. export function GetFstj(id) {
  10. return request({
  11. url: '/DigitalTwain/dredging/getDredgingByTime',
  12. method: "post",
  13. data: {
  14. id
  15. }
  16. })
  17. }
  18. export function getDredgingShip(data) {
  19. return request({
  20. url: '/DigitalTwain/dredging/getDredgingShip',
  21. method: "post",
  22. data:data
  23. })
  24. }
  25. export function GetFstjByDay(time, id) {
  26. return request({
  27. url: '/DigitalTwain/dredging/getShipListByDays',
  28. method: "post",
  29. data: {
  30. time, id
  31. }
  32. })
  33. }
  34. export function GetYjWarning(index,size,id) {
  35. return request({
  36. url: '/DigitalTwain/dredging/getCrossWarning',
  37. method: "post",
  38. data: {
  39. page: index, limit:size, id
  40. }
  41. })
  42. }
  43. export function GetGctj() {
  44. return request({
  45. url: '/DigitalTwain/dredging/workCountByYear',
  46. method: "post"
  47. })
  48. }
  49. export function GetGcxx(year) {
  50. return request({
  51. url: '/DigitalTwain/dredging/projectInfo',
  52. method: "post",
  53. data: {
  54. year
  55. }
  56. })
  57. }
  58. // export function GetGcxx(year) {
  59. // return request({
  60. // url: '/DigitalTwain/dredging/projectInfo',
  61. // method: "post",
  62. // data: {
  63. // year
  64. // }
  65. // })
  66. // }
  67. export function GetWhss() {
  68. return request({
  69. url: '/DigitalTwin/WaterDepthSpace/getHpjArea',
  70. method: "post"
  71. })
  72. }
  73. export function GetHpjDepthPoints() {
  74. return request({
  75. url: '/DigitalTwin/GetHpjDepthPoints?distance=100',
  76. method: "get"
  77. })
  78. }