Files
ks-app-employment-service/packageB/train/practice/startPracticing.vue

32 lines
693 B
Vue
Raw Normal View History

2025-10-31 10:18:44 +08:00
<template>
2025-10-31 11:14:45 +08:00
<div class="app-box">
<image src="../../../static/images/train/bj.jpg" class="bjImg" mode=""></image>
<div>专项练习</div>
</div>
2025-10-31 10:18:44 +08:00
</template>
2025-10-31 11:14:45 +08:00
<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);
}
2025-10-31 10:18:44 +08:00
</script>
2025-10-31 11:14:45 +08:00
<style lang="stylus" scoped>
.app-box{
width: 100%;
height: 100vh;
position: relative;
.bjImg{
position: absolute;
width: 100%;
height: 100%;
}
}
2025-10-31 10:18:44 +08:00
</style>