解决app编译后显示项重复问题修复
parent
58e1c1cc74
commit
7036b72802
|
@ -2,21 +2,34 @@
|
||||||
<view class="content">
|
<view class="content">
|
||||||
<view class="card">
|
<view class="card">
|
||||||
<u-cell-group>
|
<u-cell-group>
|
||||||
|
<view>
|
||||||
<u-cell title="照片">
|
<u-cell title="照片">
|
||||||
<template #value>
|
<template #value>
|
||||||
<u--image :src="info.userPhoto" shape="circle" width="100upx" height="100upx"></u--image>
|
<u--image :src="info.userPhoto" shape="circle" width="100upx" height="100upx"></u--image>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="姓名" :value="info.NAME"></u-cell>
|
<u-cell title="姓名" :value="info.NAME"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="性别" :value="info.SEX === '1' ? '女' : '男'">
|
<u-cell title="性别" :value="info.SEX === '1' ? '女' : '男'">
|
||||||
<template #value>
|
<template #value>
|
||||||
{{info.SEX === '1' ? '女' : ''}}
|
{{ info.SEX === '1' ? '女' : '' }}
|
||||||
{{info.SEX === '0' ? '男' : ''}}
|
{{ info.SEX === '0' ? '男' : '' }}
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="出生年月" :value="info.DATE_OF_BIRTH"></u-cell>
|
<u-cell title="出生年月" :value="info.DATE_OF_BIRTH"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="年龄" :value="info.AGE"></u-cell>
|
<u-cell title="年龄" :value="info.AGE"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="身份证" :value="info.CARD_ID"></u-cell>
|
<u-cell title="身份证" :value="info.CARD_ID"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="身份证照片">
|
<u-cell title="身份证照片">
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in userCardIDPhotoFile" :key="index"
|
<view v-for="(item,index) in userCardIDPhotoFile" :key="index"
|
||||||
|
@ -26,24 +39,44 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="民族" :value="info.minzuName"></u-cell>
|
<u-cell title="民族" :value="info.minzuName"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="户口所在地">
|
<u-cell title="户口所在地">
|
||||||
<template #value>
|
<template #value>
|
||||||
<u--text :lines="2" align="right" :text="info.HKLOCAL"></u--text>
|
<u--text :lines="2" align="right" :text="info.HKLOCAL"></u--text>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="现住址">
|
<u-cell title="现住址">
|
||||||
<template #value>
|
<template #value>
|
||||||
<u--text :lines="2" align="right" :text="info.ADDRESS"></u--text>
|
<u--text :lines="2" align="right" :text="info.ADDRESS"></u--text>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="联系电话" :value="info.PHONE"></u-cell>
|
<u-cell title="联系电话" :value="info.PHONE"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="婚姻状况" :value="info.MARITALSTATUS == 0 ? '未婚':'已婚'"></u-cell>
|
<u-cell title="婚姻状况" :value="info.MARITALSTATUS == 0 ? '未婚':'已婚'"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="政治面貌" :value="info.zzName"></u-cell>
|
<u-cell title="政治面貌" :value="info.zzName"></u-cell>
|
||||||
<u-cell v-if="info.POLITICAL_STATUS == 'zhonggongdangyuan'" title="入党时间" :value="info.POLITICAL_TIME"></u-cell>
|
</view>
|
||||||
|
<view v-if="info.POLITICAL_STATUS == 'zhonggongdangyuan'">
|
||||||
|
<u-cell title="入党时间" :value="info.POLITICAL_TIME"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="是否缴纳社保" :value="info.IS_SOCIAL_NAME"></u-cell>
|
<u-cell title="是否缴纳社保" :value="info.IS_SOCIAL_NAME"></u-cell>
|
||||||
<u-cell title="社会保障号" v-if="info.IS_SOCIAL==='1'" :value="info.SOCIAL_NUMBER"></u-cell>
|
</view>
|
||||||
<u-cell title="社会保障卡照片" v-if="info.IS_SOCIAL==='1'" >
|
<view v-if="info.IS_SOCIAL==='1'">
|
||||||
|
<u-cell title="社会保障号" :value="info.SOCIAL_NUMBER"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view v-if="info.IS_SOCIAL==='1'">
|
||||||
|
<u-cell title="社会保障卡照片">
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in socialPhotoFile" :key="index"
|
<view v-for="(item,index) in socialPhotoFile" :key="index"
|
||||||
style="display: flex;justify-content: space-between">
|
style="display: flex;justify-content: space-between">
|
||||||
|
@ -52,8 +85,12 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="是否签订劳动合同" :value="info.IS_SIGN_LABOR_NAME"></u-cell>
|
<u-cell title="是否签订劳动合同" :value="info.IS_SIGN_LABOR_NAME"></u-cell>
|
||||||
<u-cell title="合同图片" v-if="info.IS_SIGN_LABOR==='1'">
|
</view>
|
||||||
|
<view v-if="info.IS_SIGN_LABOR==='1'">
|
||||||
|
<u-cell title="合同图片" >
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in contractFile" :key="index"
|
<view v-for="(item,index) in contractFile" :key="index"
|
||||||
style="display: flex;justify-content: space-between">
|
style="display: flex;justify-content: space-between">
|
||||||
|
@ -62,8 +99,14 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="是否缴纳商业保险" :value="info.ISPAY_NAME"></u-cell>
|
<u-cell title="是否缴纳商业保险" :value="info.ISPAY_NAME"></u-cell>
|
||||||
<u-cell title="商业保险单号" v-if="info.ISPAY==='1'" :value="info.ISPAY_NUMBER"></u-cell>
|
</view>
|
||||||
|
<view v-if="info.ISPAY==='1'">
|
||||||
|
<u-cell title="商业保险单号" :value="info.ISPAY_NUMBER"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="保险图片" v-if="info.ISPAY==='1'">
|
<u-cell title="保险图片" v-if="info.ISPAY==='1'">
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in insuranceFile" :key="index"
|
<view v-for="(item,index) in insuranceFile" :key="index"
|
||||||
|
@ -73,9 +116,15 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="是否按期缴纳工伤保险" :value="info.IS_INJURIES_PAY_NAME"></u-cell>
|
<u-cell title="是否按期缴纳工伤保险" :value="info.IS_INJURIES_PAY_NAME"></u-cell>
|
||||||
<u-cell title="工伤保险有效期" v-if="info.IS_INJURIES_PAY==='1'" :value="info.IS_INJURIES_PAY_TIME"></u-cell>
|
</view>
|
||||||
<u-cell title="工伤保险凭证" v-if="info.IS_INJURIES_PAY==='1'">
|
<view v-if="info.IS_INJURIES_PAY==='1'">
|
||||||
|
<u-cell title="工伤保险有效期" :value="info.IS_INJURIES_PAY_TIME"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view v-if="info.IS_INJURIES_PAY==='1'">
|
||||||
|
<u-cell title="工伤保险凭证" >
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in injuriesPayTiemFile" :key="index"
|
<view v-for="(item,index) in injuriesPayTiemFile" :key="index"
|
||||||
style="display: flex;justify-content: space-between">
|
style="display: flex;justify-content: space-between">
|
||||||
|
@ -84,9 +133,15 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="岗位名称(工种)" :value="info.POST_ID"></u-cell>
|
<u-cell title="岗位名称(工种)" :value="info.POST_ID"></u-cell>
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
<u-cell title="是否参加三级安全培训" :value="info.IS_LEVEL_THREE_NAME"></u-cell>
|
<u-cell title="是否参加三级安全培训" :value="info.IS_LEVEL_THREE_NAME"></u-cell>
|
||||||
<u-cell title="三级安全培训照片" v-if="info.IS_LEVEL_THREE==='1'">
|
</view>
|
||||||
|
<view v-if="info.IS_LEVEL_THREE==='1'">
|
||||||
|
<u-cell title="三级安全培训照片" >
|
||||||
<template #value>
|
<template #value>
|
||||||
<view v-for="(item,index) in photosOfLevel" :key="index"
|
<view v-for="(item,index) in photosOfLevel" :key="index"
|
||||||
style="display: flex;justify-content: space-between">
|
style="display: flex;justify-content: space-between">
|
||||||
|
@ -95,6 +150,7 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
|
</view>
|
||||||
<u-cell title="是否流动人员" :value="info.ISFLOW_NAME"></u-cell>
|
<u-cell title="是否流动人员" :value="info.ISFLOW_NAME"></u-cell>
|
||||||
</u-cell-group>
|
</u-cell-group>
|
||||||
</view>
|
</view>
|
||||||
|
|
Loading…
Reference in New Issue