修复病灶列表英文界面显示错位问题
parent
13ab2dbbfd
commit
2f26c6e3bc
|
@ -192,7 +192,7 @@
|
||||||
v-if="answers.OtherPicturePath"
|
v-if="answers.OtherPicturePath"
|
||||||
label="SUV测量截图"
|
label="SUV测量截图"
|
||||||
/>
|
/>
|
||||||
<div>
|
<div v-if="answers.OtherPicturePath">
|
||||||
<img
|
<img
|
||||||
v-viewer
|
v-viewer
|
||||||
:options="{ toolbar: false }"
|
:options="{ toolbar: false }"
|
||||||
|
@ -209,7 +209,6 @@
|
||||||
class="base-dialog-footer"
|
class="base-dialog-footer"
|
||||||
style="text-align:right;margin-top:10px;"
|
style="text-align:right;margin-top:10px;"
|
||||||
>
|
>
|
||||||
|
|
||||||
<!-- 清除标记 -->
|
<!-- 清除标记 -->
|
||||||
<el-button
|
<el-button
|
||||||
v-if="questionForm.MeasureData"
|
v-if="questionForm.MeasureData"
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
{{ $fd('NewLesionState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
|
{{ $fd('NewLesionState',parseInt(item.TableQuestions.Answers[i].lesionState)) }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</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">
|
<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>
|
<span>{{ item.TableQuestions.Answers[i].lesionLength }}*{{ item.TableQuestions.Answers[i].lesionShort }}m㎡</span>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
|
|
|
@ -136,7 +136,7 @@ export default {
|
||||||
}
|
}
|
||||||
this.measurements.push(i)
|
this.measurements.push(i)
|
||||||
})
|
})
|
||||||
if (this.readingTaskState < 2 && !this.isBaseLineTask && isChangeVisitTask) {
|
if (!this.isBaseLineTask && isChangeVisitTask) {
|
||||||
const { Result } = await getSplenicVerify(visitTaskId)
|
const { Result } = await getSplenicVerify(visitTaskId)
|
||||||
this.spleenInfo = Result
|
this.spleenInfo = Result
|
||||||
}
|
}
|
||||||
|
@ -173,7 +173,7 @@ export default {
|
||||||
}
|
}
|
||||||
// this.questions = questions
|
// this.questions = questions
|
||||||
}
|
}
|
||||||
if (this.spleenLengthId) {
|
if (this.spleenLengthId && this.spleenInfo) {
|
||||||
this.calculateSpleenStatus = this.setSpleenStatus(this.questionForm[this.spleenLengthId])
|
this.calculateSpleenStatus = this.setSpleenStatus(this.questionForm[this.spleenLengthId])
|
||||||
this.setSpleenCommentDisplay()
|
this.setSpleenCommentDisplay()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue