市北人才赋能平台 --小程序端
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.
 

19 lines
815 B

<!--pages/billboards/park/index.wxml-->
<view class="container">
<block wx:for="{{list}}" wx:key="category-list-{{index}}">
<view class="categroy_card_wrapper">
<mp-cell bindtap="onTapMoreItem" icon="/images/common/line.png" data-code="{{item.code}}"
data-name="{{item.name}}"
link="true"
ext-class="cell-item">
<text slot="title" data-code="{{item.code}}">{{item.name}}</text>
</mp-cell>
<view class="card_list">
<block wx:for="{{item.datas}}" wx:key="park-list-{{index}}">
<e-card cId="{{item.id}}" title="{{item.title}}" image="{{item.titlePic}}" tag-class="e_card" bind:clickCardItem="clickCardItem" />
</block>
</view>
</view>
</block>
<view wx:if="{{list.length <= 0}}" class="page_empty">暂无数据</view>
</view>