|
@@ -229,6 +229,7 @@
|
|
>开启手机app考试,将不能开启人脸身份检测</span
|
|
>开启手机app考试,将不能开启人脸身份检测</span
|
|
>-->
|
|
>-->
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+
|
|
<el-row>
|
|
<el-row>
|
|
<el-form-item
|
|
<el-form-item
|
|
label="开启IP访问设置"
|
|
label="开启IP访问设置"
|
|
@@ -241,6 +242,23 @@
|
|
></el-switch>
|
|
></el-switch>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
+
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-form-item
|
|
|
|
+ label="开启多选题作答提示"
|
|
|
|
+ :label-width="style.label_width_tab1"
|
|
|
|
+ >
|
|
|
|
+ <el-switch
|
|
|
|
+ v-model="form.properties.SHOW_MULTIPLE_CHOICE_WARNING"
|
|
|
|
+ on-text="是"
|
|
|
|
+ off-text="否"
|
|
|
|
+ ></el-switch>
|
|
|
|
+ <span style="font-size: 12px; margin-left: 30px"
|
|
|
|
+ >*开启后,考生作答多选题所选答案不足两个时警告提示</span
|
|
|
|
+ >
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-row>
|
|
|
|
+
|
|
<el-row>
|
|
<el-row>
|
|
<el-form-item
|
|
<el-form-item
|
|
label="开启审核全通过"
|
|
label="开启审核全通过"
|
|
@@ -1435,6 +1453,7 @@ export default {
|
|
WARN_THRESHOLD: 50,
|
|
WARN_THRESHOLD: 50,
|
|
MARKING_TYPE: "ALL",
|
|
MARKING_TYPE: "ALL",
|
|
IP_LIMIT: "false",
|
|
IP_LIMIT: "false",
|
|
|
|
+ SHOW_MULTIPLE_CHOICE_WARNING: "false",
|
|
AUDIT_ALL_PASS: "false",
|
|
AUDIT_ALL_PASS: "false",
|
|
IP_ADDRESSES: null,
|
|
IP_ADDRESSES: null,
|
|
LIVING_WARN_THRESHOLD: 50,
|
|
LIVING_WARN_THRESHOLD: 50,
|
|
@@ -1675,6 +1694,9 @@ export default {
|
|
this.form.properties.IP_LIMIT =
|
|
this.form.properties.IP_LIMIT =
|
|
this.form.properties.IP_LIMIT === "true";
|
|
this.form.properties.IP_LIMIT === "true";
|
|
|
|
|
|
|
|
+ this.form.properties.SHOW_MULTIPLE_CHOICE_WARNING =
|
|
|
|
+ this.form.properties.SHOW_MULTIPLE_CHOICE_WARNING === "true";
|
|
|
|
+
|
|
this.form.properties.AUDIT_ALL_PASS =
|
|
this.form.properties.AUDIT_ALL_PASS =
|
|
this.form.properties.AUDIT_ALL_PASS === "true";
|
|
this.form.properties.AUDIT_ALL_PASS === "true";
|
|
|
|
|