学院功能拆分,添加考场管理、四六级排考

This commit is contained in:
Cool 2024-05-30 20:08:37 +08:00
parent 4cdb5352a6
commit 3f98ead83c
4 changed files with 56 additions and 1 deletions

View File

@ -0,0 +1,24 @@
<template>
<div>
<div>
<h1>二期开发</h1>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="less" scoped>
h1{
color: red;
font-size: 50px;
text-align: center;
margin-top: 100px;
}
</style>

View File

@ -192,6 +192,10 @@ export default {
message.error('请选择年级'); message.error('请选择年级');
return; return;
} }
if (this.collegetab2.length == 1) {
message.error('请至少选择两个学院');
return;
}
if (this.collegetab2.length == 0) { if (this.collegetab2.length == 0) {
message.error('请选择学院'); message.error('请选择学院');
return; return;

View File

@ -168,7 +168,10 @@ export default {
message.error('请选择学院'); message.error('请选择学院');
return; return;
} }
if (this.lastCollegeMajor.length == 1 || this.lastCollegeMajor == null) {
message.error('请至少选择两个专业');
return;
}
if (this.lastCollegeMajor.length == 0 || this.lastCollegeMajor == null) { if (this.lastCollegeMajor.length == 0 || this.lastCollegeMajor == null) {
message.error('请选择专业'); message.error('请选择专业');
return; return;

View File

@ -0,0 +1,24 @@
<template>
<div>
<div>
<h1>二期开发</h1>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="less" scoped>
h1{
color: red;
font-size: 50px;
text-align: center;
margin-top: 100px;
}
</style>