添加融合标识
parent
893a528bfc
commit
9929045d4b
|
@ -528,6 +528,8 @@ export default {
|
||||||
}
|
}
|
||||||
if (this.answers.SplitOrMergeLesionName && parseInt(this.answers.SplitOrMergeType) === 0) {
|
if (this.answers.SplitOrMergeLesionName && parseInt(this.answers.SplitOrMergeType) === 0) {
|
||||||
arr.push(`(Split from ${this.answers.SplitOrMergeLesionName})`)
|
arr.push(`(Split from ${this.answers.SplitOrMergeLesionName})`)
|
||||||
|
} else if (this.answers.MeltingInToLesionMarks && parseInt(this.answers.SplitOrMergeType) === 1) {
|
||||||
|
arr.push(`(Merge to ${this.answers.MeltingInToLesionMarks})`)
|
||||||
}
|
}
|
||||||
return arr.join(' ')
|
return arr.join(' ')
|
||||||
},
|
},
|
||||||
|
|
|
@ -64,7 +64,13 @@
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<div style="position: absolute;left: 50px;top: 2px;">
|
<div style="position: absolute;left: 50px;top: 2px;">
|
||||||
<!-- white-space: nowrap;overflow: hidden;text-overflow: ellipsis; -->
|
<!-- white-space: nowrap;overflow: hidden;text-overflow: ellipsis; -->
|
||||||
|
|
||||||
<div style="font-size: 11px;width:210px;height: 30px;display: flex;justify-content: flex-start;flex-wrap: nowrap;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
<div style="font-size: 11px;width:210px;height: 30px;display: flex;justify-content: flex-start;flex-wrap: nowrap;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
|
||||||
|
<el-tooltip v-if="item.TableQuestions.Answers[i].SplitOrMergeType === '1'" class="item" effect="dark" :content="`融向${item.TableQuestions.Answers[i].MeltingInToLesionMarks}`" placement="bottom">
|
||||||
|
<div v-if="item.TableQuestions.Answers[i].SplitOrMergeType === '1'">
|
||||||
|
<span class="login-cycle" />
|
||||||
|
</div>
|
||||||
|
</el-tooltip>
|
||||||
<el-tooltip v-if="!!item.TableQuestions.Answers[i].lesionPart" class="item" effect="dark" :content="item.TableQuestions.Answers[i].lesionPart" placement="bottom">
|
<el-tooltip v-if="!!item.TableQuestions.Answers[i].lesionPart" class="item" effect="dark" :content="item.TableQuestions.Answers[i].lesionPart" placement="bottom">
|
||||||
<div v-if="item.TableQuestions.Answers[i].lesionPart" style="max-width: 100px;overflow: hidden;">
|
<div v-if="item.TableQuestions.Answers[i].lesionPart" style="max-width: 100px;overflow: hidden;">
|
||||||
{{ item.TableQuestions.Answers[i].lesionPart }}
|
{{ item.TableQuestions.Answers[i].lesionPart }}
|
||||||
|
@ -1301,6 +1307,15 @@ export default {
|
||||||
.lesion_list{
|
.lesion_list{
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
.login-cycle{
|
||||||
|
width: 5px;
|
||||||
|
height: 5px;
|
||||||
|
display: inline-block;
|
||||||
|
background-color: #428bca;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
.el-collapse{
|
.el-collapse{
|
||||||
border-bottom:none;
|
border-bottom:none;
|
||||||
border-top:none;
|
border-top:none;
|
||||||
|
|
Loading…
Reference in New Issue