Files
coupon/pages/peihu/peihu.wxml

50 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-03-12 21:05:54 +08:00
<view class="area1">
<image style="height: 336rpx;width: 100%;" src="../image/home_bj.png"></image>
</view>
<view style="display: flex; flex-direction:row;align-items : flex-end;margin-top: -200rpx; justify-content: center;">
<!-- <image style="width: 25rpx;height: 50rpx;" src="../image/right.png"></image> -->
<view class="" style="font-size: 34rpx;color: #ffffff;">{{"服务列表"}}</view>
</view>
<view style="display: flex; flex-direction:row;align-items : flex-end; height: 40rpx;margin-top: -40rpx;margin-left: 20rpx;"bindtap="back">
<image style="width: 25rpx;height: 50rpx;" src="../image/right.png"></image>
</view>
<view class="substance" style="margin-top: 186rpx;">
<van-dropdown-menu active-color="#1989fa">
<van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" />
</van-dropdown-menu>
</view>
<!--index.wxml-->
<view class="contar">
<view class="tejiashangpin">
<view class="Discount" wx:if="{{special_offer.length}}">
<view wx:for="{{special_offer}}" wx:key="{{index}}" wx:for-item="item" class="flex-item bc_green" style='display:flex;background-color: white;margin-right: 10rpx;margin-bottom: 24rpx;'>
<view class="Group" bindtap="details" data-item="{{item}}">
<view class="Group-image">
<image src="{{url+item.avatar}}"></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">{{item.introduce}}</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>