Helius
2021-11-19 66f8eeab8b21f81e310d3f7cbc2766bb8b2ec0d5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<view class="s-wrap " bindtap="chooseMasseuse" data-index="-1"  >
  
  <view class="content-wrap1">
    <view class="m-info1">
      <text class="iconfont iconyonghu"></text>
      <view class="title1">到店安排</view>
    </view>
    <view class="s-info1">
      <text class="">不选择技师</text>
    </view>
  </view>
</view>
 
<scroll-view scroll-y>
 
 
 
 
  <view class="service-wrap" wx:for="{{masseuse}}" bindtap="chooseMasseuse" data-index="{{index}}" >
    <view class="inner-wrap">
      <view class="content-wrap">
        <image mode="aspectFit" src="{{item.suPhoto}}"></image>
        <view class="m-info">
          <view class="title">{{item.suName}}</view>
        </view>
      </view>
    </view>
  </view>
 
 
 
</scroll-view>