1234567891011121314151617181920 |
- <view wx:if="{{dialog}}" class="viewMask" bindtap="hideMaskFunc">
- <view class="viewBlock" catchtap="dothis">
- <view class="viewTitle">立即报名</view>
- <view class="viewContent">
- <view class="viewInput">
- <view>姓名</view>
- <input type="text" value="{{fName}}" bindinput="getinputName" placeholder="请输入姓名" />
- </view>
- <view class="viewInput">
- <view><text>*</text></view>
- <input type="number" value="{{fPhone}}" bindinput="getinputPhone" placeholder="请输入手机号" />
- </view>
- <view class="viewInput">
- <view>小区</view>
- <input type="text" value="{{fHouse}}" bindinput="getinputArea" placeholder="请输入小区" />
- </view>
- </view>
- <button class="viewButton" loading="{{uloading}}" disabled="{{uloading}}" bindtap="submitFunc">确认</button>
- </view>
- </view>
|