| 1234567891011121314151617 |
- <!--component/project/project.wxml-->
- <view class="all">
- <view class="project" wx:for="{{projectItem}}">
- <image class="project-img" src="{{item.cover}}"></image>
- <view class="project-info">
- <text class="project-title">{{item.name}}</text>
- <text class="project-count">已售{{item.current_investor_count}}件</text>
- <view class="project-price">
- <currency symbol="¥" value="200" ></currency>
- </view>
- <text class="project-point">(或{{item.person_min_crowd_funding / 1000}}代金券)</text>
- </view>
- <view class="project-out"></view>
- </view>
- <view class="clean"></view>
- </view>
|