修改功能

This commit is contained in:
2025-11-03 14:37:07 +08:00
parent 33a33bb7b0
commit 4ba6539850
3 changed files with 33 additions and 9 deletions

View File

@@ -1000,10 +1000,17 @@ function dataToImg(data) {
return result;
}
// import { loginRc } from '@/apiRc/login/login.js';
import storeRc from '@/utilsRc/store/index.js';
// 跳转到高校毕业页面
function goRc(){
if (checkLogin()) {
navTo('/packageRc/pages/index/index');
let userInfo = uni.getStorageSync('userInfo')
console.log(uni.getStorageSync('userInfo'), "uni.getStorageSync('userInfo')");
storeRc.dispatch('LoginByUserInfo', userInfo).then(res => {
// console.log(res, "'res");
navTo('/packageRc/pages/index/index');
});
}
}