fix: interfaceContent go back view bug

This commit is contained in:
suxiaoxin 2017-09-19 17:49:59 +08:00
parent eb14f7c000
commit cbfb578bce
2 changed files with 8 additions and 2 deletions

View File

@ -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">

View File

@ -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)
})
}