Commit 80fe56de authored by 罗超's avatar 罗超

1

parent a1740655
...@@ -23,13 +23,18 @@ ...@@ -23,13 +23,18 @@
<view class="examScoreMain"> <view class="examScoreMain">
<view class="exam_Progress"> <view class="exam_Progress">
<van-circle <van-circle
v-model="dataList.TotalScore" :value="dataList.TotalScore"
:rate="dataList.Publish.ExamScore" :rate="dataList.Publish.ExamScore"
:speed="100" :speed="100"
color="#fff" :size="200"
layer-color="#0097d8" color="#ffffff"
:text="dataList.TotalScore" layer-color="#0097db"
/> :stroke-width="5"
>
<template>
<view class="score">{{ dataList.TotalScore }}</view>
</template>
</van-circle>
</view> </view>
<view> <view>
<img <img
...@@ -143,8 +148,9 @@ export default { ...@@ -143,8 +148,9 @@ export default {
} }
.exam_Progress { .exam_Progress {
position: absolute; position: absolute;
top: 132px; top: 200rpx;
left: 37%; left: 50%;
transform: translateX(-50%);
} }
.exam_Bottom { .exam_Bottom {
padding: 30rpx; padding: 30rpx;
...@@ -191,4 +197,10 @@ export default { ...@@ -191,4 +197,10 @@ export default {
/deep/.van-icon-arrow-left { /deep/.van-icon-arrow-left {
font-size: 32rpx; font-size: 32rpx;
} }
.score {
font-size: 100rpx;
font-family: PingFang SC;
font-weight: 800;
color: #ffffff;
}
</style> </style>
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