|
@@ -2,7 +2,7 @@
|
|
|
<div style="width: 80%; margin:0 auto">
|
|
|
<div class="zhiyuan-filter">
|
|
|
<div class="header">
|
|
|
- <h3 class="f-666">您的选考科目为:历史,生物,政治, 请手动选择志愿</h3>
|
|
|
+ <h3 class="f-666">您的选考科目为:<em>{{formSubject.firstSubject }}<em v-for="item in formSubject.lastSubject">,{{item}}</em> </em>, 请手动选择志愿</h3>
|
|
|
</div>
|
|
|
<div class="filters">
|
|
|
<!-- <div class="filter">-->
|
|
@@ -84,6 +84,16 @@
|
|
|
import { zytbFilter } from '@/api/webApi/webQue'
|
|
|
|
|
|
export default {
|
|
|
+ props:{
|
|
|
+ formSubject: {
|
|
|
+ type: Object,
|
|
|
+ default: {}
|
|
|
+ },
|
|
|
+ batch: {
|
|
|
+ type: Object,
|
|
|
+ default:{}
|
|
|
+ }
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
filter_form: {
|
|
@@ -131,12 +141,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- props: {
|
|
|
- batch: {
|
|
|
- type: Object,
|
|
|
- default:{}
|
|
|
- }
|
|
|
- },
|
|
|
created() {
|
|
|
this.$nextTick(_ => zytbFilter(this.batch.batch).then((res) => {
|
|
|
this.filters = res.data;
|
|
@@ -219,6 +223,10 @@ export default {
|
|
|
padding: 8px 8px;
|
|
|
margin: 0;
|
|
|
}
|
|
|
+em{
|
|
|
+ font-weight: 400;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
>>> .el-input--medium .el-input__inner{
|
|
|
height: 30px;
|
|
|
line-height: 30px;
|