解决app编译后显示项重复问题修复
parent
7036b72802
commit
3392c5c718
|
@ -2,34 +2,21 @@
|
||||||
<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"
|
||||||
|
@ -39,43 +26,26 @@
|
||||||
</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>
|
||||||
</view>
|
<block v-if="info.POLITICAL_STATUS == 'zhonggongdangyuan'">
|
||||||
<view v-if="info.POLITICAL_STATUS == 'zhonggongdangyuan'">
|
|
||||||
<u-cell title="入党时间" :value="info.POLITICAL_TIME"></u-cell>
|
<u-cell title="入党时间" :value="info.POLITICAL_TIME"></u-cell>
|
||||||
</view>
|
</block>
|
||||||
<view>
|
|
||||||
<u-cell title="是否缴纳社保" :value="info.IS_SOCIAL_NAME"></u-cell>
|
<u-cell title="是否缴纳社保" :value="info.IS_SOCIAL_NAME"></u-cell>
|
||||||
</view>
|
<block v-if="info.IS_SOCIAL==='1'">
|
||||||
<view v-if="info.IS_SOCIAL==='1'">
|
|
||||||
<u-cell title="社会保障号" :value="info.SOCIAL_NUMBER"></u-cell>
|
<u-cell title="社会保障号" :value="info.SOCIAL_NUMBER"></u-cell>
|
||||||
</view>
|
|
||||||
<view v-if="info.IS_SOCIAL==='1'">
|
|
||||||
<u-cell title="社会保障卡照片">
|
<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"
|
||||||
|
@ -85,11 +55,9 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
</view>
|
</block>
|
||||||
<view>
|
|
||||||
<u-cell title="是否签订劳动合同" :value="info.IS_SIGN_LABOR_NAME"></u-cell>
|
<u-cell title="是否签订劳动合同" :value="info.IS_SIGN_LABOR_NAME"></u-cell>
|
||||||
</view>
|
<block v-if="info.IS_SIGN_LABOR==='1'">
|
||||||
<view v-if="info.IS_SIGN_LABOR==='1'">
|
|
||||||
<u-cell title="合同图片">
|
<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"
|
||||||
|
@ -99,15 +67,11 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
</view>
|
</block>
|
||||||
<view>
|
|
||||||
<u-cell title="是否缴纳商业保险" :value="info.ISPAY_NAME"></u-cell>
|
<u-cell title="是否缴纳商业保险" :value="info.ISPAY_NAME"></u-cell>
|
||||||
</view>
|
<block v-if="info.ISPAY==='1'">
|
||||||
<view v-if="info.ISPAY==='1'">
|
|
||||||
<u-cell title="商业保险单号" :value="info.ISPAY_NUMBER"></u-cell>
|
<u-cell title="商业保险单号" :value="info.ISPAY_NUMBER"></u-cell>
|
||||||
</view>
|
<u-cell title="保险图片">
|
||||||
<view>
|
|
||||||
<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"
|
||||||
style="display: flex;justify-content: space-between">
|
style="display: flex;justify-content: space-between">
|
||||||
|
@ -116,14 +80,10 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
</view>
|
</block>
|
||||||
<view>
|
|
||||||
<u-cell title="是否按期缴纳工伤保险" :value="info.IS_INJURIES_PAY_NAME"></u-cell>
|
<u-cell title="是否按期缴纳工伤保险" :value="info.IS_INJURIES_PAY_NAME"></u-cell>
|
||||||
</view>
|
<block 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>
|
<u-cell title="工伤保险有效期" :value="info.IS_INJURIES_PAY_TIME"></u-cell>
|
||||||
</view>
|
|
||||||
<view v-if="info.IS_INJURIES_PAY==='1'">
|
|
||||||
<u-cell title="工伤保险凭证">
|
<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"
|
||||||
|
@ -133,14 +93,10 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
</view>
|
</block>
|
||||||
<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>
|
||||||
</view>
|
<block v-if="info.IS_LEVEL_THREE==='1'">
|
||||||
<view v-if="info.IS_LEVEL_THREE==='1'">
|
|
||||||
<u-cell title="三级安全培训照片">
|
<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"
|
||||||
|
@ -150,7 +106,7 @@
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
</view>
|
</block>
|
||||||
<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>
|
||||||
|
|
|
@ -108,11 +108,7 @@
|
||||||
</template>
|
</template>
|
||||||
</u-cell>
|
</u-cell>
|
||||||
<u-cell title="是否参加三级安全培训" :value="info.IS_LEVEL_THREE == '0' ? '否' : '是'"></u-cell>
|
<u-cell title="是否参加三级安全培训" :value="info.IS_LEVEL_THREE == '0' ? '否' : '是'"></u-cell>
|
||||||
<!-- <u-cell title="是否开展入场安全告知" :value="info.IS_SAFETY_TELL == '0' ? '否' : '是'"></u-cell> -->
|
|
||||||
<u-cell title="身体状况是否适应本岗位工作" :value="info.IS_BODY_ADAPT == '0' ? '否' : '是'"></u-cell>
|
|
||||||
<u-cell title="是否特殊工种" :value="info.IS_SPECIAL_JOB == '0' ? '否' : '是'"></u-cell>
|
<u-cell title="是否特殊工种" :value="info.IS_SPECIAL_JOB == '0' ? '否' : '是'"></u-cell>
|
||||||
<!-- <u-cell title="是否流动人员" :value="info.ISFLOW == '0' ? '否' : '是'"></u-cell> -->
|
|
||||||
<!-- <u-cell title="审核意见" v-show="info.AUDIT_REMARKS != ''" :value="info.AUDIT_REMARKS"></u-cell>-->
|
|
||||||
</u-cell-group>
|
</u-cell-group>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
Loading…
Reference in New Issue