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