12345678910111213141516171819202122232425262728 |
- <view style="width:100%;height:300rpx;background-color:#F5F5F5;" bindtap="gobannerH5">
- <image src="../../../icon/home/home_banner.png" class="banner"></image>
- </view>
- <view class="purchase-bg">
- <view s-for="ui.purchase">
- <view bindtap="strategyAction" id="{{item.id}}">
- <text>{{item.title}}</text>
- <image src="../../../icon/home/home_a_m.png"></image>
- </view>
- <view s-for="item.item" class="purchase-item" bindtap="strategyAction" id="{{item.id}}">
- <image src="../../../icon/home/{{item.i}}.png"></image>
- <view>
- <text>{{item.t}}</text>
- <text>{{item.c}}</text>
- </view>
- <image src="../../../icon/public/arrow_right.png"></image>
- </view>
- </view>
- </view>
- <view s-for="ui.person" class="person" bindtap="strategyAction" id="{{item.id}}">
- <image src="../../../icon/home/qiye.png"></image>
- <view>
- <text>{{item.t}}</text>
- <text>{{item.c}}</text>
- </view>
- <image src="../../../icon/home/home_a_m.png"></image>
- </view>
- <image src="../../../icon/home/home_footer.png" class="footerbg"></image>
|