update 添加图标 完善地图功能

This commit is contained in:
zk
2023-12-07 18:44:15 +08:00
parent 123b681dc3
commit 622181ac96
14 changed files with 391 additions and 159 deletions
+10 -2
View File
@@ -7,6 +7,7 @@
<script setup lang="ts">
import { defineProps, defineEmits } from 'vue';
const emit = defineEmits(['close']);
const props = defineProps({
width: {
@@ -19,6 +20,7 @@
type: String,
},
});
function handleCancel() {
emit('close');
}
@@ -31,32 +33,38 @@
display: flex;
align-items: center;
width: 100%;
height: 56px;
height: 40px;
background: url('../../assets/images/dialog.png') no-repeat;
background-size: 100% 100%;
color: #ffffff !important;
padding-left: 2%;
}
.ant-modal-header {
padding: 0 !important;
padding-bottom: 0;
}
.ant-modal-header,
.ant-modal-content {
background-color: transparent !important;
}
.ant-modal-body {
padding: 0 !important;
}
.ant-modal-close-x,
.anticon {
color: #999999 !important;
}
.ant-modal-footer {
border-top: none !important;
}
.ant-modal-wrap {
background-color: rgba(0, 0, 0, 0.6);
}
}
</style>
</style>