修复英文环境下,阅片界面显示错位问题
parent
2f26c6e3bc
commit
75ff4eaa78
|
@ -21,12 +21,12 @@
|
||||||
>
|
>
|
||||||
<template v-if="question.QuestionType === 51 || question.QuestionType === 52">
|
<template v-if="question.QuestionType === 51 || question.QuestionType === 52">
|
||||||
<!-- question.QuestionType === 51 || question.QuestionType === 52 -->
|
<!-- question.QuestionType === 51 || question.QuestionType === 52 -->
|
||||||
|
<div style="display: flex;flex-direction: row;justify-content: flex-start;">
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type==='calculation'"
|
v-if="question.Type==='calculation'"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
disabled
|
disabled
|
||||||
style="width: 110px;"
|
style="width: 120px;"
|
||||||
>
|
>
|
||||||
<template v-if="question.Unit" slot="append">
|
<template v-if="question.Unit" slot="append">
|
||||||
{{ $fd('ValueUnit', parseInt(question.Unit)) }}
|
{{ $fd('ValueUnit', parseInt(question.Unit)) }}
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
style="margin-left: -5px;padding: 7px 5px;"
|
style="margin-left: -5px;padding: 7px 5px;"
|
||||||
@click="locateAnnotation(question)"
|
@click="locateAnnotation(question)"
|
||||||
>{{ $t('trials:lugano:button:locateAnnotation') }}</el-button>
|
>{{ $t('trials:lugano:button:locateAnnotation') }}</el-button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template v-else-if="question.QuestionType === 53">
|
<template v-else-if="question.QuestionType === 53">
|
||||||
<el-input
|
<el-input
|
||||||
|
|
|
@ -33,11 +33,12 @@
|
||||||
disabled
|
disabled
|
||||||
style="width: 100px;"
|
style="width: 100px;"
|
||||||
/> -->
|
/> -->
|
||||||
|
<div style="display: flex;flex-direction: row;justify-content: flex-start;">
|
||||||
<el-input
|
<el-input
|
||||||
v-if="question.Type==='calculation'"
|
v-if="question.Type==='calculation'"
|
||||||
v-model="questionForm[question.Id]"
|
v-model="questionForm[question.Id]"
|
||||||
disabled
|
disabled
|
||||||
style="width: 120px;"
|
style="width: 130px;"
|
||||||
>
|
>
|
||||||
<template v-if="question.Unit" slot="append">
|
<template v-if="question.Unit" slot="append">
|
||||||
{{ $fd('ValueUnit', parseInt(question.Unit)) }}
|
{{ $fd('ValueUnit', parseInt(question.Unit)) }}
|
||||||
|
@ -49,6 +50,7 @@
|
||||||
<el-button v-if="questionForm[question.Id]&& readingTaskState!== 2" size="mini" type="text" @click="removeAnnotation(question)">{{ $t('trials:lugano:button:clearAnnotation') }}</el-button>
|
<el-button v-if="questionForm[question.Id]&& readingTaskState!== 2" size="mini" type="text" @click="removeAnnotation(question)">{{ $t('trials:lugano:button:clearAnnotation') }}</el-button>
|
||||||
<!-- 定位 -->
|
<!-- 定位 -->
|
||||||
<el-button v-if="questionForm[question.Id]" size="mini" type="text" style="margin-left: -5px;" @click="locateAnnotation(question)">{{ $t('trials:lugano:button:locateAnnotation') }}</el-button>
|
<el-button v-if="questionForm[question.Id]" size="mini" type="text" style="margin-left: -5px;" @click="locateAnnotation(question)">{{ $t('trials:lugano:button:locateAnnotation') }}</el-button>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-else-if="question.QuestionType === 51 || question.QuestionType === 52 || question.QuestionType === 53">
|
<template v-else-if="question.QuestionType === 51 || question.QuestionType === 52 || question.QuestionType === 53">
|
||||||
|
|
Loading…
Reference in New Issue