gov_propagandize/pages/policy/policy.wxml
2025-01-20 17:19:30 +08:00

34 lines
1.8 KiB
Plaintext

<!--pages/policy/policy.wxml-->
<view class="p-body">
<!-- 搜索框 -->
<view class="search-box">
<image src="/imgs/ic_search_icon.png"></image>
<input placeholder="输入关键字查找" placeholder-class="placeholder" value="{{keywords}}" bindinput="inputValue" confirm-type="search" bindconfirm="doSearch" />
</view>
<view class="policy-tabs">
<view class="policy-tab-box" bind:tap="changeTab" data-id="8e20af26-fed2-4829-a87c-9eddd6311d7c">
<view class="{{currentId=='8e20af26-fed2-4829-a87c-9eddd6311d7c'? 'policy-tab-select':'policy-tab-normal'}}">国家政策</view>
</view>
<view class="policy-tab-box" bind:tap="changeTab" data-id="1f6c4812-40a2-4a54-955d-85f31b3f4630">
<view class="{{currentId=='1f6c4812-40a2-4a54-955d-85f31b3f4630'? 'policy-tab-select':'policy-tab-normal'}}">地方政策</view>
</view>
</view>
<view style="flex:1;position: relative;">
<scroll-view class="scrollarea mt-20" scroll-y type="list">
<view class="container">
<block wx:for="{{policyList}}" wx:key="index">
<view class="policy-item" bind:tap="goDetail" data-id="{{item.newsContentId}}">
<text class="policy-item-title">{{item.newsContentTitle}}</text>
<view class="policy-desc-box">
<text class="policy-desc-name">{{item.newsContentAuthor}}</text>
<text class="policy-desc-date">{{item.newsContentPublishTime}}</text>
</view>
</view>
<view class="divider-v"></view>
</block>
</view>
</scroll-view>
<content-loading wx:if="{{showContentLoading}}"></content-loading>
</view>
</view>