user.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. // 用户权限
  2. import { useRoute } from 'vue-router';
  3. import { GetUserLimit } from "@/apis/user";
  4. // const testData = {
  5. // "sysType": "MA==",
  6. // "userId": "NTMwMw==",
  7. // "type": "eXc="
  8. // }
  9. //userId=NTMwMw==&sysType=W29iamVjdCBPYmplY3Rd&digitalTwainType=eXM=
  10. // const res ={
  11. // data:{
  12. // Rows:[
  13. // {
  14. // "id": "6291",
  15. // "name": "数字孪生",
  16. // "parentId": "0"
  17. // },
  18. // {
  19. // "id": "6602",
  20. // "name": "数字孪生业务版",
  21. // "parentId": "6291"
  22. // },
  23. // {
  24. // "id": "8445",
  25. // "name": "航道疏浚",
  26. // "parentId": "6602"
  27. // },
  28. // {
  29. // "id": "8446",
  30. // "name": "图层",
  31. // "parentId": "6602"
  32. // },
  33. // {
  34. // "id": "8441",
  35. // "name": "水上客运",
  36. // "parentId": "6602"
  37. // },
  38. // {
  39. // "id": "8442",
  40. // "name": "交通安全",
  41. // "parentId": "6602"
  42. // },
  43. // {
  44. // "id": "8443",
  45. // "name": "卡口监控",
  46. // "parentId": "6602"
  47. // },
  48. // {
  49. // "id": "8444",
  50. // "name": "运营监管",
  51. // "parentId": "6602"
  52. // },
  53. // {
  54. // "id": "8461",
  55. // "name": "锚地",
  56. // "parentId": "8446"
  57. // },
  58. // {
  59. // "id": "8462",
  60. // "name": "掉头区",
  61. // "parentId": "8446"
  62. // },
  63. // {
  64. // "id": "8466",
  65. // "name": "水下地形",
  66. // "parentId": "8446"
  67. // },
  68. // {
  69. // "id": "8464",
  70. // "name": "水上绿色综合服务区",
  71. // "parentId": "8446"
  72. // },
  73. // {
  74. // "id": "8465",
  75. // "name": "航标",
  76. // "parentId": "8446"
  77. // },
  78. // {
  79. // "id": "8453",
  80. // "name": "船舶",
  81. // "parentId": "8446"
  82. // },
  83. // {
  84. // "id": "8454",
  85. // "name": "视频融合",
  86. // "parentId": "8446"
  87. // },
  88. // {
  89. // "id": "8455",
  90. // "name": "码头泊位",
  91. // "parentId": "8446"
  92. // },
  93. // {
  94. // "id": "8456",
  95. // "name": "客运码头",
  96. // "parentId": "8446"
  97. // },
  98. // {
  99. // "id": "8458",
  100. // "name": "两岸精模",
  101. // "parentId": "8446"
  102. // },
  103. // {
  104. // "id": "8459",
  105. // "name": "两岸白模",
  106. // "parentId": "8446"
  107. // },
  108. // {
  109. // "id": "8460",
  110. // "name": "航道",
  111. // "parentId": "8446"
  112. // },
  113. // {
  114. // "id": "8463",
  115. // "name": "警戒区",
  116. // "parentId": "8446"
  117. // },
  118. // ]
  119. // }
  120. // }
  121. /**
  122. * @params nameList-按钮列表
  123. */
  124. export function GetUserPrivilege(nameList) {
  125. let userData = useRoute().query
  126. // console.log(userData)
  127. if(userData.digitalTwainType){
  128. userData.type = userData.digitalTwainType
  129. delete userData.digitalTwainType
  130. }
  131. // userData.sysType = "MA=="
  132. // console.log(userData)
  133. GetUserLimit(userData).then((res) => {
  134. console.log(res)
  135. let parentId = []
  136. let limitArr = []
  137. res.data.Rows.forEach((item) => {
  138. if (item.name.includes('数字孪生业务版') || item.name.includes('数字孪生演示版')) {
  139. res.data.Rows.forEach((item) => {
  140. parentId.push(item.id)
  141. })
  142. // console.log(parentId)
  143. }
  144. if (parentId.includes(item.parentId)) {
  145. limitArr.push(item.name)
  146. // console.log(limitArr)
  147. }
  148. })
  149. nameList.data = nameList.data.filter((item) => {
  150. if (limitArr.includes(item.name)) {
  151. // console.log(nameList)
  152. return true
  153. }
  154. })
  155. })
  156. }