info.wxml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!--pages/ZCWDK/info/info.wxml-->
  2. <view>
  3. <view class="head" style="background-image: url({{imgUrl}}/wdkbg.png);">
  4. <view class="navTitle">
  5. <t-icon name="chevron-left" size="68rpx" data-name="chevron-left" bind:click="back" />
  6. <view class="title" style="float: left;">政策问答库</view>
  7. </view>
  8. <view class="ttp">
  9. <view class="tw" bindtap="askQuestion">
  10. <text>我要</text>
  11. <text>提问</text>
  12. </view>
  13. </view>
  14. <view class="logo">
  15. <image src="{{imgUrl}}/wdklogo.png"></image>
  16. <text>共计问答数:{{questionCount}}</text>
  17. </view>
  18. <view class="searchBox">
  19. <view class="type" bindtap="selectType">
  20. <view style="width: 84rpx; text-overflow: ellipsis;overflow: hidden;white-space: nowrap;float: left;text-align: center;">{{defaultSearch}}</view>
  21. <view>▼</view>
  22. </view>
  23. <input class="inputText" bindinput="bindKeyInput" />
  24. <image src="{{imgUrl}}/wdksearchIcon.png" class="serachIcon" bindtap="searchQuestion"></image>
  25. </view>
  26. </view>
  27. <view class="body">
  28. <view class="bodyTitle">
  29. {{questionContent.title}}
  30. </view>
  31. <view class="bodyContext">
  32. <rich-text nodes="{{questionContent.content}}"></rich-text>
  33. <view class="dept">{{questionContent.departmentname}}</view>
  34. </view>
  35. </view>
  36. <view class="jc">
  37. <t-tabs defaultValue="{{0}}" sticky stickyProps="{{0}}" t-class="custom-tabs">
  38. <t-tab-panel label="决策目录" value="0">
  39. <view class="ml" style="background-image: url({{imgUrl}}/info-nav@2x.png);">
  40. <text>2021年度
  41. 南岸区人民政府重大行政决策事项清单</text>
  42. </view>
  43. </t-tab-panel>
  44. <t-tab-panel label="决策事项" value="1">
  45. <view style="margin: 0 auto;width: 90%;height: 160rpx;margin-top: 30rpx;">
  46. <view wx:for="{{importmentList}}" wx:key="index" style="display: flex;justify-content: space-between;border-bottom: 1rpx solid #F2F2F2;height: 50rpx;padding: 20rpx 0;">
  47. <view style="font-weight: 550;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;color: black;width: 440rpx;font-size: 30rpx;">.{{item.postTitle}}</view>
  48. <view>{{item.deptName}}</view>
  49. </view>
  50. </view>
  51. </t-tab-panel>
  52. </t-tabs>
  53. </view>
  54. <view class="lb">
  55. <view class="lbTitle">
  56. <text>公众号信息</text>
  57. </view>
  58. <view class="listView">
  59. <view class="listViewitem" wx:for="{{articleList}}" wx:key="index" wx:if="{{index < 3}}">
  60. <view class="listViewItemTitle">·{{item.title}}</view>
  61. <view class="time">{{item.createTime}}</view>
  62. </view>
  63. </view>
  64. <view class="ewm">
  65. <image src="{{imgUrl}}/ewm.png" class="ewmimg"></image>
  66. <view class="sl"></view>
  67. <view class="ewmsltext">请关注重庆市南岸区人民政府微信公众号,了解更多资讯</view>
  68. </view>
  69. <view style="height: 50rpx;"></view>
  70. </view>
  71. </view>
  72. <view class="mask" catchtouchmove="preventTouchMove" bindtap="closedlg" wx:if="{{showModal}}"></view>
  73. <view class="serachItems" wx:if="{{showModal}}">
  74. <scroll-view scroll-y="true">
  75. <view class="item" wx:for="{{searchItems}}" wx:key="index" bindtap="chooseType" data-name="{{item}}">{{item}}</view>
  76. </scroll-view>
  77. </view>