|
@@ -62,29 +62,40 @@ export default {
|
|
|
name: '普通学生',
|
|
|
},
|
|
|
],
|
|
|
- job2: [
|
|
|
- {
|
|
|
- name: '班长',
|
|
|
- },
|
|
|
-
|
|
|
- {
|
|
|
- name: '普通学生',
|
|
|
- },
|
|
|
- ],
|
|
|
- job3: [
|
|
|
- {
|
|
|
- name: '学委',
|
|
|
- },
|
|
|
+ // job2: [
|
|
|
+ // {
|
|
|
+ // name: '班长',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: '学委',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: '普通学生',
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // job3: [
|
|
|
+ // {
|
|
|
+ // name: '班长',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: '学委',
|
|
|
+ // },
|
|
|
|
|
|
- {
|
|
|
- name: '普通学生',
|
|
|
- },
|
|
|
- ],
|
|
|
- job4: [
|
|
|
- {
|
|
|
- name: '普通学生',
|
|
|
- },
|
|
|
- ],
|
|
|
+ // {
|
|
|
+ // name: '普通学生',
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // job4: [
|
|
|
+ // {
|
|
|
+ // name: '班长',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: '学委',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name: '普通学生',
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
// 学校
|
|
|
schoolList: [],
|
|
|
}),
|
|
@@ -137,38 +148,41 @@ export default {
|
|
|
},
|
|
|
//点击派遣
|
|
|
async clickAssign({ id, item }) {
|
|
|
- var banzhang = this.headStuList.filter(item => item.job == '班长');
|
|
|
- var xuewei = this.headStuList.filter(item => item.job == '学委');
|
|
|
- if (xuewei.length == '1') {
|
|
|
- if (banzhang.length == '2') {
|
|
|
- if (item.job == '班长') {
|
|
|
- this.$set(this, `job_list`, this.job2);
|
|
|
- } else if (item.job == '学委') {
|
|
|
- this.$set(this, `job_list`, this.job3);
|
|
|
- } else {
|
|
|
- this.$set(this, `job_list`, this.job4);
|
|
|
- }
|
|
|
- } else if (banzhang.length < '2') {
|
|
|
- if (item.job == '学委') {
|
|
|
- this.$set(this, `job_list`, this.job1);
|
|
|
- } else {
|
|
|
- this.$set(this, `job_list`, this.job2);
|
|
|
- }
|
|
|
- } else if (xuewei.length == '0') {
|
|
|
- }
|
|
|
- } else if (xuewei.length == '0') {
|
|
|
- if (banzhang.length == '0') {
|
|
|
- this.$set(this, `job_list`, this.job1);
|
|
|
- } else if (banzhang.length == '2') {
|
|
|
- if (item.job == '班长') {
|
|
|
- this.$set(this, `job_list`, this.job1);
|
|
|
- } else {
|
|
|
- this.$set(this, `job_list`, this.job3);
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.$set(this, `job_list`, this.job1);
|
|
|
- }
|
|
|
- }
|
|
|
+ this.$set(this, `job_list`, this.job1);
|
|
|
+ // var banzhang = this.headStuList.filter(item => item.job == '班长');
|
|
|
+ // var xuewei = this.headStuList.filter(item => item.job == '学委');
|
|
|
+ // console.log(banzhang);
|
|
|
+ // console.log(xuewei);
|
|
|
+ // if (xuewei.length == '1') {
|
|
|
+ // if (banzhang.length == '2') {
|
|
|
+ // if (item.job == '班长') {
|
|
|
+ // this.$set(this, `job_list`, this.job2);
|
|
|
+ // } else if (item.job == '学委') {
|
|
|
+ // this.$set(this, `job_list`, this.job3);
|
|
|
+ // } else {
|
|
|
+ // this.$set(this, `job_list`, this.job4);
|
|
|
+ // }
|
|
|
+ // } else if (banzhang.length < '2') {
|
|
|
+ // if (item.job == '学委') {
|
|
|
+ // this.$set(this, `job_list`, this.job1);
|
|
|
+ // } else {
|
|
|
+ // this.$set(this, `job_list`, this.job2);
|
|
|
+ // }
|
|
|
+ // } else if (xuewei.length == '0') {
|
|
|
+ // }
|
|
|
+ // } else if (xuewei.length == '0') {
|
|
|
+ // if (banzhang.length == '0') {
|
|
|
+ // this.$set(this, `job_list`, this.job1);
|
|
|
+ // } else if (banzhang.length == '2') {
|
|
|
+ // if (item.job == '班长') {
|
|
|
+ // this.$set(this, `job_list`, this.job1);
|
|
|
+ // } else {
|
|
|
+ // this.$set(this, `job_list`, this.job3);
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // this.$set(this, `job_list`, this.job1);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
this.assignShow = true;
|
|
|
const res = await this.fet(id);
|
|
|
this.$set(this, `assignForm`, res.data);
|