|
@@ -91,10 +91,6 @@
|
|
type: String,
|
|
type: String,
|
|
default: ''
|
|
default: ''
|
|
},
|
|
},
|
|
- year: {
|
|
|
|
- type: Number,
|
|
|
|
- default: 0
|
|
|
|
- },
|
|
|
|
readonly: {
|
|
readonly: {
|
|
type: Boolean,
|
|
type: Boolean,
|
|
default: false
|
|
default: false
|
|
@@ -182,7 +178,6 @@
|
|
created() {
|
|
created() {
|
|
this.selected.sciences[0] = this.course0 ? [this.course0] : []
|
|
this.selected.sciences[0] = this.course0 ? [this.course0] : []
|
|
this.selected.sciences[1] = this.course1? this.course1.split(',') :[]
|
|
this.selected.sciences[1] = this.course1? this.course1.split(',') :[]
|
|
- this.selected.years = this.year ? this.year : this.form.years[0]
|
|
|
|
if(this.course0 && this.course1) this.httpGetXkcxList()
|
|
if(this.course0 && this.course1) this.httpGetXkcxList()
|
|
this.getYears();
|
|
this.getYears();
|
|
this.getUniversity();
|
|
this.getUniversity();
|
|
@@ -193,7 +188,7 @@
|
|
getYears() {
|
|
getYears() {
|
|
xkcxYears().then((res) => {
|
|
xkcxYears().then((res) => {
|
|
this.form.years = res.data || [];
|
|
this.form.years = res.data || [];
|
|
- this.selected.years = this.selected.years || this.form.years[0]
|
|
|
|
|
|
+ this.selected.years = this.form.years[0]
|
|
});
|
|
});
|
|
},
|
|
},
|
|
// 取其他条件清单
|
|
// 取其他条件清单
|
|
@@ -371,18 +366,18 @@
|
|
margin-right: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-.radioInput02 {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- .radiaTitle {
|
|
|
|
- display: inline-block;
|
|
|
|
- width: 130px;
|
|
|
|
- font-size: 14px;
|
|
|
|
- text-align: right;
|
|
|
|
- margin-top: 2px;
|
|
|
|
- }
|
|
|
|
- .el-input--medium .el-input__inner {
|
|
|
|
- border-radius: 50px;
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+//.radioInput02 {
|
|
|
|
+// display: flex;
|
|
|
|
+// align-items: center;
|
|
|
|
+// .radiaTitle {
|
|
|
|
+// display: inline-block;
|
|
|
|
+// width: 130px;
|
|
|
|
+// font-size: 14px;
|
|
|
|
+// text-align: right;
|
|
|
|
+// margin-top: 2px;
|
|
|
|
+// }
|
|
|
|
+// .el-input--medium .el-input__inner {
|
|
|
|
+// border-radius: 50px;
|
|
|
|
+// }
|
|
|
|
+//}
|
|
</style>
|
|
</style>
|