|
@@ -1,21 +1,21 @@
|
|
|
<template>
|
|
|
<uni-popup ref="popupRef" :animation="false" :is-mask-click="false" type="bottom"
|
|
|
mask-background-color="rgba(0, 0, 0, 0.4);" >
|
|
|
- <view class="score-content">
|
|
|
- <view class="icon-title-navBar-box">
|
|
|
+ <view class="exam-score-dialog">
|
|
|
+ <view class="icon-title-bjcolor-navBar-box">
|
|
|
<view @click="handleClose" class="nav-bar-icon"></view>
|
|
|
<text class="nav-bar-title">{{title}}</text>
|
|
|
</view>
|
|
|
|
|
|
- <view class="popup-height">
|
|
|
- <view>考试名称:{{data.ksName}}</view>
|
|
|
- <view>考试总分:{{data.ksScore}}</view>
|
|
|
- <view>及格分数:{{data.okScore}}</view>
|
|
|
- <view>正确数量:{{data.rightCount}}</view>
|
|
|
- <view>试题总数:{{data.shitiTotal}}</view>
|
|
|
- <view>用户得分:{{data.userScore}}</view>
|
|
|
+ <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">及格分数:{{data.okScore}}</view>
|
|
|
+ <view class="score-content-text">正确数量:{{data.rightCount}}</view>
|
|
|
+ <view class="score-content-text">试题总数:{{data.shitiTotal}}</view>
|
|
|
+ <view class="score-content-text">用户得分:{{data.userScore}}</view>
|
|
|
</view>
|
|
|
- <button type="primary" @click="handleCheckSj">查看成绩</button>
|
|
|
+ <button type="default" class="phone-green-btn score-dialog-btn" @click="handleCheckSj">查看成绩</button>
|
|
|
</view>
|
|
|
</uni-popup>
|
|
|
</template>
|
|
@@ -68,11 +68,3 @@
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
-
|
|
|
-<style lang="scss" scoped>
|
|
|
- .score-content {
|
|
|
- height: 100vh;background-color: #fff;
|
|
|
- }
|
|
|
- .popup-height {
|
|
|
- }
|
|
|
-</style>
|