修复病灶列表英文界面显示错位问题

uat_us
caiyiling 2024-01-17 13:34:11 +08:00
parent 13ab2dbbfd
commit 2f26c6e3bc
3 changed files with 4 additions and 5 deletions

View File

@ -192,7 +192,7 @@
v-if="answers.OtherPicturePath"
label="SUV测量截图"
/>
<div>
<div v-if="answers.OtherPicturePath">
<img
v-viewer
:options="{ toolbar: false }"
@ -209,7 +209,6 @@
class="base-dialog-footer"
style="text-align:right;margin-top:10px;"
>
<!-- 清除标记 -->
<el-button
v-if="questionForm.MeasureData"

View File

@ -84,7 +84,7 @@
{{ $fd('NewLesionState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
</span>
</div>
<div style="display: inline-block;margin-left:5px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;max-width:80px">
<div style="display: inline-block;margin-left:5px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;max-width:50px">
<el-tooltip v-if="!isNaN(parseInt(item.TableQuestions.Answers[i].lesionLength))" class="item" effect="dark" :content="`${item.TableQuestions.Answers[i].lesionLength}*${item.TableQuestions.Answers[i].lesionShort}m㎡`" placement="bottom">
<span>{{ item.TableQuestions.Answers[i].lesionLength }}*{{ item.TableQuestions.Answers[i].lesionShort }}m</span>
</el-tooltip>

View File

@ -136,7 +136,7 @@ export default {
}
this.measurements.push(i)
})
if (this.readingTaskState < 2 && !this.isBaseLineTask && isChangeVisitTask) {
if (!this.isBaseLineTask && isChangeVisitTask) {
const { Result } = await getSplenicVerify(visitTaskId)
this.spleenInfo = Result
}
@ -173,7 +173,7 @@ export default {
}
// this.questions = questions
}
if (this.spleenLengthId) {
if (this.spleenLengthId && this.spleenInfo) {
this.calculateSpleenStatus = this.setSpleenStatus(this.questionForm[this.spleenLengthId])
this.setSpleenCommentDisplay()
}