guhongwei 4 years ago
parent
commit
e5c425f031
2 changed files with 39 additions and 1 deletions
  1. 21 1
      src/views/class/classStuList.vue
  2. 18 0
      src/views/class/info/headStuList.vue

+ 21 - 1
src/views/class/classStuList.vue

@@ -21,6 +21,7 @@
             :schoolList="schoolList"
             @affirm="affirm"
             @cancel="cancel"
+            :nojob="nojob"
           ></headStuList>
         </el-col>
       </el-col>
@@ -53,9 +54,11 @@ export default {
     assignShow: false,
     assignForm: {},
     job_list: [],
-    job1: [{ name: '班长' }, { name: '学委' }, { name: '普通学生' }],
+    job1: [{ name: '班长' }, { name: '普通学生' }],
     // 学校
     schoolList: [],
+    // 未设置职位名称
+    nojob:[]
   }),
   created() {
     this.searchInfo();
@@ -103,6 +106,23 @@ export default {
         let noGroupStuList = res.data.filter(f => !groupstuids.includes(f.id));
         this.$set(this, `noGroupStuList`, noGroupStuList);
       }
+      // 未设置学生职位
+          let arr = [];
+        let newdata = _.uniqBy(
+          this.headStuList.filter(i => i.job == '班长' || i.job == '学委' || i.job == '文艺委员' || i.job == '安全委员' || i.job == '宣传委员'),
+          'job'
+        );
+        let bz = newdata.find(i => i.job == '班长');
+        if (!bz) arr.push({ name: '班长' });
+        let xe = newdata.find(i => i.job == '学委');
+        if (!xe) arr.push({ name: '学委' });
+        let wy = newdata.find(i => i.job == '文艺委员');
+        if (!wy) arr.push({ name: '文艺委员' });
+        let aq = newdata.find(i => i.job == '安全委员');
+        if (!aq) arr.push({ name: '安全委员' });
+        let xc = newdata.find(i => i.job == '宣传委员');
+        if (!xc) arr.push({ name: '宣传委员' });
+        this.$set(this, `nojob`, arr);
     },
     //点击派遣
     async clickAssign({ id, item }) {

+ 18 - 0
src/views/class/info/headStuList.vue

@@ -2,6 +2,10 @@
   <div id="headStuList">
     <el-row>
       <el-col :span="24" class="info">
+       <el-col :span="24" v-if="nojob.length > 0" class="nojob">
+        <p>未设定职位名称:</p>
+        <span v-for="(item, index) in nojob" :key="index">{{ item.name }}</span>
+      </el-col>
         <el-col v-for="item in groupStuList" :key="item.id">
           <el-col v-if="item.students.length > 0">
             <van-divider content-position="left">
@@ -83,6 +87,7 @@ export default {
     job_list: null,
     // 学校列表
     schoolList: { type: Array },
+    nojob:{type:Array}
   },
   components: {},
   data: () => ({
@@ -187,4 +192,17 @@ p {
 /deep/.el-form-item {
   margin-bottom: 5px;
 }
+.nojob {
+  padding: 0 15px 10px 15px;
+  border-bottom: 1px dashed #ccc;
+  p {
+    padding: 5px 0;
+    font-weight: bold;
+  }
+  span {
+    color: #ff0000;
+    display: inline-block;
+    padding: 0 5px;
+  }
+}
 </style>