Browse Source

fix: username headimg

wangyuan 2 years ago
parent
commit
8a673c103b
2 changed files with 8 additions and 5 deletions
  1. 4 2
      pages/appointment/appointment.js
  2. 4 3
      pages/buy/buy.js

+ 4 - 2
pages/appointment/appointment.js

@@ -47,10 +47,12 @@ Page({
    * 生命周期函数--监听页面显示
    */
   onShow() {
+    var headImg = wx.getStorageSync('headImg')
+    var userName = wx.getStorageSync('userName')
     this.getAccountNmberFn()
     this.setData({
-      appusername: app.globalData.userInfo.userName.length > 8 ? app.globalData.userInfo.userName.substring(0,4) : app.globalData.userInfo.userName,
-      appuserheadimg: app.globalData.userInfo.headImg
+      appusername: userName.length > 8 ? userName.substring(0,4) : auserName,
+      appuserheadimg: headImg
     })
     if (app.globalData.navigateBackParams.address) {
       this.setData({

+ 4 - 3
pages/buy/buy.js

@@ -32,11 +32,12 @@ Page({
    * 生命周期函数--监听页面显示
    */
   onLoad(options) {
-    
+    var headImg = wx.getStorageSync('headImg')
+    var userName = wx.getStorageSync('userName')
     this.setData({
       from: options.from,
-      appusername: app.globalData.userInfo.userName.length > 8 ? app.globalData.userInfo.userName.substring(0,4) : app.globalData.userInfo.userName,
-      appuserheadimg: app.globalData.userInfo.headImg
+      appusername: userName.length > 8 ? userName.substring(0,4) : userName,
+      appuserheadimg: headImg
     })
   },