fix(测试跟踪): 测试计划-跨项目关联多个用例后执行该测试计划弹框显示异常
This commit is contained in:
parent
6a80f6df51
commit
da16e001e6
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue