原因:在request中封装的showloading关闭,导致toast也关闭,可以给toast加个定时器解决
setTimeout(() => {
uni.showToast({
title: res.message,
icon: "none",
duration: 2000
});
}, 220);