22 lines
928 B
Plaintext
22 lines
928 B
Plaintext
<view class="container">
|
|
|
|
<view class="mt30 pl30 pr30 pb50">
|
|
|
|
<block wx:for='{{list}}' wx:key='index'>
|
|
<view class="inner40 relative ulib-r10 box-shadow-000-10-10 mb30 overflowhidden">
|
|
<view class="font-40" wx:if="{{item.title}}">{{item.title}}</view>
|
|
<view class="mt10 pb10">
|
|
<image class='wp100' src='{{item.car_cor_img}}' mode='widthFix'></image>
|
|
</view>
|
|
<block wx:for="{{item.other_data}}" wx:for-index='key' wx:for-item='it' wx:key='i'>
|
|
<view class="mt25 fn-clear font-28">
|
|
<view class="fn-fl color-333">{{it.title}}</view>
|
|
<view class="fn-fr wp60 text-nowrap text-right color-666" style="{{it.color?'color:'+it.color:''}}">{{it.value}}</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</block>
|
|
<lcb-listmore isLoading='{{loading}}' isEnd='{{list.length>5&&end}}' isNoData='{{noData}}'></lcb-listmore>
|
|
</view>
|
|
|
|
</view> |