培训首页

This commit is contained in:
2025-10-31 11:14:45 +08:00
parent c98f54ade6
commit 1b1b5f7ac7
2 changed files with 137 additions and 19 deletions

View File

@@ -1,11 +1,32 @@
<template>
<view class="">
专项练习
</view>
<div class="app-box">
<image src="../../../static/images/train/bj.jpg" class="bjImg" mode=""></image>
<div>专项练习</div>
</div>
</template>
<script>
<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>
<style lang="stylus" scoped>
.app-box{
width: 100%;
height: 100vh;
position: relative;
.bjImg{
position: absolute;
width: 100%;
height: 100%;
}
}
</style>