注册验证码与账号弹出,修改密码

This commit is contained in:
孙景学
2025-07-28 13:14:17 +08:00
parent 0ac5c96438
commit 86ff7f2f26
9 changed files with 131 additions and 47 deletions

View File

@ -149,7 +149,7 @@ const SupplierEntryReview: React.FC = () => {
render: (value: { item: string }[] = []) => {
if (!value || value.length === 0) return '-';
if (value.length === 1) {
return <span>{value[0].item}</span>;
return <span>{value[0]}</span>;
}
// 多于1条
const allNames = value.map(item => item).join('、');

View File

@ -120,7 +120,7 @@ const CooperateEnterprise: React.FC = () => {
render: (value: { item: string }[] = []) => {
if (!value || value.length === 0) return '-';
if (value.length === 1) {
return <span>{value[0].item}</span>;
return <span>{value[0]}</span>;
}
// 多于1条
const allNames = value.map(item => item).join('、');