123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557 |
- <template>
- <div class="bank-report">
- <Header></Header>
- <section class="section">
- <div class="container">
- <div
- class="section__header section__header--warm"
- v-if="examData.doType == 2 && reportdata.reportStatus !== null"
- >
- <div class="title">
- <span class="icon">X</span>
- 测试未通过
- </div>
- <div class="desc" v-if="reportdata.doTime">
- 答题时长:{{ reportdata.doTime }}分钟
- <span class="note">(限时{{ reportdata.examTime }}分钟)</span>
- </div>
- </div>
- <div
- class="section__header section__header--success"
- v-if="examData.doType == 2 && reportdata.reportStatus !== null"
- >
- <div class="title">
- <span class="icon">✔</span>
- 测试通过
- </div>
- <div class="desc" v-if="reportdata.doTime">
- 答题时长:{{ reportdata.doTime }}分钟
- <span class="note">(限时{{ reportdata.examTime }}分钟)</span>
- </div>
- </div>
- <div class="section__body">
- <div class="section__body__content">
- <div class="left-box">
- <div class="left-box__in">
- <div class="title">
- 试卷得分
- <span class="note">(客观题)</span>
- </div>
- <div class="desc">{{ reportdata.performance }}</div>
- <div class="other">满分{{ reportdata.totalScore }}</div>
- </div>
- <div class="left-box__in left-box__in--bottom">
- <div class="title">
- 试卷得分
- <span class="note">(客观题+主观题)</span>
- </div>
- <div class="desc">
- {{ reportdata.performance + reportdata.score }}
- </div>
- <div class="other">满分{{ reportdata.totalScore }}</div>
- </div>
- </div>
- <div class="right-box">
- <div class="right-box__in">
- <div class="title">
- 试卷得分
- <span class="note">(客观题)</span>
- </div>
- <div class="desc">{{ reportdata.performance }}</div>
- <div class="other">满分{{ reportdata.totalScore }}</div>
- </div>
- <div class="right-box__in right-box__in--bottom">
- <div class="child">
- <div class="child__title child__title--success">
- {{ reportdata.rightQuestionNum }}
- </div>
- <div class="child__desc">正确题数</div>
- </div>
- <div class="child child---right">
- <div class="child__title child__title--warm">
- {{ wrongRecordWrongNum }}
- </div>
- <div class="child__desc">错误题数</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="section__footer">
- <el-button type="primary" @click="back" class="btn"
- >返回列表</el-button
- >
- <el-button
- type="primary"
- class="btn"
- v-if="nextExamId"
- @click="backBank"
- >练习下一节</el-button
- >
- <el-button type="primary" class="btn" @click="doRepeat(reportdata)"
- >重新做题</el-button
- >
- <el-button
- type="primary"
- class="btn"
- @click="wrongExplain(reportdata)"
- >错题解析</el-button
- >
- <el-button type="primary" class="btn" @click="allExplain(reportdata)"
- >全部解析</el-button
- >
- </div>
- </div>
- </section>
- <ToolBar></ToolBar>
- <Footer></Footer>
- </div>
- </template>
- <script>
- import Footer from "@/components/footer/index";
- import Header from "@/components/header/index";
- import ToolBar from "@/components/toolbar/index";
- import { mapGetters } from "vuex";
- export default {
- name: "BankExplain",
- components: {
- Footer,
- Header,
- ToolBar,
- },
- data() {
- return {
- wrongRecordWrongNum: 0,
- nextExamId: "",
- examData: {},
- reportdata: {},
- goodsId: 0,
- chapterId: 0,
- moduleId: 0,
- examId: 0,
- recordId: 0,
- };
- },
- computed: {
- ...mapGetters(["examResult"]),
- },
- async mounted() {
- this.chapterId = this.$route.query.chapterId;
- this.moduleId = this.$route.query.moduleId;
- this.examId = this.$route.query.examId;
- this.recordId = this.$route.query.recordId;
- this.goodsId = this.$route.params.goodsId;
- this.examWrongRecordWrongNum();
- this.bankExamNextExam();
- await this.bankExam();
- await this.examReport();
- },
- methods: {
- back() {
- this.$router.replace({
- path: "/person-center/my-bank/bank-detail/" + this.goodsId,
- });
- },
- /**
- * 去做题
- */
- async doRepeat(reportdata) {
- // await this.getDetail(reportdata.goodsId);
- let count = await this.examRecordCount(
- reportdata.examId,
- reportdata.goodsId
- );
- let answerNum = await this.getExamDetail(reportdata.examId);
- //超过答题次数
- if (answerNum > 0 && count >= answerNum) {
- this.$message({
- type: "warning",
- message: "该试卷只能答题" + answerNum + "次!",
- });
- return;
- }
- this.$router.replace({
- path: "/bank-exam/" + reportdata.goodsId,
- query: {
- examId: reportdata.examId,
- moduleId: reportdata.moduleId || 0,
- chapterId: reportdata.chapterId || 0,
- },
- });
- },
- /**
- * @param {Object} exam_id
- * 获取试卷可以做的次数
- */
- getExamDetail(exam_id) {
- return new Promise((resolve) => {
- this.$request.getExamDetail(exam_id).then((res) => {
- resolve(res.data.answerNum);
- });
- });
- },
- /**
- * 查询试卷历史做题次数
- */
- examRecordCount(examId, goodsId) {
- return new Promise((resolve) => {
- this.$request
- .examRecordCount({
- examId: examId,
- goodsId: goodsId,
- })
- .then((res) => {
- resolve(res.data);
- });
- });
- },
- getDetail(goodsId) {
- return new Promise((resolve) => {
- this.$request.goodsDetail(goodsId).then((res) => {
- this.goodsData = res.data;
- resolve();
- });
- });
- },
- examWrongRecordWrongNum() {
- return new Promise((resolve) => {
- this.$request.examWrongRecordWrongNum(this.recordId).then((res) => {
- this.wrongRecordWrongNum = res.data || 0;
- resolve();
- });
- });
- },
- backBank() {
- this.$router.replace({
- path: "/bank-exam/" + this.nextExamId,
- query: {
- examId: this.examId,
- moduleId: this.moduleId || 0,
- chapterId: this.chapterId || 0,
- },
- });
- },
- bankExamNextExam() {
- this.$request
- .bankExamNextExam({
- chapterExamId: this.chapterId,
- examId: this.examId,
- goodsId: this.goodsId,
- moduleExamId: this.moduleId,
- })
- .then((res) => {
- this.nextExamId = res.data.examId;
- })
- .catch((err) => {
- this.nextExamId = "";
- });
- },
- bankExam() {
- return new Promise((resolve) => {
- this.$request.bankExam(this.examId).then((res) => {
- this.examData = res.data;
- resolve();
- });
- });
- },
- examReport() {
- return new Promise((resolve) => {
- this.$request.examReport(this.recordId).then((res) => {
- this.reportdata = res.data;
- resolve();
- });
- });
- },
- wrongExplain(reportdata) {
- this.$router.push({
- path: "/bank-exam-wrong-explain/" + reportdata.recordId,
- query: {
- examId: reportdata.examId,
- moduleId: reportdata.moduleId || 0,
- chapterId: reportdata.chapterId || 0,
- goodsId: this.goodsId,
- },
- });
- },
- allExplain(reportdata) {
- this.$router.push({
- path: "/bank-exam-all-explain/" + reportdata.recordId,
- query: {
- examId: reportdata.examId,
- moduleId: reportdata.moduleId || 0,
- chapterId: reportdata.chapterId || 0,
- goodsId: this.goodsId,
- },
- });
- },
- },
- };
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped lang="scss">
- .bank-report {
- .section {
- &__header {
- height: 120px;
- border-radius: 0px;
- padding-top: 10px;
- &--warm {
- background: #fff3f5;
- .title {
- text-align: center;
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #ff3b30;
- .icon {
- vertical-align: middle;
- display: inline-block;
- width: 48px;
- height: 58px;
- text-align: center;
- line-height: 58px;
- background: #ff3b30;
- color: #fff;
- font-size: 30px;
- }
- }
- }
- &--success {
- background: #f8fef9;
- .title {
- text-align: center;
- font-size: 18px;
- font-family: Microsoft YaHei;
- font-weight: bold;
- color: #34c759;
- .icon {
- vertical-align: middle;
- display: inline-block;
- width: 48px;
- height: 58px;
- text-align: center;
- line-height: 58px;
- background: #34c759;
- color: #fff;
- font-size: 30px;
- }
- }
- }
- .desc {
- margin-top: 20px;
- text-align: center;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- .note {
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- &__body {
- width: 100%;
- height: 305px;
- border-bottom: 1px solid #eee;
- &__content {
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- .left-box {
- width: 300px;
- height: 240px;
- background: #ffffff;
- border: 1px solid #eeeeee;
- border-radius: 8px;
- display: flex;
- flex-direction: column;
- margin: 0 10px;
- &__in {
- flex: 1;
- border-bottom: 1px solid #eee;
- padding: 5px 18px;
- .title {
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- .note {
- color: #999;
- }
- }
- .desc {
- margin-top: 20px;
- font-size: 48px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- text-align: center;
- }
- .other {
- margin-top: 14px;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24px;
- text-align: center;
- }
- &--bottom {
- border: 0;
- }
- }
- }
- .right-box {
- margin: 0 10px;
- display: flex;
- width: 300px;
- height: 240px;
- background: #ffffff;
- border: 1px solid #eeeeee;
- border-radius: 8px;
- flex-direction: column;
- &__in {
- flex: 1;
- border-bottom: 1px solid #eee;
- padding: 5px 18px;
- .title {
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- .note {
- color: #999;
- }
- }
- .desc {
- margin-top: 20px;
- font-size: 48px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 24px;
- text-align: center;
- }
- .other {
- margin-top: 14px;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24px;
- text-align: center;
- }
- &--bottom {
- padding: 0;
- border: 0;
- height: 100%;
- display: flex;
- .child {
- flex: 1;
- height: 100%;
- border-right: 1px solid #eee;
- padding: 5px 18px;
- &--right {
- border: 0;
- }
- &__title {
- margin-top: 20px;
- font-size: 36px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #34c759;
- line-height: 24px;
- text-align: center;
- &--success {
- color: #34c759;
- }
- &--warm {
- color: #ff3b30;
- }
- }
- &__desc {
- margin-top: 10px;
- font-size: 14px;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #999999;
- line-height: 24px;
- text-align: center;
- }
- }
- }
- }
- }
- }
- }
- &__footer {
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 40px 0;
- .btn {
- cursor: pointer;
- width: 140px;
- height: 32px;
- padding: 0;
- border-radius: 16px;
- text-align: center;
- line-height: 30px;
- font-size: 12px;
- margin: 0 4px;
- }
- }
- }
- }
- </style>
|