hdsj.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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(data) {
  74. return request({
  75. url: '/DigitalTwin/GetHpjDepthPoints',
  76. method: "post",
  77. data: data
  78. })
  79. }
  80. export function GetVideoToken() {
  81. return new Promise((resolve, reject) => {
  82. request({
  83. method: 'post',
  84. headers: {
  85. "Content-Type": "application/x-www-form-urlencoded",
  86. },
  87. url: 'https://proj.bim-ace.com:10260/connect/token',
  88. data: {
  89. client_id: '5da87851cb5c444283424fa6f7b2fe6b',
  90. client_secret: '50f28c2d97e54f55bf837053b0aa3790',
  91. scope: 'DataCenterV2',
  92. grant_type: 'client_credentials',
  93. }
  94. }).then(res => {
  95. request({
  96. method: 'get',
  97. url: 'https://proj.bim-ace.com:10207/services/api/data-center/ys7/subAccessToken',
  98. headers: {
  99. Authorization: 'Bearer ' + res.access_token
  100. },
  101. params: {
  102. Id: '0430554C-B95A-4F24-94E8-AEE9B27B3A08',
  103. AccountId: 'c8922f0994664497a78a20ced154a036',
  104. }
  105. }).then(res => {
  106. resolve(res)
  107. }).catch((e) => {
  108. reject({ msg: 'accessToken获取失败' })
  109. })
  110. }).catch((e) => {
  111. reject({ msg: '安全认证未通过' })
  112. })
  113. })
  114. }