This commit is contained in:
cansnow
2025-11-27 03:55:38 +08:00
parent 1626f0c52a
commit 198c3dd4a5
24 changed files with 2043 additions and 201 deletions
+29
View File
@@ -0,0 +1,29 @@
<template>
<div></div>
</template>
<script>
import Base from '@/components/Base.vue'
export default {
name: 'User',
data() {
return {
}
},
mixins: [Base],
created() {
const token = uni.getStorageSync('IMToken');
if (!token) {
uni.redirectTo({
url: "/pages/login/index"
})
}
},
props: {},
methods: {}
};
</script>
<style lang="scss" >
//@import '@/style/mixin.scss';
</style>