123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- <template>
- <div class="bank-report">
- <Header></Header>
- <section class="section">
- <div class="container">
- <div class="re_back">
- <el-button
- type="primary"
- plain
- round
- size="mini"
- class="back-btn"
- @click="$router.back(-1)"
- >返回</el-button
- >
- </div>
- <div
- class="section__header section__header--warm"
- v-if="!reportdata.reportStatus"
- >
- <div class="title">
- <span class="icon">X</span>
- 测试未通过
- </div>
- <!-- <div class="desc">
- 答题时长:12分钟
- <span class="note">(限时60分钟)</span>
- </div> -->
- </div>
- <div
- class="section__header section__header--success"
- v-if="reportdata.reportStatus"
- >
- <div class="title">
- <span class="icon">✔</span>
- 测试通过
- </div>
- <!-- <div class="desc">
- 答题时长:12分钟
- <span class="note">(限时60分钟)</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">78</div>
- <div class="other">满分100</div>
- </div>
- <div class="left-box__in left-box__in--bottom">
- <div class="title">
- 试卷得分
- <span class="note">(客观题+主观题)</span>
- </div>
- <div class="desc">86</div>
- <div class="other">满分120</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">
- <div class="child__title child__title--yellow">
- {{ reportdata.lessQuestionNum }}
- </div>
- <div class="child__desc">少选题数</div>
- </div>
- <div class="child child---right">
- <div class="child__title child__title--warm">
- {{ doWrongQuestionNum }}
- </div>
- <div class="child__desc">错误题数</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="section__footer">
- <el-button type="primary" class="btn" @click="backList()">返回列表</el-button>
- <!-- <el-button type="primary" class="btn">练习下一节</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 v-if="courseList.length" class="course_list">
- <div class="course__header">
- <div class="title">相关推荐</div>
- </div>
- <div class="course__body">
- <!-- <p
- v-if="
- !courseList.length
- "
- class="text_align"
- >
- 无推荐课程
- </p> -->
- <ul class="list clearfix">
- <template v-for="(item, index) in courseList">
- <li class="course-item" :key="index">
- <GoodsItem :item="item"></GoodsItem>
- </li>
- </template>
- </ul>
- </div>
- <div class="pagination">
- <el-pagination
- @current-change="currentChangeCou"
- background
- layout="prev, pager, next"
- :total="total"
- :page-size="pageSize"
- >
- </el-pagination>
- </div>
- </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 GoodsItem from "@/components/goodsItem/index";
- import { mapGetters } from "vuex";
- export default {
- name: "BankExplain",
- components: {
- Footer,
- Header,
- ToolBar,
- GoodsItem,
- },
- data() {
- return {
- examId: '',
- courseList: [],
- pageNum: 1,
- pageSize: 10,
- total: 0,
- recordId: '',
- type: 0, //type:1章卷,2节卷,3模考卷
- reportdata: {},
- };
- },
- computed: {
- ...mapGetters(["examResult"]),
- doWrongQuestionNum() {
- let value = this.reportdata.totalQuestionNum - this.reportdata.rightQuestionNum - this.reportdata.lessQuestionNum
- return value > 0 ? value : 0
- }
- },
- created() {
- const { examId, recordId, type } = this.$route.query
- this.examId = examId
- this.recordId = recordId
- this.type = type
- this.getcourList()
- this.bankReport()
- },
- mounted() {
- console.log('examResult:', this.examResult)
- // if (JSON.stringify(this.examResult) == "{}") {
- // this.$router.back(-1);
- // }
- },
- methods: {
- getcourList() {
- this.$axios({
- url: '/apply/recommend/goodsList',
- method: 'post',
- data: {
- examId: this.examId,
- pageNum: this.pageNum,
- pageSize: this.pageSize,
- platform: 2,
- }
- }).then((res) => {
- if (res.code == 200) {
- this.courseList = res.rows || []
- this.total = res.total
- }
- })
- },
- bankReport() {
- this.$request.bankReportData(this.recordId).then((res) => {
- this.reportdata = res.data
- // console.log('reportdata:', this.reportdata)
- });
- },
- currentChangeCou(val) {
- this.pageNum = val
- this.getcourList()
- },
- backList() {
- this.$router.go(-1)
- },
- /**
- * 去做题
- */
- async doRepeat(reportdata) {
- // /bank/record/doNum
- let count = await this.bankRecordDoNum()
- console.log('已做的次数', count)
- let answerNum = await this.getExamDetail(this.reportdata.examId)
- console.log('全部的次数', answerNum)
- //超过答题次数
- if (answerNum > 0 && count >= answerNum) {
- this.$message({
- type: "warning",
- message: "该试卷只能答题" + answerNum + "次!",
- });
- return;
- }
- // answerNum==0没有答题次数限制
- if (answerNum == 0 || (answerNum - count > 0 && answerNum > 0)) {
- this.$router.push({
- path: "/course-exam/" + this.reportdata.goodsId,
- query: {
- courseId: this.reportdata.courseId,
- gradeId: this.reportdata.gradeId || 0,
- moduleId: this.reportdata.moduleId || 0,
- sectionId: this.reportdata.sectionId || 0,
- examId: this.reportdata.examId,
- type: this.type,
- chapterId: this.reportdata.chapterId || 0,
- orderGoodsId: this.reportdata.orderGoodsId,
- },
- })
- }
- // this.studyLog()
- },
- /**
- * 获取试卷已做的次数
- */
- bankRecordDoNum() {
- return new Promise((resolve) => {
- this.$request
- .bankRecordDoNum({
- goodsId: this.reportdata.goodsId,
- gradeId: this.reportdata.gradeId,
- chapterId: this.reportdata.chapterId || 0,
- courseId: this.reportdata.courseId,
- moduleId: this.reportdata.moduleId || 0,
- examId: this.reportdata.examId,
- })
- .then((res) => {
- resolve(res.data);
- });
- });
- },
- /**
- * @param {Object} exam_id
- * 获取试卷可以做的次数
- */
- getExamDetail(exam_id) {
- return new Promise((resolve) => {
- this.$request.getExamDetail(exam_id).then((res) => {
- resolve(res.data.answerNum);
- });
- });
- },
- // 新增用户视频学习日志
- studyLog() {
- this.$axios({
- url: "/user/study/log",
- method: "post",
- data: {
- goodsId: this.reportdata.goodsId,
- courseId: this.reportdata.courseId,
- moduleId: this.reportdata.moduleId || 0,
- chapterId: this.reportdata.chapterId || 0,
- sectionId: this.reportdata.sectionId || 0,
- fromPlat: 2, //来源平台 1小程序 2PC网站
- goodsType: 1, // 商品类型 1视频2题库 3补考 4前培 5虚拟赠送题库 6直播
- orderGoodsId: this.reportdata.orderGoodsId,
- },
- }).then((res) => {
- });
- },
- 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: reportdata.goodsId,
- orderGoodsId: reportdata.orderGoodsId,
- courseType: 2,
- },
- });
- },
- 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: reportdata.goodsId,
- courseType: 2,
- },
- });
- },
- },
- };
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped lang="scss">
- .bank-report {
- .re_back {
- text-align: right;
- margin: 10px 0px;
- .back-btn {
- width: 100px;
- }
- }
- .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;
- }
- &--yellow {
- color: #ffc53d;
- }
- }
- &__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;
- }
- }
- }
- .course_list {
- .course {
- background: #f5f7fa;
- padding-top: 40px;
- &__header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .title {
- background: url("~@/assets/video.png") no-repeat left center;
- padding-left: 36px;
- font-size: 24px;
- font-family: YouSheBiaoTiHei;
- font-weight: 400;
- color: #333333;
- text-shadow: 0px 6px 6px rgba(249, 113, 13, 0.08);
- }
-
- }
-
- &__body {
- .list {
- width: 100%;
- .course-item {
- float: left;
- }
- }
- }
- }
- .pagination {
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 20px 0px;
- }
- }
- }
- </style>
|