123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523 |
- <template>
- <div class="txt-center">
- <div v-show="testResultStrShow" style="width: 650px; margin: 20px auto; line-height: 2">
- <p style="margin-top: 20%; font-size: 30px">
- {{ testResultStr }}
- </p>
- </div>
- <div v-if="testFlag" :class="{ testMainDiv: !testState, activeTask: testState }" @contextmenu.prevent=""
- @click.left="userClick('L')" @click.right="userClick('R')">
- <div class="taskHead">
-
-
- <el-progress class="main_progress" color="linear-gradient(to right, #ffd650, #ff8431)" :stroke-width="48"
- :text-inside="true" :format="format" :percentage="(imgIndex * 100) / 120" v-if="testTypeCode == 1"
- style="width:50%;margin-top:10px"></el-progress>
- </div>
- <div class="glass">
- <p v-show="countDownShow" class="countdownStr">
- {{ countDownStr }}
- </p>
- <img v-show="showDuckEgg" :src="examImgUrl" alt="" class="shapeImg" />
- </div>
-
-
-
- </div>
- </div>
- <CpdmMessage ref="cpdmMe" />
- </template>
- <script>
- import { preloader } from "@/utils/utils";
- import { userInfoStore } from '@/stores';
- import { saveEggRecordApi } from '@/api/record'
- import { format as myFormat } from 'date-fns';
- import { userPlanDetailApi } from '@/api/home';
- import CpdmMessage from '@/components/CpdmMessage.vue';
- const userInfo = userInfoStore()
- export default {
- components: { CpdmMessage },
- data() {
- return {
- userId: "",
- userTestResult: {},
- imgUrl: "",
- examImgUrl: "",
- taskId: "",
- testFlag: false,
- testState: false,
- saveFlag: false,
- subjectInfo: "",
- button0Show: true,
- button1Show: false,
- buttonName: "开始测试",
- testTypeCode: 0,
- imgIndex: 0,
- userTestPicList: [],
- showImage: true,
- difficultList: [0],
- testPicCount: 10,
- userRightClickDirection: "",
- userRightResponseCount: 0,
- showDuckEgg: false,
- countDownTime: 6,
- countDownStr: "练习马上开始!",
- countDownShow: true,
- testTunrnCount: 0,
- testEndFlag: false,
- testResultStrShow: false,
- testResultStr: "",
- userCanClick: true,
- myInterval: "",
- timeOne: "",
- timeTwo: "",
- startMilliSeconds: 0,
- userResponseRecords: [],
- saveFalg: true,
-
- planId: '',
- planName: '',
- flag: '',
- flagName: '',
- formalTest: '',
- beginTime: '',
- userPlanDetailApi: userPlanDetailApi
- };
- },
-
- created() {
-
-
- this.planId = this.$route.params.planId;
-
- this.planName = this.$route.params.planName;
-
- this.flag = this.$route.params.flag;
-
- this.flagName = this.$route.params.flagName;
-
- this.formalTest = this.$route.params.formalTest;
- this.beginTime = myFormat(new Date().getTime(), "yyyy-MM-dd HH:mm:ss")
-
- this.init(this.formalTest);
- },
- destroyed() {
- clearInterval(this.myInterval);
- clearTimeout(this.timeOne);
- clearTimeout(this.timeTwo);
- },
- methods: {
-
-
-
- requireImg(name) {
- return new URL(`../assets/cognize/shapeIntuition/${name}.jpg`, import.meta.url).href
- },
- init(val) {
- this.startTest(val);
- },
- userClick(clickFlag) {
- if (this.countDownShow || !this.userCanClick) {
- return;
- }
- this.userCanClick = false;
- let milliSecondsCount = new Date().getTime() - this.startMilliSeconds;
- let userResponseStr = "Wrong";
- clearTimeout(this.timeOne);
-
- if (this.userRightClickDirection == clickFlag) {
- this.userRightResponseCount++;
- userResponseStr = "Right";
- }
-
- if (this.imgIndex == this.userTestPicList.length) {
- this.testEndFlag = true;
- }
-
- if (this.testTypeCode == 1) {
- this.userResponseRecords.push({
- index: this.imgIndex,
- rightOrWrong: userResponseStr,
- responseTime: milliSecondsCount,
- diff: this.userTestPicList[this.imgIndex - 1].diff,
- });
- }
- this.showDuckEgg = false;
- this.timeTwo = setTimeout(() => {
- this.showTargetNow();
- }, 500);
- },
- format(percentage) {
- return percentage === 100 ? "测试已完成" : "任务进度";
- },
- screen() {
-
- },
- startTest(testType) {
-
-
-
-
-
-
-
-
- if (testType == 0) {
- this.testTypeCode = 0;
- } else {
- this.saveFalg = true;
- this.testTypeCode = 1;
- }
- this.userId = sessionStorage.getItem("b80bb7740288fda1f201890375a60c8f");
- if (this.testTypeCode == 1) {
- this.difficultList = [360, 180, 90, 60, 30, 0];
- this.imgIndex = 0;
- this.countDownStr = "马上开始!";
- this.countDownTime = 6;
- this.testEndFlag = false;
- this.showDuckEgg = false;
- this.userTestPicList = [];
- }
- this.countDownShow = true;
- this.userTestPicListCreate();
-
- preloader(this.userTestPicList, () => {
- this.testFlag = true;
- this.testState = true;
- this.countDown();
- });
- },
- showTargetNow() {
-
- this.showDuckEgg = false;
- if (this.testEndFlag) {
- this.computeScore();
- } else {
- this.userRightClickDirection = this.userTestPicList[this.imgIndex].imgDirection;
- this.examImgUrl = this.userTestPicList[this.imgIndex].imgUrl;
- this.showDuckEgg = true;
- this.imgIndex++;
- this.startMilliSeconds = new Date().getTime();
- this.userCanClick = true;
- if (this.imgIndex == this.userTestPicList.length) {
- this.testEndFlag = true;
- }
- this.timeOne = setTimeout(this.ifShowNextOne, 10 * 1000, this.imgIndex);
- }
- },
- ifShowNextOne(needClickIndex) {
- if (needClickIndex == this.imgIndex) {
- this.userClick("NULL");
- }
- },
- async computeScore() {
-
- if (this.testTypeCode == 0) {
- this.testFlag = false;
- this.testState = false;
-
- this.countDownStr = "练习马上开始!";
- this.userRightResponseCount = 0;
- this.imgIndex = 0;
- this.countDownTime = 6;
- this.testEndFlag = false;
- this.showDuckEgg = false;
- this.userTestPicList = [];
- this.button1Show = true;
- this.$message({
- message: "练习测试结束!",
- type: "success",
- });
-
- this.$router.go(-1)
- } else {
- let userScore = (
- (this.userRightResponseCount / this.userResponseRecords.length) *
- 100
- ).toFixed(2);
- this.testFlag = false;
- this.testState = false;
- this.button0Show = false;
- this.button1Show = false;
- if (this.saveFalg) {
- let result = {
- beginTime: this.beginTime,
-
- orgName: userInfo.userInfo.orgName,
- orgNo: userInfo.userInfo.orgNo,
- planId: this.planId,
- planName: this.planName,
- taskFlag: this.flag,
- taskName: this.flagName,
- testRecord: JSON.stringify(this.userResponseRecords),
- testResult: JSON.stringify({ 'userScore': userScore }),
- type: 1,
- userName: userInfo.userInfo.userName,
- userNo: userInfo.userInfo.userNo
- }
- const res = await saveEggRecordApi(result);
- this.$message({
- message: "测试结束!",
- type: "success",
- });
-
-
-
-
-
- let params = {
- planId: this.planId,
- userNo: userInfo.userInfo.userNo
- }
- let temp = await userPlanDetailApi(params)
- let listT = temp.data;
- let listP = []
- listP = listT.filter((item) => {
- return item.isCompleted == '0' && item.contentType == '1'
- })
- this.saveFalg = false;
-
-
- if (listP.length > 0) {
- this.$router.push({ name: 'plan' })
- } else {
-
-
- this.$refs.cpdmMe.open()
-
- }
-
-
- }
- }
- },
- userTestPicListCreate() {
- let imgObj = {
-
-
-
- };
- if (this.testTypeCode == 0) {
-
- let imgIndexList = this.getRandomNumber(10, 20);
- for (let j = 0; j < this.difficultList.length; j++) {
- for (let i = 0; i < imgIndexList.length; i++) {
- imgObj = {};
- if (i % 2 == 0) {
- imgObj.imgUrl = this.requireImg("R_ELP_test_jitter" +
- this.difficultList[j] +
- "_s" +
- imgIndexList[i]);
- imgObj.imgDirection = "R";
- imgObj.userClickDirection = "";
- } else {
- imgObj.imgUrl = this.requireImg("ELP_test_jitter" +
- this.difficultList[j] +
- "_s" +
- imgIndexList[i]);
- imgObj.imgDirection = "L";
- imgObj.userClickDirection = "";
- }
- this.userTestPicList.push(imgObj);
- }
- }
- this.shuffle(this.userTestPicList);
- } else {
-
- for (let j = 0; j < this.difficultList.length; j++) {
- var tempList = [];
- for (let i = 1; i < 11; i++) {
- imgObj = {};
- imgObj.imgUrl = this.requireImg("R_ELP_test_jitter" +
- this.difficultList[j] +
- "_s" +
- i);
- imgObj.imgDirection = "R";
- imgObj.userClickDirection = "";
- imgObj.diff = this.difficultList[j];
- tempList.push(imgObj);
- imgObj = {};
- imgObj.imgUrl = this.requireImg("ELP_test_jitter" +
- this.difficultList[j] +
- "_s" +
- i);
- imgObj.imgDirection = "L";
- imgObj.userClickDirection = "";
- imgObj.diff = this.difficultList[j];
- tempList.push(imgObj);
- }
-
- this.userTestPicList = this.userTestPicList.concat(tempList);
- this.testPicCount = this.userTestPicList.length;
- }
- this.shuffle(this.userTestPicList);
- }
- },
- getRandomNumber(size, maxNumber) {
- let numberList = [];
- for (var i = 0; i < size; i++) {
- numberList.push(Math.floor(Math.random() * maxNumber) + 1);
- }
- return numberList;
- },
- countDown() {
-
- this.myInterval = setInterval(() => {
- this.countDownTime--;
- this.countDownStr = this.countDownTime;
- if (this.countDownTime == 0) {
- this.countDownShow = false;
-
- this.showTargetNow();
-
- clearInterval(this.myInterval);
-
- }
- }, 1000);
- },
- shuffle(arr) {
- var i = arr.length,
- t,
- j;
- while (i) {
- j = Math.floor(Math.random() * i--);
- t = arr[i];
- arr[i] = arr[j];
- arr[j] = t;
- }
- },
- },
- };
- </script>
- <style scoped>
- .testMainDiv {
- margin: 0 auto;
- margin-top: 10px;
- background: gray;
- background-size: cover;
-
- width: 500px;
- height: 300px;
-
- }
- .activeTask {
- background: url(../assets/cognize/shapeIntuition.png) no-repeat center;
- background-size: cover;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scaleName {
- margin-top: 70px;
- background-size: cover;
- }
- .scaleButton {
- margin-top: 20px;
- margin-bottom: 20px;
- background-size: cover;
- }
- .steering {
- width: 50%;
- position: absolute;
- bottom: 20%;
- left: 50%;
- transform: translateX(-50%);
- display: flex;
- justify-content: space-between;
- }
- .steering .left {
- width: 60px;
- height: 60px;
- background: url(../../assets/left.png) no-repeat center;
- }
- .steering .right {
- width: 60px;
- height: 60px;
- background: url(../../assets/right.png) no-repeat center;
- margin-left: 15px;
- }
- .imgBox {
- font-size: 50px;
- color: black;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .shapeImg {
- width: 20vw;
- min-width: 200px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .addImg {
- width: 71px;
- width: 71px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .countdownStr {
- width: 70%;
- position: absolute;
- top: 40%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: black;
- font-size: 70px;
- text-align: center;
- line-height: 100px;
- }
- .main_progress .el-progress-bar__inner {
- position: absolute;
- left: 0;
- top: 0;
- height: 100%;
- background-color: #ff3c3c !important;
- text-align: right;
- border-radius: 100px;
- line-height: 1;
- white-space: nowrap;
- transition: width 0.6s ease;
- background-image: linear-gradient(to right, #ffd650, #ff8431) !important;
- }
- .main_progress {
- width: 50%;
- margin-left: 10%;
- }
- </style>
|