// pages/first/first.js
|
|
const app = getApp();
|
|
var network = require("../../utils/net.js");
|
|
var openid;
|
|
|
|
Page({
|
|
data: {
|
|
url:"",
|
|
},
|
|
|
|
onLoad: function(options) {
|
|
// var code = options.code;
|
|
var that = this;
|
|
wx.login({
|
|
success: function (res) {
|
|
var code = res.code;
|
|
var itemUrl = "https://miniprogram.food988.com/WeixinBindPhonePage.aspx?code=" + code + "&state=bindphone";
|
|
|
|
that.setData({
|
|
url: itemUrl,
|
|
})
|
|
}
|
|
});
|
|
},
|
|
|
|
})
|