武田小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
437 B

6 months ago
const app = getApp<IAppOption>();
Page({
data: {
fold: true,
show1: false,
},
6 months ago
onLoad() {
this.getTabBar().setData({
active: 3,
6 months ago
});
app.waitLogin().then(() => {
app.getUserInfo(this, (userInfo) => {
this.getTabBar().setData({
userInfo,
});
});
});
6 months ago
},
handleRoom() {
wx.navigateTo({
6 months ago
url: "/module1/pages/chatRoom/index",
});
},
6 months ago
});
export {};