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

28 lines
1.3 KiB

<!--pages/topics/attract/index.wxml-->
<view class="container">
<!--海洋人才赋能中心-->
<view class="main-container-box">
<view class="title-box">
<image src="/images/topic/ocean.png" class="icon-ocean"></image>
<text class="title">海洋人才赋能中心</text>
<view class="more" bindtap="goOceanMore">更多></view>
</view>
<block wx:for="{{oceanList}}" wx:key="index">
<e-cell index="{{index}}" readed="{{item.readed}}" image="{{item.image}}" cId="{{item.id}}" title="{{item.title}}" time="{{item.time}}" showTop="{{item.showTop}}" type="{{item.type}}" bind:clickListItem="clickListItem" />
</block>
<e-empty loading="{{loading}}" />
</view>
<view class="divider"></view>
<!--折腾空间-->
<view class="main-container-box">
<view class="title-box">
<image src="/images/topic/space.png" class="icon-ocean"></image>
<text class="title">折腾空间</text>
<view class="more" bindtap="goSpaceMore">更多></view>
</view>
<block wx:for="{{spaceList}}" wx:key="index">
<e-cell index="{{index}}" readed="{{item.readed}}" image="{{item.image}}" cId="{{item.id}}" title="{{item.title}}" time="{{item.time}}" showTop="{{item.showTop}}" type="{{item.type}}" bind:clickListItem="clickListItemSpace" />
</block>
<e-empty loading="{{loading}}" />
</view>
</view>