huLiWenHua.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view class="body">
  3. <view class="header">
  4. <view class="tit">湖里文化遗产保护中心</view>
  5. <view class="thumbnail_1">
  6. <image style="width: 100%; height: 100%" src="/static/img/img_seal@2x.png"></image>
  7. </view>
  8. </view>
  9. <view class="" style="position: relative">
  10. <view class="fybk_zc">
  11. <view class="fybk_tit" @click="show = true">
  12. <image style="width: 120rpx; height: 860rpx" src="/static/img/img_wh.png"></image>
  13. </view>
  14. <view class="fybk_tab">
  15. <view class="tab" @click="tabBtn(0)" :class="{ active: indexTab == 0 }">湖里简介</view>
  16. <!-- <view class="tab" @click="tabBtn(1)" :class="{ active: indexTab == 1 }">工作指南</view> -->
  17. </view>
  18. </view>
  19. </view>
  20. <!-- 湖里简介 -->
  21. <view v-if="indexTab == 0" class="box1">
  22. <view class="box2">
  23. <view class="jj_tit">湖里文化遗产保护中心简介</view>
  24. <view class="jieshao">
  25. <marquee width="1000" height="400" scrollamount="2" loop="infinite" direction="up">
  26. 湖里区是厦门经济特区发祥地,成立于1987年11月,地处厦门岛北部,八山横贯两水,三面海域环抱,与金门岛隔海相望,陆地面积72.26平方公里、占厦门岛48%,辖5个街道55个社区,总人口103.7万人,近年先后获评国家进口贸易促进创新示范区、中国工业百强区、全国健康促进区、全国社会治理创新优秀城区、全省首批教育强区、全省文明城区、全省平安先进区。2021年1-12月,全区实现GDP1539.4亿元、增长7.2%,2021年财政总收入260.08亿元,区级财政收入55.56亿元、增长8.8%,规上工业企业增加值443.62亿元,扣除价格因素后与去年同期相比增长6.1%。社会消费品零售总额526.35亿元、增长11.3%,其他营利性服务业营收增长45.0%,固定资产投资增长13.7%,实际利用外资21.96亿元,合同利用外资60.93亿元,同比增长44.9%。2021年1-12月,主要经济指标持续向好发展,其中其他营利性服务业全市排名第一,城镇居民人均可支配收入增速、固定资产投资增速全市排名第二,第二季度,“五个一批”项目综合考评进入全省前十。
  27. 特区基因深厚。1980年,国务院批准在湖里2.5平方公里范围设立厦门经济特区;1981年,厦门经济特区在湖里破土动工;1984年,邓小平同志在湖里亲笔写下“把经济特区办得更快些更好些”的题词,随后经济特区范围扩到厦门岛,2010年扩至厦门全市。基础设施完备。位于厦门市域中心,拥有便捷的海、陆、空立体交通网络,高崎机场、邮轮码头、火车货运站、五条陆路出岛通道、厦金航线、第二西通道及正在建设的第二东通道都在湖里辖区,地铁密度全市最高。
  28. </marquee>
  29. </view>
  30. </view>
  31. </view>
  32. <!-- 工作指南 -->
  33. <!-- <view v-if="indexTab == 1" class="box1">
  34. <view class="box2">工作指南</view>
  35. </view> -->
  36. <!-- 菜单按钮 -->
  37. <view class="caidan" @click="navBtn">
  38. <image class="img" src="../../../static/img/icon_menu@2x.png"></image>
  39. <view class="dh">导航</view>
  40. </view>
  41. <!-- 菜单弹层 -->
  42. <u-popup :show="show" @close="close" mode="left" bgColor="#f8efe1" customStyle="width:1000rpx">
  43. <view class="box_gb" @click="show = false">
  44. <view class="gb">X</view>
  45. </view>
  46. <LeftNav></LeftNav>
  47. </u-popup>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. indexTab: 0,
  55. show: false
  56. };
  57. },
  58. methods: {
  59. tabBtn(index) {
  60. this.indexTab = index;
  61. },
  62. navBtn() {
  63. this.show = true;
  64. },
  65. close() {
  66. this.show = false;
  67. // console.log('close');
  68. }
  69. }
  70. };
  71. </script>
  72. <style>
  73. .body {
  74. padding-top: 100rpx;
  75. height: 1905rpx;
  76. box-sizing: border-box;
  77. }
  78. .box1 {
  79. width: 2200rpx;
  80. height: 1200rpx;
  81. margin-left: 25%;
  82. margin-top: 100rpx;
  83. border: 3px solid #563530;
  84. }
  85. .box_gb {
  86. position: absolute;
  87. cursor: pointer;
  88. width: 1000rpx;
  89. height: 160rpx;
  90. }
  91. .gb {
  92. width: 80rpx;
  93. height: 80rpx;
  94. line-height: 80rpx;
  95. position: absolute;
  96. right: 100rpx;
  97. top: 30rpx;
  98. text-align: center;
  99. font-size: 52rpx;
  100. color: #563530;
  101. margin-left: 300rpx;
  102. border: #563530 1px solid;
  103. }
  104. .box2 {
  105. overflow: scroll;
  106. width: 2180rpx;
  107. height: 1180rpx;
  108. margin: auto;
  109. margin-top: 10rpx;
  110. padding: 60rpx 60rpx 0 60rpx;
  111. border: 1px solid #563530;
  112. box-sizing: border-box;
  113. }
  114. .jj_tit {
  115. width: 100%;
  116. height: 120rpx;
  117. border-bottom: 1px solid #ddd7d6;
  118. font-size: 48rpx;
  119. color: #563530;
  120. letter-spacing: 0.3em;
  121. }
  122. .jieshao {
  123. margin-top: 40rpx;
  124. font-size: 38rpx;
  125. color: #563530;
  126. line-height: 100rpx;
  127. letter-spacing: 0.3em;
  128. }
  129. .active {
  130. -webkit-background-clip: text;
  131. -webkit-text-fill-color: transparent;
  132. background-image: linear-gradient(270deg, rgba(188, 95, 41, 1) 0, rgba(91, 60, 41, 1) 100%);
  133. border: 1px solid #563530;
  134. }
  135. .header {
  136. margin-left: 10%;
  137. width: 960rpx;
  138. height: 96rpx;
  139. align-items: center;
  140. display: flex;
  141. }
  142. .tit {
  143. background-image: linear-gradient(270deg, rgba(188, 95, 41, 1) 0, rgba(91, 60, 41, 1) 100%);
  144. /* width: 500rpx; */
  145. height: 96rpx;
  146. font-size: 48rpx;
  147. letter-spacing: 0.3em;
  148. font-weight: NaN;
  149. text-align: left;
  150. white-space: nowrap;
  151. line-height: 100rpx;
  152. -webkit-background-clip: text;
  153. -webkit-text-fill-color: transparent;
  154. }
  155. .thumbnail_1 {
  156. width: 16rpx;
  157. height: 60rpx;
  158. }
  159. .fybk_tit {
  160. width: 200rpx;
  161. height: 530rpx;
  162. text-align: center;
  163. cursor: pointer;
  164. }
  165. .fybk_tab {
  166. display: flex;
  167. flex-direction: column;
  168. justify-content: center;
  169. width: 220rpx;
  170. margin-top: 70%;
  171. padding-left: 20rpx;
  172. border-left: 1px solid #563530;
  173. }
  174. .fybk_zc {
  175. left: 9%;
  176. top: 220rpx;
  177. display: flex;
  178. position: absolute;
  179. }
  180. .tab {
  181. color: #563530;
  182. font-size: 36rpx;
  183. letter-spacing: 0.3em;
  184. display: flex;
  185. align-items: center;
  186. margin-bottom: 20rpx;
  187. margin-top: 20rpx;
  188. height: 80rpx;
  189. font-weight: NaN;
  190. padding-left: 26rpx;
  191. white-space: nowrap;
  192. letter-spacing: 0.2em;
  193. }
  194. .caidan {
  195. margin-left: 10%;
  196. margin-top: 0;
  197. display: flex;
  198. width: 860rpx;
  199. height: 360rpx;
  200. cursor: pointer;
  201. align-items: center;
  202. }
  203. .img {
  204. width: 100rpx;
  205. height: 100rpx;
  206. }
  207. .dh {
  208. margin-left: 10rpx;
  209. font-size: 42rpx;
  210. color: #563530;
  211. }
  212. </style>