finishInfo.wxml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <wxs module="urls" src="../../utils/photoUrl.wxs"></wxs>
  2. <image src="/images/wanshan.png" style="width: 100%; height: 300rpx;"></image>
  3. <view class="home">
  4. <!-- <view class="title" bindtap="goOcr">
  5. <image src="/images/saoma.png" style="width: 40rpx; height: 40rpx;"></image>
  6. <view class="saoma">
  7. 扫描身份证上传基本信息
  8. </view>
  9. </view> -->
  10. <!-- <view class="title" bindtap="uploadIdcard">
  11. <image src="/images/saoma.png" style="width: 40rpx; height: 40rpx;"></image>
  12. <view class="saoma">
  13. 身份证上传
  14. </view>
  15. </view> -->
  16. <view class="photo_box">
  17. <image wx:if='{{!idPhoto}}' src="../../images/upload_card.png" style="height:224rpx;width:315rpx;float:left" bindtap="uploadIdcard"></image>
  18. <image wx:if='{{idPhoto}}' src="{{urls.url(idPhoto)}}" style="height:224rpx;width:315rpx;float:left" bindtap="uploadIdcard"></image>
  19. <image wx:if='{{!myPhoto}}' src="../../images/upload_me.png" style="height:224rpx;width:253rpx;float:right" bindtap="uploadIdimg"></image>
  20. <image wx:if='{{myPhoto}}' src="{{urls.url(myPhoto)}}" style="height:224rpx;width:253rpx;float:right" bindtap="uploadIdimg"></image>
  21. <!-- <image src="../../images/upload_me.png" style="height:224rpx;width:253rpx;float:right"></image> -->
  22. </view>
  23. <form bindsubmit="formSubmit">
  24. <view class="box">
  25. <view class="flex-box">
  26. <view class="shu"></view>
  27. <view class="small-box">姓名</view>
  28. </view>
  29. <input disabled="{{true}}" name='userName' value="{{userName}}" class="weui-input" placeholder="请输入" />
  30. <view class="flex-box">
  31. <view class="shu"></view>
  32. <view class="small-box">性别</view>
  33. </view>
  34. <radio-group name="sex" style='margin-left:30rpx'>
  35. <label wx:for="{{parameter}}">
  36. <radio disabled="{{true}}" checked="{{item.checked}}" color='#009FE9' value="{{ item.name }}">{{item.name}}</radio>
  37. </label>
  38. </radio-group>
  39. <view class="flex-box">
  40. <view class="shu"></view>
  41. <view class="small-box">身份证号</view>
  42. </view>
  43. <input type="idcard" bindblur='changeIdCard' name='idCardNumber' value="{{idCardNumber}}" class="weui-input" placeholder="请输入" />
  44. <view class="flex-box">
  45. <view class="shu"></view>
  46. <view class="small-box">年龄</view>
  47. </view>
  48. <input name='age' disabled="{{true}}" value="{{age}}" class="weui-input" placeholder="录入身份证号后系统计算" />
  49. <view class="flex-box">
  50. <view class="shu"></view>
  51. <view class="small-box">职务</view>
  52. </view>
  53. <picker style="position:relative" bindchange="postListChange" name="job" value="{{postList[postindex].name}}" range-key="{{'name'}}" range="{{postList}}">
  54. <view class="picker">
  55. {{postList[postindex].name}} <text class="wenzi">{{posttext}}</text>
  56. </view>
  57. <van-icon name="arrow-down" style="position:absolute;right:20rpx;top:10rpx;color:#bbbbbb" />
  58. </picker>
  59. <view class="flex-box">
  60. <view class="shu"></view>
  61. <view class="small-box">收入</view>
  62. </view>
  63. <picker style="position:relative" bindchange="incomeListChange" name="income" value="{{incomeList[incomeindex].name}}" range-key="{{'name'}}" range="{{incomeList}}">
  64. <view class="picker">
  65. {{incomeList[incomeindex].name}} <text class="wenzi">{{incometext}}</text>
  66. </view>
  67. <van-icon name="arrow-down" style="position:absolute;right:20rpx;top:10rpx;color:#bbbbbb" />
  68. </picker>
  69. <view class="flex-box">
  70. <view class="shu"></view>
  71. <view class="small-box">学历</view>
  72. </view>
  73. <picker style="position:relative" bindchange="educationListChange" name="education" value="{{educationList[educationindex].name}}" range-key="{{'name'}}" range="{{educationList}}">
  74. <view class="picker">
  75. {{educationList[educationindex].name}} <text class="wenzi">{{educationtext}}</text>
  76. </view>
  77. <van-icon name="arrow-down" style="position:absolute;right:20rpx;top:10rpx;color:#bbbbbb" />
  78. </picker>
  79. <view class="register">
  80. <button formType="submit">提交完成</button>
  81. </view>
  82. </view>
  83. </form>
  84. </view>