|
@@ -111,7 +111,7 @@
|
|
|
}"
|
|
|
@click="lookAnliScore(a.id)"
|
|
|
>
|
|
|
- 查看评分
|
|
|
+ 汇总评分
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -770,8 +770,7 @@ export default {
|
|
|
var a = parseInt(point.first);
|
|
|
var b = parseInt(point.second);
|
|
|
var c = parseInt(point.third);
|
|
|
- var sumScore = Math.round((a + b + c) / 3);
|
|
|
- sList[i].sum = sumScore;
|
|
|
+ sList[i].sum = parseFloat(((a + b + c) / 3).toFixed(1));
|
|
|
allScoreSum += sList[i].sum;
|
|
|
}
|
|
|
this.allScoreSum = (allScoreSum / sList.length).toFixed(1);
|
|
@@ -890,8 +889,7 @@ export default {
|
|
|
var a = parseInt(point.first);
|
|
|
var b = parseInt(point.second);
|
|
|
var c = parseInt(point.third);
|
|
|
- var sumScore = Math.round((a + b + c) / 3);
|
|
|
- sList[i].sum = sumScore;
|
|
|
+ sList[i].sum = parseFloat(((a + b + c) / 3).toFixed(1));
|
|
|
allScoreSum += sList[i].sum;
|
|
|
}
|
|
|
this.allScoreSum = (allScoreSum / sList.length).toFixed(1);
|
|
@@ -1070,7 +1068,7 @@ export default {
|
|
|
justify-content: center;
|
|
|
padding: 10px 0 0 0;
|
|
|
width: 100%;
|
|
|
- border-top: 1px solid #ccc;
|
|
|
+ border-top: 1px solid #e1e1e1;
|
|
|
}
|
|
|
|
|
|
.anliButton > div {
|
|
@@ -1080,7 +1078,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
.anliButton > div:not(:last-child) {
|
|
|
- border-right: 1px solid #ccc;
|
|
|
+ border-right: 1px solid #e1e1e1;
|
|
|
}
|
|
|
|
|
|
.customWidth >>> .el-dialog {
|