const app = getApp(); Component({ properties: { user_id:{ type:Number }, bg:{ type:String, value:"#0080f0" } }, pageLifetimes:{ show:function(){ app.syncUser() .then(res=>{ this.setData({user_id: res.user.user_id}); }) } } })