fix (接口自动化): 修复查看引用问题
--bug=1007453 --user=赵勇 【接口测试】场景查看引用,场景引用显示了两次 https://www.tapd.cn/55049933/s/1058821
This commit is contained in:
parent
1f5de735fd
commit
6b1d5c38da
|
@ -1,10 +1,14 @@
|
||||||
<template>
|
<template>
|
||||||
<el-dialog :close-on-click-modal="false" :title="$t('api_test.automation.scenario_ref')" :visible.sync="visible"
|
<el-dialog :close-on-click-modal="false" :title="$t('api_test.automation.scenario_ref')" :visible.sync="visible"
|
||||||
width="45%" :destroy-on-close="true" >
|
width="45%" :destroy-on-close="true">
|
||||||
<span>{{ $t('api_test.automation.scenario_ref') }}:</span>
|
<span>{{ $t('api_test.automation.scenario_ref') }}:</span>
|
||||||
<div class="refs" v-loading="scenarioLoading">
|
<div class="refs" v-loading="scenarioLoading">
|
||||||
<div v-for="(item, index) in scenarioRefs" :key="index" class="el-button--text">
|
<div v-for="(item, index) in scenarioRefs" :key="index" class="el-button--text">
|
||||||
<el-link @click="openScenario(item)">
|
<el-link @click="openScenario(item)" v-if="item.status === 'Trash'">
|
||||||
|
{{ item.name }}
|
||||||
|
<el-tag size="mini">{{ $t('commons.trash') }}</el-tag>
|
||||||
|
</el-link>
|
||||||
|
<el-link @click="openScenario(item)" v-else>
|
||||||
{{ item.name }}
|
{{ item.name }}
|
||||||
</el-link>
|
</el-link>
|
||||||
</div>
|
</div>
|
||||||
|
@ -31,7 +35,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "MsReferenceView",
|
name: "MsReferenceView",
|
||||||
components: {},
|
components: {},
|
||||||
data() {
|
data() {
|
||||||
|
@ -61,22 +65,22 @@
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.refs {
|
.refs {
|
||||||
min-height: 50px;
|
min-height: 50px;
|
||||||
max-height: 200px;
|
max-height: 200px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-button--text .el-link.el-link--default {
|
.el-button--text .el-link.el-link--default {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #4b1980;
|
color: #4b1980;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue