infoCollect.wxml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <view class="info-collect-page">
  2. <!-- 产品信息 -->
  3. <view class="product-info">
  4. <view class="product-left">
  5. <!-- <image src="{{infoGoods.picUrl}}" mode="aspectFill"></image> {{infoGoods.name}} {{infoGoods.brief}}-->
  6. <image src="https://jzmall.lifejingzhi.com/file/jzmall/weixin/new/icon-jpjzs.png?2" mode="aspectFill"></image>
  7. </view>
  8. <view class="product-right">
  9. <!-- <view>鲸品家政师</view> -->
  10. <view class="brief sub-color">保姆·钟点工·月嫂·育儿嫂·其他</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. <van-field model:value="{{ customerTel }}" type="digit" label="手 机"
  20. placeholder-style="color:#85868A;font-size:24rpx; font-family: PingFangSC-Light, helvetica, 'Heiti SC';font-weight:normal"
  21. placeholder="请输入手机号" maxlength="11" />
  22. <van-field label="住 址" placeholder="请输入服务地址" model:value="{{address}}"/>
  23. <div style="float: right;color: red;font-size: 12px;">如:XX市XX区XX路103室</div>
  24. <van-cell title="服务类型" is-link value="{{serviceModelText}}" bind:click="showServicePicker" />
  25. <!-- <van-cell title="期望服务时间" is-link value="{{startServiceTime}}" bind:click="showTimePicker" /> -->
  26. <van-field label="推荐人" type="digit" model:value="{{recommender}}" placeholder='请填写推荐人编号' maxlength="6" bind:change='recommendChange' />
  27. <div style="float: right;color: red;font-size: 12px;margin-right: 20px;" wx:if="{{recommenderName}}">推荐人姓名:{{recommenderName}}</div>
  28. </van-cell-group>
  29. </view>
  30. <view class="collect-tip jz-color">
  31. * 提交需求后,我们专属管家将第一时间与您联系
  32. </view>
  33. <!-- 提交按钮 -->
  34. <view class="bottom-fixed-btn-wrapper">
  35. <van-button type="info" 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"
  42. bind:confirm="onTimeConfirm" min-date="{{ minDate }}" bind:formatter="{{ formatterDate }}" />
  43. </van-popup>
  44. </view>