1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!--pages/workbench/workbench.wxml-->
- <view class="work-content wh">
- <view class="account-info ittflex-jcs">
- <view class="left half ittflex-jcs">
- <view class="head-img">
- <image class="wh" src="{{headImg}}"></image>
- </view>
- <view class="userinfo">
- <view class="username">{{userName}}</view>
- <view class="usernum">当前已获得{{deviceName}}检测车权限</view>
- </view>
- </view>
- <view class="right half">
- <view class="itt-btn reauth-btn" data-type="1" bindtap="handleWXScanDevice">获取新车权限</view>
- </view>
- </view>
- <view class="main-scan">
- <view class="scanicon" data-type="0" bindtap="handleWxScanUser">
- <image class="wh" src="../../images/saoma@2x.png"></image>
- </view>
- <view class="tips">核销用户检测次数</view>
- </view>
- <view class="overlay wh" wx:if="{{overlayShow}}">
- <view class="modal">
- <view class="title">用户信息</view>
- <view class="username info">
- <text>姓名:</text>
- <text class="codename">{{personName}}</text>
- </view>
- <view class="info sex">
- <text>性别:</text>
- <text>{{personSex ? '男' : '女'}}</text>
- </view>
- <view class="info day">
- <text>出生年月:</text>
- <text>{{birthday}}</text>
- </view>
- <view class="info age">
- <text>年龄:</text>
- <text>{{age}}岁</text>
- </view>
- <view class="info count">
- <text>剩余次数:</text>
- <text class="bold"></text>
- <text class="use-num">{{useNum}}次</text>
- </view>
- <view class="btn ittflex-jcs">
- <view class="itt-btn cancel" bindtap="handlecancel">取消</view>
- <view class="itt-btn submit" bindtap="handlesubmit">确认检测</view>
- </view>
- </view>
- </view>
- </view>
|