12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--pages/wx_airport/rlxf_pass/rlxf_pass.wxml-->
- <view class="content">
- <!-- 基本信息 -->
- <view class="top">
- <view class="btn">
- <button bindtap="back">{{isMachine?'切换用户':'重新认证'}}</button>
- </view>
- <view class="basic">
- <view class="info">
- <text wx:if="{{userInfo.username}}">{{userInfo.username }}</text>
- <text wx:if="{{!isMachine && userInfo.phone}}">手机号:{{userInfo.phone}}</text>
- <text wx:if="{{userInfo.idNumber}}">身份证:{{userInfo.idNumber}}</text>
- <text wx:if="{{userInfo.cardIdEx}}">定位卡号:{{userInfo.cardIdEx}}</text>
- <text wx:if="{{!isMachine && userInfo.org}}">通行区域:{{userInfo.org}}</text>
- </view>
- <view class="avatar">
- <image wx:if="{{userInfo.avatar}}" src="{{userInfo.avatar}}" bindtap="preview"></image>
- <image wx:if="{{!userInfo.avatar}}" src="../../../static/images/avator.png" bindtap="preview"></image>
- </view>
- </view>
- <view class="time">
- <text>有效期至:</text>
- <text class="letter-sapce">{{userInfo.createTime || '****-**-** **:**:**'}}</text>
- </view>
- </view>
- <!-- 功能栏 -->
- <view class="function-bar" wx:if="{{authFlag.showDisinfect||authFlag.showProblemReport}}" >
- <view class="flex" wx:if="{{item.isShow}}" wx:for="{{functionList}}" wx:key="index" bindtap="clickFun" data-item="{{item}}">
- <image src="{{item.img}}" alt=""/>
- <view class="tit">{{item.tit}}</view>
- </view>
- </view>
- <!-- 点击申报 -->
- <view class="center">
- <view class=" click {{isMachine?'machine-click':''}} {{timeCount > 0?' click-stop':''}}" bindtap="{{isMachine?'doPassMachine':'doPass'}}">
- <text>点击申报<block wx:if="{{timeCount > 0}}">({{timeCount}}s)</block></text>
- <image wx:if="{{timeCount == 0}}" src="../../../static/images/hand.gif"></image>
- </view>
- <view class="tip">
- <text>
- 申报后,可刷脸快速通行
- {{userInfo.org}}区域的闸机
- </text>
- </view>
- </view>
- </view>
|