This commit is contained in:
2023-08-19 16:09:35 +08:00
parent b9d7228a90
commit 90ffd2e4ff
6 changed files with 69 additions and 6 deletions

View File

@@ -1,15 +1,15 @@
<template>
<view class="p14">
<view class="flex jc-sb">
<view class="relative mr5">
<view class="relative mr5" @tap="toIconSkill">
<image style="width: 336rpx;height: 152rpx;" src="../../static/image/practice/errorprone_bg.png">
</image>
<view style="position: absolute;left: 0;top: 0;" class="p10" @tap="toIconSkill">
<view style="color: #04B13B;font-size: 18px;">技巧</view>
<view style="position: absolute;left: 0;top: 0;" class="p10">
<view style="color: #04B13B;font-size: 18px;">技巧</view>
<text style="color: #04B13B;font-size: 14px;">快速记忆</text>
</view>
</view>
<view class="relative ml5">
<view class="relative ml5" @tap="toChapterSkill">
<image style="width: 363rpx;height: 170rpx;" src="../../static/image/practice/chapter_bg.png"></image>
<view style="position: absolute;left: 0;top: 0;" class="p10">
<view style="color: #FF6E02;font-size: 18px;">章节练习</view>
@@ -96,6 +96,11 @@
uni.navigateTo({
url:"/pages/index/iconSkill"
})
},
toChapterSkill(){
uni.navigateTo({
url:"/pages/questionBank/chapterExercise"
})
}
}
}