学院功能拆分,添加考场管理、四六级排考
This commit is contained in:
parent
4cdb5352a6
commit
3f98ead83c
|
@ -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>
|
|
@ -192,6 +192,10 @@ export default {
|
|||
message.error('请选择年级');
|
||||
return;
|
||||
}
|
||||
if (this.collegetab2.length == 1) {
|
||||
message.error('请至少选择两个学院');
|
||||
return;
|
||||
}
|
||||
if (this.collegetab2.length == 0) {
|
||||
message.error('请选择学院');
|
||||
return;
|
||||
|
|
|
@ -168,7 +168,10 @@ export default {
|
|||
message.error('请选择学院');
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.lastCollegeMajor.length == 1 || this.lastCollegeMajor == null) {
|
||||
message.error('请至少选择两个专业');
|
||||
return;
|
||||
}
|
||||
if (this.lastCollegeMajor.length == 0 || this.lastCollegeMajor == null) {
|
||||
message.error('请选择专业');
|
||||
return;
|
||||
|
|
|
@ -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>
|
Loading…
Reference in New Issue