|
|
@@ -123,7 +123,7 @@ const current = ref(1)
|
|
|
const searchLoading = ref(true)
|
|
|
const tagsVal = ref()
|
|
|
const get_placeList = (tagsVal) => {
|
|
|
- http.post('/home/getPlaceList', { size: 10, current: current.value, venueType: String(tagsVal), longitude: cache.get('LON') || 0, latitude: cache.get('LAT') || 0 }).then((res) => {
|
|
|
+ http.post('/home/getPlaceList', { size: 10, current: current.value, venueType: String(tagsVal), longitude: cache.get('LON') || 0, latitude: cache.get('LAT') || 0 },{ loading: true }).then((res) => {
|
|
|
searchLoading.value = false
|
|
|
if (current.value == 1) {
|
|
|
dataList.value = res.result.records
|