You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
752B

  1. <!--pages/home/home.wxml-->
  2. <view class="container">
  3. <image class="bg" src="../../static/home/bg.jpg" mode="aspectFill"></image>
  4. <image class="logo" src="../../static/home/logo.png"></image>
  5. <view class="storeName">欢迎登录{{storeName}}</view>
  6. <view class="fromBox">
  7. <image class="arrow" src="../../static/home/arrow.png"></image>
  8. <form bindsubmit="check">
  9. <input name="phone" maxlength="11" value="{{phone}}" placeholder="手机号核销" placeholder-class="inputPlaceholder" style="margin-top:132rpx;" type="number" />
  10. <button class="btn query {{isQuerying?'select':''}}" form-type="submit">查询</button>
  11. <button class="btn scanning" bindtap="scanCode">点击扫描核销</button>
  12. </form>
  13. </view>
  14. </view>