123456789101112131415161718192021222324 |
- 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_id = wx.getStorageSync('pt_student_id')
- if (!pt_student_id) {
- wx.redirectTo({
- url: '/pages/login/index',
- })
- }
- }
- })
|