|
@@ -239,6 +239,7 @@
|
|
<el-dialog
|
|
<el-dialog
|
|
title="请求日志信息"
|
|
title="请求日志信息"
|
|
:visible.sync="reqVisible"
|
|
:visible.sync="reqVisible"
|
|
|
|
+ width="660px"
|
|
>
|
|
>
|
|
{{params}}
|
|
{{params}}
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -247,6 +248,7 @@
|
|
<el-dialog
|
|
<el-dialog
|
|
title="响应日志信息"
|
|
title="响应日志信息"
|
|
:visible.sync="respVisible"
|
|
:visible.sync="respVisible"
|
|
|
|
+ width="660px"
|
|
>
|
|
>
|
|
<div>{{result}}</div>
|
|
<div>{{result}}</div>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -607,9 +609,15 @@ export default {
|
|
-o-text-overflow:ellipsis;
|
|
-o-text-overflow:ellipsis;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/deep/.el-dialog {
|
|
|
|
+ width: 700px !important;
|
|
|
|
+}
|
|
|
|
+
|
|
/deep/.el-dialog__body {
|
|
/deep/.el-dialog__body {
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
height: 550px;
|
|
height: 550px;
|
|
|
|
+ width: 700px;
|
|
|
|
+ padding: 20px 0 30px;
|
|
}
|
|
}
|
|
|
|
|
|
</style>
|
|
</style>
|