37 lines
880 B
Vue
37 lines
880 B
Vue
|
|
<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>
|
||
|
|
|