|
@@ -191,10 +191,17 @@ export default {
|
|
|
};
|
|
|
}
|
|
|
} else {
|
|
|
- return {
|
|
|
- status: this.examStatesType.STARTED,
|
|
|
- statusTxt: "已开考"
|
|
|
- };
|
|
|
+ if (this.exam.available) {
|
|
|
+ return {
|
|
|
+ status: this.examStatesType.STARTED,
|
|
|
+ statusTxt: "已开考"
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ return {
|
|
|
+ status: this.examStatesType.EXAMOVER,
|
|
|
+ statusTxt: "已考完 "
|
|
|
+ };
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
return {
|