index.wxml 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  1. <!--pages/publics/publics.wxml-->
  2. <view style=" background-color:#F5F5F5;">
  3. <view wx:if="{{hideAll}}" style="position: fixed;z-index: 999999;height: 100vh;width:100%;background-color: #ffffff;">
  4. <view style="height: 110vh;width: 100%;display: flex;align-items: center;justify-content: center;">
  5. <image class="init-rate" style="height: 76rpx;width: 76rpx;" src="images/onload-init-mini.png"></image>
  6. </view>
  7. </view>
  8. <scroll-view style="height: 1549rpx;" scroll-y="true">
  9. <view class="top">
  10. <video src="http://www.cq.gov.cn/masvod/public/2022/06/23/20220623_1818e6fa1b0_r1_1200k.mp4" loop muted controls="{{false}}" show-play-btn="{{false}}" show-center-play-btn="{{false}}" enable-progress-gesture="{{false}}" object-fit="cover" autoplay style="width:100%;height:409rpx"></video>
  11. <image src="{{imgUrl}}toplogo.png" class="top-logo" style="top: {{navHeight}}rpx"></image>
  12. </view>
  13. <!-- 内容1 -->
  14. <view class="content-search" style="height:568rpx;width:100%;background-color:#F5F5F5;position:relative">
  15. <!-- 内容top -->
  16. <view class="content-search-tab" style="height: 588rpx;">
  17. <!-- 搜索 -->
  18. <!-- <view style="width:650rpx;height:60rpx">
  19. <view class="search-view">
  20. <view class="search-icon">
  21. <image src="{{imgUrl}}index-search.png" style="height:28rpx;width:28rpx"></image>
  22. </view>
  23. <input class="search-input" bindinput="bindKeyInput" placeholder="在此输入关键字" />
  24. </view>
  25. </view> -->
  26. <!-- 服务内容1 -->
  27. <view class="content-service">
  28. <view bindtap="clickService1" data-item="{{index}}" wx:for="{{ serviceItems1 }}" wx:for-item="item" wx:for-index="index" wx:key="index" class="content-service-item">
  29. <view data-item="{{index}}">
  30. <image src="{{ item.img }}" style="height:88rpx;width:88rpx"></image>
  31. </view>
  32. <view data-item="{{index}}">{{ item.name }}</view>
  33. </view>
  34. </view>
  35. <!-- 服务内容2 -->
  36. <view class="content-service">
  37. <view bindtap="clickService2" data-item="{{index}}" wx:for="{{ serviceItems2 }}" wx:for-item="item" wx:for-index="index" wx:key="index" class="content-service-item">
  38. <view>
  39. <image src="{{ item.img }}" style="height:88rpx;width:88rpx"></image>
  40. </view>
  41. <view>{{ item.name }}</view>
  42. </view>
  43. </view>
  44. <!-- 百姓聚焦 -->
  45. <view class="content-people" style="margin-top: 15rpx">
  46. <view class="people-title">
  47. <image src="{{imgUrl}}people-title.png" style="height: 59rpx;width: 59rpx;"></image>
  48. <view class="people-font1">百姓聚焦</view>
  49. <!-- <view class="people-font2">每日更新</view> -->
  50. </view>
  51. <view class="people-content">
  52. <view wx:for="{{ peopleService }}" wx:for-item="item" wx:for-index="index" wx:key="index" data-id="{{item.id}}" bindtap="clickFocus" class="people-content-item {{ item.top?'top':'' }}">
  53. <image wx:if="{{ item.top }}" src="{{imgUrl}}index-top-fire.png" style="height: 24rpx;width: 20rpx;margin-right: 8rpx;"></image>
  54. <view>{{ item.name }}</view>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 百姓聚焦 -->
  59. </view>
  60. <!-- 内容top -->
  61. </view>
  62. <!-- 视频推荐 -->
  63. <view class="three" style="height:163rpx;width:100%;padding-left:15rpx;background-color: #F5F5F5;">
  64. <image src="{{imgUrl}}index-video-recommend.png" style="height:163rpx;width:720rpx" bindtap="gotoSPTJ"></image>
  65. </view>
  66. <view class="content-service" style="margin-left: 20rpx;margin-right: 20rpx;">
  67. <view bindtap="clickService1" data-item="{{index}}" wx:for="{{ serviceItems3 }}" wx:for-item="item" wx:for-index="index" wx:key="index" class="content-service-item2">
  68. <view data-item="{{index}}">
  69. <image src="{{ item.img }}" style="height:120rpx;width:120rpx"></image>
  70. </view>
  71. <!-- <view data-item="{{index}}">{{ item.name }}</view> -->
  72. </view>
  73. </view>
  74. <view style=" margin-left: 20rpx;margin-right: 20rpx; margin-bottom: 15rpx;border-radius: 20rpx; background: #ffffff;">
  75. <!-- <view class="content-search-tab" style="height: 588rpx;"> -->
  76. <view class="content-service">
  77. <view bindtap="clickService1" data-item="{{index}}" wx:for="{{ serviceItems4 }}" wx:for-item="item" wx:for-index="index" wx:key="index" class="content-service-item">
  78. <view data-item="{{index}}">
  79. <image src="{{ item.img }}" style="height:88rpx;width:88rpx"></image>
  80. </view>
  81. <view data-item="{{index}}">{{ item.name }}</view>
  82. </view>
  83. </view>
  84. <view class="content-service">
  85. <view bindtap="clickService1" data-item="{{index}}" wx:for="{{ serviceItems5 }}" wx:for-item="item" wx:for-index="index" wx:key="index" class="content-service-item">
  86. <view data-item="{{index}}">
  87. <image src="{{ item.img }}" style="height:88rpx;width:88rpx"></image>
  88. </view>
  89. <view data-item="{{index}}">{{ item.name }}</view>
  90. </view>
  91. </view>
  92. </view>
  93. <!-- 视频推荐 -->
  94. <!-- <view class="three" style="height:163rpx;width:100%;padding-left:15rpx;background-color: #F5F5F5;">
  95. <image src="{{imgUrl}}index-video-recommend.png" style="height:163rpx;width:720rpx" bindtap="gotoSPTJ"></image>
  96. <swiper current="{{lun}}" indicator-dots="{{true}}" style="height: 100%;width: 720rpx">
  97. <swiper-item bindtap="gotoNewsPaper">
  98. <image src="{{imgUrl}}index-video-banner.png" style="height:163rpx;width:100%"></image>
  99. </swiper-item>
  100. <swiper-item>
  101. <image src="{{imgUrl}}three.png" style="height:163rpx;width:100%"></image>
  102. </swiper-item>
  103. <swiper-item>
  104. <image src="{{imgUrl}}self-service.png" style="height:163rpx;width:100%"></image>
  105. </swiper-item>
  106. </swiper>
  107. </view> -->
  108. <!-- 南岸动态 -->
  109. <view class="content-na" style="height:512rpx;width:100%;background-color:#F5F5F5;position:relative;overflow: hidden;margin-top: 5rpx;">
  110. <!-- 浮动 -->
  111. <!-- font-size:32rpx -->
  112. <view class="content-na-tab">
  113. <!-- 标题 -->
  114. <view class="na-title">
  115. <!-- 南岸动态 -->
  116. <view class="tab-item {{naTab==0?'active':''}}" bindtap="clickNaTilteTab" data-item="0">
  117. <view style="position: absolute;width: 0;height: 0;border-left: 10rpx solid transparent;border-right: 10rpx solid transparent;border-top: 10rpx solid #508FF4;bottom: -13rpx;" />
  118. <view style="height:50rpx;width:32rpx;display: flex;justify-content:center;align-items:center;">
  119. <image wx:if="{{ naTab==0 }}" style="width:32rpx;height:32rpx;" src="{{imgUrl}}na-title-1.png"></image>
  120. </view>
  121. <view style="height:50rpx;padding-left:10rpx;">南岸动态</view>
  122. </view>
  123. <!-- 今日重庆 -->
  124. <!-- <view class="tab-item {{naTab==1?'active':''}}" bindtap="clickNaTilteTab" data-item="1">
  125. <view style="position: absolute;width: 0;height: 0;border-left: 10rpx solid transparent;border-right: 10rpx solid transparent;border-top: 10rpx solid #508FF4;bottom: -13rpx;" />
  126. <view style="height:50rpx;width:32rpx;display: flex;justify-content:center;align-items:center;">
  127. <image wx:if="{{ naTab==1 }}" style="width:32rpx;height:32rpx;" src="{{imgUrl}}na-title-1.png"></image>
  128. </view>
  129. <view style="height:50rpx;padding-left:10rpx">今日重庆</view>
  130. </view> -->
  131. <!-- 国务院信息 -->
  132. <!-- <view class="tab-item-last {{naTab==2?'active':''}}" bindtap="clickNaTilteTab" data-item="2">
  133. <view style="position: absolute;width: 0;height: 0;border-left: 10rpx solid transparent;border-right: 10rpx solid transparent;border-top: 10rpx solid #508FF4;bottom: -13rpx;" />
  134. <view style="height:50rpx;width:32rpx;display: flex;justify-content:center;align-items:center;">
  135. <image wx:if="{{ naTab==2 }}" style="width:32rpx;height:32rpx;" src="{{imgUrl}}na-title-1.png"></image>
  136. </view>
  137. <view style="height:50rpx;padding-left:10rpx">国务院信息</view>
  138. </view> -->
  139. </view>
  140. <!-- 标题 -->
  141. <!-- 内容 -->
  142. <view class="na-content">
  143. <swiper current="{{naItem}}" bindchange="naChangeTab" style="height: 100%">
  144. <!-- 南岸动态 -->
  145. <swiper-item>
  146. <view wx:if="{{isNaLoading}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  147. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  148. </view>
  149. <view wx:elif="{{isNaEmpty}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  150. <t-empty icon="info-circle-filled" description="暂无数据" />
  151. </view>
  152. <include wx:else src="naTitleTab.wxml" />
  153. </swiper-item>
  154. <!-- 今日重庆 -->
  155. <!-- <swiper-item>
  156. <view wx:if="{{isNaLoading}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  157. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  158. </view>
  159. <view wx:elif="{{isNaEmpty}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  160. <t-empty icon="info-circle-filled" description="暂无数据" />
  161. </view>
  162. <include wx:else src="naTitleTab.wxml" />
  163. </swiper-item> -->
  164. <!-- 国务院信息 -->
  165. <!-- <swiper-item>
  166. <view wx:if="{{isNaLoading}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  167. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  168. </view>
  169. <view wx:elif="{{isNaEmpty}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  170. <t-empty icon="info-circle-filled" description="暂无数据" />
  171. </view>
  172. <include wx:else src="naTitleTab.wxml" />
  173. </swiper-item> -->
  174. </swiper>
  175. </view>
  176. <!-- 内容 -->
  177. <!-- 更多 -->
  178. <view class="na-more">
  179. <view style="height: 60rpx;display:flex;align-items: center;" bindtap="naMore">查看更多 >></view>
  180. </view>
  181. <!-- 更多 -->
  182. </view>
  183. <!-- 浮动 -->
  184. </view>
  185. <!-- 视频推荐 -->
  186. <view style="width: 100%;position:relative;margin-top: 30rpx;">
  187. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;">
  188. <!-- 标题 -->
  189. <view style=" display: flex;justify-content: left;align-items: center;height: 60rpx;">
  190. <view style="display:flex;align-items:center;justify-content:center;">
  191. <image src="{{imgUrl}}index-video-title.png" style="height: 50rpx;width: 56rpx"></image>
  192. </view>
  193. <view class="data-center-title-font">视频推荐</view>
  194. </view>
  195. <!-- 标题 -->
  196. <!-- 内容 -->
  197. <view style="margin-top: 20rpx;">
  198. <view wx:if="{{isVideoLoading}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  199. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  200. </view>
  201. <view wx:elif="{{isVideoEmpty}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  202. <t-empty icon="info-circle-filled" description="暂无数据" />
  203. </view>
  204. <swiper style="height: 180rpx;" wx:else display-multiple-items="{{videoInfo.length >= 2 ? 2 : 1}}" current="{{0}}" autoplay="{{false}}">
  205. <swiper-item wx:for="{{videoInfo}}" wx:key="index" bindtap="gotoVideoDetail" data-url="{{item.shareUrl}}">
  206. <image wx:if="{{item.images}}" src="{{item.images}}" binderror="SPTJImgError" data-index="{{index}}" style="height:133rpx;width:308rpx" />
  207. <view wx:else style="height:133rpx;width:308rpx;display: flex;justify-content: center;align-items: center;color: gray;">
  208. <t-icon name="image-error" size="80rpx" data-name="image-error" />
  209. </view>
  210. <view style="width:308rpx;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;font-size: 12px;font-family: PingFang SC;color: #999999;text-align: left;">{{item.detailTitle}}</view>
  211. </swiper-item>
  212. </swiper>
  213. </view>
  214. <!-- 内容 -->
  215. </view>
  216. </view>
  217. <!-- 视频推荐 -->
  218. <!-- 数据中心 -->
  219. <view class="data-cneter" style="height: 1020rpx;width: 100%;background-color:#F5F5F5;position:relative;padding-top: 40rpx">
  220. <!-- 数据中心 -->
  221. <view class="data-center-contain">
  222. <!-- 标题 -->
  223. <view class="data-center-title" bindtap="gotoSjzx">
  224. <view style="display:flex;align-items:center;justify-content:center;">
  225. <image src="{{imgUrl}}index-data-center.png" style="height: 50rpx;width: 56rpx"></image>
  226. </view>
  227. <view class="data-center-title-font">数据中心</view>
  228. </view>
  229. <!-- 标题 -->
  230. <!-- 统计分析 -->
  231. <view class="center-analysis" style="height:272rpx;width:100%;position:relative;">
  232. <!-- 分析header -->
  233. <view style="margin-top:15rpx;height: 129rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  234. <image src="{{ imgUrl }}index-center-analysis-header.png" style="height: 129rpx;width:650rpx"></image>
  235. </view>
  236. <!-- 分析入口 -->
  237. <view class="center-analysis-enter" style="height: 129rpx;width:100%;position: absolute;bottom:114rpx" bindtap="toDataCenter">
  238. <view class="center-analysis-enter-font">政务服务数据统计分析</view>
  239. <view class="center-analysis-enter-button">
  240. <view class="center-analysis-enter-button-item" style="background: linear-gradient(90deg, #2FB785 0%, #2EE698 100%);">进入 ></view>
  241. </view>
  242. </view>
  243. <!-- 本年办件数 -->
  244. <view bindtap="gotoZWTJ" style="height: 172rpx;width: 100%;position:relative">
  245. <!-- 办件数浮动 -->
  246. <view style="height: 172rpx;width: 100%;position:absolute;bottom:22rpx">
  247. <!-- 标题 -->
  248. <view style="padding-left:8rpx;display:flex;align-items:center;justify-content:margin-left">
  249. <view class="yellow-point"></view>
  250. <view class="work-title-font">本年办件数</view>
  251. </view>
  252. <!-- 办件数内容 -->
  253. <view style="margin-top:20rpx;display:flex;justify-content: space-between;align-items:center">
  254. <view style="width: 210rpx;height: 120rpx;background-image: url({{imgUrl}}index-work-number.png);background-size: 100% 100%;">
  255. <!-- 受理数 -->
  256. <view style="display:flex;align-items:left;color:#FFFFFF;flex-direction:column;justify-content:center;height: 100%;padding-left:85rpx">
  257. <view style="font-size:19rpx">受理数</view>
  258. <view style="display:flex;flex-direction:row;align-items:center">
  259. <scroll-view scroll-x style="width: 84rpx">
  260. <view style="font-size:30rpx;font-weight: bold;">{{officeNumber[0]}}</view>
  261. </scroll-view>
  262. <view style="font-size: 19rpx;padding-left:5rpx">件</view>
  263. </view>
  264. </view>
  265. </view>
  266. <view style="width: 210rpx;height: 120rpx;background-image: url({{imgUrl}}index-finish-number.png);background-size: 100% 100%;">
  267. <!-- 受理数 -->
  268. <view style="display:flex;align-items:left;color:#FFFFFF;flex-direction:column;justify-content:center;height: 100%;padding-left:85rpx">
  269. <view style="font-size:19rpx">办结数</view>
  270. <view style="display:flex;flex-direction:row;align-items:center">
  271. <scroll-view scroll-x style="width: 84rpx">
  272. <view style="font-size:30rpx;font-weight: bold;">{{officeNumber[1]}}</view>
  273. </scroll-view>
  274. <view style="font-size: 19rpx;padding-left:5rpx">件</view>
  275. </view>
  276. </view>
  277. </view>
  278. <view style="width: 210rpx;height: 120rpx;background-image: url({{imgUrl}}index-request-number.png);background-size: 100% 100%;">
  279. <!-- 受理数 -->
  280. <view style="display:flex;align-items:left;color:#FFFFFF;flex-direction:column;justify-content:center;height: 100%;padding-left:85rpx">
  281. <view style="font-size:19rpx">网络提交</view>
  282. <view style="display:flex;flex-direction:row;align-items:center">
  283. <scroll-view scroll-x style="width: 84rpx;">
  284. <view style="font-size:30rpx;font-weight: bold;">{{officeNumber[2]}}</view>
  285. </scroll-view>
  286. <view style="font-size: 19rpx;padding-left:5rpx">件</view>
  287. </view>
  288. </view>
  289. </view>
  290. </view>
  291. </view>
  292. <!-- 办件数浮动 -->
  293. </view>
  294. <!-- 本年办件数 -->
  295. <!-- 好差评 -->
  296. <view bindtap="gotoZWTJ" style="margin-top:15rpx;height:300rpx;width:100%;">
  297. <!-- 标题 -->
  298. <view style="padding-left:8rpx;display:flex;align-items:center;justify-content:margin-left">
  299. <view class="yellow-point"></view>
  300. <view class="work-title-font">好差评</view>
  301. </view>
  302. <!-- 内容 -->
  303. <view style="display: flex;flex-wrap: wrap;justify-content: space-between;margin-top:20rpx">
  304. <view class="evaluate">评价我的办件</view>
  305. <view class="evaluate">评价窗口人员</view>
  306. <view class="evaluate">评价办事指南</view>
  307. <view class="evaluate" style="width: 316rpx;">评价服务应用</view>
  308. <view class="evaluate" style="width: 316rpx;">评价电子证照</view>
  309. </view>
  310. <!-- 评价量 -->
  311. <view style="display: flex;flex-wrap: wrap;justify-content: space-between;height: 130rpx;width: 100%">
  312. <!-- 评价总量 -->
  313. <view style="height: 100rpx;width:310rpx;display: flex;background-color:#E5F4FE;border-radius: 10px;">
  314. <!-- 图标 -->
  315. <view style="width: 100rpx;height: 100%;display: flex;align-items:center;justify-content:center">
  316. <image src="{{imgUrl}}index-evalution.png" style="height:64rpx;width:64rpx;"></image>
  317. </view>
  318. <!-- 数据 -->
  319. <view style="width: 210rpx;height: 100%;display:flex;flex-direction: column;justify-content:center">
  320. <view style="font-size: 19rpx;color: #999999;padding-bottom:8rpx">本年评价总量</view>
  321. <view style="display:flex;justify-content:left;align-items:center;color: #333333;">
  322. <view style="font-size: 28rpx;font-weight: bold;">{{evalutionNum}}</view>
  323. <view style="font-size:20rpx;padding-left:5rpx">条</view>
  324. </view>
  325. </view>
  326. </view>
  327. <!-- 满意度 -->
  328. <view style="height: 100rpx;width:310rpx;display: flex;background-color:#E5F4FE;border-radius: 10px;">
  329. <!-- 图标 -->
  330. <view style="width: 100rpx;height: 100%;display: flex;align-items:center;justify-content:center">
  331. <image src="{{imgUrl}}index-good-blud.png" style="height:64rpx;width:70rpx;"></image>
  332. </view>
  333. <!-- 数据 -->
  334. <view style="width: 210rpx;height: 100%;display:flex;flex-direction: column;justify-content:center">
  335. <view style="font-size: 19rpx;color: #999999;padding-bottom:8rpx">满意度</view>
  336. <view style="display:flex;justify-content:left;align-items:center;color: #333333;">
  337. <view style="font-size: 28rpx;font-weight: bold;">{{evalutionRate}}</view>
  338. <view style="font-size:20rpx;padding-left:5rpx">%</view>
  339. </view>
  340. </view>
  341. </view>
  342. </view>
  343. <!-- 图表 -->
  344. <view hidden="{{canvasImg}}" style="width: 100%;height: 300rpx;">
  345. <ec-canvas id="streetlinechart3" canvas-id="streetlinechart3" ec="{{ streetlinechartec }}" />
  346. </view>
  347. <image hidden="{{!canvasImg}}" src="{{canvasImg}}" style="width: 100%; height: 300rpx" />
  348. </view>
  349. <!-- 好差评 -->
  350. </view>
  351. <!-- 统计分析 -->
  352. </view>
  353. <!-- 数据中心 -->
  354. </view>
  355. <!-- 数据中心 -->
  356. <!-- 政民互动 -->
  357. <view style="width: 100%;position:relative;margin-top: 88rpx;">
  358. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;height: 100%;">
  359. <!-- 标题 -->
  360. <view style=" display: flex;justify-content: left;align-items: center;height: 60rpx;">
  361. <view style="display:flex;align-items:center;justify-content:center;">
  362. <image src="{{imgUrl}}index-communication.png" style="height: 50rpx;width: 56rpx;"></image>
  363. </view>
  364. <view class="data-center-title-font">政民互动</view>
  365. </view>
  366. <!-- 标题 -->
  367. <!-- 内容 -->
  368. <view>
  369. <!-- header -->
  370. <view style="position:relative;height: 164rpx" bindtap="toZMHD">
  371. <view style="margin-top:15rpx;height: 164rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  372. <image src="{{ imgUrl }}index-communicate-header.png" style="height: 164rpx;width:650rpx;border-radius: 10rpx;"></image>
  373. </view>
  374. <!-- 入口 -->
  375. <view style="height: 129rpx;width:100%;position: absolute;bottom:0rpx;">
  376. <view class="zmhd-title-font">与南岸政府的对话</view>
  377. <view style="padding-left: 38rpx;padding-top: 10rpx;">
  378. <view style="background: linear-gradient(90deg, #FF9B3B 0%, #FAB982 100%);" class="center-analysis-enter-button-item">
  379. 进入 ></view>
  380. </view>
  381. </view>
  382. </view>
  383. <!-- 列表 -->
  384. <view style="height: 800rpx;margin-top: 18rpx;">
  385. <view style="display:flex">
  386. <view class="communicate-tab-item {{communicateTab==0?'active':''}}" bindtap="communicateChangeItem" data-item="0">
  387. <view style="height: 100%;display:flex;align-items:center;justify-content:center;">法规意见征集</view>
  388. </view>
  389. <view class="communicate-tab-item {{communicateTab==1?'active':''}}" bindtap="communicateChangeItem" data-item="1">
  390. <view style="height: 100%;display:flex;align-items:center;justify-content:center;">在线调查</view>
  391. </view>
  392. </view>
  393. <!-- 内容 -->
  394. <view style="height: 710rpx;flex: 1">
  395. <swiper style="height: 100%" current="{{communicateItem}}" bindchange="communicateChangeTab">
  396. <swiper-item>
  397. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;">
  398. <include src="communicateList.wxml" />
  399. </scroll-view>
  400. </swiper-item>
  401. <swiper-item>
  402. <view wx:if="{{ isOnlineLoading }}" style="position: absolute;display: flex;align-items: center;justify-content: center;height: 100%;width: 100%;z-index: 9000;">
  403. <view style="display: flex;flex-direction: column;align-items: center;justify-content: center;background: #000;opacity: 0.6;width: 200rpx;height: 200rpx;border-radius: 20rpx;">
  404. <t-loading theme="circular" size="60rpx" layout="vertical"></t-loading>
  405. <view style="color: #fff;padding-top: 18rpx;font-size: 27rpx;letter-spacing: 2rpx;">加载中</view>
  406. </view>
  407. </view>
  408. <view wx:if="{{isOnlineFinish}}" style="position: absolute;display: flex;align-items: center;justify-content: center;height: 100%;width: 100%;z-index: 9000;">
  409. <view style="display: flex;flex-direction: column;align-items: center;justify-content: center;background: #000;opacity: 0.8;width: 200rpx;height: 200rpx;border-radius: 20rpx;">
  410. <image src="{{imgUrl}}ali-logo-check-ok.png" style="width: 100rpx;height: 80rpx"></image>
  411. <view style="color: #fff;padding-top: 18rpx;font-size: 25rpx;letter-spacing: 1rpx;">已加载全部数据</view>
  412. </view>
  413. </view>
  414. <scroll-view scroll-y="true" bindscrolltolower="investigationScrollBottom" style="height: 100%;padding:0;margin:0;">
  415. <include src="investigation.wxml" />
  416. </scroll-view>
  417. </swiper-item>
  418. </swiper>
  419. </view>
  420. </view>
  421. <!-- 列表 -->
  422. </view>
  423. <!-- 内容 -->
  424. </view>
  425. </view>
  426. <!-- 政民互动 -->
  427. <!-- 弹窗 -->
  428. <!-- <view bindtap="closeDialog" class="mask" catchtouchmove="preventTouchMove" wx:if="{{ewmShowDialog}}"></view>
  429. <view class="ewm-dialog" wx:if="{{ewmShowDialog}}">
  430. <view>
  431. <image show-menu-by-longpress="{{true}}" style="width: 370rpx;height:370rpx" src="{{imgUrl + ewmUrl}}"></image>
  432. </view>
  433. <view style="color: #000000;font-size: 38rpx;font-weight: 600;padding-top: 10rpx;">长按图片关注我们</view>
  434. <view style="color: #000000;font-size: 38rpx;padding-top: 10rpx;">{{ewmName}}</view>
  435. </view> -->
  436. <!-- 弹窗结尾 -->
  437. <!-- 媒体矩阵 -->
  438. <view style="width: 100%;position:relative;margin-top: 40rpx;">
  439. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;height: 100%;">
  440. <!-- 标题 -->
  441. <view style="display: flex;justify-content: left;align-items: center;height: 60rpx;">
  442. <view style="display:flex;align-items:center;justify-content:center;">
  443. <image src="{{imgUrl}}index-media.png" style="height: 50rpx;width: 56rpx"></image>
  444. </view>
  445. <view class="data-center-title-font">媒体矩阵</view>
  446. </view>
  447. <!-- 标题 -->
  448. <!-- 内容 -->
  449. <view>
  450. <!-- header -->
  451. <view bindtap="gotoMTJZ" style="position:relative;height: 129rpx">
  452. <view style="margin-top:15rpx;height: 129rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  453. <image src="{{ imgUrl }}index-media-header.png" style="height: 129rpx;width:650rpx"></image>
  454. </view>
  455. <!-- 入口 -->
  456. <view style="height: 129rpx;width:100%;position: absolute;bottom:-30rpx;display: flex;align-items: top;">
  457. <view class="center-analysis-enter-font">政务新媒体矩阵</view>
  458. <view class="center-analysis-enter-button">
  459. <view style="background: linear-gradient(90deg, #AF66DC 0%, #D6AAF3 100%);" class="center-analysis-enter-button-item">
  460. 进入 ></view>
  461. </view>
  462. </view>
  463. </view>
  464. <!-- header -->
  465. <!-- content -->
  466. <view>
  467. <!-- 头部导航 -->
  468. <view class="media-swiper-tab">
  469. <scroll-view scroll-x="true" show-scrollbar="false" scroll-with-animation="true" scroll-left="{{navScrollLeft}}rpx" style="width: 100%;white-space: nowrap;">
  470. <block wx:for="{{provList}}" wx:key="i">
  471. <view class="media-swiper-tab-list {{mediaCurrentTab==index ? 'active' : ''}}" data-current="{{index}}" bindtap="swichNav">{{item.name}}</view>
  472. </block>
  473. </scroll-view>
  474. </view>
  475. <!-- 头部导航 -->
  476. <!-- 选项内容 -->
  477. <view style="margin-top: 25rpx">
  478. <swiper current="{{mediaCurrentTab}}" class="media-swiper-box" duration="300" bindchange="mediaBindChange">
  479. <swiper-item>
  480. <view wx:if="{{isNafaLoading}}" style="display: flex;justify-content: center;align-items: center;height: 100%;">
  481. <t-loading theme="spinner" size="64rpx" text="加载中..." inheritColor></t-loading>
  482. </view>
  483. <view wx:else class="message" style="padding: 4rpx 40rpx;">
  484. <view wx:for="{{mediaReleaseList}}" wx:key="index" bindtap="gotoReleaseDetail" data-url="{{item.url}}" class="releaseList">
  485. <view style="width: 450rpx;">{{item.title}}</view>
  486. <image src="data:{{item.cover}}" style="width: 75rpx;height:75rpx" />
  487. </view>
  488. </view>
  489. </swiper-item>
  490. <swiper-item>
  491. <view style="display: flex;justify-content: flex-start;flex-wrap: wrap">
  492. <!-- 选项 -->
  493. <view wx:for="{{mediaSelectList}}" wx:for-item="item" wx:for-index="index" wx:key="index" class="{{index % 2 === 0?'media-icon-1':'media-icon-2'}}">
  494. <view bindtap="showLogoDialog" data-name="{{item.name}}" data-ewm="{{item.ewm}}" style="display: flex;align-items:center;justify-content:center;margin-right: 4rpx">
  495. <image src="{{item.img}}" style="height:44rpx;width:44rpx;"></image>
  496. </view>
  497. <view bindtap="showLogoDialog" data-name="{{item.name}}" data-ewm="{{item.ewm}}" style="display: flex;align-items:center;justify-content:center">{{item.name}}</view>
  498. </view>
  499. </view>
  500. </swiper-item>
  501. <!-- <swiper-item>
  502. <view wx:for="{{mediaHeadlineList}}" wx:key="index" class="news-item" bindtap="gotoHeadlineDetail" data-url="{{item.url}}">
  503. <view class="jigou">
  504. <view style="background-color: #B9D9FD;display: inline-block;padding: 0px 10rpx;">{{item.officialAccount}}</view>
  505. </view>
  506. <view style="margin: 9rpx 0 14rpx 0;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;">{{item.title}}</view>
  507. <view class="time">{{item.createTime}}</view>
  508. </view>
  509. </swiper-item> -->
  510. </swiper>
  511. </view>
  512. <!-- 选项内容 -->
  513. </view>
  514. <!-- content -->
  515. </view>
  516. <!-- 内容 -->
  517. </view>
  518. </view>
  519. <!-- 媒体矩阵 -->
  520. <!-- 南岸报 -->
  521. <!-- gotoNewsPaper -->
  522. <view style="width: 100%;position:relative;margin-top: 40rpx;" bindtap="gotoNAB">
  523. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;height: 100%;">
  524. <!-- 标题 -->
  525. <view style=" display: flex;justify-content: left;align-items: center;height: 60rpx;">
  526. <view style="display:flex;align-items:center;justify-content:center;">
  527. <image src="{{imgUrl}}index-paper.png" style="height: 50rpx;width: 56rpx"></image>
  528. </view>
  529. <view class="data-center-title-font">南岸报</view>
  530. </view>
  531. <!-- 标题 -->
  532. <!-- 内容 -->
  533. <view>
  534. <!-- header -->
  535. <view style="position:relative;height: 129rpx">
  536. <view style="margin-top:15rpx;height: 129rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  537. <image src="{{ imgUrl }}index-paper-header.png" style="height: 129rpx;width:650rpx"></image>
  538. </view>
  539. <!-- 入口 -->
  540. <view style="height: 129rpx;width:100%;position: absolute;bottom:-30rpx;display: flex;align-items: top;">
  541. <view class="center-analysis-enter-font">南岸报</view>
  542. <view class="center-analysis-enter-button">
  543. <view style="background: linear-gradient(90deg, #F58661 0%, #FCAF96 100%);" class="center-analysis-enter-button-item">
  544. 进入 ></view>
  545. </view>
  546. </view>
  547. </view>
  548. <!-- header -->
  549. <!-- 报 -->
  550. <!-- <view style="height: 790rpx;width: 100%;display: flex">
  551. <view style="height: 761rpx;width: 550rpx;position:relative;">
  552. <view style="padding: 20rpx;border: 3rpx solid #FFFFFF;box-shadow: 8rpx -5rpx 25rpx 0rpx rgba(29,29,29,0.18);top: -22rpx;position:absolute;height: 761rpx;width: 505rpx;">
  553. <image src="{{imgUrl}}index-paper-content-paper.png" style="height: 761rpx;width: 505rpx;"></image>
  554. </view>
  555. </view>
  556. <view style="height: 771rpx;width: 100rpx;position:relative;background-image: url({{imgUrl}}index-paper-page.png);background-size: 100% 100%;">
  557. <view style="top: 20rpx;left:20rpx;position:absolute; display: flex;flex-direction: column;width: 30rpx;color: #FFFFFF;font-size: 28rpx;">
  558. 上一版</view>
  559. <view style="top: 200rpx;left:20rpx;position:absolute; display: flex;flex-direction: column;width: 30rpx;color: #FFFFFF;font-size: 28rpx;">
  560. 下一版</view>
  561. </view>
  562. </view> -->
  563. </view>
  564. <!-- 内容 -->
  565. </view>
  566. </view>
  567. <!-- 南岸报 -->
  568. <!-- 地图服务 -->
  569. <view style="width: 100%;position:relative;margin-top: 40rpx;">
  570. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;height: 100%;">
  571. <!-- 标题 -->
  572. <view style=" display: flex;justify-content: left;align-items: center;height: 60rpx;">
  573. <view style="display:flex;align-items:center;justify-content:center;">
  574. <image src="{{imgUrl}}index-map-title.png" style="height: 50rpx;width: 56rpx"></image>
  575. </view>
  576. <view class="data-center-title-font">地图服务</view>
  577. </view>
  578. <!-- 标题 -->
  579. <!-- 内容 -->
  580. <view>
  581. <!-- header -->
  582. <view style="position:relative;height: 129rpx" bindtap="gotoDTSS">
  583. <view style="margin-top:15rpx;height: 129rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  584. <image src="{{ imgUrl }}index-map-header.png" style="height: 129rpx;width:650rpx"></image>
  585. </view>
  586. <!-- 入口 -->
  587. <view style="height: 129rpx;width:100%;position: absolute;bottom:-30rpx;display: flex;align-items: top;">
  588. <view class="center-analysis-enter-font">地图搜索</view>
  589. <view class="center-analysis-enter-button">
  590. <view style="background: linear-gradient(90deg, #0163EA 0%, #00BEFA 100%);" class="center-analysis-enter-button-item">
  591. 进入 ></view>
  592. </view>
  593. </view>
  594. </view>
  595. <!-- header -->
  596. <!-- content -->
  597. <view style="margin-top:28rpx;width: 100%;height: 136rpx;display:flex;flex-wrap: wrap;justify-content: space-between;">
  598. <!-- 按钮 -->
  599. <view bindtap="gotoDTSS" data-item="{{ item.name }}" wx:for="{{ mapServiceData }}" wx:for-item="item" wx:for-index="index" wx:key="index" style="height: 50rpx;width: 139rpx;background-color: #EEF5FF;display:flex;align-items:center;justify-content:center;font-size:24rpx;color: #333333;letter-spacing: 2rpx;border-radius: 10rpx;">
  600. {{item.name}}
  601. </view>
  602. </view>
  603. </view>
  604. <!-- 内容 -->
  605. </view>
  606. </view>
  607. <!-- 地图服务 -->
  608. <!-- 印象南岸 -->
  609. <view style="height: 470rpx;width: 100%;position:relative;margin-top: 40rpx;margin-bottom: 60rpx;">
  610. <view style="margin-left: 20rpx;border-radius: 20rpx;background-color: #ffffff;padding: 25rpx 30rpx;width: 651rpx;height: 100%;">
  611. <!-- 标题 -->
  612. <view style=" display: flex;justify-content: left;align-items: center;height: 60rpx;">
  613. <view style="display:flex;align-items:center;justify-content:center;">
  614. <image src="{{imgUrl}}index-na-title.png" style="height: 50rpx;width: 56rpx"></image>
  615. </view>
  616. <view class="data-center-title-font">印象南岸</view>
  617. </view>
  618. <!-- 标题 -->
  619. <!-- 内容 -->
  620. <view>
  621. <!-- header -->
  622. <view style="position:relative;height: 129rpx" bindtap="toYxna">
  623. <view style="margin-top:15rpx;height: 129rpx;width:100%;display:flex;align-items:center;justify-content:center;">
  624. <image src="{{ imgUrl }}index-na-header.png" style="height: 129rpx;width:650rpx"></image>
  625. </view>
  626. <!-- 入口 -->
  627. <view style="height: 129rpx;width:100%;position: absolute;bottom:-30rpx;display: flex;align-items: top;">
  628. <view class="center-analysis-enter-font">印象南岸</view>
  629. <view class="center-analysis-enter-button">
  630. <view style="background: linear-gradient(90deg, #A28164 0%, #CBB197 100%);" class="center-analysis-enter-button-item">
  631. 进入 ></view>
  632. </view>
  633. </view>
  634. </view>
  635. <!-- header -->
  636. <view style="font-size: 30rpx;font-weight: 400;color: #FFFFFF;line-height: 56rpx;text-align: center;position: relative;">
  637. <image src="{{imgUrl}}yxnaLine.png" style="width:653rpx;height:174rpx" />
  638. <view bindtap="toJfq" style="width: 136rpx;height: 56rpx;background: #996749;border-radius: 10rpx;position: absolute;top: 35rpx;">
  639. 解放前</view>
  640. <view bindtap="toJfh" style="width: 232rpx;height: 56rpx;background: #A45A3A;border-radius: 10rpx;position: absolute;top: 187rpx;left: 126rpx;">
  641. 解放后-80年代</view>
  642. <view bindtap="toXsj" style="width: 226rpx;height: 56rpx;background: #D17C4B;border-radius: 10rpx;position: absolute;top: 35rpx;left: 232rpx;">
  643. 80年代-新世纪</view>
  644. <view bindtap="toQxn" style="width: 226rpx;height: 56rpx;background: #D6603A;border-radius: 10rpx;position: absolute;right: 9rpx;bottom: -5rpx;">
  645. 新世纪-千禧年</view>
  646. </view>
  647. </view>
  648. <!-- 内容 -->
  649. </view>
  650. </view>
  651. <!-- 印象南岸 -->
  652. <!-- 底部 -->
  653. <view style="height: 150rpx">
  654. </view>
  655. </scroll-view>
  656. </view>