fix(测试跟踪): 创建测试计划时,添加标签,如果标签比较长会导致无法对齐

--bug=1029416 --user=白奇 【测试跟踪】github#26361,创建测试计划时,添加标签,如果标签比较长会导致无法对齐 https://www.tapd.cn/55049933/s/1408520
This commit is contained in:
baiqi 2023-08-25 17:26:46 +08:00 committed by fit2-zhao
parent 85e91236dd
commit 00ba40ca4c
1 changed files with 67 additions and 53 deletions

View File

@ -3,8 +3,8 @@
class="el-input-tag input-tag-wrapper" class="el-input-tag input-tag-wrapper"
:class="[size ? 'el-input-tag--' + size : '']" :class="[size ? 'el-input-tag--' + size : '']"
style="height: auto" style="height: auto"
@click="focusTagInput"> @click="focusTagInput"
>
<el-tag <el-tag
class="ms-top" class="ms-top"
v-for="(tag, idx) in innerTags" v-for="(tag, idx) in innerTags"
@ -14,12 +14,20 @@
:size="size" :size="size"
:closable="!readOnly" :closable="!readOnly"
:disable-transitions="false" :disable-transitions="false"
@close="remove(idx)"> @close="remove(idx)"
<span v-if="tag && tag.length > 10"> >
<el-tooltip class="item" effect="light" :content="tag" placement="top" :enterable="false"> <el-tooltip
<span>{{ tag && tag.length > 10 ? tag.substring(0, 10) + "..." : tag }}</span> v-if="tag && tag.length > 10"
class="item"
effect="light"
:content="tag"
placement="top"
:enterable="false"
>
<span>{{
tag && tag.length > 10 ? tag.substring(0, 10) + "..." : tag
}}</span>
</el-tooltip> </el-tooltip>
</span>
<span v-else> <span v-else>
{{ tag }} {{ tag }}
</span> </span>
@ -28,16 +36,17 @@
:disabled="readOnly" :disabled="readOnly"
class="tag-input el-input" class="tag-input el-input"
v-model="newTag" v-model="newTag"
:placeholder=defaultPlaceHolder :placeholder="defaultPlaceHolder"
@keydown.delete.stop="removeLastTag" @keydown.delete.stop="removeLastTag"
@keydown="addNew" @keydown="addNew"
@blur="addNew"/> @blur="addNew"
/>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: 'MsInputTag', name: "MsInputTag",
props: { props: {
currentScenario: {}, currentScenario: {},
placeholder: { placeholder: {
@ -46,17 +55,17 @@ export default {
errorInfo: String, errorInfo: String,
addTagOnKeys: { addTagOnKeys: {
type: Array, type: Array,
default: () => [13, 188, 9] default: () => [13, 188, 9],
}, },
readOnly: { readOnly: {
type: Boolean, type: Boolean,
default: false default: false,
}, },
size: { type: String, default: "small" }, size: { type: String, default: "small" },
prop: { prop: {
type: String, type: String,
default: "tags" default: "tags",
} },
}, },
created() { created() {
if (!this.currentScenario[this.prop]) { if (!this.currentScenario[this.prop]) {
@ -68,74 +77,79 @@ export default {
}, },
data() { data() {
return { return {
defaultPlaceHolder: this.$t('commons.tag_tip'), defaultPlaceHolder: this.$t("commons.tag_tip"),
newTag: '', newTag: "",
innerTags: this.currentScenario[this.prop] ? [...this.currentScenario[this.prop]] : [] innerTags: this.currentScenario[this.prop]
} ? [...this.currentScenario[this.prop]]
: [],
};
}, },
watch: { watch: {
innerTags() { innerTags() {
this.currentScenario[this.prop] = this.innerTags; this.currentScenario[this.prop] = this.innerTags;
this.tagChange(); this.tagChange();
}, },
'currentScenario.tags'() { "currentScenario.tags"() {
if (this.prop === 'tags') { if (this.prop === "tags") {
if (!this.currentScenario[this.prop] || this.currentScenario[this.prop] === '' || this.currentScenario[this.prop].length === 0) { if (
!this.currentScenario[this.prop] ||
this.currentScenario[this.prop] === "" ||
this.currentScenario[this.prop].length === 0
) {
if (this.innerTags.length !== 0) { if (this.innerTags.length !== 0) {
this.innerTags = []; this.innerTags = [];
} }
} }
} }
}, },
}, },
methods: { methods: {
focusTagInput() { focusTagInput() {
if (!this.readOnly && this.$el.querySelector('.tag-input')) { if (!this.readOnly && this.$el.querySelector(".tag-input")) {
this.$el.querySelector('.tag-input').focus() this.$el.querySelector(".tag-input").focus();
} }
}, },
addNew(e) { addNew(e) {
if (e && (!this.addTagOnKeys.includes(e.keyCode)) && (e.type !== 'blur')) { if (e && !this.addTagOnKeys.includes(e.keyCode) && e.type !== "blur") {
return return;
} }
if (e) { if (e) {
e.stopPropagation() e.stopPropagation();
e.preventDefault() e.preventDefault();
} }
let addSuccess = false let addSuccess = false;
if (this.newTag.includes(',')) { if (this.newTag.includes(",")) {
this.newTag.split(',').forEach(item => { this.newTag.split(",").forEach((item) => {
if (this.addTag(item.trim())) { if (this.addTag(item.trim())) {
addSuccess = true addSuccess = true;
} }
}) });
} else { } else {
if (this.addTag(this.newTag.trim())) { if (this.addTag(this.newTag.trim())) {
addSuccess = true addSuccess = true;
} }
} }
if (addSuccess) { if (addSuccess) {
this.tagChange() this.tagChange();
this.newTag = '' this.newTag = "";
} }
this.$emit("onblur"); this.$emit("onblur");
}, },
addTag(tag) { addTag(tag) {
tag = tag.trim() tag = tag.trim();
if (tag && !this.innerTags.includes(tag)) { if (tag && !this.innerTags.includes(tag)) {
if (tag.length > 15) { if (tag.length > 15) {
this.$error(this.$t('commons.tag_length_tip')); this.$error(this.$t("commons.tag_length_tip"));
return false return false;
} }
this.innerTags.push(tag); this.innerTags.push(tag);
return true return true;
} else { } else {
if (tag !== "" && this.errorInfo) { if (tag !== "" && this.errorInfo) {
this.$error(this.errorInfo); this.$error(this.errorInfo);
} }
} }
return false return false;
}, },
remove(index) { remove(index) {
this.innerTags.splice(index, 1); this.innerTags.splice(index, 1);
@ -147,16 +161,16 @@ export default {
}, },
removeLastTag() { removeLastTag() {
if (this.newTag) { if (this.newTag) {
return return;
} }
this.innerTags.pop() this.innerTags.pop();
this.tagChange() this.tagChange();
}, },
tagChange() { tagChange() {
this.$emit('input', this.innerTags) this.$emit("input", this.innerTags);
} },
} },
} };
</script> </script>
<style scoped> <style scoped>
@ -172,7 +186,7 @@ export default {
display: inline-block; display: inline-block;
outline: none; outline: none;
padding: 0 10px 0 5px; padding: 0 10px 0 5px;
transition: border-color .2s cubic-bezier(.645, .045, .355, 1); transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
width: 100%; width: 100%;
} }
@ -185,7 +199,8 @@ export default {
border: 0; border: 0;
color: #303133; color: #303133;
font-size: 12px; font-size: 12px;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
Arial, sans-serif;
outline: none; outline: none;
padding-left: 0; padding-left: 0;
width: 100px; width: 100px;
@ -210,5 +225,4 @@ export default {
height: 36px; height: 36px;
line-height: 36px; line-height: 36px;
} }
</style> </style>