This commit is contained in:
zk
2023-11-21 15:14:00 +08:00
parent 5d8c66b056
commit e73c95296c
31 changed files with 27 additions and 10 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 B

+24 -8
View File
@@ -1,11 +1,27 @@
<script setup lang="ts"> <template>
<div class="center-map">
<div class="china-map-box">
<div class="tab-list"></div>
<div class="route-navigation"></div>
<div class="china-map-container"></div>
</div>
<div class="center-footer">
<div class="count-num"></div>
</div>
</div>
</template>
<script lang="ts" setup>
</script> </script>
<style lang="less" scoped>
<template> .center-map {
color: #fff;
</template> display: flex;
flex-direction: column;
<style scoped lang="less"> align-content: space-between;
.center-footer{
height: 60px;
border: 1px solid red;
}
}
</style> </style>
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -17,7 +17,7 @@
<two-l/> <two-l/>
</div> </div>
<div class="body-d-middle"> <div class="body-d-middle">
<ChinaMap/> <china-map />
</div> </div>
<div class="body-d-right"> <div class="body-d-right">
<one-r/> <one-r/>
@@ -78,7 +78,7 @@ import ChinaMap from '../components/chinaMap/chinaMap.vue'
width: 25%; width: 25%;
} }
.body-d-left, .body-d-middle, .body-d-right { .body-d-left, .body-d-right {
text-align: center; text-align: center;
} }