培训
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>
|
||||
|
||||
Reference in New Issue
Block a user