1234567891011121314151617181920212223242526272829303132 |
- <!--pages/signIn/siginIn.wxml-->
- <view class="topBox flex m-bottom-25">
- <view>
- 签收工厂:{{title}}
- </view>
- </view>
- <view class="centerBox">
- <view class="top flex ju-c b-bottom">
- <view class="round flex ju-c" bindtap="getScancode">
- <van-icon name="scan" color="#fff" size="55" />
- <view class="tips m-top-20">扫码签收</view>
- </view>
- </view>
- <view class="footer ju-b flex">
- <view class="le flex ju-c" bindtap="toHand">
- <image src="/image/icon/exit.png" class="icon"></image>
- <view class="tips m-top-15">手动输入</view>
- </view>
- <view class="line"></view>
- <view class="lr flex ju-c">
- <van-switch checked="{{ checked }}" bind:change="onChange" size="30rpx" />
- <view class="tips m-top-15">连续扫码</view>
- </view>
- </view>
- </view>
- <view class="m-top-25">
- <van-cell title="签收记录" is-link bindtap="toRecode" />
- </view>
|