From f5d2600e1423afe6a49dee541ea5599d588b19f3 Mon Sep 17 00:00:00 2001 From: dminyi <1301963064@qq.com> Date: Tue, 10 Sep 2024 09:16:58 +0800 Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh into master --- gz-customerSystem/src/views/register/visit/component/previewTable.jsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gz-customerSystem/src/views/register/visit/component/previewTable.jsx b/gz-customerSystem/src/views/register/visit/component/previewTable.jsx index b4a700a..6ab1329 100644 --- a/gz-customerSystem/src/views/register/visit/component/previewTable.jsx +++ b/gz-customerSystem/src/views/register/visit/component/previewTable.jsx @@ -7,7 +7,7 @@ <> { applyDialog?.map((item, index) => ( - <table border="1" align="center" cellpadding="6" className="table"> + <table border="1" align="center" cellpadding="6" className="table" key={item.id}> <tr> <th bgcolor="#F7F8FA" className="table-title" width="120">姓名</th> <td width='380'><div style={{ display: 'flex' }}><div>{item.trueName || '-'}</div><div className="title-personRemark">自然人</div></div></td> @@ -65,7 +65,7 @@ return ( <> {agentDialog?.map((item, index) => ( - <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }}> + <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }} key={item.id}> <tr> <th bgcolor="#F7F8FA" className="table-title" width="120">姓名</th> <td width='380'><div style={{ display: 'flex' }}><div>{item.trueName || '-'}</div><div className="title-personRemark">代理人</div></div></td> @@ -129,7 +129,7 @@ return ( <> {respondent?.map((item, index) => ( - <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }}> + <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }} key={item.id}> <tr> <th bgcolor="#F7F8FA" className="table-title" width="120">企业名称</th> <td width='380'><div style={{ display: 'flex' }}><div>{item.trueName}</div><div className="title-personRemark">{item.perClassName}</div></div></td> @@ -175,7 +175,7 @@ return ( <> {company?.map((item, index) => ( - <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }}> + <table border="1" align="center" cellpadding="6" className="table" style={{ marginTop: '20px', marginBottom: '20px' }} key={item.id}> <tr> <th bgcolor="#F7F8FA" className="table-title" width="120">机构名称</th> <td width='380'><div style={{ display: 'flex' }}><div>{item.trueName}</div><div className="title-personRemark">{item.perClassName}</div></div></td> -- Gitblit v1.8.0