Files
ks-app-employment-service/packageB/train/index.vue

42 lines
1.1 KiB
Vue
Raw Normal View History

2025-10-30 20:26:34 +08:00
<template>
2025-10-31 10:18:44 +08:00
<!-- <AppLayout title=""> -->
2025-10-30 20:26:34 +08:00
<view class="tab-container">
2025-10-31 10:18:44 +08:00
<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>
2025-10-30 20:26:34 +08:00
</view>
2025-10-31 10:18:44 +08:00
<!-- </AppLayout> -->
2025-10-30 20:26:34 +08:00
</template>
<script setup>
import { reactive, inject, watch, ref, onMounted } from 'vue';
import { onLoad, onShow } from '@dcloudio/uni-app';
2025-10-31 10:18:44 +08:00
const { $api, navTo, vacanciesTo, formatTotal, config } = inject('globalFunction');
2025-10-30 20:26:34 +08:00
import useUserStore from '@/stores/useUserStore';
import useDictStore from '@/stores/useDictStore';
2025-10-31 10:18:44 +08:00
function jumps(url){
navTo(url);
}
2025-10-30 20:26:34 +08:00
</script>
<style lang="stylus" scoped>
2025-10-31 10:18:44 +08:00
.tab-container{
height: 100vh;
width: 100%;
background: url('@/static/images/train/bj.jpg') center center no-repeat;
background-size: 100% 100%;
.btns{
2025-10-30 20:26:34 +08:00
background-color: #0036B0
border-radius: 5rpx
padding: 20rpx;
2025-10-31 10:18:44 +08:00
box-sizing: border-box
2025-10-30 20:26:34 +08:00
color: #fff
text-align: center
2025-10-31 10:18:44 +08:00
margin-bottom: 30rpx
}
}
2025-10-30 20:26:34 +08:00
</style>