123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- <template>
- <div class="content-container">
- <div class="content-outline" v-if="!testResultDivShow">
- <div class="left_part">
- <div id="left_top" class="flex-row">
- <el-image class="setting" :src="require('@/assets/9551.png')" fit="cover" />
- <div class="text"> 操作提示:</div>
- </div>
- <div class="left-desc-80" v-html="subjectInfo.testDescription"></div>
- </div>
- <div
- class="right_part"
- :style="{
- background:
- 'url(' + require('./../../assets/page' + taskId + '.png') + ')',
- 'background-size': '100% 100%',
- }"
- >
- <div id="title">
- <span>{{ subjectInfo.name }}</span>
- </div>
- <div
- style="
- position: absolute;
- bottom: 0.156rem;
- left: 50%;
- transform: translateX(-50%);
- "
- >
- <el-button type="primary" class="start" @click="startTest()">{{
- buttonName
- }}</el-button>
- </div>
- </div>
- </div>
-
-
- {{ subjectInfo.name }}
- {{ testType }}
- {{ subjectInfo.testDescription }}
- <div v-if="testResultDivShow" class="testResultDiv">
- <table class="test_result">
- <tr>
- <th>指标名称</th>
- <th>测试结果</th>
- </tr>
- <tr>
- <td>测试题目总数:</td>
- <td>{{ totalCount }}</td>
- </tr>
- <tr>
- <td>正确题目数:</td>
- <td>{{ rightCount }}</td>
- </tr>
- <tr>
- <td>测试成绩:</td>
- <td>{{ userScore }}</td>
- </tr>
- </table>
- </div>
- <div
- v-if="testFlag"
- :class="{ testMainDiv: !testState, activeTask: testState }"
- >
- <MainProgress v-if="testTypeCode === 1" :cur-percentage="(100 - countDownTime) / 100" />
- <div class="taskHead">
- <div class="scale" @click.stop="screenState">
- <img src="@/assets/small-big.png" alt="" />
- </div>
- </div>
-
- {{ showSpanText }}
- <div v-if="answerButtonShow" style="" class="txt-center">
- <div align="center" style="padding-bottom: 20px; padding-top: 100px">
- <span class="bn-in"> {{ showSpanText }}</span>
- </div>
- <div class="add-mid">
- <div style="margin-top: 10px">
- <el-button class="oneBu bn-bottom" @click="userClick(1)">1</el-button>
- <el-button class="oneBu bn-bottom" @click="userClick(2)">2</el-button>
- <el-button class="bn-bottom" @click="userClick(3)">3</el-button>
- </div>
- <div style="margin-top: 10px">
- <el-button class="oneBu bn-bottom" @click="userClick(4)">4</el-button>
- <el-button class="oneBu bn-bottom" @click="userClick(5)">5</el-button>
- <el-button class="bn-bottom" @click="userClick(6)">6</el-button>
- </div>
- <div style="margin-top: 10px">
- <el-button class="oneBu bn-bottom" @click="userClick(7)">7</el-button>
- <el-button class="oneBu bn-bottom" @click="userClick(8)">8</el-button>
- <el-button class="bn-bottom" @click="userClick(9)">9</el-button>
- </div>
- <div style="margin-top: 10px">
- <el-button class="bn-bottom" @click="userClick(0)">0</el-button>
- </div>
- </div>
- </div>
- </div>
- <div style="text-align: center">
-
- {{ buttonName }}
- <el-button
- class="scaleButton"
- type="primary"
- v-if="saveFlag"
- @click="resultSave()"
- >结果保存</el-button
- >
- </div>
- <go-back />
- </div>
- </template>
- <script>
- import axios from "axios";
- import cognitiveAbilityTaskList from "@/assets/data/cognitiveAbilityData.js";
- import { oSessionStorage } from "@/utils/utils";
- import screenfull from "screenfull";
- import MainProgress from "@/components/MainProgress/index.vue";
- import GoBack from "@/components/goBack/index.vue";
- export default {
- components: {GoBack, MainProgress},
- data() {
- return {
- userId: "",
- testResult: {},
- countDownTime: 100,
- testCount: 6,
- taskId: "",
- saveFlag: false,
- subjectInfo: "",
- answerButtonShow: false,
- buttonShow: true,
- passTestExam: false,
- testType: "练习测试",
- buttonName: "开始练习",
- testTypeCode: 0,
- testFlag: false,
- countDownInterval: "",
- additionNumCount: 2,
- currentAnswer: 0,
- showSpanText: "",
- totalCount: 0,
- rightCount: 0,
- rightCount2: 0,
- rightCount3: 0,
- rightCount4: 0,
- rightCount5: 0,
- rightCount6: 0,
- currentRoundRightCount: 0,
- stepWidth: 1,
- stepEndFlag: 6,
- testState: false,
- testResultDivShow: false,
- testResultStr: "",
- userScore: "",
- rightThree: 0,
- wrongTwo: 0,
- rightCountList: [],
- };
- },
-
- created() {
- this.taskId = this.$route.query.taskId;
- this.init(this.taskId);
- this.divShow = false;
- this.testState = false;
- clearInterval(this.divShowInteval);
- clearInterval(this.countDownInterval);
- },
- destroyed() {
- clearInterval(this.divShowInteval);
- clearInterval(this.countDownInterval);
- },
- mounted: function () {
- var _this = this;
- document.onkeydown = function (e) {
- let key = window.event.keyCode;
- if (key === 122) {
- e.preventDefault();
- screenfull.toggle();
- }
- if ((57 >= key && key >= 48) || (105 >= key && key >= 96))
- _this.userClick(window.event.key);
- };
- },
- methods: {
- screenState() {
- screenfull.toggle();
- },
- init(taskId) {
-
- this.subjectInfo = JSON.parse(oSessionStorage.getItem("subjectInfo"));
- this.imgUrl = this.subjectInfo.imageUrl;
- },
- userClick(answer) {
-
- this.totalCount++;
- if (answer == this.currentAnswer) {
- if (this.testTypeCode == 1) {
-
- this.rightCount++;
-
- this.nNumRightCount();
-
- this.currentRoundRightCount++;
-
-
-
-
-
-
-
-
- this.rightThree ++;
- this.wrongTwo = 0;
- if(this.rightThree >= 3 && this.wrongTwo == 0){
- this.additionNumCount ++;
- this.rightThree = 0;
- this.wrongTwo = 0;
- }
- } else {
- this.rightCount++;
- if (this.totalCount % 2 == 0) {
- this.additionNumCount =
- this.additionNumCount + 1 > 6 ? 6 : this.additionNumCount + 1;
- }
- }
- } else {
-
-
- if (this.testTypeCode == 1) {
- this.currentRoundRightCount = 0;
-
-
-
-
- this.rightThree = 0;
- this.wrongTwo ++;
- if(this.additionNumCount > 2 && this.rightThree == 0 && this.wrongTwo >= 2){
- this.additionNumCount --;
- this.rightThree = 0;
- this.wrongTwo = 0;
- }
- } else {
- if (this.totalCount % 2 == 0) {
- this.additionNumCount =
- this.additionNumCount + 1 > 6 ? 6 : this.additionNumCount + 1;
- }
- }
- }
- if (this.totalCount == 6 && this.testTypeCode == 0) {
- this.testEnd();
- this.testFlag = false;
- this.showSpanText = "";
- this.answerButtonShow = false;
- return;
- }
-
- if (this.testFlag) {
- this.createComputeSpanText();
- }
- },
- format(percentage) {
- return percentage === 100 ? "任务已完成" : "任务进度";
- },
- screen() {
-
-
-
-
-
- screenfull.request();
- },
- screenExit() {
-
-
-
-
-
- screenfull.exit();
- },
- startTest() {
- if (
- sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f") == "" ||
- sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f") == null
- ) {
- alert("请先登录!");
- return;
- }
- this.userId = sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f");
-
- this.createComputeSpanText();
-
- this.testFlag = true;
- this.buttonShow = false;
- this.answerButtonShow = true;
- this.testState = true;
- this.screen();
-
- if (this.testTypeCode == 1) {
- this.countDown();
- }
- },
- testEnd() {
- this.screen();
-
- if (this.testTypeCode == 0) {
- if (this.totalCount == this.rightCount) {
-
-
- this.subjectInfo.testDescription = this.subjectInfo.testExplain;
- this.testTypeCode = 1;
- this.buttonName = "正式测试";
- this.testType = "正式测试";
- this.buttonShow = true;
- this.answerButtonShow = true;
- this.testState = false;
- this.$message({
- message: "通过练习测试,开始进行正式测试!",
- type: "success",
- });
-
- } else {
-
- this.testTypeCode = 0;
- this.buttonName = "重新测试";
- this.buttonShow = true;
- this.testState = false;
- this.answerButtonShow = true;
- this.$message({
- message: "测试未通过,请点击'重新测试'按钮继续练习!",
- type: "warning",
- });
- }
- this.screenExit();
- this.pageDataInit();
- } else {
- this.screenExit();
- this.testState = false;
- this.getUserTestScore();
- this.$message({
- message: "测试结束!",
- type: "success",
- });
- this.buttonShow = false;
- this.answerButtonShow = false;
- this.showSpanText = "";
-
- this.testFlag = false;
- }
- },
- countDown() {
-
- let myInterval = setInterval(() => {
- this.countDownTime--;
- if (this.countDownTime == 0) {
-
- this.testEnd();
-
- clearInterval(myInterval);
- this.countDownTime = 0;
- }
- }, 1000);
- },
- createComputeSpanText() {
-
- this.testCount--;
- var tempSpanText = "";
- var additionResult = 0;
- for (var i = this.additionNumCount; i > 0; i--) {
- var tempNum = Math.floor(Math.random() * 10);
- additionResult += tempNum;
- tempSpanText += tempNum + "+";
- }
- this.showSpanText = tempSpanText.substr(0, tempSpanText.length - 1);
- this.currentAnswer = additionResult % 10;
- },
- nNumRightCount() {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- let isIndex = this.rightCountList.findIndex(item => item.key == this.additionNumCount);
- if(isIndex !== -1){
- this.rightCountList[isIndex].value ++;
- }else {
- this.rightCountList.push({
- key: this.additionNumCount,
- value: 1
- })
- }
- },
- pageDataInit() {
- this.rightCount2 = 0;
- this.rightCount3 = 0;
- this.rightCount4 = 0;
- this.rightCount5 = 0;
- this.rightCount6 = 0;
- this.totalCount = 0;
- this.rightCount = 0;
- this.additionNumCount = 2;
- this.currentAnswer = 0;
- this.currentRoundRightCount = 0;
- },
- getUserTestScore() {
- console.log(this.rightCountList,"测试记录列表")
- this.testResult.userId = this.userId;
- this.testResult.total = this.totalCount;
- this.testResult.testPlanId = this.$route.query.testPlanId || "";
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- this.testResult.data = this.rightCountList;
- let sum = 0;
- this.rightCountList.map((item) => {
- sum += item.value * Math.pow(2, item.key - 2)
- });
- this.testResult.score = sum == 0 ? 0 : parseFloat(Math.log2(sum)).toFixed(2);
- this.userTestResultSave();
- },
- userTestResultSave() {
- let that = this;
-
-
- this.$http.post(`/cognize/ADDITION`, this.testResult, (res) => {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- this.goTestResult(res.data);
- });
- }
- },
- };
- </script>
- <style scoped>
- .testResultDiv {
- margin: 0 auto;
-
- margin-left: 33%;
-
- background-size: cover;
-
- width: 500px;
- height: 100px;
- }
- .testMainDiv {
- margin: 0 auto;
- margin-top: 10px;
- background: gray;
- background-size: cover;
-
- width: 500px;
- height: 300px;
-
- }
- .activeTask {
- background: url(../../assets/congnitiveAblitity/add-bg.png) no-repeat center;
- background-size: cover;
-
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .el-progress__text {
- color: black;
- }
- .scaleName {
- margin-top: 70px;
- background-size: cover;
- }
- .scaleButton {
- margin-top: 20px;
- margin-bottom: 20px;
- background-size: cover;
- }
- .add-mid {
- background: url('~@/assets/congnitiveAblitity/add-mid.png') no-repeat 0 0 / 100% 100%;
- height: 470px;
- width: 425px;
- margin: 20px auto 0;
- }
- h1 {
- font-size: 2em;
- margin: 0em 0 !important;
- }
- .oneBu {
- margin-right: 55px;
- }
- .bn-bottom {
- margin-top: 20px;
- width: 84px;
- height: 84px;
- background: rgb(87, 172, 187);
- box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.48);
- border-radius: 50%;
- opacity: 1;
- color: white;
- font-size: 28px;
- }
- .bn-in {
- border-radius: 14px;
- display: block;
- width: 500px;
- height: 54px;
- color: white;
- background-color: black;
- font-size: 32px;
- padding-top: 10px;
- }
- .aa {
- visibility: hidden;
- }
- </style>
|