|
@@ -18,11 +18,11 @@
|
|
|
<el-link :underline="false" type="success" style="font-size:18px">女:{{ getGender('女') }}人</el-link>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
- <el-row :gutter="10" style="padding:10px">
|
|
|
+ <el-row :gutter="10" class="schrow">
|
|
|
<el-col :span="4">本班学生来源:</el-col>
|
|
|
<el-col :span="4" v-for="(sch, index) in schList" :key="index">{{ sch }}</el-col>
|
|
|
</el-row>
|
|
|
- <el-row>
|
|
|
+ <el-row style="padding:10px">
|
|
|
<el-col :span="2">
|
|
|
<el-button type="primary" size="mini" @click="toSelect">批量分配选择寝室</el-button>
|
|
|
</el-col>
|
|
@@ -254,4 +254,11 @@ export default {
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
-<style lang="less" scoped></style>
|
|
|
+<style lang="less" scoped>
|
|
|
+.schrow {
|
|
|
+ padding: 10px;
|
|
|
+ .el-col {
|
|
|
+ font-size: 20px;
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|