tupianbox.wxml
854 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!-- <picker bindchange="bindRegionChange" value="{{reginindex}}" range="{{region}}" class="commentlsit_date allhospital" range-key='area_name'>
<view class="picboxhead">
<view class="picboxheadleft">地区:</view>
<view class="xuantype">
<view class="picboxquan">{{regionname}}</view>
<view class="picxian"></view>
<view class="searchsanjiao">
<image src='/img/sanjiaodown.png'></image>
</view>
</view>
</view>
</picker> -->
<view class="nodata" wx:if="{{piclist.length==0}}">暂无数据</view>
<view class="picbox" wx:else>
<view class="picboxitem" wx:for="{{piclist}}" wx:key="" bindtap="picdetail" data-id="{{item.id}}">
<view class="picboxitemtop">
<image src="{{item.thumbnail}}"></image>
</view>
<view class="picboxname">{{item.title}}</view>
</view>
</view>