详细问题描述
[内容]
SetCustomerUI: function(data) {
let that = this;
let datas = {
openid: that.userInfo.openId,
unionId: that.userInfo.unionId,
customerId: data.customer_info.customer_id
};
getApp().globalData.userList = datas;
// uni.navigateBack();
that.NextPage();
},
NextPage: function() {
uni.reLaunch({
url: '/pages/tabBar/home/home'
});
},