This commit is contained in:
2025-10-30 20:26:34 +08:00
parent 9c22cc4444
commit 25fb1fa2f1
3 changed files with 49 additions and 3 deletions

36
packageB/train/index.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<AppLayout title="技能评价">
<view class="tab-container">
<view class="btns">培训视频</view>
<view class="btns">专项练习</view>
<view class="btns">模拟考试</view>
<view class="btns">错题本</view>
</view>
</AppLayout>
</template>
<script setup>
import { reactive, inject, watch, ref, onMounted } from 'vue';
import { onLoad, onShow } from '@dcloudio/uni-app';
import useUserStore from '@/stores/useUserStore';
import useDictStore from '@/stores/useDictStore';
</script>
<style lang="stylus" scoped>
.tab-container
// height: 100%
// width: 100%
padding: 20rpx 28rpx
// box-sizing: border-box
.btns
background-color: #0036B0
border-radius: 5rpx
padding: 20rpx;
box-sizing: border-box;
color: #fff
text-align: center
margin-bottom: 30rpx;
</style>

View File

@@ -357,6 +357,15 @@
"navigationBarTitleTextSize": "30rpx" "navigationBarTitleTextSize": "30rpx"
// "navigationStyle": "custom" // "navigationStyle": "custom"
} }
},
{
"path" : "train/index",
"style" :
{
"navigationBarTitleText" : "技能评价",
"navigationBarTitleTextSize": "30rpx"
// "navigationStyle": "custom"
}
} }
] ]
}], }],

View File

@@ -796,7 +796,7 @@ function navToService(serviceType) {
'resume-creation': '/packageA/pages/myResume/myResume', 'resume-creation': '/packageA/pages/myResume/myResume',
'labor-policy': '/pages/service/labor-policy', 'labor-policy': '/pages/service/labor-policy',
'skill-training': '/pages/service/skill-training', 'skill-training': '/pages/service/skill-training',
'skill-evaluation': '/pages/service/skill-evaluation', // 'skill-evaluation': '/pages/service/skill-evaluation',
'question-bank': '/pages/service/question-bank', 'question-bank': '/pages/service/question-bank',
'quality-assessment': '/pages/service/quality-assessment', 'quality-assessment': '/pages/service/quality-assessment',
'ai-interview': '/pages/chat/chat', 'ai-interview': '/pages/chat/chat',
@@ -806,7 +806,8 @@ function navToService(serviceType) {
'company-info': '/pages/service/company-info', 'company-info': '/pages/service/company-info',
'interview-tips': '/pages/service/interview-tips', 'interview-tips': '/pages/service/interview-tips',
'employment-news': '/pages/service/employment-news', 'employment-news': '/pages/service/employment-news',
'more-services': '/pages/service/more-services' 'more-services': '/pages/service/more-services',
'skill-evaluation': '/packageB/train/index'
}; };
const route = serviceRoutes[serviceType]; const route = serviceRoutes[serviceType];