123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!--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">{{workerId}}</view>
- </view>
- </view>
- <view class="right half">
- <view class="text">
- <view class="basetext">当前已获得</view>
- <view class="basetext">{{deviceName}}检测车权限</view>
- </view>
- <view class="arror">
- <image class="wh" src="../../images/you.png"></image>
- </view>
- </view>
- </view>
- <view class="tips">核销用户检测次数</view>
- <view class="camera">
- <camera device-position="back" flash="off" mode="scanCode" bindscancode="bindscancode" binderror="bindscanerror" style="width: 100%; height: 100%;"></camera>
- </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>22岁</text>
- </view>
- <view class="info count">
- <text>剩余次数:</text>
- <text class="bold">5</text>
- <text>次</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>
|