1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!-- 填写资料 -->
- <view class='data_box'>
- <view class='data_name c'> <!-- 姓名 -->
- <text class='text'>我的姓名</text>
- <text class='name'>{{initial.name}}</text>
- </view>
- <view class='data_name c'> <!-- 身份证 -->
-
- <text class='text'>身份证号</text>
- <text class='name'>{{initial.number}}</text>
- </view>
- <!-- <view class='data_name c'>
- <text class='text'>有效期至</text>
- <text class='name'>2020-12-17</text>
- </view> -->
- <view class='data_name c' style='padding:30rpx 0'> <!-- 身份证 -->
- <text class='text1'>证件照片</text>
- <view class='img_box'>
- <view class='img' data-src='{{initial.opposite}}' bindtap='enlarge' >
- <image src='{{initial.opposite}}'></image>
- <text>国徽页</text>
- </view>
-
- <view class='img' data-src='{{initial.positive}}' bindtap='enlarge'>
- <image src='{{initial.positive}}'></image>
- <text>头像页</text>
- </view>
- </view>
- </view>
-
- </view>
-
|