|
@@ -9,7 +9,7 @@
|
|
|
|
|
|
<view class="score-content-box">
|
|
|
<view class="score-content-name">{{data.ksName}}</view>
|
|
|
- <view class="score-content-text">考试总分:{{data.ksScore}}</view>
|
|
|
+ <view class="score-content-text">{{labelName}}:{{data.ksScore}}</view>
|
|
|
<view class="score-content-text">及格分数:{{data.okScore}}</view>
|
|
|
<view class="score-content-text">正确数量:{{data.rightCount}}</view>
|
|
|
<view class="score-content-text">试题总数:{{data.shitiTotal}}</view>
|
|
@@ -38,7 +38,11 @@
|
|
|
title: {
|
|
|
type: String,
|
|
|
default: '考试得分'
|
|
|
- }
|
|
|
+ },
|
|
|
+ labelName: {
|
|
|
+ type: String,
|
|
|
+ default: '考试总分'
|
|
|
+ }
|
|
|
})
|
|
|
|
|
|
const emits = defineEmits(['confirm', 'close'])
|