siginIn.wxml 1000 B

1234567891011121314151617181920212223242526272829303132
  1. <!--pages/signIn/siginIn.wxml-->
  2. <view class="topBox flex m-bottom-25">
  3. <view>
  4. 签收工厂:{{title}}
  5. </view>
  6. </view>
  7. <view class="centerBox">
  8. <view class="top flex ju-c b-bottom">
  9. <view class="round flex ju-c" bindtap="getScancode">
  10. <van-icon name="scan" color="#fff" size="55" />
  11. <view class="tips m-top-20">扫码签收</view>
  12. </view>
  13. </view>
  14. <view class="footer ju-b flex">
  15. <view class="le flex ju-c" bindtap="toHand">
  16. <image src="/image/icon/exit.png" class="icon"></image>
  17. <view class="tips m-top-15">手动输入</view>
  18. </view>
  19. <view class="line"></view>
  20. <view class="lr flex ju-c">
  21. <van-switch checked="{{ checked }}" bind:change="onChange" size="30rpx" />
  22. <view class="tips m-top-15">连续扫码</view>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="m-top-25">
  27. <van-cell title="签收记录" is-link bindtap="toRecode" />
  28. </view>