武汉工程大学计算机科学与工程学院 综合设计报告
#F3FEFE;\删除
合计: // pages/mine/mine.js const app = getApp() Page({ /** * 页面的初始数据 */ data: { userInfo: null, sex: false, chinese: false }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { let userInfo = app.globalData.userInfo; let sex = false; let chinese = false; if(userInfo.gender === 1){ sex = true; } if(userInfo.language === 'zh_CN'){ - 28 - 武汉工程大学计算机科学与工程学院 综合设计报告 chinese = true; } this.setData({ userInfo: userInfo, sex: sex, chinese: chinese }) }, enterCart: function(){ wx.redirectTo({ url: '../cart/cart' }) }, retn: function(){ wx.redirectTo({ url: '/pages/first/first' }) } }) 使用语言:其他
地址:{{userInfo.country}}/{{userInfo.province}}/{{userInfo.city}}
- 29 -
武汉工程大学计算机科学与工程学院 综合设计报告
- 30 -