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.
25 lines
888 B
25 lines
888 B
<!--pages/billboards/policy/policy-list/index.wxml-->
|
|
<view class="container">
|
|
<view class="page_hd">
|
|
<view class="page_segment">
|
|
<e-segment
|
|
headerTitles="{{navs}}"
|
|
defaultSelectIndex="{{navSelectIndex}}"
|
|
bind:tapSegment="tapSegemnt"
|
|
/>
|
|
</view>
|
|
<view class="page_btn_all" bindtap="onShowAllButton">
|
|
<image class="arrow_btn" src="/images/billboard/arrow-down.png"></image>
|
|
</view>
|
|
</view>
|
|
<view class="page_bd" bindtap="onHiddenPopView">
|
|
<rich-text nodes="{{nodes}}"></rich-text>
|
|
</view>
|
|
<e-empty empty="{{nodes.length <= 0}}" message="暂无数据"/>
|
|
|
|
<view class="pop_view pop_view_layout {{show ? 'pop_show': 'pop_hidden'}}">
|
|
<block wx:for="{{navs}}" wx:key="pop_{{index}}">
|
|
<text bindtap="onClickAllBtnItem" data-index="{{index}}" class="pop_item">{{item}}</text>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
|