12345678910111213141516171819202122232425262728293031323334353637383940 |
- <van-action-sheet show="{{ show }}" bind:click-overlay="close">
- <view class="card">
- <view class="top">
- <edu-mark text='填写信息'/>
- <view class='des'>以便于联系您进行培训</view>
- </view>
- <view class="middle">
- <view class='key'>姓名
- <view class="star">*</view>
- </view>
- <van-field
- custom-style='border: 1rpx solid #CED8EA;border-radius: 8rpx;font-size: 30rpx;font-weight: 400;color: #666666;height:66rpx;margin-top:10rpx'
- value="{{ name }}"
- center
- placeholder="请输入姓名"
- border="{{ false }}"
- bind:change="onChange"
- data-field="name"
- />
- <view class='key'>联系方式
- <view class="star">*</view>
- </view>
- <van-field
- type="number"
- custom-style='border: 1rpx solid #CED8EA;border-radius: 8rpx;font-size: 30rpx;font-weight: 400;color: #666666;height:66rpx;margin-top:10rpx'
- value="{{ phone }}"
- center
- placeholder="请输入手机号"
- disabled
- border="{{ false }}"
- bind:change="onChange"
- data-field="phone"
- />
- </view>
- <edu-button title="提 交" bind:click="submit" button-style="btn" size="small"></edu-button>
- </view>
- </van-action-sheet>
|