|
@@ -12,16 +12,24 @@
|
|
|
<el-col v-for="item in groupStuList" :key="item.id">
|
|
|
<el-col v-if="item.students.length > 0">
|
|
|
<van-divider content-position="left">{{ item.name }}</van-divider>
|
|
|
- <el-col :span="6" class="list" v-for="i in item.students" :key="i.stuid" @click.native="clickAssign({ id: i.stuid })">
|
|
|
+ <el-col :span="11" class="list" v-for="i in item.students" :key="i.stuid" @click.native="clickAssign({ id: i.stuid })">
|
|
|
<p class="name" :style="`font-size:${changeNum(i.stuname)}px`">{{ i.stuname }}</p>
|
|
|
+ <p>{{ getGroupsch(i.stuid) || '暂无' }}</p>
|
|
|
+ <p>{{ getlevel(i.stuid) || '暂无' }}</p>
|
|
|
+ <p>{{ getmajor(i.stuid) || '暂无' }}</p>
|
|
|
+ <p>{{ getfinsh(i.stuid) || '暂无' }}</p>
|
|
|
<p class="job" v-if="i.job">{{ i.job }}<i class="el-icon-circle-check"></i></p>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col>
|
|
|
<van-divider content-position="left">未分组学生</van-divider>
|
|
|
- <el-col :span="6" class="list" v-for="(item, index) in noGroupStuList" :key="index" @click.native="clickAssign(item)">
|
|
|
+ <el-col :span="11" class="list" v-for="(item, index) in noGroupStuList" :key="index" @click.native="clickAssign(item)">
|
|
|
<p class="name" :style="`font-size:${changeNum(item.name)}px`">{{ item.name }}</p>
|
|
|
+ <p class="other">{{ item.school_name }}</p>
|
|
|
+ <p class="other">{{ getSchool(item.schid) }}</p>
|
|
|
+ <p class="other">{{ item.major }}</p>
|
|
|
+ <p class="other">毕业年份:{{ item.finish_year }}</p>
|
|
|
<p class="job" v-if="item.job">{{ item.job }}<i class="el-icon-circle-check"></i></p>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
@@ -60,15 +68,21 @@
|
|
|
|
|
|
<script>
|
|
|
import { mapState, createNamespacedHelpers, mapGetters } from 'vuex';
|
|
|
+
|
|
|
export default {
|
|
|
name: 'headStuList',
|
|
|
props: {
|
|
|
- headStuList: null,
|
|
|
+ // 学生信息
|
|
|
+ headStuList: { type: Array },
|
|
|
+ // 分组学生
|
|
|
groupStuList: null,
|
|
|
+ // 未分组学生
|
|
|
noGroupStuList: null,
|
|
|
assignForm: null,
|
|
|
assignShow: null,
|
|
|
job_list: null,
|
|
|
+ // 学校列表
|
|
|
+ schoolList: { type: Array },
|
|
|
},
|
|
|
components: {},
|
|
|
data: () => ({
|
|
@@ -79,9 +93,35 @@ export default {
|
|
|
},
|
|
|
computed: { ...mapState(['user']) },
|
|
|
methods: {
|
|
|
+ // 过滤学校
|
|
|
+ getSchool(schid) {
|
|
|
+ let schoolInfo = this.schoolList.find(i => i.code == schid);
|
|
|
+ if (schoolInfo) return schoolInfo.level;
|
|
|
+ },
|
|
|
+ // 过滤学校
|
|
|
+ getGroupsch(stuid) {
|
|
|
+ let headStu = this.headStuList.find(i => i.id == stuid);
|
|
|
+ if (headStu) return headStu.school_name;
|
|
|
+ },
|
|
|
+ // 过滤专业
|
|
|
+ getmajor(stuid) {
|
|
|
+ let headStu = this.headStuList.find(i => i.id == stuid);
|
|
|
+ if (headStu) return headStu.major;
|
|
|
+ },
|
|
|
+ // 过滤毕业年份
|
|
|
+ getfinsh(stuid) {
|
|
|
+ let headStu = this.headStuList.find(i => i.id == stuid);
|
|
|
+ if (headStu) return headStu.finish_year;
|
|
|
+ },
|
|
|
+ // 过滤学校层次
|
|
|
+ getlevel(stuid) {
|
|
|
+ let headStu = this.headStuList.find(i => i.id == stuid);
|
|
|
+ if (headStu) {
|
|
|
+ let schoolInfo = this.schoolList.find(i => i.code == headStu.schid);
|
|
|
+ if (schoolInfo) return schoolInfo.level;
|
|
|
+ }
|
|
|
+ },
|
|
|
changedisabled() {
|
|
|
- console.log(this.user.type);
|
|
|
-
|
|
|
if (this.user.type === '3') {
|
|
|
this.disabled = true;
|
|
|
console.log(this.disabled);
|
|
@@ -123,11 +163,14 @@ p {
|
|
|
.list {
|
|
|
text-align: center;
|
|
|
border: 1px solid #2c69fe;
|
|
|
- width: 70px;
|
|
|
- margin: 0 11px 10px 12px;
|
|
|
- padding: 5px 0px;
|
|
|
border-radius: 10px;
|
|
|
- height: 50px;
|
|
|
+ margin: 5px 7px;
|
|
|
+ p {
|
|
|
+ padding: 2px 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.list .other {
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
.list .job {
|
|
|
font-size: 10px;
|