wx.showModal({
title: "吃了没?",
content: "真的吃了吗?",
cancelText: "没吃",
confirmText: "吃了",
complete: (res: any) => {
if (res.cancel) {
console.log("没吃");
}
if (res.confirm) {
console.log("吃了");
}
},
});
wx.setTabBarBadge({
index: 0,
text: '1'
})
// wx.showLoading({
// title: "加载中...",
// });
// setTimeout(() => {
// wx.hideLoading();
// }, 2000);
// wx.showToast({
// title:'失败了',
// icon:'error'
// })
微信小程序界面消息提示信息(微信文档api界面一栏)
最新推荐文章于 2024-07-02 11:25:10 发布
796

被折叠的 条评论
为什么被折叠?



