<view class='my-course'>
  <block wx:for="{{ bookList }}" wx:key="{{ index }}">
    <view class="book-item">
      <view class='book-box' bindtap='toCourse' data-productId='{{ item.productId }}' data-productTitle='{{ item.productTitle }}'>
        <image class="item-img" src="{{ item.iconImg }}"></image>
      </view>
      <view class='item-title'>{{ item.groupTitle }}</view>
    </view>    
  </block>             
</view>