project.wxml 638 B

1234567891011121314151617
  1. <!--component/project/project.wxml-->
  2. <view class="all">
  3. <view class="project" wx:for="{{projectItem}}">
  4. <image class="project-img" src="{{item.cover}}"></image>
  5. <view class="project-info">
  6. <text class="project-title">{{item.name}}</text>
  7. <text class="project-count">已售{{item.current_investor_count}}件</text>
  8. <view class="project-price">
  9. <currency symbol="¥" value="200" ></currency>
  10. </view>
  11. <text class="project-point">(或{{item.person_min_crowd_funding / 1000}}代金券)</text>
  12. </view>
  13. <view class="project-out"></view>
  14. </view>
  15. <view class="clean"></view>
  16. </view>