增加造数的页面

This commit is contained in:
qiaoxinjiu
2026-04-13 16:42:02 +08:00
commit 3c7f075544
48 changed files with 25781 additions and 0 deletions

27
src/App.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
import { userGetAdvance } from '@/api/Userapi'
export default {
name: 'App',
mounted() {
const userinfo = JSON.parse(localStorage.getItem('userinfo'))
if (userinfo) {
userGetAdvance({ userId: userinfo.userId }).then(data => {
this.$store.commit('SetRole', data.data.userStatus)
})
}
}
}
</script>
<style>
#app{
height: 100%;
}
</style>