bug修改
This commit is contained in:
@@ -262,7 +262,7 @@ function resetForm() {
|
||||
const placeList = ref([])
|
||||
async function getSchoolPlace() {
|
||||
const data = await getPlaceList()
|
||||
placeList.value = data.placeList
|
||||
placeList.value = data.placeList.filter((it) => it.status == 0 && it.schoolStatus == 0)
|
||||
}
|
||||
|
||||
const emit = defineEmits(['success'])
|
||||
|
||||
@@ -268,7 +268,7 @@ function followSuccess() {
|
||||
const placeList = ref([])
|
||||
async function getSchoolPlace() {
|
||||
const data = await getPlaceList()
|
||||
placeList.value = data.placeList
|
||||
placeList.value = data.placeList.filter((it) => it.status == 0 && it.schoolStatus == 0)
|
||||
}
|
||||
|
||||
const defaultLatLng = ref({
|
||||
|
||||
Reference in New Issue
Block a user