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'
// })