recommand-pop.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <van-action-sheet show="{{ show }}" bind:click-overlay="close">
  2. <view class="card">
  3. <view class="top">
  4. <edu-mark text='填写信息'/>
  5. <view class='des'>以便于联系您进行培训</view>
  6. </view>
  7. <view class="middle">
  8. <view class='key'>姓名
  9. <view class="star">*</view>
  10. </view>
  11. <van-field
  12. custom-style='border: 1rpx solid #CED8EA;border-radius: 8rpx;font-size: 30rpx;font-weight: 400;color: #666666;height:66rpx;margin-top:10rpx'
  13. value="{{ name }}"
  14. center
  15. placeholder="请输入姓名"
  16. border="{{ false }}"
  17. bind:change="onChange"
  18. data-field="name"
  19. />
  20. <view class='key'>联系方式
  21. <view class="star">*</view>
  22. </view>
  23. <van-field
  24. type="number"
  25. custom-style='border: 1rpx solid #CED8EA;border-radius: 8rpx;font-size: 30rpx;font-weight: 400;color: #666666;height:66rpx;margin-top:10rpx'
  26. value="{{ phone }}"
  27. center
  28. placeholder="请输入手机号"
  29. disabled
  30. border="{{ false }}"
  31. bind:change="onChange"
  32. data-field="phone"
  33. />
  34. </view>
  35. <edu-button title="提 交" bind:click="submit" button-style="btn" size="small"></edu-button>
  36. </view>
  37. </van-action-sheet>