This commit is contained in:
bb_pan 2025-06-13 13:58:03 +08:00
parent 8618b86413
commit 161091d929
1 changed files with 2 additions and 2 deletions

View File

@ -460,8 +460,8 @@ export default {
// //
async getBmTeam() { async getBmTeam() {
try { try {
const teamLeaderIdCard = sessionStorage.getItem('idCard') const idCard = sessionStorage.getItem('idCard')
const res = await getBmTeamApi({ isAll: 0, teamLeaderIdCard }) const res = await getBmTeamApi({ isAll: 0, idCard })
if (!res.data || res.data.length === 0) return if (!res.data || res.data.length === 0) return
this.uniteList = res.data this.uniteList = res.data
this.maForm.teamId = res.data[0].id this.maForm.teamId = res.data[0].id