From 158bdb46bb765a011b080bfe818d7b859243d779 Mon Sep 17 00:00:00 2001 From: hayu <1604366271@qq.com> Date: Thu, 31 Jul 2025 16:43:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../material/materialStation/authorize/index.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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 })) }