fix(测试跟踪): 测试计划-跨项目关联多个用例后执行该测试计划弹框显示异常
This commit is contained in:
parent
6a80f6df51
commit
da16e001e6
|
@ -7,7 +7,7 @@
|
||||||
@close="close"
|
@close="close"
|
||||||
:visible.sync="runModeVisible"
|
:visible.sync="runModeVisible"
|
||||||
>
|
>
|
||||||
<div class="env-container" style="max-height: 400px">
|
<div class="env-container" style="max-height: 400px; overflow-y: scroll;">
|
||||||
<div>
|
<div>
|
||||||
<div>{{ $t("commons.environment") }}:</div>
|
<div>{{ $t("commons.environment") }}:</div>
|
||||||
<env-select-popover
|
<env-select-popover
|
||||||
|
|
|
@ -12,6 +12,8 @@ function resolve(dir) {
|
||||||
return path.join(__dirname, dir);
|
return path.join(__dirname, dir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const proxyUrl = ' http://localhost:8005'
|
||||||
|
|
||||||
module.exports = defineConfig({
|
module.exports = defineConfig({
|
||||||
publicPath: "/",
|
publicPath: "/",
|
||||||
productionSourceMap: false,
|
productionSourceMap: false,
|
||||||
|
@ -24,11 +26,11 @@ module.exports = defineConfig({
|
||||||
webSocketServer: "sockjs",
|
webSocketServer: "sockjs",
|
||||||
proxy: {
|
proxy: {
|
||||||
["^((?!/login)(?!/document))"]: {
|
["^((?!/login)(?!/document))"]: {
|
||||||
target: "http://localhost:8005",
|
target: proxyUrl,
|
||||||
ws: false,
|
ws: false,
|
||||||
},
|
},
|
||||||
"/websocket": {
|
"/websocket": {
|
||||||
target: "http://localhost:8005",
|
target: proxyUrl,
|
||||||
ws: true,
|
ws: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue