|
@@ -137,7 +137,7 @@ export default {
|
|
|
try {
|
|
|
await this.$refs.form.validate();
|
|
|
} catch (error) {
|
|
|
- console.log(error);
|
|
|
+ console.log("校验失败", error);
|
|
|
return;
|
|
|
}
|
|
|
const res = await searchInvigilators({
|
|
@@ -168,7 +168,7 @@ export default {
|
|
|
const valid = await this.$refs.form.validate();
|
|
|
if (!valid) return;
|
|
|
} catch (error) {
|
|
|
- console.log(error);
|
|
|
+ console.log("校验失败", error);
|
|
|
return;
|
|
|
}
|
|
|
this.$refs.theDialog2.openDialog();
|
|
@@ -177,7 +177,7 @@ export default {
|
|
|
try {
|
|
|
await this.$refs.form.validate();
|
|
|
} catch (error) {
|
|
|
- console.log(error);
|
|
|
+ console.log("校验失败", error);
|
|
|
return;
|
|
|
}
|
|
|
exportInvigilate({
|