91 lines
3.7 KiB
Plaintext
91 lines
3.7 KiB
Plaintext
<!--pages/goddess/goddess.wxml-->
|
||
<van-nav-bar title="下单" left-text="" right-text="" left-arrow bind:click-left="onClickLeft" bind:click-right="onClickRight" style=" position: fixed;left: 0;top: 0;width: 100%;z-index: 2;" />
|
||
|
||
<view style="margin-top: {{height+12}}px;">
|
||
<view class="card_con" wx:key="key">
|
||
<view style='display:flex;background-color: white;'>
|
||
<view class="Group">
|
||
<view class="Group-image">
|
||
<image src="{{item.facePic}}"></image>
|
||
</view>
|
||
<view class="content">
|
||
<view style="display: flex; flex-direction:row;align-items : flex-end;">
|
||
<view class="title1">{{item.nickName}}</view>
|
||
<view class="title2">({{"陪护员"}})</view>
|
||
<view wx:if="{{item.sex==1}}" class="title3">{{"男"}}</view>
|
||
<view wx:if="{{item.sex==0}}" class="title3">{{"女"}}</view>
|
||
<view class="title4">{{item.experience}}经验</view>
|
||
</view>
|
||
<view class="tejia">
|
||
<view class="Price2">{{"简介:从事陪诊服务2年,服务细心,热情周到,有耐心、责任心强。"}}</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view style="height: 1rpx;background: #ECECEC;"></view>
|
||
|
||
<view style="display: flex; flex-direction:row;margin: 20rpx;">
|
||
<view style="color: #666666;font-size: 30rpx;font-family: PingFang SC;font-weight: 400;width:532rpx;">
|
||
电话:{{item.phonenumber}}</view>
|
||
<image style="width:40rpx;height:40rpx;" src="/pages/image/phone.png" bindtap="callphone"></image>
|
||
</view>
|
||
<view style="color: #666666;font-size: 30rpx;font-family: PingFang SC;font-weight: 400;width:532rpx;margin: 20rpx;margin-top: 0rpx;">
|
||
地址:{{item.address}}</view>
|
||
</view>
|
||
|
||
<view class="card_cont" wx:key="key" style="margin-top: 24rpx;">
|
||
<view class="title-left">
|
||
{{"陪护时间选择"}}
|
||
</view>
|
||
<view style="height: 1rpx;background: #ECECEC;"></view>
|
||
|
||
<view class="row-wrap">
|
||
<view class="label" style="margin-left: 33rpx;">开始日期</view>
|
||
<view class="label-right">
|
||
<picker mode="date" value="{{date}}" start="2022-01-01" end="2025-12-01" bindchange="bindDateChange">
|
||
<view class="picker">
|
||
{{seckill_start}}
|
||
</view>
|
||
</picker>
|
||
</view>
|
||
</view>
|
||
<view class="row-wrap">
|
||
<view class="label" style="margin-left: 33rpx;">结束日期</view>
|
||
<view class="label-right">
|
||
<picker mode="date" value="{{date}}" start="2022-01-01" end="2025-12-01" bindchange="bindDateChangetwo">
|
||
<view class="picker">
|
||
{{seckill_endx}}
|
||
</view>
|
||
</picker>
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
|
||
<view class="card_cont" wx:key="key" style="margin-top: 24rpx;">
|
||
<view class="title-left">
|
||
{{"备注"}}
|
||
</view>
|
||
<view style="height: 1rpx;background: #ECECEC;"></view>
|
||
|
||
<view class="peisong-way" style="margin-bottom: 30rpx;">
|
||
<textarea style="font-size: 26rpx;padding-left: 19rpx;padding-top: 19rpx;" model:value="{{beizhu}}" bindinput="input" placeholder="请详细描述您的需求,简单讲述您的病情或症状,方便陪护人员为您服务。" />
|
||
|
||
</view>
|
||
</view>
|
||
|
||
<view style="font-size: 26rpx;color: #999999;margin-top:40rpx;margin-left: 40rpx;margin-right: 20rpx;">
|
||
计费说明:一小时50元,服务时间(上午8:30-12:30下午14:00-18:00)
|
||
</view>
|
||
|
||
|
||
|
||
<view class="payment">
|
||
<view style="line-height: 56rpx;color:#333;">
|
||
<text>预计金额:</text>
|
||
<text style="font-size:40rpx;color:#FF8F1F;margin-left:20rpx;">{{paymoney}}</text>
|
||
<text>元</text>
|
||
</view>
|
||
<view class="immediately" bindtap="confirm_pay">提交订单</view>
|
||
</view>
|
||
</view> |