Merge remote-tracking branch 'origin/main'

This commit is contained in:
A1300399510
2023-07-12 11:13:26 +08:00
4 changed files with 29 additions and 1 deletions

View File

@@ -166,12 +166,14 @@
</template>
<script setup>
import { reactive } from "vue";
import listItem from "../components/apartmentList/apartmentList.vue";
import pageTopBar from '../components/pageTopBar/pageTopBar.vue';
import indexWaterfallBox from "../components/indexWaterfallBox/indexWaterfallBox.vue";
import seachModule from "../components/seachModule/seachModule.vue";
import indexRegularBox from '../components/indexRegularBox/indexRegularBox.vue';
import headerNavigation from '../components/public/head.vue'
import api from "../utils/api";
//
let informationData = [
@@ -194,6 +196,12 @@ let ListSelectBtn = [
text: '已认证'
},
]
let indexData= reactive({data:[]})
api.index().then(res=>{
console.log(res)
})
</script>
<script>
export default {