From ce03e5bb4c40ce9521d6f822e39bfa74a1af76cd Mon Sep 17 00:00:00 2001 From: zhangdi <1104545947@qq.com> Date: Thu, 23 Apr 2026 17:15:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E5=B7=A5=E8=B0=83=E6=95=B4=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/oem/outsourcingAssignmentControl/index.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/oem/outsourcingAssignmentControl/index.vue b/src/views/oem/outsourcingAssignmentControl/index.vue index 682ed8c5..eecab97e 100644 --- a/src/views/oem/outsourcingAssignmentControl/index.vue +++ b/src/views/oem/outsourcingAssignmentControl/index.vue @@ -465,9 +465,10 @@ export default { // 3. 所有数据准备就绪后,再赋值给 data,触发渲染 this.data = records; this.data.forEach(item=>{ - item.oemId = item.oemId+'' - item.platingId = item.platingId+'' - item.dsPart = item.dsPart+'' + item.oemId = item.oemId==null?'':item.oemId+'' + item.platingId = item.platingId==null?'':item.platingId+'' + item.dsPart = item.dsPart==null?'':item.dsPart+'' + }) this.page.total = res.data.data.total; } catch (error) {