1
This commit is contained in:
@@ -102,7 +102,6 @@ const loading = ref(false)
|
||||
const searched = ref(false)
|
||||
const error = ref('')
|
||||
const page = ref(1)
|
||||
const offset = ref(20)
|
||||
const maxPage = ref(1)
|
||||
const activePoi = ref(null)
|
||||
|
||||
@@ -299,7 +298,6 @@ async function doSearch() {
|
||||
kw,
|
||||
city.value,
|
||||
page.value,
|
||||
offset.value,
|
||||
centerLng.value,
|
||||
centerLat.value,
|
||||
radius.value,
|
||||
@@ -308,7 +306,6 @@ async function doSearch() {
|
||||
total.value = data.total || 0
|
||||
maxPage.value = data.maxPage || 1
|
||||
page.value = data.page || 1
|
||||
offset.value = data.offset || 20
|
||||
|
||||
// 在地图上标注
|
||||
if (mapRef.value && results.value.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user