fix
Helius
2021-02-20 5b0ffe6aed3c349f8510becda5543dde97cd7cde
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!-- 
  <block wx:for="{{cates}}" wx:key >
    <view class="cate-item active"  wx:if="{{index==cateIndex}}" >{{item.attrName}}</view>
    <view class="cate-item " wx:if="{{index!=cateIndex}}" bindtap="chooseCate" data-index="{{index}}" >{{item.attrName}}</view>
  </block> 
-->
 
 
<scroll-view scroll-y  >
  <block >
  <view class="cate-item " >已购套餐/项目</view>
</block> 
<view wx:for="{{composeProj}}"    wx:for-item="tc" >
  <view class="service-wrap"  wx:for="{{tc.proj}}"  wx:key bindtap="chooseService" 
  data-pro="{{item}}" >
    <view class="inner-wrap">
      <view class="content-wrap" >
        <view  class="m-info" >
          <view class="title">{{item.name}}</view>
        </view>
        <view class="s-info">
          <text class="s-time">约{{item.timeLength}}分钟</text>
          <text class="iconfont iconright"></text>
        </view>
      </view>
    </view>
</view>
</view>
<view class="service-wrap"  wx:for="{{proj}}"  wx:key bindtap="chooseService" 
  data-pro="{{item}}" >
    <view class="inner-wrap">
      <view class="content-wrap" >
        <view  class="m-info" >
          <view class="title">{{item.name}}</view>
        </view>
        <view class="s-info">
          <text class="s-time">约{{item.timeLength}}分钟</text>
          <text class="iconfont iconright"></text>
        </view>
      </view>
    </view>
</view>
 
 
 
 
</scroll-view>