mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-23 22:32:54 +08:00
PDF回显
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<van-cell title="籍贯" :value="basicInfoDTO.nativePlace | idToText('rsnativePlace')" />
|
||||
<van-cell title="民族" :value="basicInfoDTO.ethnic | idToText('nationType')" />
|
||||
<van-cell title="户口所在地" :value="basicInfoDTO.rgtAddress | idToText('rsnativePlace')" />
|
||||
<van-cell title="职称" :value="basicInfoDTO.title" />
|
||||
<van-cell title="职称" :value="basicInfoDTO.title | blankFilter" />
|
||||
<van-cell title="婚姻状况" :value="basicInfoDTO.marriage | idToText('rsmarriage')" />
|
||||
<van-cell title="政治面貌" :value="basicInfoDTO.political | idToText('rspoliticsStatus')" />
|
||||
<van-cell title="学历" :value="basicInfoDTO.degree | idToText('rsdegree')" />
|
||||
@@ -26,12 +26,12 @@
|
||||
<van-cell title="证件类型" :value="basicInfoDTO.idType | idToText('idType')" />
|
||||
<van-cell title="证件号码" :value="basicInfoDTO.idNo" />
|
||||
<van-cell title="联系地址" :value="basicInfoDTO.address" />
|
||||
<van-cell title="邮政编码" :value="basicInfoDTO.zip" />
|
||||
<van-cell title="邮政编码" :value="basicInfoDTO.zip | blankFilter" />
|
||||
<van-cell title="开户银行" :value="basicInfoDTO.bankName" />
|
||||
<van-cell title="开户地" :value="basicInfoDTO.bankAddress" />
|
||||
<van-cell title="开户姓名" :value="basicInfoDTO.accountName" />
|
||||
<van-cell title="银行卡号" :value="basicInfoDTO.bankCode" />
|
||||
<van-cell title="从业年限" :value="basicInfoDTO.perationPeriod" />
|
||||
<van-cell title="从业年限" :value="basicInfoDTO.perationPeriod | blankFilter" />
|
||||
<van-cell title="原工作单位" :value="basicInfoDTO.oldCompany" />
|
||||
<van-cell title="原职业" :value="basicInfoDTO.oldOccupation | idToText('oldOccupation')" />
|
||||
<van-cell title="是否同业" :value="basicInfoDTO.sameTrade | idToText('rshealthCondition')" />
|
||||
@@ -57,8 +57,8 @@
|
||||
<van-cell title="姓名" :value="item.name" />
|
||||
<van-cell title="性别" :value="item.sex == 0 ? '男' : '女'" />
|
||||
<van-cell title="身份证号码" :value="item.idNo" />
|
||||
<van-cell title="单位" :value="item.company" />
|
||||
<van-cell title="家庭地址" :value="item.homeAdress" />
|
||||
<van-cell title="单位" :value="item.company | blankFilter" />
|
||||
<van-cell title="家庭地址" :value="item.homeAdress | blankFilter" />
|
||||
<van-cell title="手机" :value="item.mobile" />
|
||||
<van-cell title="关系" :value="item.relation | guarantRelationFilter" />
|
||||
<van-cell title="担保人类别" :value="item.type | relationFilter" />
|
||||
@@ -95,7 +95,7 @@
|
||||
</div>
|
||||
<div class="protocolFile" v-show="active === 2">
|
||||
<van-cell-group>
|
||||
<van-cell is-link :title="protocol.name" v-for="(protocol, index) in agreements" :key="index" @click="handlePdf(protocol.rgssUrl)" />
|
||||
<van-cell is-link :title="protocol.name" v-for="(protocol, index) in agreements" :key="index" @click="handlePdf(protocol.thirdUrl)" />
|
||||
</van-cell-group>
|
||||
<van-popup v-model="pdfShow" position="bottom" :style="{ height: '100%' }">
|
||||
<div style="display: flex; flex-direction: column; height: 100vh;">
|
||||
|
||||
Reference in New Issue
Block a user