上传代码

This commit is contained in:
2025-08-18 09:57:10 +08:00
commit ff52db1edc
560 changed files with 102250 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<template>
<view>
<button @click="getAddress">获取定位</button>
</view>
</template>
<script setup>
const getAddress = () => {
uni.chooseLocation({
success: (res) => {
location.value = {
name: res.name,
address: res.address,
latitude: res.latitude,
longitude: res.longitude
};
}
});
};
</script>