123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <view class="info-collect-page">
- <!-- 产品信息 -->
- <view class="product-info">
- <view class="product-left">
- <!-- <image src="{{infoGoods.picUrl}}" mode="aspectFill"></image> {{infoGoods.name}} {{infoGoods.brief}}-->
- <image src="https://jzmall.lifejingzhi.com/file/jzmall/weixin/new/icon-jpjzs.png?2" mode="aspectFill"></image>
- </view>
- <view class="product-right">
- <!-- <view>鲸品家政师</view> -->
- <view class="brief sub-color">保姆·钟点工·月嫂·育儿嫂·其他</view>
- </view>
- </view>
- <!-- 信息收集 -->
- <view class="collect-detail">
- <van-cell-group>
- <van-field model:value="{{ customerName }}" label="客户名称"
- placeholder-style="color:#85868A;font-size:24rpx;font-family: PingFangSC-Light, helvetica, 'Heiti SC';font-weight:normal"
- placeholder="请输入客户名称" />
- <van-field model:value="{{ customerTel }}" type="digit" label="手 机"
- placeholder-style="color:#85868A;font-size:24rpx; font-family: PingFangSC-Light, helvetica, 'Heiti SC';font-weight:normal"
- placeholder="请输入手机号" maxlength="11" />
- <van-field label="住 址" placeholder="请输入服务地址" model:value="{{address}}"/>
- <div style="float: right;color: red;font-size: 12px;">如:XX市XX区XX路103室</div>
- <van-cell title="服务类型" is-link value="{{serviceModelText}}" bind:click="showServicePicker" />
- <!-- <van-cell title="期望服务时间" is-link value="{{startServiceTime}}" bind:click="showTimePicker" /> -->
- <van-field label="推荐人" type="digit" model:value="{{recommender}}" placeholder='请填写推荐人编号' maxlength="6" bind:change='recommendChange' />
- <div style="float: right;color: red;font-size: 12px;margin-right: 20px;" wx:if="{{recommenderName}}">推荐人姓名:{{recommenderName}}</div>
- </van-cell-group>
- </view>
- <view class="collect-tip jz-color">
- * 提交需求后,我们专属管家将第一时间与您联系
- </view>
- <!-- 提交按钮 -->
- <view class="bottom-fixed-btn-wrapper">
- <van-button type="info" block round bindtap="confirmSubmit">确认</van-button>
- </view>
- <van-popup show="{{typePickerShow}}" position="bottom">
- <van-picker show-toolbar columns="{{typeColumns}}" bind:cancel="onTypeCancel" bind:confirm="onTypeConfirm" />
- </van-popup>
- <van-popup show="{{timePickerShow}}" position="bottom">
- <van-datetime-picker type="date" value="{{ currentDate }}" bind:cancel="onTimeCancel"
- bind:confirm="onTimeConfirm" min-date="{{ minDate }}" bind:formatter="{{ formatterDate }}" />
- </van-popup>
- </view>
|