培训
This commit is contained in:
36
packageB/train/index.vue
Normal file
36
packageB/train/index.vue
Normal 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>
|
||||||
|
|
||||||
11
pages.json
11
pages.json
@@ -357,7 +357,16 @@
|
|||||||
"navigationBarTitleTextSize": "30rpx"
|
"navigationBarTitleTextSize": "30rpx"
|
||||||
// "navigationStyle": "custom"
|
// "navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"path" : "train/index",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText" : "技能评价",
|
||||||
|
"navigationBarTitleTextSize": "30rpx"
|
||||||
|
// "navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}],
|
}],
|
||||||
// "tabBar": {
|
// "tabBar": {
|
||||||
|
|||||||
@@ -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];
|
||||||
|
|||||||
Reference in New Issue
Block a user