12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!--pages/ZCWDK/info/info.wxml-->
- <view>
- <view class="head" style="background-image: url({{imgUrl}}/wdkbg.png);">
- <view class="navTitle">
- <t-icon name="chevron-left" size="68rpx" data-name="chevron-left" bind:click="back" />
- <view class="title" style="float: left;">政策问答库</view>
- </view>
- <view class="ttp">
- <view class="tw" bindtap="askQuestion">
- <text>我要</text>
- <text>提问</text>
- </view>
- </view>
- <view class="logo">
- <image src="{{imgUrl}}/wdklogo.png"></image>
- <text>共计问答数:{{questionCount}}</text>
- </view>
- <view class="searchBox">
- <view class="type" bindtap="selectType">
- <view style="width: 84rpx; text-overflow: ellipsis;overflow: hidden;white-space: nowrap;float: left;text-align: center;">{{defaultSearch}}</view>
- <view>▼</view>
- </view>
- <input class="inputText" bindinput="bindKeyInput" />
- <image src="{{imgUrl}}/wdksearchIcon.png" class="serachIcon" bindtap="searchQuestion"></image>
- </view>
- </view>
- <view class="body">
- <view class="bodyTitle">
- {{questionContent.title}}
- </view>
- <view class="bodyContext">
- <rich-text nodes="{{questionContent.content}}"></rich-text>
- <view class="dept">{{questionContent.departmentname}}</view>
- </view>
- </view>
- <view class="jc">
- <t-tabs defaultValue="{{0}}" sticky stickyProps="{{0}}" t-class="custom-tabs">
- <t-tab-panel label="决策目录" value="0">
- <view class="ml" style="background-image: url({{imgUrl}}/info-nav@2x.png);">
- <text>2021年度
- 南岸区人民政府重大行政决策事项清单</text>
- </view>
- </t-tab-panel>
- <t-tab-panel label="决策事项" value="1">
- <view style="margin: 0 auto;width: 90%;height: 160rpx;margin-top: 30rpx;">
- <view wx:for="{{importmentList}}" wx:key="index" style="display: flex;justify-content: space-between;border-bottom: 1rpx solid #F2F2F2;height: 50rpx;padding: 20rpx 0;">
- <view style="font-weight: 550;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;color: black;width: 440rpx;font-size: 30rpx;">.{{item.postTitle}}</view>
- <view>{{item.deptName}}</view>
- </view>
- </view>
- </t-tab-panel>
- </t-tabs>
- </view>
- <view class="lb">
- <view class="lbTitle">
- <text>公众号信息</text>
- </view>
- <view class="listView">
- <view class="listViewitem" wx:for="{{articleList}}" wx:key="index" wx:if="{{index < 3}}">
- <view class="listViewItemTitle">·{{item.title}}</view>
- <view class="time">{{item.createTime}}</view>
- </view>
- </view>
- <view class="ewm">
- <image src="{{imgUrl}}/ewm.png" class="ewmimg"></image>
- <view class="sl"></view>
- <view class="ewmsltext">请关注重庆市南岸区人民政府微信公众号,了解更多资讯</view>
- </view>
- <view style="height: 50rpx;"></view>
- </view>
- </view>
- <view class="mask" catchtouchmove="preventTouchMove" bindtap="closedlg" wx:if="{{showModal}}"></view>
- <view class="serachItems" wx:if="{{showModal}}">
- <scroll-view scroll-y="true">
- <view class="item" wx:for="{{searchItems}}" wx:key="index" bindtap="chooseType" data-name="{{item}}">{{item}}</view>
- </scroll-view>
- </view>
|