fix: changelog.md

This commit is contained in:
gaoxiaolin.gao 2018-01-02 11:05:50 +08:00
parent d178d22055
commit f951676bb1
3 changed files with 11 additions and 5 deletions

View File

@ -1,8 +1,14 @@
### v1.3.2
#### Feature
* 分组中新增接口自定义字段,便于用户在项目中添加额外字段数据
* 导入数据时新增导入loading显示
### v1.3.1
#### Bug Fixed
1. 修复接口状态和req_params参数无法更新问题
2. 修复搜索测试集合不展开问题
3. 修复测试过程中全局header不存在的问题

View File

@ -55,14 +55,14 @@ class ProjectData extends Component {
plugin.emitHook('import_data', importDataModule);
plugin.emitHook('export_data', exportDataModule, this.props.match.params.id);
}
selectChange(value) {
this.setState({
selectCatid: +value
})
}
uploadChange = (info) => {
const status = info.file.status;
if (status !== 'uploading') {
@ -218,7 +218,7 @@ class ProjectData extends Component {
</Select>
</div>
<div style={{ marginTop: 16, height: 180 }}>
<Spin spinning={this.state.showLoading}>
<Spin spinning={this.state.showLoading} tip="上传中...">
<Dragger {...uploadMess}>
<p className="ant-upload-drag-icon">
<Icon type="inbox" />

View File

@ -348,7 +348,7 @@ exports.createAction = (router, baseurl, routerController, action, path, method,
if(!validResult.valid){
return ctx.body = yapi.commons.resReturn(null, 400, validResult.message);
}
}
}
if (inst.$auth === true) {
await inst[action].call(inst, ctx);
} else {