12345678910111213141516171819202122232425 |
- var app = getApp()
- Page({
-
- onLoad: function () {
- wx.getSystemInfo({
- success: (res) => {
- this.setData({
- screenWidth: res.screenWidth,
- screenHeight: res.screenHeight,
- bannerWidth: res.screenWidth,
- bannerHeight: res.screenWidth * 363 / 543
- })
- }
- })
- var pt_student = wx.getStorageSync('pt_student')
- if (!pt_student) {
- wx.redirectTo({
- url: '/pages/login/index',
- })
- } else {
- app.globalData.ptStudent = pt_student;
- }
- }
- })
|