1 Star 0 Fork 56

REIGE/考试君- App

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
辣条老板 提交于 2020-12-01 17:29 . fix exam bugs
<script>
import Vue from 'vue'
export default {
onLaunch: function() {
console.log('App Lanuch')
},
onShow: function() {
console.log('App Show')
try {
// 判断是否登录
var token = uni.getStorageSync('token');
if (token != "") {
// 已经登录
this.$store.dispatch('student/getStudentInfo')
} else {
// 未登录
this.$store.dispatch('student/Logout')
}
} catch (e) {
console.log(e)
this.$store.dispatch('student/Logout')
}
},
onHide: function() {
console.log('App Hide')
},
}
</script>
<style>
page {
background: #F5F6F7;
}
uni-button::after {
border: none;
}
.ellipse-line {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ellipse-2 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
.footer-block {
width: 100vw;
padding-bottom: env(safe-area-inset-bottom);
}
.header-block {
width: 100vw;
padding-top: env(safe-area-inset-top);
}
.white-header {
color: #fff !important;
}
.wrong-header-bg {
background: linear-gradient(90deg, rgba(28, 162, 251, 1), rgba(2, 123, 254, 1));
color: #fff;
}
</style>
<style lang="scss">
@import 'plugins/uview-ui/index.scss';
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/REIGE/ExamKing-app.git
git@gitee.com:REIGE/ExamKing-app.git
REIGE
ExamKing-app
考试君- App
master

搜索帮助