|
@@ -345,10 +345,13 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
leave: function leave() {}, // 关闭
|
|
|
close1: function close1() {this.showLeave = false;}, // 关闭答题卡
|
|
|
close2: function close2() {this.showSheet = false;}, // 开始考试
|
|
|
- startExam: function startExam(id) {var that = this;_api.default.req({ url: '/api/User/startQuestions', data: { id: id } }, function (res) {if (res.code == 1) {that.id = res.data.course_id;that.log_id = res.data.log_id;that.getQuestions();}});}, // 获取试题
|
|
|
+ startExam: function startExam(id) {var that = this;_api.default.req({ url: '/api/User/startQuestions', data: { id: id } }, function (res) {if (res.code == 1) {that.id = res.data.course_id;that.log_id = res.data.log_id;that.getQuestions();} else {_api.default.info(res.msg);_api.default.jump(-1);}});}, // 获取试题
|
|
|
getQuestions: function getQuestions() {var that = this;_api.default.req({ url: '/api/User/questionsList', data: { id: that.id } }, function (res) {if (res.code == 1) {that.examPaper = res.data;}});}, // 获取考试时间
|
|
|
- getExamTime: function getExamTime(id) {var that = this;_api.default.req({ url: '/api/Index/courseDetail', data: { id: id } }, function (res) {if (res.code == 1) {that.course = res.data;}});}, // 打开答题卡
|
|
|
- open: function open() {this.showSheet = true;
|
|
|
+ getExamTime: function getExamTime(id) {var that = this;_api.default.req({ url: '/api/Index/courseDetail', data: { id: id } }, function (res) {if (res.code == 1) {that.course = res.data;}});
|
|
|
+ },
|
|
|
+ // 打开答题卡
|
|
|
+ open: function open() {
|
|
|
+ this.showSheet = true;
|
|
|
},
|
|
|
// 选择答案
|
|
|
select: function select(option) {
|
|
@@ -357,13 +360,13 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
if (that.examPaper[index].type !== 2) {
|
|
|
that.choice = that.examPaper[index].items[option].ladder_title;
|
|
|
that.values = {
|
|
|
- id: that.index,
|
|
|
+ id: that.examPaper[index].id,
|
|
|
answer: that.choice };
|
|
|
|
|
|
} else {
|
|
|
that.choice = that.choice + that.examPaper[index].items[option].ladder_title + '、';
|
|
|
that.values = {
|
|
|
- id: that.index,
|
|
|
+ id: that.examPaper[index].id,
|
|
|
answer: that.choice };
|
|
|
|
|
|
}
|
|
@@ -371,7 +374,8 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
// 去答题卡对应题目
|
|
|
toTest: function toTest(inx) {
|
|
|
var that = this;
|
|
|
- that.values = {};
|
|
|
+ that.choice = '';
|
|
|
+ that.values = [];
|
|
|
that.index = inx + 1;
|
|
|
that.showSheet = false;
|
|
|
console.log("values: ", that.values);
|
|
@@ -388,6 +392,7 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
// 下一题
|
|
|
nextExam: function nextExam() {
|
|
|
var that = this;
|
|
|
+ console.log(that.values.answer);
|
|
|
if (that.values !== {}) {
|
|
|
if (that.values.answer.charAt(that.values.answer.length - 1) == '、') {
|
|
|
that.values.answer = that.values.answer.substr(0, that.values.answer.length - 1);
|
|
@@ -403,7 +408,7 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
}
|
|
|
}
|
|
|
console.log(1111);
|
|
|
- console.log(that.answer);
|
|
|
+ console.log(that.values);
|
|
|
if (that.values.length !== 0) {
|
|
|
that.answer.push(that.values);
|
|
|
}
|
|
@@ -420,24 +425,63 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
},
|
|
|
// 最后一题
|
|
|
submit: function submit() {
|
|
|
- if (this.values.answer.charAt(this.values.answer.length - 1) == '、') {
|
|
|
- this.values.answer = this.values.answer.substr(0, this.values.answer.length - 1);
|
|
|
+ /* if(this.values.answer.charAt(this.values.answer.length - 1) == '、') {
|
|
|
+ this.values.answer = this.values.answer.substr(0,this.values.answer.length-1);
|
|
|
+ }
|
|
|
+ this.answer.push(this.values)
|
|
|
+ if (this.choice != '') {
|
|
|
+ this.examPaper[this.index - 1].state = true
|
|
|
+ } */
|
|
|
+ var that = this;
|
|
|
+ console.log(that.values.answer);
|
|
|
+ if (that.values !== {}) {
|
|
|
+ if (that.values.answer.charAt(that.values.answer.length - 1) == '、') {
|
|
|
+ that.values.answer = that.values.answer.substr(0, that.values.answer.length - 1);
|
|
|
+ }
|
|
|
}
|
|
|
- this.answer.push(this.values);
|
|
|
- if (this.choice != '') {
|
|
|
- this.examPaper[this.index - 1].state = true;
|
|
|
+ if (that.answer.length > 0) {
|
|
|
+ console.log(that.answer);
|
|
|
+ for (var i = 0; i < that.answer.length; i++) {
|
|
|
+ if (that.values.id == that.answer[i].id) {
|
|
|
+ that.answer[i].answer = that.values.answer;
|
|
|
+ that.values = [];
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ console.log(1111);
|
|
|
+ console.log(that.values);
|
|
|
+ if (that.values.length !== 0) {
|
|
|
+ that.answer.push(that.values);
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+ that.answer.push(that.values);
|
|
|
+ }
|
|
|
+ if (that.choice != '') {
|
|
|
+ that.examPaper[that.index - 1].state = true;
|
|
|
}
|
|
|
- this.choice = '';
|
|
|
- this.values = [];
|
|
|
+ // this.choice = ''
|
|
|
+ // this.values = []
|
|
|
this.open();
|
|
|
},
|
|
|
// 倒计时结束
|
|
|
finish: function finish() {
|
|
|
console.log("倒计时结束,自动交卷");
|
|
|
+ // this.submitExam()
|
|
|
},
|
|
|
// 交卷
|
|
|
submitExam: function submitExam() {
|
|
|
var that = this;
|
|
|
+ console.log(typeof that.answer);
|
|
|
+ var obj = [];
|
|
|
+ for (var i = 0; i < that.answer.length; i++) {
|
|
|
+ if (obj.indexOf(that.answer[i].id) == -1) {
|
|
|
+ obj.push(that.answer[i].id);
|
|
|
+ } else {
|
|
|
+ that.answer.splice(i, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ console.log(that.answer);
|
|
|
that.answer = JSON.stringify(that.answer);
|
|
|
_api.default.req({
|
|
|
url: '/api/User/subQuestions',
|
|
@@ -449,7 +493,10 @@ var _default = { data: function data() {return { id: 1, log_id: 3, examPaper: []
|
|
|
function (res) {
|
|
|
if (res.code == 1) {
|
|
|
_api.default.jump('/pages/index/exam/submit?data=' + JSON.stringify(res.data) + '&log_id=' + that.log_id, 1);
|
|
|
+ } else {
|
|
|
+ _api.default.info(res.msg);
|
|
|
}
|
|
|
+
|
|
|
});
|
|
|
} } };exports.default = _default;
|
|
|
|