功能修改

This commit is contained in:
hayu 2025-07-31 16:43:43 +08:00
parent f4930c5e31
commit 158bdb46bb
1 changed files with 10 additions and 3 deletions

View File

@ -741,6 +741,7 @@ export default {
{
name: '',
idNumber: '',
phone:'',
idFrontPhoto: null,
idBackPhoto: null,
frontUploading: false,
@ -775,6 +776,7 @@ export default {
{
name: '',
idNumber: '',
phone:'',
idFrontPhoto: null,
idBackPhoto: null,
frontUploading: false,
@ -869,6 +871,7 @@ export default {
this.materialReceivers.push({
name: '',
idNumber: '',
phone:'',
idFrontPhoto: null,
idBackPhoto: null,
frontUploading: false,
@ -1046,6 +1049,7 @@ export default {
idNumber: item.idNumber,
idFrontPhoto: item.frontUrl,
idBackPhoto: item.backUrl,
phone:item.phone,
frontUploading: false,
backUploading: false
}))
@ -1112,8 +1116,10 @@ export default {
})
//
const selectedTeam = this.teamList.find(team => team.id === this.authForm.teamId)
const teamName = selectedTeam ? selectedTeam.name : ''
// const selectedTeam = this.teamList.find(team => team.id === this.authForm.teamId);
// const teamName = selectedTeam ? selectedTeam.name : '';
const teamName = this.authForm.teamName;
console.log("teamName", teamName)
const requestData = {
teamId: this.authForm.teamId,
@ -1124,7 +1130,8 @@ export default {
name: receiver.name,
idNumber: receiver.idNumber,
frontUrl: receiver.idFrontPhoto,
backUrl: receiver.idBackPhoto
backUrl: receiver.idBackPhoto,
phone:receiver.phone
}))
}