1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <view class='content' ref='saveChildRef0'>
- <view class='top'>
- <view class='btn'>
- <btn onTap='antmoveAction' data-antmove-tap='back'>
- {{isMachine?'切换用户':'重新认证'}}
- </btn>
- </view>
- <view class='basic'>
- <view class='info'>
- <text>
- {{userInfo.username || '***'}}
- </text>
- <text a:if='{{!isMachine}}'>
- 手机号:{{userInfo.phone || '***********'}}
- </text>
- <text a:if='{{wxLoginType===1}}'>
- 身份证:{{userInfo.idNumber || '******************'}}
- </text>
- <text a:if='{{wxLoginType===2}}'>
- 卡号:{{userInfo.cardIdEx || '*****'}}
- </text>
- <text a:if='{{!isMachine}}'>
- 通行区域:{{userInfo.org || '*****'}}
- </text>
- </view>
- <view class='avatar'>
- <image
- a:if='{{userInfo.avatar}}'
- src='{{userInfo.avatar}}'
- onTap='antmoveAction'
- data-antmove-tap='preview'
- >
- </image>
- <image
- a:if='{{!userInfo.avatar}}'
- src='../../../static/images/avator.png'
- onTap='antmoveAction'
- data-antmove-tap='preview'
- >
- </image>
- </view>
- </view>
- <view class='time'>
- <text>
- 有效期至:
- </text>
- <text class='letter-sapce'>
- {{userInfo.createTime || '****-**-** **:**:**'}}
- </text>
- </view>
- </view>
- <view a:if='{{authFlag.showDisinfect||authFlag.showProblemReport}}' class='function-bar'>
- <view
- a:for='{{functionList}}'
- a:if='{{item.isShow}}'
- class='flex'
- a:key='{{index}}'
- data-item='{{item}}'
- ref-numbers='{{functionList}}'
- onTap='antmoveAction'
- data-antmove-tap='clickFun'
- >
- <image src='{{item.img}}' alt=" ">
- </image>
- <view class='tit'>
- {{item.tit}}
- </view>
- </view>
- </view>
- <view class='center'>
- <view
- class=" click {{isMachine?'machine-click':''}} {{timeCount > 0?' click-stop':''}}"
- onTap='antmoveAction'
- data-antmove-tap="{{isMachine?'doPassMachine':'doPass'}}"
- >
- <text>
- 点击申报
- <block a:if='{{timeCount > 0}}'>
- ({{timeCount}}s)
- </block>
- </text>
- <image a:if='{{timeCount == 0}}' src='../../../static/images/hand.gif'>
- </image>
- </view>
- <view class='tip'>
- <text>
- 申报后,可刷脸快速通行
- {{userInfo.org}}区域的闸机
- </text>
- </view>
- </view>
- </view>
|