mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
fix: interfaceContent go back view bug
This commit is contained in:
parent
eb14f7c000
commit
cbfb578bce
@ -98,7 +98,7 @@ class Content extends Component {
|
||||
let tabContent = null;
|
||||
if (this.state.curtab) {
|
||||
let C = InterfaceTabs[this.state.curtab].component;
|
||||
tabContent = <C />;
|
||||
tabContent = <C switchToView={this.switchToView} />;
|
||||
}
|
||||
|
||||
return <div className="interface-content">
|
||||
|
@ -44,12 +44,18 @@ module.exports = function(){
|
||||
}
|
||||
let script = data.mock_script;
|
||||
let sandbox = {
|
||||
header: context.ctx.header,
|
||||
query: context.ctx.query,
|
||||
body: context.ctx.request.body,
|
||||
mockJson: context.mockJson
|
||||
}
|
||||
sandbox.cookie = {};
|
||||
|
||||
context.ctx.header.cookie && context.ctx.header.cookie.split(';').forEach(function( Cookie ) {
|
||||
var parts = Cookie.split('=');
|
||||
sandbox.cookie[ parts[ 0 ].trim() ] = ( parts[ 1 ] || '' ).trim();
|
||||
});
|
||||
sandbox = yapi.commons.sandbox(sandbox, script);
|
||||
context.mockJson = sandbox.mockJson;
|
||||
console.log(11111, context.mockJson)
|
||||
})
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user