罗世杰:临时提交

This commit is contained in:
LuoShijie
2023-11-16 20:51:49 +08:00
parent 971bf5efa6
commit 29ea1e1486
3 changed files with 25 additions and 6 deletions

View File

@@ -29,6 +29,7 @@
import HomeNoticeBar from "./HomeMainContent/HomeNoticeBar.vue"
import HomeNavCard from "./HomeMainContent/HomeNavCard.vue"
import Statistics from "./HomeMainContent/Statistics.vue"
import QQMapWX from "@/utils/qqmap-wx-jssdk.min.js"
export default {
components: {
@@ -49,6 +50,7 @@
this.getNotice()
this.getStat()
this.open()
this.getClassList()
},
methods: {
getBanner() {
@@ -64,6 +66,10 @@
getStat() {
this.$api.getStat().then(res => {
this.statNum = res.data.data
})
},
getClassList() {
this.$api.getClassList().then(res => {
console.log(res.data.data);
})
},