DataCenterGis.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <div class="data-center-gis-container" :class="[sizeType + 'Size']">
  3. <div class="fontSizeBox" @click="drawerVisible = true">
  4. <el-icon><Setting /></el-icon>
  5. </div>
  6. <div class="gis-container">
  7. <div class="left-container">
  8. <leftMap />
  9. </div>
  10. <div class="right-container">
  11. <rightPanel />
  12. </div>
  13. </div>
  14. <el-drawer v-model="drawerVisible" title="设置" :with-header="false">
  15. <el-form class="detail-box">
  16. <el-form-item label="字体大小" label-position="top">
  17. <el-slider v-model="sizeType" :step="50" show-stops :marks="marks" />
  18. </el-form-item>
  19. <el-form-item label="地图主题切换" label-position="top">
  20. <div class="map-change">
  21. <div class="map" @click="changeTheme('浅色')">
  22. <img src="../../assets/image/政务地图.png" />浅色
  23. </div>
  24. <div class="map" @click="changeTheme('深色')">
  25. <img src="../../assets/image/暗色地图.png" />深色
  26. </div>
  27. </div>
  28. </el-form-item>
  29. </el-form>
  30. </el-drawer>
  31. </div>
  32. </template>
  33. <script setup>
  34. import { ref, reactive, watch } from 'vue';
  35. import leftMap from './components/LeftMap.vue';
  36. import rightPanel from './components/RightPanel.vue';
  37. import { ArrowDown, Setting } from '@element-plus/icons-vue';
  38. import { ThemeChange } from '@/utils/map/mapOperation';
  39. import { useMapStore } from '@/stores/mapStore';
  40. console.log(1);
  41. const sizeType = ref('default');
  42. const step = ref(0);
  43. const drawerVisible = ref(false);
  44. const marks = reactive({
  45. 0: '标准',
  46. 50: '大',
  47. 100: '超大'
  48. });
  49. const changeTheme = (val) => {
  50. ThemeChange(val == '浅色' ? 'basetheme' : 'yaogantheme');
  51. };
  52. watch(
  53. () => sizeType.value,
  54. (val) => {
  55. sliderChange(val);
  56. }
  57. );
  58. const sliderChange = (val) => {
  59. console.log(val);
  60. if (val == 0) {
  61. sizeType.value = 'default';
  62. } else if (val == 50) {
  63. sizeType.value = 'big';
  64. } else if (val == 100) {
  65. sizeType.value = 'veryBig';
  66. }
  67. };
  68. </script>
  69. <style lang="scss">
  70. .data-center-gis-container {
  71. position: relative;
  72. width: 100vw;
  73. height: 100vh;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. .fontSizeBox {
  78. position: absolute;
  79. top: 20px;
  80. right: 20px;
  81. width: 30px;
  82. height: 30px;
  83. font-size: 28px;
  84. z-index: 999;
  85. .el-dropdown-link {
  86. font-size: 20px;
  87. outline: none;
  88. }
  89. }
  90. .gis-container {
  91. display: flex;
  92. justify-content: flex-start;
  93. background-color: #e5f2ff;
  94. height: 1080px;
  95. .left-container {
  96. width: calc(100vw - 725px - 150px);
  97. padding-left: 10px;
  98. height: 100%;
  99. }
  100. .right-container {
  101. width: 725px;
  102. height: 100%;
  103. margin-left: 86px;
  104. margin-right: 64px;
  105. }
  106. }
  107. }
  108. .drop-box {
  109. .el-dropdown-menu__item {
  110. padding: 0;
  111. }
  112. .size-box {
  113. display: inline-block;
  114. width: 100px;
  115. padding: 10px;
  116. text-align: center;
  117. &.active {
  118. background-color: #e5f2ff;
  119. color: #1257bc;
  120. }
  121. }
  122. }
  123. .detail-box {
  124. .el-form-item__label {
  125. font-size: 18px;
  126. }
  127. }
  128. .el-slider {
  129. margin: 0 10px;
  130. margin-bottom: 55px;
  131. }
  132. .el-drawer__body {
  133. .el-slider__runway {
  134. height: 1px;
  135. }
  136. .el-slider__stop {
  137. background-color: #0080ff;
  138. transform: translate(-50%, -5px);
  139. width: 1px;
  140. height: 15px;
  141. border-radius: 0;
  142. }
  143. .el-slider__marks-text {
  144. font-size: 18px;
  145. }
  146. }
  147. .map-change {
  148. display: flex;
  149. justify-content: space-between;
  150. width: 100%;
  151. padding-top: 20px;
  152. .map {
  153. display: flex;
  154. flex-direction: column;
  155. justify-content: center;
  156. align-items: center;
  157. img {
  158. width: 180px;
  159. height: 150px;
  160. }
  161. }
  162. }
  163. </style>