123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <view class='page-container-classname' ref='saveChildRef0'>
- <import-sjs from='../../../utils/util/util.sjs' name='util'>
- </import-sjs>
- <view class='content'>
- <view class='top'>
- <view class='btn'>
- <btn onTap='antmoveAction' data-antmove-tap='back'>
- 切换用户
- </btn>
- </view>
- <view class='basic'>
- <view class='info'>
- <text>
- {{util.desensitization(machineInfo_FKJ.username, 1, 2) || '***'}} </text> <text>
- 手机号:{{util.desensitization(machineInfo_FKJ.phone, 3, 7) ||'********'}} </text> <text>
- 身份证:{{util.desensitization(machineInfo_FKJ.idNumber, 6, 14) || '********'}} </text>
- </view> <view class='avatar'>
- <image a:if='{{machineInfo_FKJ.avatar}}' src='{{machineInfo_FKJ.avatar}}' onTap='antmoveAction' data-antmove-tap='preview'>
- </image>
- <image a:else src='../../../static/images/avator.png' onTap='antmoveAction' data-antmove-tap='preview'>
- </image>
- </view>
- </view> <view class='other-msg-item'>
- <text>
- 所在单位: </text> <text>
- {{machineInfo_FKJ.workPlace || '***'}} </text>
- </view> <view class='other-msg-item'>
- <text>
- 车牌号: </text> <text>
- {{machineInfo_FKJ.carNumber || '***'}} </text>
- </view>
- </view> <view class='center'>
- <view>
- <image class='qr-code' src='{{qrCode}}'>
- </image>
- <canvas class='canvas-code' style='background:#fff;width: 200px;height: 200px; display:block; left:-800rpx;position:absolute;' id='myQrcode'>
- </canvas>
- </view>
- <view class='tip'>
- <text>
- 刷此码即可快速登记(二维码30s自动刷新) </text>
- </view>
- </view>
- </view>
- </view>
|