msBank.wxml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <view class="info-collect-page">
  2. <!-- 产品信息 -->
  3. <view class="product-info">
  4. <view class="product-left">
  5. <image src="https://7a68-zhaijieshi-3guecm78383ca692-1307626841.tcb.qcloud.la/activity/ms-banner.png"
  6. mode="widthFix "></image>
  7. </view>
  8. <view class="product-right">
  9. <view class="title">【民生客户专享】高端保姆1V1匹配服务</view>
  10. <view class="brief">服务类型:住家保姆、白班保姆、育儿嫂、月嫂、钟点工</view>
  11. </view>
  12. </view>
  13. <!-- 信息收集 -->
  14. <view class="collect-detail">
  15. <van-cell-group>
  16. <van-field model:value="{{ customerName }}" label="客户名称"
  17. placeholder-style="color:#85868A;font-size:24rpx;font-family: PingFangSC-Light, helvetica, 'Heiti SC';font-weight:normal"
  18. placeholder="请输入客户名称" />
  19. <view style="display: flex;justify-content: space-between;">
  20. <van-field disabled model:value="{{ customerTel }}" label="手 机"
  21. placeholder-style="color:#85868A;font-size:24rpx; font-family: PingFangSC-Light, helvetica, 'Heiti SC';font-weight:normal"
  22. placeholder="请输入手机号" maxlength="11" />
  23. <van-button type="text" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">授权手机号</van-button>
  24. </view>
  25. <van-field label="住 址" model:value="{{address}}" placeholder="请输入详细住址" maxlength="40" />
  26. <van-cell title="服务类型" is-link value="{{serviceModelText}}" bind:click="showServicePicker" />
  27. <!-- <van-cell title="期望服务时间" is-link value="{{startServiceTime}}" bind:click="showTimePicker" /> -->
  28. </van-cell-group>
  29. </view>
  30. <view class="collect-tip jz-color">
  31. *9:30-19:30 3小时内回复;以外时间次日10:30前回复
  32. </view>
  33. <!-- 提交按钮 -->
  34. <view class="bottom-fixed-btn-wrapper" style="bottom:56rpx">
  35. <van-button type="info" wx:if="{{showSubmitBtn}}" block round bindtap="confirmSubmit">确认</van-button>
  36. </view>
  37. <van-popup show="{{typePickerShow}}" position="bottom">
  38. <van-picker show-toolbar columns="{{typeColumns}}" bind:cancel="onTypeCancel" bind:confirm="onTypeConfirm" />
  39. </van-popup>
  40. <van-popup show="{{timePickerShow}}" position="bottom">
  41. <van-datetime-picker type="date" value="{{ currentDate }}" bind:cancel="onTimeCancel" bind:confirm="onTimeConfirm"
  42. min-date="{{ minDate }}" bind:formatter="{{ formatterDate }}" />
  43. </van-popup>
  44. </view>
  45. <!-- 展示蒙层 显示赠送会员卡 -->
  46. <view class="poster" wx:if="{{myqr_show}}">
  47. <view>
  48. <image show-menu-by-longpress="{{true}}" src="https://7a68-zhaijieshi-3guecm78383ca692-1307626841.tcb.qcloud.la/activity/ms-pup.png" mode="widthFix">
  49. </image>
  50. <view style="text-align:center;margin-top: 20rpx;">
  51. <image class="closeImg" bindtap="hidePoster"
  52. src="https://7a68-zhaijieshi-3guecm78383ca692-1307626841.tcb.qcloud.la/activity/ms-close.png"></image>
  53. </view>
  54. </view>
  55. </view>