1234567891011121314151617181920 |
- <!--pages/recommend/recommend.wxml-->
- <view class="recommendResult">
- <view class="recommendEnroll">
- <text class="recommendEnrollTitle">注册数</text>
- <text class="recommendNum">100</text>
- </view>
- <view class="recommendEnroll">
- <text class="recommendEnrollTitle">成交数</text>
- <text class="recommendNum">10</text>
- </view>
- </view>
- <view class="withdraw" bindtap="toRecommendList">
- <text class="withdrawTitle">可提现金额</text>
- <text class="withdrawNum">1000</text>
- <image class="rightArrow" src="../../images/right.png"></image>
- </view>
- <view class="toRecommend">
- <text class="toRecommendTitle">开始分享</text>
- </view>
|