Files
irc_web/src/views/research-mobile/components/Notes.vue
T
2024-07-05 14:59:05 +08:00

48 lines
1.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="research_note">
<div class="title">
{{ $t('trials:equiptResearch:form:precautions') }}
</div>
<ol v-if="siteSurveyNoteInfo">
<div v-if="$i18n.locale === 'zh'" v-html="siteSurveyNoteInfo.ReplaceContentCN" />
<div v-else v-html="siteSurveyNoteInfo.ReplaceContent" />
</ol>
<ol v-else>
<!-- 只要有可能请确保受试者使用上述指定的扫描仪器采集影像 -->
<li>{{ $t('trials:equiptResearch:form:item1') }}</li>
<!-- 请确保对每位受试者的扫描参数在整个研究过程中保持一致 -->
<li>{{ $t('trials:equiptResearch:form:item2') }}</li>
<!-- 试验过程中如果有任何人员设备或扫描仪器的替换请立即通知我们 -->
<li>{{ $t('trials:equiptResearch:form:item3') }}</li>
<!-- 请保存好原始未经压缩的非重建的数据 -->
<li>{{ $t('trials:equiptResearch:form:item4') }}</li>
</ol>
</div>
</template>
<script>
export default {
name: 'ResearchNotes',
data() {
return {
siteSurveyNoteInfo: null
}
},
methods: {
initPage(siteSurveyNoteInfo) {
this.siteSurveyNoteInfo = siteSurveyNoteInfo
}
}
}
</script>
<style lang="scss" scoped>
.research_note{
background: #fff;
padding: 10px;
li{
line-height: 20px;
font-size: 14px;
color: #82848a;
}
}
</style>