信达小程序
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.

29 lines
577 B

3 weeks ago
const app = getApp<IAppOption>();
Page({
2 weeks ago
data: {
popupShow: false,
// popupType: 'popup1', // 绑定医生弹窗
// popupType: 'popup2', // 去关注弹窗
// popupType: 'popup3', // 问题反馈弹窗
popupType: 'popup4', // 登录失败弹窗
popupParams: {
close: true,
} as any,
},
3 weeks ago
onLoad() {
2 weeks ago
// app.waitLogin().then(() => {});
3 weeks ago
},
2 weeks ago
handlePopupOk() {
const { popupType } = this.data;
},
handlePopupCancel() {
const { popupType } = this.data;
this.setData({
popupShow: false,
});
},
3 weeks ago
});
export {};