123456789101112131415161718192021222324252627282930313233343536 |
- <!-- <view style="width:100%;height:100rpx;"></view> -->
- <!-- <scroll-view class="bg-scroll-view" style="height:{{adapter.bgHeight}}px;" scroll-y> -->
- <view style="width:100%;height:1200rpx;background-color:#F5F5F5;"></view>
- <image src="../../../icon/home/home_banner.png" class="banner" bindtap="gobannerH5"></image>
- <!-- <view animation="{{animationInfo}}" class="tips">
- <image src="../../icon/home/home_tips.png"></image>
- </view> -->
- <view class="purchase-bg">
- <view s-for="ui.purchase">
- <view>
- <view style="width: {{index == 0 ? 72 : 40}}rpx;"></view>
- <image src="../../../icon/home/home_t.png" />
- <text class="{{index == 0 ? 'first-title' : 'second-title'}}">{{item.title}}</text>
- <image src="../../../icon/home/home_t.png" />
- <view style="width: {{index == 0 ? 72 : 40}}rpx;"></view>
- </view>
- <view s-for="item.item" class="purchase-item" bindtap="strategyAction" id="{{item.id}}">
- <image src="../../../icon/home/{{item.i}}.png" />
- <view>
- <text>{{item.t}}</text>
- <text>{{item.c}}</text>
- </view>
- <image src="../../../icon/public/arrow_right.png" />
- </view>
- <!-- <view class="{{index == 0 ? 'first-button' : 'second-button'}}" onTap="purchaseAction" id="{{index}}">{{item.button}}</view> -->
- </view>
- </view>
- <image src="../../../icon/home/home_footer.png" mode="aspectFit"/>
- <view class="button-placeholder{{suffix}}"></view>
- <view class="purchase-button-bg{{suffix}}" bindtap="goToPurchase">
- <view class="purchase-button" >缴社保公积金</view>
- </view>
|