添加跳转

This commit is contained in:
lip
2025-11-03 13:26:16 +08:00
parent a1b37ba39a
commit 33a33bb7b0

View File

@@ -118,7 +118,7 @@
</view> </view>
<view class="service-title">AI智能面试</view> <view class="service-title">AI智能面试</view>
</view> </view>
<view class="service-item press-button" style="justify-content:normal" @click="handleServiceClick('ai-interview')"> <view class="service-item press-button" style="justify-content:normal" @click="goRc()">
<view class="service-icon service-icon-9"> <view class="service-icon service-icon-9">
<IconfontIcon name="Graduation-simple-" :size="32" color="#FFFFFF" /> <IconfontIcon name="Graduation-simple-" :size="32" color="#FFFFFF" />
</view> </view>
@@ -1000,6 +1000,14 @@ function dataToImg(data) {
return result; return result;
} }
// 跳转到高校毕业页面
function goRc(){
if (checkLogin()) {
navTo('/packageRc/pages/index/index');
}
}
defineExpose({ loadData }); defineExpose({ loadData });
</script> </script>