Compare commits
3 Commits
438a6f3938
...
c98f54ade6
| Author | SHA1 | Date | |
|---|---|---|---|
| c98f54ade6 | |||
| 2cc5d98763 | |||
| 25fb1fa2f1 |
41
packageB/train/index.vue
Normal file
41
packageB/train/index.vue
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
<template>
|
||||||
|
<!-- <AppLayout title=""> -->
|
||||||
|
<view class="tab-container">
|
||||||
|
<view class="btns" @click="jumps('')">培训视频</view>
|
||||||
|
<view class="btns" @click="jumps('/packageB/train/practice/startPracticing')">专项练习</view>
|
||||||
|
<view class="btns" @click="jumps('')">模拟考试</view>
|
||||||
|
<view class="btns" @click="jumps('')">错题本</view>
|
||||||
|
</view>
|
||||||
|
<!-- </AppLayout> -->
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { reactive, inject, watch, ref, onMounted } from 'vue';
|
||||||
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
||||||
|
const { $api, navTo, vacanciesTo, formatTotal, config } = inject('globalFunction');
|
||||||
|
import useUserStore from '@/stores/useUserStore';
|
||||||
|
import useDictStore from '@/stores/useDictStore';
|
||||||
|
|
||||||
|
function jumps(url){
|
||||||
|
navTo(url);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
.tab-container{
|
||||||
|
height: 100vh;
|
||||||
|
width: 100%;
|
||||||
|
background: url('@/static/images/train/bj.jpg') center center no-repeat;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
.btns{
|
||||||
|
background-color: #0036B0
|
||||||
|
border-radius: 5rpx
|
||||||
|
padding: 20rpx;
|
||||||
|
box-sizing: border-box
|
||||||
|
color: #fff
|
||||||
|
text-align: center
|
||||||
|
margin-bottom: 30rpx
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
8
packageB/train/mockExam/examList.vue
Normal file
8
packageB/train/mockExam/examList.vue
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<template>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
11
packageB/train/practice/startPracticing.vue
Normal file
11
packageB/train/practice/startPracticing.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<template>
|
||||||
|
<view class="">
|
||||||
|
专项练习
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
</style>
|
||||||
20
pages.json
20
pages.json
@@ -357,7 +357,25 @@
|
|||||||
"navigationBarTitleTextSize": "30rpx"
|
"navigationBarTitleTextSize": "30rpx"
|
||||||
// "navigationStyle": "custom"
|
// "navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
"path" : "train/index",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText" : "技能评价",
|
||||||
|
"navigationBarTitleTextSize": "30rpx"
|
||||||
|
// "navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "train/practice/startPracticing",
|
||||||
|
"style" :
|
||||||
|
{
|
||||||
|
"navigationBarTitleText" : "专项训练",
|
||||||
|
"navigationBarTitleTextSize": "30rpx"
|
||||||
|
// "navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}],
|
}],
|
||||||
// "tabBar": {
|
// "tabBar": {
|
||||||
|
|||||||
@@ -802,7 +802,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',
|
||||||
@@ -812,7 +812,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];
|
||||||
|
|||||||
BIN
static/images/train/arrow.png
Normal file
BIN
static/images/train/arrow.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 219 B |
BIN
static/images/train/bj.jpg
Normal file
BIN
static/images/train/bj.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
BIN
static/images/train/ctb-k.png
Normal file
BIN
static/images/train/ctb-k.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 52 KiB |
BIN
static/images/train/mnks-k.png
Normal file
BIN
static/images/train/mnks-k.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
static/images/train/spxx-k.png
Normal file
BIN
static/images/train/spxx-k.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
static/images/train/zxxl-k.png
Normal file
BIN
static/images/train/zxxl-k.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 37 KiB |
Reference in New Issue
Block a user