Browse Source

padding

lkf
15881625488@163.com 2 months ago
parent
commit
ee916fc88c
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      src/views/business/comps/common/JcgjExportList.vue

+ 6
- 6
src/views/business/comps/common/JcgjExportList.vue View File

@ -5,24 +5,24 @@
<div><span>{{ item.createTime }}</span> <div><span>{{ item.createTime }}</span>
<span :style="'color:' + item.color+';margin-left:5px'">{{ $i18n.locale ==='zh_CN' ? item.jcmc :item.jcmcEn }}</span></div> <span :style="'color:' + item.color+';margin-left:5px'">{{ $i18n.locale ==='zh_CN' ? item.jcmc :item.jcmcEn }}</span></div>
</div> </div>
<div class="no-break" style="margin: 5px 0px;">
<div class="no-break" style="padding: 5px 0px;">
<template v-if="$i18n.locale === 'zh_CN'"> <template v-if="$i18n.locale === 'zh_CN'">
<span v-for="(pitem, pindex) in item.jcnrList" :key="pindex" style="margin-right: 5px;">
<span v-for="(pitem, pindex) in item.jcnrList" :key="pindex" style="padding-right: 5px;">
{{ pitem.name }}{{ pitem.value }} {{ pitem.name }}{{ pitem.value }}
</span> </span>
</template> </template>
<template v-else> <template v-else>
<span v-for="(pitem, pindex) in item.jcnrListEn" :key="pindex" style="margin-right: 5px;">
<span v-for="(pitem, pindex) in item.jcnrListEn" :key="pindex" style="padding-right: 5px;">
{{ pitem.name }}{{ pitem.value }} {{ pitem.name }}{{ pitem.value }}
</span> </span>
</template> </template>
<div v-if="item.remark && item.remark !== ''" style="margin-top: 5px;">
<div v-if="item.remark && item.remark !== ''" style="padding-top: 5px;">
{{ $t('form.remark') }}{{ item.remark }} {{ $t('form.remark') }}{{ item.remark }}
</div> </div>
<div v-if="item.qmrId && item.qmrId > 0" style="margin-top: 5px;">
<div v-if="item.qmrId && item.qmrId > 0" style="padding-top: 5px;">
{{ $t('form.qmyy') }}{{ $i18n.locale === 'zh_CN' ? item.jcmc : item.jcmcEn }} {{ $t('form.qmyy') }}{{ $i18n.locale === 'zh_CN' ? item.jcmc : item.jcmcEn }}
</div> </div>
<div v-if="item.qmrId && item.qmrId > 0" style="margin-top: 5px;">
<div v-if="item.qmrId && item.qmrId > 0" style="padding-top: 5px;">
{{ $t('form.signer') }}{{ item.qmrMc }} {{ $t('form.signer') }}{{ item.qmrMc }}
</div> </div>
</div> </div>

Loading…
Cancel
Save