12345678910111213141516171819202122232425262728293031323334 |
- const app = getApp()
- Page({
- data: {
- menuTop: app.globalData.menuTop,
- },
- onLoad(options) {
- },
- async getPhoneNumber({
- detail
- }) {
- console.log(detail);
- /* let mobile = await exchangePhone({
- code: detail.code
- })
- await bindPhone({
- mobile
- })
- let userInfo = await getMyInfo()
- this.setUser(userInfo.user)
- wx.showToast({
- title: '绑定成功!',
- icon: "none",
- duration: 4000
- }) */
- },
- black() {
- wx.navigateBack()
- },
- submit() {
- }
- })
|