Merge branch 'main' of git.zdool.com:xs/yxdt/h5

This commit is contained in:
姚宇浩 2023-12-08 14:44:05 +08:00
commit 5291e5d0d0
1 changed files with 8 additions and 4 deletions

View File

@ -116,7 +116,7 @@ var T = window.T;
const dropdown = reactive({
value1: 0,
hinegh: 0,
hinegh: 256,
value1: 0,
value2: 0,
value3: 0,
@ -275,7 +275,6 @@ const init = () => {
map = new T.Map("mapDiv");
// map.setMapType(window.TMAP_SATELLITE_MAP);
map.centerAndZoom(new T.LngLat(121.88356, 29.45144), 13);
dropdown.hinegh = document.body.clientHeight * 0.45;
control = new T.Control.Zoom();
//
map.addControl(control);
@ -295,7 +294,12 @@ const yxfwxz = (e) => {
list.index = e.id;
};
const mousedown = (event) => {
if (document.body.clientHeight - event.touches[0].clientY >= 256) {
if (
document.body.clientHeight - event.touches[0].clientY >= 256 &&
document.body.clientHeight - event.touches[0].clientY <=
document.body.clientHeight
) {
console.log(event.touches[0].clientY);
dropdown.hinegh = document.body.clientHeight - event.touches[0].clientY;
}
};
@ -489,7 +493,7 @@ onMounted(() => {
border-radius: 6px 6px 6px 6px;
opacity: 1;
border: 1px solid #eaeaea;
margin: 10px auto 0;
margin: 10px auto 3px;
background-color: #eaeaea;
}
</style>