handleEdit(item)}>
| {item.id} |
@@ -313,6 +314,7 @@ function PartnersManagement() {
{item.contact && {item.contact} }{item.email && {item.email} } |
{item.manager} {item.managerPhone && {item.managerPhone} } |
{item.status === 'active' ? '활성' : '비활성'} |
+ {item.memo || '-'} |
e.stopPropagation()}>
@@ -401,7 +403,7 @@ className={`mb-4 border-2 border-dashed rounded-xl p-6 text-center cursor-pointe
setFormData(prev => ({ ...prev, contact: e.target.value }))} placeholder="02-1234-5678" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
setFormData(prev => ({ ...prev, email: e.target.value }))} placeholder="email@company.com" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
- setFormData(prev => ({ ...prev, bankAccount: e.target.value }))} placeholder="000-000000-00000" className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
+ setFormData(prev => ({ ...prev, bankAccount: e.target.value }))} placeholder={formData.registrationType === 'card' ? '0000-0000-0000-0000' : '000-000000-00000'} className="w-full px-3 py-2 border border-gray-300 rounded-lg" />
|