addcustomer.wxml 993 B

1234567891011121314151617181920
  1. <!--pages/customermanage/addcustomer.wxml-->
  2. <mp-toptips msg="{{error}}" type="error" show="{{error}}"></mp-toptips>
  3. <view class="container customer-add">
  4. <view class="h1">信息验证</view>
  5. <view class="cell">
  6. <input type="number" maxlength="10" data-field="customerCode" bindinput="formInputChange" placeholder="请输入户号"
  7. placeholder-class="tip" />
  8. </view>
  9. <view class="cell">
  10. <input bindinput="formInputChange" type="number" maxlength="11" data-field="mobile" class="input"
  11. placeholder="请输入手机号(开户预留手机号)" placeholder-class="tip" />
  12. </view>
  13. <view class="tips">
  14. <text class="q">如何查询户号?</text>
  15. <text class="a">方法一:在纸质缴费/催缴通知单上查找户号。</text>
  16. <text class="a">方法二:联系供水公司客服进行查询。</text>
  17. </view>
  18. <button class="btn-big" bindtap="submit">确定</button>
  19. <popup id="popup" bind:cancelEvent="cancelEvent" bind:confirmEvent="confirmEvent"></popup>
  20. </view>