MeshDb.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <script setup>
  2. import { QingXiCheAndQvMyThreeWorldStore } from "./store/QingXiCheAndQvMyThreeWorldStore.js";
  3. </script>
  4. <template>
  5. <div class="MeshDb">
  6. <div class="title">自定义显示物体的数据</div>
  7. <div class="list" >
  8. <p> {{ QingXiCheAndQvMyThreeWorldStore().meshDbOpenMeshId }} 的数据 </p>
  9. </div>
  10. </div>
  11. </template>
  12. <style lang="less" scoped>
  13. .MeshDb * {
  14. -moz-user-select: none;
  15. -webkit-user-select: none;
  16. -ms-user-select: none;
  17. -khtml-user-select: none;
  18. user-select: none;
  19. }
  20. .MeshDb {
  21. position: fixed;
  22. left: 50%;
  23. margin: 0px 0px 0px -150px;
  24. width: 300px;
  25. padding: 5px;
  26. z-index: 3;
  27. background-color: #000000;
  28. border: 1px solid #ffffff;
  29. .title {
  30. width: 100%;
  31. padding: 5px;
  32. text-align: center;
  33. font-size: 14px;
  34. border: 1px solid #ffffff;
  35. color: #ffffff;
  36. }
  37. .list {
  38. width: 100%;
  39. padding: 3px;
  40. border: 1px solid #ffffff;
  41. color: #ffffff;
  42. cursor:pointer;
  43. }
  44. }
  45. </style>