知识学堂 > 课程 > 小程序弹出提示并跳转

小程序弹出提示并跳转

发布日期:2020/8/31 来源:聚恒【返回】

小程序弹出提示并跳转
wx.showToast({
title: '修改成功',
duration: 1000,
success: function () {
setTimeout(function () {
wx.reLaunch({
url: '/pages/DingDanJinDu_List/DingDanJinDu_List',
})
}, 1000);
}
})