帮扶任务分配

This commit is contained in:
2026-02-11 17:16:17 +08:00
parent f85f4873a8
commit da1a96ba42
10 changed files with 2368 additions and 362 deletions

View File

@@ -54,7 +54,18 @@ onLoad(() => {
});
async function jumps(url){
navTo(url);
let token=uni.getStorageSync('Padmin-Token')
if(token){
navTo(url);
}else{
uni.showToast({
title:'请先登录'
})
setTimeout(() => {
navTo('/packageB/login2?jump='+url);
}, 2000)
}
}