修改跳转地址和名称

This commit is contained in:
lip
2025-11-07 12:08:19 +08:00
parent 8388cce627
commit 9abf6d70ae
2 changed files with 12 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<!--
* @Date: 2025-10-16 15:15:47
* @LastEditors: shirlwang
* @LastEditTime: 2025-11-06 14:30:22
* @LastEditors: lip
* @LastEditTime: 2025-11-07 12:08:01
-->
<template>
<!-- @scroll="handleScroll" @scrolltolower="scrollBottom" -->
@@ -21,7 +21,7 @@
<view>需求上报</view>
</view>
<view>
<image src="../../../packageRc/static/kinggang3.png"/>
<image @click="goAiAu" src="../../../packageRc/static/kinggang3.png"/>
<view>虚拟面试</view>
</view>
<view @click="goCa">
@@ -120,6 +120,14 @@ function goCa(){
navTo(`/packageCa/search/search?userId=${userInfo.userId}&name=${userInfo.name}`);
}
}
// 跳转AI智能面试
function goAiAu(){
if (checkLogin()) {
const userInfo = uni.getStorageSync('userInfo')
navTo(`/packageCa/search/AIAudition?userId=${userInfo.userId}&name=${userInfo.name}`);
}
}
function viewMore() {
navTo(`/packageRc/pages/jobList/jobList`);
}