|
@@ -434,6 +434,7 @@ class Links extends Component {
|
|
|
name: "",
|
|
|
url: "",
|
|
|
remarks: "",
|
|
|
+ hid:"none"
|
|
|
});
|
|
|
}}
|
|
|
style={{ marginLeft: "100px" }}
|
|
@@ -459,6 +460,7 @@ class Links extends Component {
|
|
|
</SpinContainer>
|
|
|
</div>
|
|
|
<Modal
|
|
|
+ width={'600px'}
|
|
|
visible={this.state.visible}
|
|
|
key={this.state.viewKey}
|
|
|
title="新增/编辑友情链接"
|
|
@@ -501,14 +503,14 @@ class Links extends Component {
|
|
|
hasFeedback
|
|
|
>
|
|
|
<Input
|
|
|
- style={{width:"120px"}}
|
|
|
- alue={this.state.url}
|
|
|
+ style={{width:"140px"}}
|
|
|
+ value={this.state.url}
|
|
|
placeholder="请输入http://地址"
|
|
|
onChange={(e) => {
|
|
|
this.setState({ url: e.target.value });
|
|
|
}}
|
|
|
/>
|
|
|
- <span style={{ color: "red" }}>请输入http://地址</span>
|
|
|
+ <span style={{ color: "red",marginLeft:'10px' }}>请输入http://地址</span>
|
|
|
</Form.Item>
|
|
|
<Form.Item
|
|
|
{...formItemLayout}
|
|
@@ -538,8 +540,8 @@ class Links extends Component {
|
|
|
}}
|
|
|
value={this.state.mutualChain || 0}
|
|
|
>
|
|
|
- <Radio value={1}>是</Radio>
|
|
|
<Radio value={0}>否</Radio>
|
|
|
+ <Radio value={1}>是</Radio>
|
|
|
</RadioGroup>
|
|
|
</Form.Item>
|
|
|
<Form.Item
|