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.
24 lines
841 B
24 lines
841 B
<!--pages/topics/interactive/index.wxml-->
|
|
<swiper class="nav" >
|
|
<swiper-item>
|
|
<van-grid column-num="4" border="{{false}}">
|
|
<block wx:for="{{typeList}}" wx:for-index="index">
|
|
<van-grid-item use-slot url="/pages/resource/index?typeCode={{item.typeCode}}">
|
|
<view class="circular" style="background-color:{{icon[index].bg_color}}">
|
|
<text class="fa fa-{{icon[index].pic}} fa-lg" style="color:{{icon[index].color}};font-size:28px"></text>
|
|
</view>
|
|
<view>{{item.typeName}}</view>
|
|
</van-grid-item>
|
|
</block>
|
|
</van-grid>
|
|
</swiper-item>
|
|
<!-- <swiper-item>
|
|
<van-grid column-num="4">
|
|
<van-grid-item icon="photo-o" text="文字" wx:for="{{ 6 }}" />
|
|
</van-grid>
|
|
</swiper-item> -->
|
|
|
|
</swiper>
|
|
|
|
<resource style="width:100%" list="{{list}}"/>
|
|
|
|
|