fix(项目报告(X-PACK)): 修复项目报告进入时403权限挡住的问题

修复项目报告进入时403权限挡住的问题
This commit is contained in:
song-tianyang 2021-11-22 18:48:58 +08:00 committed by song-tianyang
parent dc13c1c698
commit bbeb86976e
4 changed files with 161 additions and 156 deletions

@ -1 +1 @@
Subproject commit 563795dead1d056385eafd68e68e307dbf4e82e8
Subproject commit 4cbe39abad949c27aee0bf222da0d175550f2bcf

View File

@ -15,7 +15,7 @@
:closable="!readOnly"
:disable-transitions="false"
@close="remove(idx)">
{{tag && tag.length>10? tag.substring(0,10)+"...":tag}}
{{ tag && tag.length > 10 ? tag.substring(0, 10) + "..." : tag }}
</el-tag>
<input
:disabled="readOnly"
@ -29,13 +29,14 @@
</template>
<script>
export default {
export default {
name: 'MsInputTag',
props: {
currentScenario: {},
placeholder: {
type: String,
},
errorInfor: String,
addTagOnKeys: {
type: Array,
default: () => [13, 188, 9]
@ -54,7 +55,7 @@
if (!this.currentScenario[this.prop]) {
this.currentScenario[this.prop] = [];
}
if(this.placeholder){
if (this.placeholder) {
this.defaultPlaceHolder = this.placeholder;
}
},
@ -108,6 +109,10 @@
if (tag && !this.innerTags.includes(tag)) {
this.innerTags.push(tag)
return true
} else {
if (tag !== "" && this.errorInfor) {
this.$error(this.errorInfor);
}
}
return false
},
@ -126,11 +131,11 @@
this.$emit('input', this.innerTags)
}
}
}
}
</script>
<style scoped>
.input-tag-wrapper {
.input-tag-wrapper {
position: relative;
font-size: 14px;
background-color: #fff;
@ -144,13 +149,13 @@
padding: 0 10px 0 5px;
transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
width: 100%;
}
}
.el-tag {
.el-tag {
margin-right: 4px;
}
}
.tag-input {
.tag-input {
background: transparent;
border: 0;
color: #303133;
@ -159,26 +164,26 @@
outline: none;
padding-left: 0;
width: 100px;
}
}
.el-input-tag {
.el-input-tag {
height: 40px;
line-height: 40px;
}
}
.el-input-tag--mini {
.el-input-tag--mini {
height: 28px;
line-height: 28px;
font-size: 12px;
}
}
.el-input-tag--small {
.el-input-tag--small {
line-height: 30px;
}
}
.el-input-tag--medium {
.el-input-tag--medium {
height: 36px;
line-height: 36px;
}
}
</style>

View File

@ -3,7 +3,7 @@
<el-row>
<el-col :span="4">
<el-card :body-style="{ padding: '0px' }" class="ms-col" @click.native="openCard('trackTestCase')">
<img style="height: 214px" src="@/assets/test_case_analysis_png.png" class="image">
<img src="@/assets/test_case_analysis_png.png" class="image">
<div style="padding: 10px;">
<span>{{ $t('commons.report_statistics.test_case_analysis') }}</span>
<div class="bottom clearfix">

@ -1 +1 @@
Subproject commit 3da00ab5e55cf0dffc26e6230fbd9db4bde1e47e
Subproject commit 282f415db9d2b20b03a68a1fa3956fe9c2b0fe87