store-form.wxml 1009 B

12345678910111213141516171819202122
  1. <view class="title">提交信息,我们为您定制专属方案</view>
  2. <view class="form">
  3. <view class="input-box">
  4. <view class="label required">姓名</view>
  5. <input class="input-border" bindinput="bindNameInput" maxlength='50' placeholder="姓名必须填写" />
  6. </view>
  7. <view class="input-box">
  8. <view class="label required">公司</view>
  9. <input class="input-border" bindinput="bindComInput" maxlength='50' placeholder="公司必须填写"/>
  10. </view>
  11. <view class="input-box">
  12. <view class="label required">联系方式</view>
  13. <input class="input-border" type='number' bindinput="bindPhoneInput" maxlength='20' placeholder="联系方式必须填写" />
  14. </view>
  15. <view class="input-box">
  16. <view class="label">职务</view>
  17. <input class="input-border" bindinput="bindPosInput" maxlength='50' maxlength='20' placeholder="非必填项" />
  18. </view>
  19. </view>
  20. <button class="submit" bind:tap='bindSubmit' >提交</button>