diff --git a/client/components/Postman/Postman.js b/client/components/Postman/Postman.js
index 8c5e104e..cc1e98a4 100755
--- a/client/components/Postman/Postman.js
+++ b/client/components/Postman/Postman.js
@@ -1,7 +1,7 @@
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import Mock from 'mockjs'
-import { Button, Input, Select, Alert, Spin, Icon, Collapse, Tooltip, message, AutoComplete } from 'antd'
+import { Button, Input, Select, Alert, Spin, Icon, Collapse, Tooltip, message, AutoComplete, Switch } from 'antd'
import { autobind } from 'core-decorators';
import constants from '../../constants/variable.js'
@@ -40,7 +40,7 @@ const mockDataSource = wordList.map(item => {
});
-const { TextArea } = Input;
+// const { TextArea } = Input;
const InputGroup = Input.Group;
const Option = Select.Option;
const Panel = Collapse.Panel;
@@ -71,7 +71,10 @@ export default class Run extends Component {
loading: false,
validRes: [],
hasPlugin: true,
- test_status: null
+ test_status: null,
+ resTest: false,
+ resStatusCode: null,
+ resStatusText: ''
}
constructor(props) {
@@ -214,7 +217,12 @@ export default class Run extends Component {
data: bodyType === 'form' ? this.arrToObj(bodyForm) : bodyOther,
files: bodyType === 'form' ? this.getFiles(bodyForm) : {},
file: bodyType === 'file' ? 'single-file' : null,
- success: (res, header) => {
+ success: (res, header, third) => {
+ console.log('suc',third);
+ this.setState({
+ resStatusCode: third.res.status,
+ resStatusText: third.res.statusText
+ })
try {
if (isJsonData(header)) {
res = json_parse(res);
@@ -259,7 +267,12 @@ export default class Run extends Component {
console.error(e.message)
}
},
- error: (err, header) => {
+ error: (err, header, third) => {
+ console.log('err',third);
+ this.setState({
+ resStatusCode: third.res.status,
+ resStatusText: third.res.statusText
+ })
try {
err = json_parse(err);
} catch (e) {
@@ -496,6 +509,13 @@ export default class Run extends Component {
console.log(index)
}
+ @autobind
+ onTestSwitched(checked) {
+ this.setState({
+ resTest: checked
+ });
+ }
+
render() {
const { method, domains, pathParam, pathname, query, headers, bodyForm, caseEnv, bodyType, resHeader, loading, validRes } = this.state;
HTTP_METHOD[method] = HTTP_METHOD[method] || {}
@@ -722,30 +742,59 @@ export default class Run extends Component {
返回结果
-
-
-
+ {this.state.resStatusCode ?
+
+ = 200 && this.state.resStatusCode < 400 && !this.state.loading) ? 'success' : 'fail')}>{this.state.resStatusCode + ' ' + this.state.resStatusText}
+
+
+
+
+
+
+
Body
+
+
+
{this.state.res && this.state.res.toString()}
+
+
+ : 发送请求后在这里查看返回结果。
}
+
+ {/*
-
-
-
- {/**/}
+ {/*
+ */}
+ {/**/}
-
+ {/*
-
-
+ */}
+
+ 数据结构验证
+
+
+
+ {(isResJson && this.state.resTest) ? validResView :
若开启此功能,则发送请求后在这里查看验证结果。
数据结构验证在接口编辑页面配置,YApi 将根据 Response body 验证请求返回的结果。
}
+
)
}
diff --git a/client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js b/client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js
index 3aaa1079..ec0d07f1 100755
--- a/client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js
+++ b/client/containers/Project/Interface/InterfaceCol/InterfaceColContent.js
@@ -127,9 +127,9 @@ class InterfaceColContent extends Component {
status = 'ok';
} else if (result.code === 1) {
status = 'invalid'
- }
+ }
} catch (e) {
- status = 'error';
+ status = 'error';
result = e;
}
this.reports[curitem._id] = result;
@@ -177,7 +177,7 @@ class InterfaceColContent extends Component {
headers: that.getHeadersObj(interfaceData.req_headers),
data: interfaceData.req_body_type === 'form' ? that.arrToObj(interfaceData.req_body_form) : interfaceData.req_body_other,
success: (res, header) => {
- res = json_parse(res);
+ res = json_parse(res);
result.res_header = header;
result.res_body = res;
if (res && typeof res === 'object') {
@@ -206,7 +206,7 @@ class InterfaceColContent extends Component {
} catch (e) {
console.log(e)
}
-
+
err = err || '请求异常';
result.code = 400;
result.res_header = header;
@@ -442,7 +442,7 @@ class InterfaceColContent extends Component {
return (
-
}} className="setting-project-member"/>
-
+
{this.state.groupMemberList.length ? this.state.groupMemberList.map((item, index) => {
return (

diff --git a/client/containers/Project/Setting/Setting.scss b/client/containers/Project/Setting/Setting.scss
index ec48adcd..3022d280 100755
--- a/client/containers/Project/Setting/Setting.scss
+++ b/client/containers/Project/Setting/Setting.scss
@@ -25,14 +25,15 @@
}
}
-.setting-project-member {
- border: 1px solid #e9e9e9;
- border-radius: 2px;
-}
+// .setting-project-member {
+// border: 1px solid #e9e9e9;
+// border-radius: 4px;
+// }
.setting-group {
margin-top: .48rem;
border-radius: 2px;
+ border-bottom: 1px solid #eee;
.ant-card-head {
background-color: #eee;
padding: 0 .08rem !important;
diff --git a/client/styles/mixin.scss b/client/styles/mixin.scss
index 9203e279..8c31df06 100755
--- a/client/styles/mixin.scss
+++ b/client/styles/mixin.scss
@@ -8,6 +8,16 @@ $color-black-light: #404040;
$color-bg-dark: #32363a; // 背景色 - header 用的深蓝色
$box-shadow-panel: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
+$color-text-dark: rgba(13, 27, 62, 0.65);
+
+$color-antd-green: #00a854;
+$color-antd-yellow: #ffbf00;
+$color-antd-red: #f56a00;
+$color-antd-pink: #f5317f;
+$color-antd-cyan: #00a2ae;
+$color-antd-gray: #bfbfbf;
+$color-antd-purple: #7265e6;
+
@mixin row-width-limit {
max-width: 12.2rem;
min-width: 10.2rem;
diff --git a/package.json b/package.json
index fe75c139..ac04898e 100755
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"install-server": " node server/install.js",
"dev-client": "ykit s -p 4000",
"dev": "npm run dev-server & npm run dev-client",
- "server": " node server/app.js"
+ "start": " node server/app.js"
},
"repository": {
"type": "git",
diff --git a/server/yapi.js b/server/yapi.js
index 9d8ff9af..63fa1eed 100755
--- a/server/yapi.js
+++ b/server/yapi.js
@@ -14,7 +14,7 @@ const WEBCONFIG = config;
fs.ensureDirSync(WEBROOT_LOG);
-if (WEBCONFIG.mail) {
+if (WEBCONFIG.mail && WEBCONFIG.mail.enable ) {
mail = nodemailer.createTransport(WEBCONFIG.mail);
}