功能修改

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