fix(测试跟踪): 测试计划-跨项目关联多个用例后执行该测试计划弹框显示异常

This commit is contained in:
RubyLiu 2023-06-15 17:56:43 +08:00 committed by fit2-zhao
parent 6a80f6df51
commit da16e001e6
2 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@
@close="close"
:visible.sync="runModeVisible"
>
<div class="env-container" style="max-height: 400px">
<div class="env-container" style="max-height: 400px; overflow-y: scroll;">
<div>
<div>{{ $t("commons.environment") }}</div>
<env-select-popover

View File

@ -12,6 +12,8 @@ function resolve(dir) {
return path.join(__dirname, dir);
}
const proxyUrl = ' http://localhost:8005'
module.exports = defineConfig({
publicPath: "/",
productionSourceMap: false,
@ -24,11 +26,11 @@ module.exports = defineConfig({
webSocketServer: "sockjs",
proxy: {
["^((?!/login)(?!/document))"]: {
target: "http://localhost:8005",
target: proxyUrl,
ws: false,
},
"/websocket": {
target: "http://localhost:8005",
target: proxyUrl,
ws: true,
},
},