Commit 99aa7c9a authored by zhengke's avatar zhengke

no message

parent bebef5b6
...@@ -115,6 +115,5 @@ ...@@ -115,6 +115,5 @@
background-position: 0px -57rpx; background-position: 0px -57rpx;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% auto; background-size: 100% auto;
background-color: #FFF;
} }
</style> </style>
...@@ -95,6 +95,5 @@ ...@@ -95,6 +95,5 @@
background-position: 0px 0rpx; background-position: 0px 0rpx;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% auto; background-size: 100% auto;
background-color: #FFF;
} }
</style> </style>
...@@ -95,6 +95,5 @@ ...@@ -95,6 +95,5 @@
background-position: 0px -40rpx; background-position: 0px -40rpx;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% auto; background-size: 100% auto;
background-color: #fff;
} }
</style> </style>
...@@ -42,6 +42,7 @@ ...@@ -42,6 +42,7 @@
<style scoped> <style scoped>
.navbar { .navbar {
height: 100rpx; height: 100rpx;
background:#F6F6F6;
} }
.sticky { .sticky {
......
...@@ -60,11 +60,29 @@ ...@@ -60,11 +60,29 @@
<view class="scoreDetails-title flex"> <view class="scoreDetails-title flex">
<text>各板块掌握情况</text> <text>各板块掌握情况</text>
</view> </view>
<view class="index-student-information">
<penta></penta>
</view>
<view class="scoreDetails-title flex">
<text>试卷难度分析</text>
</view>
<view class="index-student-information">
<line></line>
</view>
<view class="scoreDetails-title flex">
<text>难度掌握情况</text>
</view>
<view class="index-student-information">
<triangle></triangle>
</view>
</view> </view>
</template> </template>
<script> <script>
import analysisTest from '@/components/index/scoreDetails/analysisTest' import analysisTest from '@/components/index/scoreDetails/analysisTest'
import penta from '@/components/charts/penta'
import line from '@/components/charts/line'
import triangle from '@/components/charts/triangle'
import vue, { import vue, {
ref, ref,
reactive, reactive,
...@@ -90,7 +108,10 @@ ...@@ -90,7 +108,10 @@
export default { export default {
components: { components: {
navbar, navbar,
analysisTest analysisTest,
penta,
line,
triangle
}, },
setup(props) { setup(props) {
let { let {
...@@ -151,6 +172,12 @@ ...@@ -151,6 +172,12 @@
</script> </script>
<style scoped> <style scoped>
.index-student-information{
min-height: 500rpx;
background: rgba(255,255,255,.7);
border-radius: 50rpx;
padding: 65rpx 0 70rpx 0;
}
.scoreDetails-title view{ .scoreDetails-title view{
font-size: 25rpx; font-size: 25rpx;
color: #ABABAB; color: #ABABAB;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment