sportsmanList.vue 20.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
<template>
  <el-dialog
    v-model="show" destroy-on-close :title="title" width="1000px" append-to-body
    :close-on-click-modal="false" @close="delWatch"
  >
    <el-form
      ref="ruleFormRef"
      label-position="top" label-width="120px" class="chooseForm" :model="form"
      :rules="rules"
    >
      <el-row class="athletesform">
        <el-col v-show="signType!=0" :span="8" style="max-height: 70vh;overflow: auto;">
          <el-form-item label="可报运动员" class="athletes">
            <el-radio-group v-model="form.manId" class="ml-4">
              <div v-for="item in athletesList" :key="item.id" :ref="item.id" class="mb20">
                <el-radio-button :label="item.id" size="large" @change="changePersonal(item)">
                  <div class="optionFlex">
                    <el-avatar v-show="item.picUrl" :size="40" :src="item.picUrl" />
                    <p class="name">{{ item.realName }}
                      <span v-show="item.sex=='0'">(女)</span>
                      <span v-show="item.sex=='1'">(男)</span>
                    </p>
                  </div>
                </el-radio-button>
                <el-button
                  v-if="noPhotoCanSign=='0'&&(!item.picUrl)" class="ml20" type="text"
                  @click="editPersonInfo(item.id,nowMan.groupId)"
                >上传照片
                </el-button>
              </div>
            </el-radio-group>
          </el-form-item>
        </el-col>
        <el-col v-loading="loading" :span="16" style="max-height: 70vh;overflow: auto;">
          <el-empty v-show="treeData.length<1" description="请选择运动员" />
          <el-collapse v-for="(project,index) in treeData" :key="project.id" v-model="activeNames">
            <div v-show="project.hasNext==0&&project.canSign=='1'" class="fake-collapse-item">
              <el-checkbox-group v-model="form.levelId" size="large">
                <el-checkbox :label="project.levelId">{{ project.name }}</el-checkbox>
              </el-checkbox-group>
            </div>
            <el-collapse-item v-show="project.hasNext==1&&project.canSign=='1'" :title="project.name" :name="index">
              <div v-for="group in project.groupList" :key="group.id">
                <div v-show="group.hasNext==0">
                  <el-checkbox-group v-model="form.levelId" size="large">
                    <el-checkbox v-show="group.canSign=='1'" :label="group.levelId">{{ group.name }}</el-checkbox>
                    <!--                    <el-checkbox v-show="group.hasNext!=0" disabled :label="group.id">{{ group.name }}</el-checkbox>-->
                  </el-checkbox-group>
                </div>

                <div v-show="group.hasNext==1">
                  <el-checkbox-group
                    v-for="level in group.levelList" :key="level.id" v-model="form.levelId"
                    size="large"
                  >
                    <!-- project.type判断选队友  signId删除报项 :disabled="level.canSign==0||level.belongToThisTeam==0"-->
                    <el-checkbox v-show="level.canSign==1" :label="level.id" :checked="level.checked">
                      {{ group.name }}{{ level.name }}
                      <span v-show="level.levelType=='1'">(男)</span>
                      <span v-show="level.levelType=='2'">(女)</span>
                    </el-checkbox>
                  </el-checkbox-group>
                </div>
              </div>
            </el-collapse-item>
          </el-collapse>
        </el-col>
      </el-row>
    </el-form>
    <el-dialog v-model="showMateList" title="选择队友" width="700px" draggable @close="mateClose">
      <div class="mb20">
        <span v-if="mateConfig.minCount!=mateConfig.maxCount">请选择{{ mateConfig.minCount }}~{{
          mateConfig.maxCount
        }}个队友</span>
        <span v-else-if="mateConfig.minCount=='-1'&&mateConfig.maxCount=='-1'">请至少选择1个队友</span>
        <span v-else>请选择{{ mateConfig.minCount }}个队友</span>

        <span v-if="mateConfig.minMaleCount>0||mateConfig.maxMaleCount>0" style="margin:0 20px;">男子:
          <span v-show="mateConfig.minMaleCount!=mateConfig.maxMaleCount&&mateConfig.minMaleCount!=-1"> 最少{{ mateConfig.minMaleCount }}</span>
          <span v-show="mateConfig.minMaleCount!=mateConfig.maxMaleCount&&mateConfig.maxMaleCount!=-1"> 最多{{ mateConfig.maxMaleCount }}</span>
          <span v-show="mateConfig.minMaleCount==mateConfig.maxMaleCount&&mateConfig.maxMaleCount!=-1">{{ mateConfig.maxMaleCount }}</span>
        </span>
        <span v-if="mateConfig.minFemaleCount>0||mateConfig.maxFemaleCount>0" style="margin:0 20px;">女子:
          <span v-show="mateConfig.minFemaleCount!=mateConfig.maxFemaleCount&&mateConfig.minFemaleCount>0"> 最少{{ mateConfig.minFemaleCount }}</span>
          <span v-show="mateConfig.minFemaleCount!=mateConfig.maxFemaleCount&&mateConfig.maxFemaleCount>0"> 最多{{ mateConfig.maxFemaleCount }}</span>
          <span v-show="mateConfig.minFemaleCount==mateConfig.maxFemaleCount&&mateConfig.minFemaleCount>0">{{ mateConfig.minFemaleCount }}</span>
        </span>
        <span v-show="form?.mates?.length>1" style="float: right" class="text-success">已选{{ form?.mates?.length-1 }}个队友</span>

      </div>
      <!--      <el-button v-if="teammateList.length<minCount" type="text" @click="addTeamMate">新增队友</el-button>-->
      <el-empty v-if="teammateList.length==0" description="暂无可选队友" />
      <div class="teammateList" style="max-height:60vh;overflow: auto;">
        <el-checkbox-group v-model="form.mates" class="ml-4" @change="changeTeammates">
          <el-checkbox disabled checked :label="personal.sex+'_'+personal.id" size="large">
            <div class="optionFlex" style="width: auto;">
              <el-avatar v-show="personal.picUrl" :size="40" :src="personal.picUrl" />
              <p class="name" style="width: 200px">{{ personal.realName }}
                <span v-show="personal.sex=='0'">(女)</span>
                <span v-show="personal.sex=='1'">(男)</span>
              </p>
              <el-select v-show="sonLevelList.length>0" v-model="personal.sonlevel" clearable>
                <el-option v-for="son in sonLevelList" :value="son.id" :label="son.name">{{ son.name }}</el-option>
              </el-select>
            </div>
          </el-checkbox>

          <div v-for="(item,index) in teammateList" :key="item.id" class="mb20">
            <el-checkbox :label="item.sex+'_'+item.id" size="large" :disabled="item.cantchosemate">
              <div class="optionFlex" style="width: auto;">
                <span>{{ index+1 }}</span>
                <el-avatar v-show="item.picUrl" :size="40" :src="item.picUrl" />
                <p class="name" style="width: 200px">{{ item.realName }}
                  <span v-if="item.sex=='0'">(女)</span>
                  <span v-else>(男)</span>
                </p>
                <el-select v-show="sonLevelList.length>0" v-model="item.sonlevel" clearable>
                  <el-option v-for="son in sonLevelList" :value="son.id" :label="son.name">{{ son.name }}</el-option>
                </el-select>
              </div>
            </el-checkbox>
            <el-button v-if="noPhotoCanSign=='0'&&(!item.picUrl)" class="ml20" type="text" @click="editPersonInfo(item.id,nowMan.groupId)">
              上传照片
            </el-button>
          </div>
        </el-checkbox-group>
      </div>

      <template #footer>
        <div class="dialog-footer text-center">
          <el-button type="primary" @click="chooseMateDone">确定</el-button>
        </div>
      </template>

    </el-dialog>


    <dialogPersonInfo ref="editPersonInfoRef" @submitForm="getAthletesList" />

  </el-dialog>
</template>

<script setup>
import { reactive, ref, toRefs, watch } from 'vue'
import { getCurrentInstance, nextTick, onMounted } from '@vue/runtime-core'
import * as match from '@/apiPc/match'
import { ElMessage } from 'element-plus'

const { proxy } = getCurrentInstance()
const emit = defineEmits(['submitForm'])
import dialogPersonInfo from '../components/addCoach'
import _ from 'lodash'

const data = reactive({
  show: false,
  title: '',
  signType: '',
  form: {
    levelId: [],
    mates: []
  },
  athletesList: [],
  signProjectList: [],
  signGroupList: [],
  showMateList: false,
  showBtn: false,
  teammateList: [],
  rankId: '0',
  treeData: [],
  loading: false,
  mateConfig: {},
  noPhotoCanSign: null,
  coachOrLeaderFlag: null,
  personal: {},
  activeNames: [0]
})
const {
  signType,
  form,
  rules,
  loading,
  activeNames,
  athletesList,
  treeData,
  show,
  title,
  personal,
  rankId,
  showMateList,
  showBtn,
  teammateList,
  mateConfig,
  noPhotoCanSign,
  coachOrLeaderFlag
} = toRefs(data)
let matchId
let groupId
watch(show, (val) => {
  if (!val) {
    form.value = {}
    treeData.value = []
    delWatch()
  }
})
const changePersonal = (item) => {
  // delWatch()
  personal.value = item
  form.value.manId = item.id
  getTree()
}

function getTree() {
  noLevelId = ''
  loading.value = true
  match.getMySignListTree(matchId, form.value.manId, rankId.value).then(res => {
    treeData.value = res.data
    // 循环项目,组,级别 赋值是否checked
    getMyIsSign()
  })
}

let signOk = {}

function getMyIsSign() {
  delWatch()
  form.value.levelId = []
  match.getMySignIds(matchId, form.value.manId, rankId.value).then(res => {
    loading.value = false
    signOk = res.data
    for (const s of signOk) {
      form.value.levelId.push(s.eid)
      for (const p of treeData.value) {
        if (p.levelId == s.eid) {
          p.checked = true
          p.signId = s.signId
          p.belongToThisTeam = s.belongToThisTeam
        } else {
          for (const g of p.groupList) {
            g.type = p.type
            if (g.levelId == s.eid) {
              g.checked = true
              g.signId = s.signId
              g.belongToThisTeam = s.belongToThisTeam
            } else {
              for (const l of g.levelList) {
                l.type = p.type
                if (s.eid == l.id) {
                  l.checked = true
                  l.signId = s.signId
                  l.belongToThisTeam = s.belongToThisTeam
                }
              }
            }
          }
        }
      }
    }
    if (signOk.length < 1) {
      for (const p of treeData.value) {
        for (const g of p.groupList) {
          g.type = p.type
          for (const l of g.levelList) {
            l.type = p.type
          }
        }
      }
    }
    addWatch()
  })
}

//#region 监听叶子的数量变化
let noLevelId
let levelInfo
let watchHandle = null

function addWatch() {
  delWatch()
  watchHandle = watch(() => form.value.levelId, (newValue, oldValue) => {
    if (!newValue) return
    oldValue = _.uniq(oldValue)
    newValue = _.uniq(newValue)
    // console.log(newValue, oldValue)
    let temp
    let isAdd = false
    if (newValue?.length > oldValue?.length) {
      isAdd = true
      temp = _.difference(newValue, oldValue)
    } else {
      isAdd = false
      temp = _.difference(oldValue, newValue)
    }
    if (newValue[0] == temp[0]) {

    }
    if (temp.length === 1) {
      levelInfo = findlevelInfo(temp[0], treeData.value, 1)
      if (isAdd) {
        noLevelId = temp[0]
        judgeChooseTeam(levelInfo.type, temp[0])
      } else {
        if (!temp[0] || temp[0] == undefined) {
          return
        }
        removeThis(levelInfo.signId)
      }
    }
    // console.log(isAdd, temp[0])
  })
}

function delWatch() {
  if (watchHandle) {
    watchHandle()
    watchHandle = null
  }
}

function findlevelInfo(id, list, deep) {
  let info = null
  _.some(list, (l) => {
    switch (deep) {
      case 1:// p
        if (l.levelId == id) {
          info = l
        } else {
          info = findlevelInfo(id, l.groupList, 2)
        }
        break
      case 2:// g
        if (l.levelId == id) {
          info = l
        } else {
          info = findlevelInfo(id, l.levelList, 3)
        }
        break
      case 3:// l
        if (l.id == id) {
          info = l
        }
        break
    }
    return info
  })

  return info
}

//#endregion
function getAthletesList() {
  match.getMyGroupForCpt(groupId, matchId).then(res => {
    athletesList.value = res.data.athletes
    if (form.value.manId) {
      for (const a of athletesList.value) {
        if (a.id == form.value.manId) {
          nowMan.value = a
        }
      }
    }
  })
}

const open = (params) => {
  show.value = true
  matchId = params.matchId
  groupId = params.groupId
  signType.value = params.signType
  title.value = params.title
  rankId.value = params.rankId || ''
  noPhotoCanSign.value = params.noPhotoCanSign
  coachOrLeaderFlag.value = params.coachOrLeaderFlag
  if (params.personal) {
    form.value.manId = params.personal.id
    setTimeout(() => {
      proxy.$refs[params.personal.id][0].scrollIntoView({ block: 'start', behavior: 'smooth' })
    }, 200)

    getTree()
    personal.value = params.personal
  }
  if (groupId != 0) {
    if (params.choosedList) {
      athletesList.value = params.choosedList
      if (form.value.manId) {
        for (const a of athletesList.value) {
          if (a.id == form.value.manId) {
            nowMan.value = a
          }
        }
      }
    } else {
      getAthletesList()
    }
  }
}
defineExpose({
  open
})

const nowMan = ref({})
const sonLevelList = ref([])
let sonLevelIds = []

function editPersonInfo(id, groupId) {
  const params = {
    id: id,
    groupId: groupId
  }
  proxy.$refs['editPersonInfoRef'].open(params)
}

function addTeamMate() {
  const params = {
    id: 0,
    groupId: groupId
  }
  proxy.$refs['editPersonInfoRef'].open(params)
}
function transferChange(value, direction, movedKeys) {
  console.log(value, direction, movedKeys)
}
const judgeChooseTeam = (type, levelId) => {
  const tmArr = ['1', '2', '3', '4', '6']
  if (tmArr.indexOf(type) > -1) {
    getTeammate(levelId)
  } else {
    const obj = {
      levelId: levelId,
      athleteIds: form.value.manId,
      groupId: groupId,
      teamId: rankId.value || ''
    }
    saveOne(obj)
  }
}
const getTeammate = (levelId) => {
  const obj = {
    levelId: levelId,
    groupId: groupId,
    personId: form.value.manId
  }
  match.getCanSignLevelPerson(obj).then(res => {
    mateConfig.value = res.data
    teammateList.value = res.data.personList
    for (const p of teammateList.value) {
      p.cantchosemate = false
      if (mateConfig.value.maxMaleCount == 0 && p.sex == '1') {
        p.cantchosemate = true
      }
      if (mateConfig.value.maxFemaleCount == 0 && p.sex == '0') {
        p.cantchosemate = true
      }
    }
    getSonLevels(levelId)
    showMateList.value = true
    form.value.mates = []
    sonLevelIds = []
    personal.value.sonlevel = ''
  }).catch(error => {
    getMyIsSign()
  })
}

function getSonLevels(level) {
  sonLevelList.value = []
  match.querySonLevel(level).then(res => {
    sonLevelList.value = res.data
  })
}

let manNum = 0
let femaleNum = 0
let mates = []
const changeTeammates = (e) => {
  mates = []
  manNum = 0
  femaleNum = 0
  for (const m of e) {
    const arr = m.split('_')
    mates.push(arr[1])
    if (personal.value.id == arr[1]) {
      continue
    }
    if (arr[0] == '1') {
      manNum++
    } else {
      femaleNum++
    }
  }
  // console.log(mates, mateConfig.value)
  for (const p of teammateList.value) {
    if (mateConfig.value.maxMaleCount != -1 && manNum == mateConfig.value.maxMaleCount && p.sex == '1' && mates.indexOf(p.id) == -1) {
      p.cantchosemate = true
    } else if (mateConfig.value.maxFemaleCount != -1 && femaleNum == mateConfig.value.maxFemaleCount && p.sex == '0' && mates.indexOf(p.id) == -1) {
      p.cantchosemate = true
    } else if (mates.indexOf(p.id) == -1 && mateConfig.value.maxCount != -1 && (mates.length - 1) == mateConfig.value.maxCount) {
      p.cantchosemate = true
    } else {
      p.cantchosemate = false
    }
  }
}
const mateClose = () => {
  mates = []
  form.value.mates = []
  sonLevelIds = []
  teammateList.value = []
  getMyIsSign()
}

