修复学院专业选择框问题以及添加引导界面并删除多余无用代码
This commit is contained in:
parent
688820ccce
commit
ffefebd785
|
@ -13,8 +13,7 @@
|
||||||
<div v-if="topCollege != null" style="margin-bottom: 5px">
|
<div v-if="topCollege != null" style="margin-bottom: 5px">
|
||||||
<span style="font-size: 15px">当前数据为 </span>
|
<span style="font-size: 15px">当前数据为 </span>
|
||||||
<span style="color: red; font-size: 18px">{{ topCollege }}</span>
|
<span style="color: red; font-size: 18px">{{ topCollege }}</span>
|
||||||
<span v-if="topMajor != null && topMajor != ''" style="color: red; font-size: 18px"> / {{ topMajor
|
<span v-if="topMajor != null && topMajor != ''" style="color: red; font-size: 18px"> / {{ topMajor }}</span>
|
||||||
}}</span>
|
|
||||||
<span style="font-size: 15px"> 的 </span>
|
<span style="font-size: 15px"> 的 </span>
|
||||||
<span style="color: red; font-size: 20px">{{ topEntrydate }}</span>
|
<span style="color: red; font-size: 20px">{{ topEntrydate }}</span>
|
||||||
<span style="font-size: 15px"> 级数据</span>
|
<span style="font-size: 15px"> 级数据</span>
|
||||||
|
@ -27,8 +26,7 @@
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
</template>
|
</template>
|
||||||
</a-table>
|
</a-table>
|
||||||
<div style="display: flex; justify-content: space-between; font-size: 15px; margin-top: 10px"
|
<div style="display: flex; justify-content: space-between; font-size: 15px; margin-top: 10px" v-if="total && total > 0">
|
||||||
v-if="total && total > 0">
|
|
||||||
<span>{{ totalName }}总人数:{{ total }}</span>
|
<span>{{ totalName }}总人数:{{ total }}</span>
|
||||||
<span>累计通过人数: {{ passNumberBottom }}</span>
|
<span>累计通过人数: {{ passNumberBottom }}</span>
|
||||||
<span>累计总通过率: {{ passRateBottom }}</span>
|
<span>累计总通过率: {{ passRateBottom }}</span>
|
||||||
|
@ -52,10 +50,10 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { defHttp } from '/@/utils/http/axios';
|
import { defHttp } from '/@/utils/http/axios';
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from 'echarts';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
loading: false,
|
loading: false,
|
||||||
|
@ -388,21 +386,21 @@ export default {
|
||||||
myChart.setOption(option);
|
myChart.setOption(option);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-size: 34px;
|
font-size: 34px;
|
||||||
color: rgb(8, 8, 8);
|
color: rgb(8, 8, 8);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue