|
@@ -6,7 +6,7 @@
|
|
|
<el-col class="f14" :span="col.span" v-for="col in cols">
|
|
|
<p class="pb10" style="border-bottom: 1px solid #ebeef5;"> {{col.label}}</p>
|
|
|
<p class="f20 f-333 pt10 pb10"> {{col.value}}</p>
|
|
|
- <p class="f16"> {{col.subValue}}</p>
|
|
|
+ <p class="f16" :class="{'f-red':col.span == 4}"> {{col.subValue}}</p>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<mx-table :prop-defines="propDefines" :rows="model.majorCombine">
|
|
@@ -68,12 +68,14 @@ export default {
|
|
|
{
|
|
|
label: '院校',
|
|
|
span: 4,
|
|
|
- value: this.model.countcollege
|
|
|
+ value: this.model.countcollege,
|
|
|
+ subValue: '院校(所)'
|
|
|
},
|
|
|
{
|
|
|
label: '专业',
|
|
|
span: 4,
|
|
|
- value: this.model.countmajor
|
|
|
+ value: this.model.countmajor,
|
|
|
+ subValue: '专业(个)'
|
|
|
}
|
|
|
]
|
|
|
this.model.majorSubject.forEach(item => {
|