123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- Page({
-
- data: {
- code:"",
- },
-
- sign:function(){
-
- },
-
- onLoad(options) {
- var that = this
- wx.showToast({
- title:'登录中',
- icon:'loading',
- duration: 1000
- })
- wx.login({
- success:function(e){
- wx.request({
- url: 'https://cloud.long-chi.com/api/minigrogram/lightcontrol/login',
- method:'POST',
- data:{code:e.code},
- header:{"Content-Type": "application/json"},
- success:function(res){
- if(res.data.code == 0){
- let time = new Date()
- console.log(res.data.data.access_token)
- wx.setStorageSync('time',time)
- wx.setStorageSync('currentTime', res.data.data.expires_in)
- wx.setStorageSync('token', res.data.data.access_token)
- wx.switchTab({
- url: '/pages/scene/scene',
- })
- }
- else{
- console.log('登录失败')
- }
- }
- })
- }
- })
- },
-
- onReady() {
- },
-
- onShow() {
- },
-
- onHide() {
- },
-
- onUnload() {
- },
-
- onPullDownRefresh() {
- },
-
- onReachBottom() {
- },
-
- onShareAppMessage() {
- }
- })
|