添加融合标识

uat_us
caiyiling 2024-02-20 16:37:11 +08:00
parent 893a528bfc
commit 9929045d4b
2 changed files with 17 additions and 0 deletions

View File

@ -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(' ')
}, },

View File

@ -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;