strategyDetail.wxml 378 B

12345678910111213
  1. <!--pages/strategyDetail/strategyDetail.wxml-->
  2. <view>
  3. <view class="strategyTitle">
  4. <text>{{title}}</text>
  5. </view>
  6. <view class="strategyDescribe">
  7. <text>{{strategy}}</text>
  8. </view>
  9. <view wx:for="{{iconList}}" wx:key="key">
  10. <image class="strategyImg" src="{{item.icon}}" mode="widthFix" bindtap="toPreviewImage"/>
  11. </view>
  12. </view>