signup.wxml 982 B

1234567891011121314151617181920
  1. <view wx:if="{{dialog}}" class="viewMask" bindtap="hideMaskFunc">
  2. <view class="viewBlock" catchtap="dothis">
  3. <view class="viewTitle">立即报名</view>
  4. <view class="viewContent">
  5. <view class="viewInput">
  6. <view>姓名</view>
  7. <input type="text" value="{{fName}}" bindinput="getinputName" placeholder="请输入姓名" />
  8. </view>
  9. <view class="viewInput">
  10. <view><text>*</text></view>
  11. <input type="number" value="{{fPhone}}" bindinput="getinputPhone" placeholder="请输入手机号" />
  12. </view>
  13. <view class="viewInput">
  14. <view>小区</view>
  15. <input type="text" value="{{fHouse}}" bindinput="getinputArea" placeholder="请输入小区" />
  16. </view>
  17. </view>
  18. <button class="viewButton" loading="{{uloading}}" disabled="{{uloading}}" bindtap="submitFunc">确认</button>
  19. </view>
  20. </view>