function chooseMateDone() {
  if (mateConfig.value.minMaleCount != '-1' && mateConfig.value.minMaleCount != '0' && manNum < mateConfig.value.minMaleCount) {
    ElMessage.error(`至少选择${mateConfig.value.minMaleCount}个男队友`)
    return
  }
  if (mateConfig.value.maxMaleCount != '-1' && mateConfig.value.maxMaleCount != '0' && manNum > mateConfig.value.maxMaleCount) {
    ElMessage.error(`最多选择${mateConfig.value.maxMaleCount}个男队友`)
    return
  }
  if (mateConfig.value.minFemaleCount != '-1' && mateConfig.value.minFemaleCount != '0' && femaleNum < mateConfig.value.minFemaleCount) {
    ElMessage.error(`至少选择${mateConfig.value.minFemaleCount}个女队友`)
    return
  }
  if (mateConfig.value.maxFemaleCount != '-1' && mateConfig.value.maxFemaleCount != '0' && femaleNum > mateConfig.value.maxFemaleCount) {
    ElMessage.error(`最多选择${mateConfig.value.maxFemaleCount}个女队友`)
    return
  }
  if ((mates.length < mateConfig.value.minCount) && mateConfig.value.minCount > 0) {
    ElMessage.error(`至少选择${mateConfig.value.minCount}个队友`)
    return
  }
  const athleteIds = []
  console.log('mates', mates)
  for (const p of teammateList.value) {
    if (mates.indexOf(p.id) != -1) {
      if (sonLevelList.value.length > 0 && !p.sonlevel) {
        ElMessage.error(`请分配级别`)
        return
      }
      sonLevelIds.push(p.sonlevel)
      athleteIds.push(p.id)
    }
  }
  if (sonLevelList.value.length > 0 && !personal.value.sonlevel) {
    ElMessage.error(`请分配级别`)
    return
  }
  sonLevelIds.push(personal.value.sonlevel)
  athleteIds.push(personal.value.id)
  if (sonLevelList.value.length == 0) {
    sonLevelIds = []
  }
  const obj = {
    levelId: noLevelId,
    athleteIds: athleteIds.toString(),
    sonLevelIds: sonLevelIds.toString() || '',
    groupId: groupId,
    teamId: rankId.value || ''
  }
  // 半提交
  saveOne(obj)
}

const saveOne = (obj) => {
  loading.value = true
  match.sportsmanDone(obj).then(res => {
    if (res.msg.indexOf('Exception:') > -1) {
      const msg = res.msg.slice(10)
      ElMessage({
        type: 'warning',
        message: msg
      })
      // form.value.mates = []
      sonLevelIds = []
      getMyIsSign()
      return
    }
    sonLevelIds = []
    // form.value.mates = []
    showMateList.value = false
    sonLevelList.value = []
    getMyIsSign()
    emit('submitForm')
  }).catch(err => {
    // 取消这个勾
    getMyIsSign()
    sonLevelIds = []
  })
}

function removeThis(id) {
  loading.value = true
  match.deleteSign(id).then(res => {
    // 重新获取已报名信息
    loading.value = false
    emit('submitForm')
  }).catch(err => {
    getMyIsSign()
  })
}
</script>

<style lang="scss" scoped>
.optiontitle {
  font-size: 14px;
  padding: 0 10px;
  line-height: 1;
  margin: 10px 0;
  border-left: 2px solid #1ab394;
}

.optionFlex {
  display: flex;
  align-items: center;
  padding: 10px 0;
  width: 200px;

  .name {
    margin: 0 20px;
    font-size: 16px;
  }
}

.el-radio-group {
  width: 100%;
  display: block;
}

.athleteBox {
  height: 80px;
  display: flex;
  align-items: center;

  :deep(.el-radio__label) {
    display: flex;
    align-items: center;
    margin: 0 20px;
  }

  .el-radio__inner {
    scale: 1.5;
  }

  .name {
    margin: 0 20px;
    font-size: 16px;
  }
}

.athleteBox:hover {
  background: #efefef;
}

.tip {
  font-size: 13px;
  color: #999;
  margin: 10px 0;

  i {
    color: red;
    margin: 0 4px 0 0;
  }
}

p.title {
  font-size: 16px;
  margin: 0 0 15px;
}

:deep(.el-collapse-item) {
  background: #FBFCFD;
  margin: 0 0 16px;
  padding: 0 15px;
}

:deep(.el-collapse-item__wrap) {
  background: #FBFCFD;
  border: none;
  padding: 0 10px;
}

:deep(.el-collapse) {
  border: none;
}

:deep(.el-collapse-item__header) {
  border: none;
  background: #ececec;
  padding: 0 0 0 10px;    font-size: 15px;
}

:deep(.el-collapse-item__content) {
  padding-bottom: 0;
}

:deep(.el-checkbox__input.is-disabled+span.el-checkbox__label) {
  color: #4C5359;
}

.fake-collapse-item {
  background: #FBFCFD;
  margin: 0 0 16px;
  padding: 0 15px;
}
:deep(.el-checkbox.el-checkbox--large .el-checkbox__label){
  font-size: 16px;
}
.teammateList :deep(.el-checkbox.el-checkbox--large) {
  height: auto;
}
</style>