2024-03-12 09:27:48 +08:00
|
|
|
|
<script>
|
2024-03-12 17:41:00 +08:00
|
|
|
|
import config from './config';
|
|
|
|
|
|
import store from '@/store';
|
|
|
|
|
|
import { getToken } from '@/utils/auth';
|
2024-03-12 09:27:48 +08:00
|
|
|
|
|
2024-03-12 17:41:00 +08:00
|
|
|
|
export default {
|
|
|
|
|
|
onLaunch: function () {
|
|
|
|
|
|
this.initApp();
|
|
|
|
|
|
},
|
2024-03-15 17:56:22 +08:00
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
width: '--width:300px;',
|
|
|
|
|
|
height: '--height:712px;'
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
2024-03-12 17:41:00 +08:00
|
|
|
|
methods: {
|
|
|
|
|
|
// 初始化应用
|
|
|
|
|
|
initApp() {
|
|
|
|
|
|
// 初始化应用配置
|
|
|
|
|
|
this.initConfig();
|
|
|
|
|
|
// 检查用户登录状态
|
|
|
|
|
|
//#ifdef H5
|
|
|
|
|
|
this.checkLogin();
|
|
|
|
|
|
//#endif
|
|
|
|
|
|
},
|
|
|
|
|
|
initConfig() {
|
|
|
|
|
|
const _windowsWidth = uni.getWindowInfo().windowWidth;
|
|
|
|
|
|
const _windowsHeight = uni.getWindowInfo().windowHeight;
|
|
|
|
|
|
// console.log(_windowsWidth,_windowsHeight);
|
|
|
|
|
|
this.globalData.config = config;
|
|
|
|
|
|
// 设置页面初始大小
|
2024-03-15 17:56:22 +08:00
|
|
|
|
// this.'--width' = _windowsWidth + 'px;';
|
|
|
|
|
|
// this.'--height' = (_windowsHeight - 50) + 'px;';
|
2024-03-12 17:41:00 +08:00
|
|
|
|
},
|
|
|
|
|
|
checkLogin() {
|
|
|
|
|
|
if (!getToken()) {
|
|
|
|
|
|
this.$tab.reLaunch('/pages/login');
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
2024-03-12 09:27:48 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
2024-03-27 20:56:32 +08:00
|
|
|
|
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
|
|
|
|
|
|
@import '@/uni_modules/uview-ui/index.scss';
|
2024-03-12 17:41:00 +08:00
|
|
|
|
.content {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2024-03-27 20:33:45 +08:00
|
|
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('static/images/background/background.png');
|
2024-03-15 17:56:22 +08:00
|
|
|
|
background-size: cover;
|
2024-03-27 20:56:32 +08:00
|
|
|
|
//filter: opacity(50%);
|
2024-03-12 17:41:00 +08:00
|
|
|
|
font-size: 36px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
width: 360px;
|
2024-03-15 17:56:22 +08:00
|
|
|
|
height: 662px;
|
2024-03-12 17:41:00 +08:00
|
|
|
|
}
|
2024-03-15 17:56:22 +08:00
|
|
|
|
.main-box {
|
|
|
|
|
|
width: 100%;
|
2024-03-12 17:41:00 +08:00
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
@import '@/static/scss/index.scss';
|
2024-03-27 20:56:32 +08:00
|
|
|
|
</style>
|