You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<view>
|
|
|
|
<view class="flex_between head_top">
|
|
|
|
<input placeholder="请输入产品名称搜索" class="search_dv" focus="{{num == 1?true:false}}" bindinput="search"></input>
|
|
|
|
<image src="../../img/sousuo.png" class="search_img"></image>
|
|
|
|
<text bindtap="button_search">搜索</text>
|
|
|
|
</view>
|
|
|
|
<view class="box_ul" wx:if="{{box_arr.length > 0}}">
|
|
|
|
<view class="box" wx:for="{{box_arr}}" wx:key="{{index}}" bindtap="loan" data-id="{{item.id}}">
|
|
|
|
<view class="tag">
|
|
|
|
<view class="tag_li">
|
|
|
|
<view style="padding:20rpx;background-color:#fa3534;border-radius:0 15rpx 0 15rpx;">
|
|
|
|
<text>主推业务</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view>
|
|
|
|
<view>
|
|
|
|
<text class="f38 bold">{{item.title}}</text>
|
|
|
|
<text class="f38 ml20" style="color:#dd6161">费率{{item.interest_rate}}</text> </view>
|
|
|
|
<view class="f24 mtb30" style="color:#9C9C9C">{{item.tip}}</view>
|
|
|
|
<view class="flex_between icon_ul">
|
|
|
|
<view class="flex_between box_x flex_items" wx:for="{{item.tag}}" wx:for-item="items" wx:key="{{index}}">
|
|
|
|
<!-- <image src="../../img/xing.png" class="box_img"></image>-->
|
|
|
|
<view>{{items}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="detail">查看详情</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view wx:if="{{box_arr.length == 0 && flag}}" class="null">暂无数据</view>
|
|
|
|
<view class="null" wx:if="{{box_arr.length == 0 && !flag}}">加载中...</view>
|
|
|
|
</view>
|