| 12345678910111213141516171819202122 |
- <view class="title">提交信息,我们为您定制专属方案</view>
- <view class="form">
- <view class="input-box">
- <view class="label required">姓名</view>
- <input class="input-border" bindinput="bindNameInput" maxlength='50' placeholder="姓名必须填写" />
- </view>
- <view class="input-box">
- <view class="label required">公司</view>
- <input class="input-border" bindinput="bindComInput" maxlength='50' placeholder="公司必须填写"/>
- </view>
- <view class="input-box">
- <view class="label required">联系方式</view>
- <input class="input-border" type='number' bindinput="bindPhoneInput" maxlength='20' placeholder="联系方式必须填写" />
- </view>
- <view class="input-box">
- <view class="label">职务</view>
- <input class="input-border" bindinput="bindPosInput" maxlength='50' maxlength='20' placeholder="非必填项" />
- </view>
- </view>
- <button class="submit" bind:tap='bindSubmit' >提交</button>
|