fix: 编辑企业弹窗补充联系人、联系电话字段
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user