This commit is contained in:
waliang.wang 2017-07-31 11:07:47 +08:00
parent 1e68fd0dc4
commit e61602ef70
2 changed files with 3 additions and 1 deletions

View File

@ -208,7 +208,7 @@
.ant-affix, .save-button {
padding: 20px 0;
background: #F6F6F6;
background: #f1f3f6;
button {
margin: 0 auto;
display: block;

View File

@ -40,6 +40,7 @@ class ReqMethod extends Component {
@autobind
handleChange (value) {
console.log('select', value)
this.props.pushInterfaceMethod(value)
}
@ -66,6 +67,7 @@ class ReqMethod extends Component {
<td>
<span className="h3">请求方式 : </span>
<Select value={method} style={{ width: 180 }} onChange={this.handleChange} size="large">
<Option value="">选择请求方式</Option>
<Option value="POST">POST</Option>
<Option value="GET">GET</Option>
<Option value="PUT">PUT</Option>