Sksjgl.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  1. <template>
  2. <div class="sksjgl container">
  3. <div class="server_title">
  4. <el-image style="width: 824px; height: 786px" src="static/images/sksjgl/sksjgl_title.png" fit="cover" />
  5. <div class="server_title_text">
  6. <div class="server_title_text_title">时空数据管理</div>
  7. <div class="server_title_text_content">
  8. 二维数据服务是围绕二维地理信息数据展开的综合服务体系。它涵盖以像元阵列形式存储的栅格服务,广泛应用于影像地图展示、地形分析等;通过将地图切割成小图片进行快速加载的瓦片服务,提升地图浏览流畅度;能够精确表达地理要素几何形状和属性的矢量时空数据服务,记录地理对象随时间的变化;以及包含特定主题数据集合的专题库服务,如交通专题库、土地利用专题库等,满足不同行业对特定地理信息的深度挖掘与分析需求,为城市规划、资源管理、环境监测等领域提供有力的数据支撑。
  9. </div>
  10. </div>
  11. </div>
  12. <div class="checkModule">
  13. <!-- 流程步骤 -->
  14. <div class="process-bar">
  15. <div :class="{ 'process-item': true, 'active': activePanel == 'sjzljc' }"
  16. @click="changePanel('sjzljc')">
  17. <div class="icon-box"> </div>
  18. <div class="label">数据质量检查</div>
  19. </div>
  20. <div class="divider"></div>
  21. <div :class="{ 'process-item': true, 'active': activePanel == 'sksjjg' }"
  22. @click="changePanel('sksjjg')">
  23. <div class="icon-box"></div>
  24. <div class="label">时空数据加工</div>
  25. </div>
  26. <div class="divider"></div>
  27. <div :class="{ 'process-item': true, 'active': activePanel == 'sksjgl' }"
  28. @click="changePanel('sksjgl')">
  29. <div class="icon-box"></div>
  30. <div class="label">时空数据管理</div>
  31. </div>
  32. <div class="divider"></div>
  33. <div :class="{ 'process-item': true, 'active': activePanel == 'sksjfb' }"
  34. @click="changePanel('sksjfb')">
  35. <div class="icon-box"></div>
  36. <div class="label">时空数据发布</div>
  37. </div>
  38. </div>
  39. <!-- 流程内容 -->
  40. <div class="process-content">
  41. <div class="process-content-item" v-for="(item, index) in nowFuncContent" :key="index">
  42. <a :href="item.url" target="_blank" rel="noopener noreferrer">
  43. <div class="pictrue"
  44. :style="{ background: 'url(' + item.image + ') no-repeat center center/100% 100%' }"></div>
  45. <div class="label">{{ item.label }}</div>
  46. </a>
  47. </div>
  48. </div>
  49. </div>
  50. <div class="time-space-operator-lib">
  51. <!-- 标题区域 -->
  52. <div class="title-section">
  53. <h1>时空算子库</h1>
  54. </div>
  55. <!-- 描述区域 -->
  56. <div class="desc-section">
  57. <p>
  58. 时空算子库具备丰富且强大的功能能力,在空间计算方面,涵盖量托轮廓下的宽度和面积计算,可利用投影坐标系结合既定定理与比例尺换算公式计算宽度,将多边形分割成三角形计算面积;还能判断点线面体的相互状态,通过计算点到线距离、射线法等方式判断点与线、面关系,利用计算几何方法判断线与线、线与面、体与点线面的关系;可进行缓冲区计算,以点、线、面为基础按给定距离生成缓冲区,支持线面体分割,依据指定规则对其进行分割并重新构建边和拓扑关系。在时空分析方面,能够对个面进行时空差异分析,判断空间重叠部分并通过求差来得到不相交面,同时考虑时间因素分析不同时间点面的状态变化。
  59. </p>
  60. </div>
  61. <!-- 业务专区区域 -->
  62. <div class="business-section">
  63. <div class="business-header">
  64. <span>业务专属时空数据</span>
  65. <button class="more-btn">查看更多</button>
  66. </div>
  67. <!-- 功能卡片列表 -->
  68. <!-- 单个功能卡片 -->
  69. <div class="card-list">
  70. <div class="card-item" v-for="(item, index) in cardList" :key="index">
  71. <div class="card-title">{{ item.title }}</div>
  72. <div class="card-bg" :style="{ backgroundColor: item.bgColor }"></div>
  73. <div class="card-desc">{{ item.desc }}</div>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. </template>
  80. <script>
  81. export default {
  82. data() {
  83. return {
  84. activePanel: 'sjzljc',
  85. funcList: systemConfig.sksjgl.funcList,
  86. nowFuncContent: [],
  87. cardList: [
  88. {
  89. title: "量托计算宽度面积",
  90. bgColor: "#1a4b8e",
  91. desc: "城市水系承载空间分析数据,包括主干道网和街道直径"
  92. },
  93. {
  94. title: "设置障碍的路径计算",
  95. bgColor: "#3a3a4a",
  96. desc: "城市大气降水水位时空监测,数据的历史分析"
  97. },
  98. {
  99. title: "判断点线面体的相互状态",
  100. bgColor: "#5a3a7a",
  101. desc: "公共服务设施分布分析,包含医院、教育、交通等场所"
  102. },
  103. {
  104. title: "缓冲区计算",
  105. bgColor: "#2a7a5a",
  106. desc: "农业用地分布现状与种植结构空间数据、全域耕地空间"
  107. },
  108. {
  109. title: "线面体分割",
  110. bgColor: "#1a5a8a",
  111. desc: "主要河网分布与水文监测数据、流域相关大数据"
  112. },
  113. {
  114. title: "时空差异分析",
  115. bgColor: "#1a6a9a",
  116. desc: "主要河网分布与水文监测数据、流域相关大数据"
  117. }
  118. ]
  119. };
  120. },
  121. mounted() {
  122. this.changePanel(this.activePanel)
  123. },
  124. methods: {
  125. changePanel(active) {
  126. this.activePanel = active;
  127. this.nowFuncContent = this.funcList[this.activePanel]
  128. }
  129. }
  130. };
  131. </script>
  132. <style lang="less" scoped>
  133. .container {
  134. width: 100%;
  135. margin: 0 auto;
  136. .server_title {
  137. display: flex;
  138. justify-content: center;
  139. align-items: center;
  140. .server_title_text {
  141. width: calc(100vw - 824px);
  142. height: 786px;
  143. background-color: #1c2631;
  144. color: #fff;
  145. padding: 0 160px 0 60px;
  146. display: flex;
  147. flex-direction: column;
  148. justify-content: center;
  149. overflow: hidden;
  150. &_title {
  151. font-size: 64px;
  152. font-weight: bold;
  153. letter-spacing: 0.5rem;
  154. }
  155. &_content {
  156. margin-top: 77px;
  157. font-size: 22px;
  158. }
  159. }
  160. }
  161. .checkModule {
  162. width: 100%;
  163. background-color: #0f2545;
  164. /* 流程步骤样式 */
  165. .process-bar {
  166. width: fit-content;
  167. margin: 0 auto;
  168. padding-top: 100px;
  169. padding-bottom: 100px;
  170. .process-item {
  171. width: 250px;
  172. height: 200px;
  173. display: inline-block;
  174. color: #ffffff;
  175. cursor: pointer;
  176. border-radius: 10px;
  177. padding: 10px 15px;
  178. .icon-box {
  179. width: 90px;
  180. height: 90px;
  181. text-align: center;
  182. margin: 30px 80px 30px 80px;
  183. }
  184. .label {
  185. height: 50px;
  186. line-height: 50px;
  187. font-size: 24px;
  188. text-align: center;
  189. letter-spacing: 5px;
  190. }
  191. &.active {
  192. background-color: rgba(64, 149, 229, 0.69);
  193. }
  194. &:hover {
  195. background-color: rgba(64, 149, 229, 0.69);
  196. }
  197. &:nth-child(1) .icon-box {
  198. background: url("~@/assets/images/sksjgl/sjzljc.png") no-repeat center center/100% 100%;
  199. }
  200. &:nth-child(3) .icon-box {
  201. background: url("~@/assets/images/sksjgl/sksjjg.png") no-repeat center center/100% 100%;
  202. }
  203. &:nth-child(5) .icon-box {
  204. background: url("~@/assets/images/sksjgl/sksjgl.png") no-repeat center center/100% 100%;
  205. }
  206. &:nth-child(7) .icon-box {
  207. background: url("~@/assets/images/sksjgl/sksjfb.png") no-repeat center center/100% 100%;
  208. }
  209. }
  210. .divider {
  211. width: 60px;
  212. height: 200px;
  213. vertical-align: top;
  214. display: inline-block;
  215. background: url("~@/assets/images/sksjgl/jiantou.png") no-repeat center center/100%;
  216. }
  217. }
  218. /* 流程内容样式 */
  219. .process-content {
  220. width: 100%;
  221. padding: 50px 150px;
  222. box-sizing: border-box;
  223. display: flex;
  224. /* 允许换行 */
  225. flex-wrap: wrap;
  226. /* 元素之间的间距(可选) */
  227. gap: 75px;
  228. .process-content-item {
  229. /* 核心:每行2个,扣除gap间距 */
  230. width: calc(50% - 40px);
  231. height: 400px;
  232. // background: #f0f8ff;
  233. // border: 1px solid #409eff;
  234. display: flex;
  235. align-items: center;
  236. justify-content: center;
  237. font-size: 18px;
  238. color: #333;
  239. a {
  240. width: 100%;
  241. height: 100%;
  242. .pictrue {
  243. width: 100%;
  244. height: 361px;
  245. border-radius: 8px;
  246. transition: all 0.3s ease;
  247. }
  248. .label {
  249. color: #ffffff;
  250. text-align: center;
  251. height: 70px;
  252. line-height: 70px;
  253. font-size: 24px;
  254. }
  255. }
  256. &:hover .pictrue {
  257. transform: scale(1.05) translateY(-5px);
  258. box-shadow: 0 10px 30px rgba(24, 144, 255, 0.3);
  259. border-color: rgba(24, 144, 255, 0.6);
  260. }
  261. }
  262. }
  263. }
  264. .time-space-operator-lib {
  265. background-color: #1e407c;
  266. color: #fff;
  267. padding: 100px 150px;
  268. box-sizing: border-box;
  269. /* 标题区域 */
  270. .title-section {
  271. text-align: center;
  272. margin-bottom: 50px;
  273. h1 {
  274. font-size: 50px;
  275. font-weight: bold;
  276. }
  277. }
  278. /* 描述区域 */
  279. .desc-section {
  280. margin-bottom: 30px;
  281. line-height: 2;
  282. font-size: 20px;
  283. text-indent: 2em;
  284. }
  285. /* 业务专区区域 */
  286. .business-section {
  287. margin-top: 20px;
  288. border-radius: 16px 16px 16px 16px;
  289. background-color: rgba(31, 41, 55, 0.16);
  290. border: 1px solid #374151;
  291. padding: 20px 20px;
  292. box-sizing: border-box;
  293. .business-header {
  294. display: flex;
  295. justify-content: space-between;
  296. align-items: center;
  297. margin-bottom: 15px;
  298. font-size: 16px;
  299. span {
  300. font-size: 20px;
  301. }
  302. .more-btn {
  303. background-color: transparent;
  304. border: 1px solid #fff;
  305. color: #fff;
  306. padding: 4px 12px;
  307. border-radius: 4px;
  308. cursor: pointer;
  309. }
  310. }
  311. }
  312. /* 卡片列表 */
  313. .card-list {
  314. display: grid;
  315. grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  316. gap: 55px;
  317. .card-item {
  318. background-color: rgba(255, 255, 255, 0.1);
  319. padding: 15px;
  320. border-radius: 8px;
  321. height: 240px;
  322. display: flex;
  323. flex-direction: column;
  324. &:hover {
  325. cursor: pointer;
  326. box-shadow: 0 10px 30px rgba(24, 144, 255, 0.3);
  327. border-color: rgba(24, 144, 255, 0.6);
  328. }
  329. .card-title {
  330. font-size: 15px;
  331. font-weight: 500;
  332. margin-bottom: 10px;
  333. }
  334. .card-bg {
  335. flex: 1;
  336. border-radius: 4px;
  337. margin: 8px 0;
  338. }
  339. .card-desc {
  340. font-size: 12px;
  341. opacity: 0.8;
  342. line-height: 1.4;
  343. }
  344. }
  345. }
  346. }
  347. }
  348. </style>