phoneLogin.js 286 B

12345678910111213141516171819202122
  1. const app = getApp();
  2. Page({
  3. data: {
  4. height: 400
  5. },
  6. onLoad(options) {
  7. //获取设备信息
  8. const that = this;
  9. wx.getSystemInfo({
  10. success(res) {
  11. that.setData({
  12. height: res.screenHeight
  13. })
  14. }
  15. })
  16. },
  17. login() {
  18. wx.showToast({
  19. title: '成功',
  20. })
  21. }
  22. })