UNPKG

hera-cli

Version:
22 lines (21 loc) 365 B
var app = getApp() Page({ onLoad: function () { this.setData({ hasLogin: app.globalData.hasLogin }) }, data: {}, login: function () { var that = this wx.login({ success: function (res) { app.globalData.hasLogin = true that.setData({ hasLogin: true }) that.update() } }) } })