Test.vue 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <div>
  3. <!--<Radar></Radar>-->
  4. <!--<Sankey></Sankey>-->
  5. <div class="other-people">
  6. <div class="image-border image-border1"></div>
  7. <div class="image-border image-border2"></div>
  8. <div class="image-border image-border3"></div>
  9. <div class="image-border image-border4"></div>
  10. <div class="other-people-title">旅客人脸图</div>
  11. </div>
  12. <Map></Map>
  13. </div>
  14. </template>
  15. <script>
  16. import Radar from '@/components/Radar.vue'
  17. import Sankey from '@/components/Sankey.vue'
  18. import Map from '@/components/Map.vue'
  19. export default {
  20. data() {
  21. return {
  22. editableTabsValue: '1'
  23. }
  24. },
  25. components: {
  26. Radar, Sankey,Map
  27. }
  28. }
  29. </script>
  30. <style scoped>
  31. .image-border {
  32. position: absolute;
  33. width: 20px;
  34. height: 20px;
  35. }
  36. .image-border1 {
  37. top: 0px;
  38. left: 0;
  39. border-left: 2px solid #6DC1FF;
  40. border-top: 2px solid #6DC1FF;
  41. }
  42. .image-border2 {
  43. top: 0;
  44. right: -2px;
  45. border-right: 2px solid #6DC1FF;
  46. border-top: 2px solid #6DC1FF;
  47. }
  48. .image-border3 {
  49. bottom: 0;
  50. left: 0;
  51. border-bottom: 2px solid #6DC1FF;
  52. border-left: 2px solid #6DC1FF;
  53. }
  54. .image-border4 {
  55. bottom: 0;
  56. right: -2px;
  57. border-right: 2px solid #6DC1FF;
  58. border-bottom: 2px solid #6DC1FF;
  59. }
  60. .other-people {
  61. border: 1px dashed #01355B;
  62. width: 200px;
  63. height: 200px;
  64. margin-left: 61px;
  65. padding: 5px;
  66. position: relative;
  67. }
  68. .other-image {
  69. width: 100%;
  70. height: 100%;
  71. }
  72. .other-people-title {
  73. position: absolute;
  74. background: rgb(21, 90, 154);
  75. height: 52px;
  76. opacity: 0.5;
  77. font-size: 14px;
  78. line-height: 52px;
  79. top: 25px;
  80. left: 25px;
  81. }
  82. </style>