Realname.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!-- 填写资料 -->
  2. <view class='data_box'>
  3. <view class='data_name c'> <!-- 姓名 -->
  4. <text class='text'>我的姓名</text>
  5. <text class='name'>{{initial.name}}</text>
  6. </view>
  7. <view class='data_name c'> <!-- 身份证 -->
  8. <text class='text'>身份证号</text>
  9. <text class='name'>{{initial.number}}</text>
  10. </view>
  11. <!-- <view class='data_name c'>
  12. <text class='text'>有效期至</text>
  13. <text class='name'>2020-12-17</text>
  14. </view> -->
  15. <view class='data_name c' style='padding:30rpx 0'> <!-- 身份证 -->
  16. <text class='text1'>证件照片</text>
  17. <view class='img_box'>
  18. <view class='img' data-src='{{initial.opposite}}' bindtap='enlarge' >
  19. <image src='{{initial.opposite}}'></image>
  20. <text>国徽页</text>
  21. </view>
  22. <view class='img' data-src='{{initial.positive}}' bindtap='enlarge'>
  23. <image src='{{initial.positive}}'></image>
  24. <text>头像页</text>
  25. </view>
  26. </view>
  27. </view>
  28. </view>