fix: 编辑企业弹窗补充联系人、联系电话字段

This commit is contained in:
selfrelease
2026-07-29 12:19:53 +08:00
parent fa6cacb824
commit cd39f12ea5
@@ -308,6 +308,14 @@ export default function PlatformOrgs() {
<Label></Label>
<Input value={editOrg.city || ''} onChange={(e) => setEditOrg({ ...editOrg, city: e.target.value })} />
</div>
<div>
<Label></Label>
<Input value={editOrg.contactName || ''} onChange={(e) => setEditOrg({ ...editOrg, contactName: e.target.value })} />
</div>
<div>
<Label></Label>
<Input value={editOrg.contactPhone || ''} onChange={(e) => setEditOrg({ ...editOrg, contactPhone: e.target.value })} />
</div>
<div className="flex gap-2 pt-2">
<Button className="flex-1" onClick={handleSaveEdit}></Button>
<Button variant="secondary" onClick={() => setEditOrg(null)}></Button>