|
@@ -181,7 +181,7 @@ const showDetail = async (record) => {
|
|
|
value: res.data.create_user,
|
|
value: res.data.create_user,
|
|
|
}, {
|
|
}, {
|
|
|
label: '请求方式',
|
|
label: '请求方式',
|
|
|
- value: res.data.method
|
|
|
|
|
|
|
+ value: res.data.method.toUpperCase()
|
|
|
}, {
|
|
}, {
|
|
|
label: '请求路径',
|
|
label: '请求路径',
|
|
|
value: res.data.url,
|
|
value: res.data.url,
|
|
@@ -200,10 +200,10 @@ const showDetail = async (record) => {
|
|
|
value: res.data.deviceType
|
|
value: res.data.deviceType
|
|
|
}, {
|
|
}, {
|
|
|
label: '请求数据',
|
|
label: '请求数据',
|
|
|
- value: JSON.stringify(res.data.reqData)
|
|
|
|
|
|
|
+ value: JSON.stringify(res.data.reqData, null, 4)
|
|
|
}, {
|
|
}, {
|
|
|
label: '响应数据',
|
|
label: '响应数据',
|
|
|
- value: JSON.stringify(res.data.resData)
|
|
|
|
|
|
|
+ value: JSON.stringify(res.data.resData, null, 4)
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
label: '状态码',
|
|
label: '状态码',
|