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.
30 lines
1.1 KiB
30 lines
1.1 KiB
<!--pages/topics/interactive/index.wxml-->
|
|
<block wx:if="{{listShow}}">
|
|
<swiper class="nav">
|
|
<swiper-item>
|
|
<view class="menu-list">
|
|
<block wx:for="{{typeList}}" wx:for-index="index">
|
|
<view class="item-menu" bindtap="goDetail" data-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:21px"></text>
|
|
</view>
|
|
<view class="title">{{item.typeName}}</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</swiper-item>
|
|
</swiper>
|
|
<view class="demand-box" bindtap="goReportDemand">
|
|
<view class="title">报需求</view>
|
|
<image src="/images/topic/edit.png" class="icon-edit"></image>
|
|
</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view style="height:{{height}}px"></view>
|
|
</block>
|
|
<mp-dialog title="用户协议" show="{{dialogShow}}" bindbuttontap="tapDialogButton" buttons="{{buttons}}"
|
|
mask-closable="{{false}}">
|
|
<view style="width:100%;text-align:left;height:600rpx">
|
|
<rich-text nodes="{{nodes}}"></rich-text>
|
|
</view>
|
|
</mp-dialog>
|