30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
<!--packageE/others/case_library/mycomponents/subject_mobile.wxml-->
|
|
<view class="idcase-mobile">
|
|
<view class="list" wx:for="{{list}}" wx:key="index" catchtap="gotoDetail" data-id="{{item.id}}">
|
|
<view class="img">
|
|
<image src="{{item.special_banner_src}}" alt="" />
|
|
</view>
|
|
<view class="right">
|
|
<view class="one">
|
|
{{item.special_name}}
|
|
</view>
|
|
<view class="two">
|
|
<view class="img-list">
|
|
<view class="img1" wx:for="{{item.case_data}}" wx:key="index1" wx:for-item="item1">
|
|
<image src="{{item1.img_src}}" alt="" />
|
|
</view>
|
|
</view>
|
|
|
|
<view class="total">共{{item.case_data.length}}个</view>
|
|
</view>
|
|
<view class="three">
|
|
<view class="time">{{item.created_at}}</view>
|
|
<view class="look">
|
|
<icon class="iconfont icon-ht_operation_perview"></icon>
|
|
<text class="num">{{item.read_num}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|