InternetCompetition/src/views/examModule/practiceSuccess.vue

88 lines
1.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script>
export default {
name: "practiceSuccess",
data() {
return {};
},
methods: {
// 进入考场选择页面
determine() {
let params = sessionStorage.getItem("params");
let data = JSON.parse(params);
this.$router.push("/examModule?" + data.user_id);
},
},
};
</script>
<template>
<div class="page">
<div class="success-page">
<div class="success-font">您已成功交卷请继续下一场考试</div>
<div class="success-score">
<p class="score">60</p>
<p class="unit"></p>
</div>
<div class="success-btn">
<img src="@/assets/image/viewAnalysis.png" />
<img @click="determine" src="@/assets/image/returnList.png" />
</div>
</div>
</div>
</template>
<style scoped lang="less">
.page {
display: flex;
justify-content: center;
width: 100%;
height: 100%;
align-items: center;
.success-page {
width: 1773px;
position: relative;
height: 858px;
background-image: url("../../assets/image/success-bg.png");
background-size: 100% 100%;
}
.success-font {
margin-top: 200px;
text-align: center;
font-size: 26px;
color: rgba(255, 255, 255, 1);
}
.success-score {
margin-top: 85px;
text-align: center;
.score {
font-weight: 700;
font-size: 72px;
color: #658cf6;
}
.unit {
font-weight: 400;
font-size: 26px;
color: #ffffff;
}
}
.success-btn {
width: 600px;
height: 44px;
line-height: 44px;
text-align: center;
font-size: 20px;
color: rgba(255, 255, 255, 1);
position: absolute;
bottom: 95px;
left: 50%;
margin-left: -300px;
// background-image: url("../../assets/image/highlight-btn.png");
display: flex;
justify-content: space-between;
img{
cursor: pointer;
}
}
}
</style>