diff --git a/src/views/material/materialStation/authorize/index.vue b/src/views/material/materialStation/authorize/index.vue index cc95c5a9..58e1d7f0 100644 --- a/src/views/material/materialStation/authorize/index.vue +++ b/src/views/material/materialStation/authorize/index.vue @@ -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 })) }