60 lines
2.1 KiB
Plaintext
60 lines
2.1 KiB
Plaintext
|
|
<view class="area1">
|
|
<image style="height: 336rpx;width: 100%;" src="../image/home_bj.png"></image>
|
|
</view>
|
|
<view style="margin-top: -200rpx;">
|
|
<!-- <image style="width: 25rpx;height: 50rpx;" src="../image/right.png"></image> -->
|
|
<view class="" style="display: flex; flex-direction:row;justify-content: center;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: 20rpx;height: 35rpx;" src="../image/left.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="{{itemView.length}}">
|
|
|
|
<view wx:for="{{itemView}}" 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="../image/abc.png"></image>
|
|
</view>
|
|
<view class="content">
|
|
|
|
<view style="display: flex; flex-direction:row;align-items : flex-end;">
|
|
<view class="title1">{{item.title}}</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.price}}元</view>
|
|
</view>
|
|
<view class="tejia">
|
|
<view class="Price2">{{item.describe}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|