|
|
@@ -1,21 +1,8 @@
|
|
|
<?php
|
|
|
require 'CommonQuery.php';
|
|
|
|
|
|
-// 轮播图数据
|
|
|
-$carouselItems = [
|
|
|
- [
|
|
|
- "image" => "/images/test-header-1.png",
|
|
|
- "alt" => "厦门市文化遗产宣传图"
|
|
|
- ],
|
|
|
- [
|
|
|
- "image" => "https://picsum.photos/id/1036/1200/400",
|
|
|
- "alt" => "厦门风景图"
|
|
|
- ],
|
|
|
- [
|
|
|
- "image" => "https://picsum.photos/id/1037/1200/400",
|
|
|
- "alt" => "厦门文化遗产保护"
|
|
|
- ]
|
|
|
-];
|
|
|
+// 轮播图数据 - 从pr_cms_block表中获取
|
|
|
+$carouselItems = getBannerData();
|
|
|
$carouselItems2 = loadListByChannelName(6, "热门新闻");
|
|
|
// 通知公告数据
|
|
|
$notices = loadListByChannelName(10, "新闻公告");
|
|
|
@@ -49,18 +36,24 @@ $featured = loadListByChannelName(6, "热门新闻");
|
|
|
<?php include __DIR__ . '/components/navbar.php'; ?>
|
|
|
|
|
|
<!-- 轮播图 -->
|
|
|
- <div class="swiper mySwiper" style="width: 100%; height: 400px;">
|
|
|
- <div class="swiper-wrapper">
|
|
|
- <?php foreach ($carouselItems as $item): ?>
|
|
|
- <div class="swiper-slide">
|
|
|
- <img src="<?php echo $item['image']; ?>" alt="<?php echo $item['alt']; ?>" style="width: 100%; height: 100%; object-fit: cover;">
|
|
|
- </div>
|
|
|
- <?php endforeach; ?>
|
|
|
+ <div class="swiper mySwiper" style="width: 100%; height: 400px;">
|
|
|
+ <div class="swiper-wrapper">
|
|
|
+ <?php foreach ($carouselItems as $item): ?>
|
|
|
+ <div class="swiper-slide">
|
|
|
+ <?php if (!empty($item['url'])): ?>
|
|
|
+ <a href="<?php echo $item['url']; ?>" target="_blank">
|
|
|
+ <img src="<?php echo $item['image']; ?>" alt="<?php echo $item['title'] ?? '轮播图'; ?>" style="width: 100%; height: 100%; object-fit: cover;">
|
|
|
+ </a>
|
|
|
+ <?php else: ?>
|
|
|
+ <img src="<?php echo $item['image']; ?>" alt="<?php echo $item['title'] ?? '轮播图'; ?>" style="width: 100%; height: 100%; object-fit: cover;">
|
|
|
+ <?php endif; ?>
|
|
|
+ </div>
|
|
|
+ <?php endforeach; ?>
|
|
|
+ </div>
|
|
|
+ <div class="swiper-pagination"></div>
|
|
|
+ <div class="swiper-button-prev"></div>
|
|
|
+ <div class="swiper-button-next"></div>
|
|
|
</div>
|
|
|
- <div class="swiper-pagination"></div>
|
|
|
- <div class="swiper-button-prev"></div>
|
|
|
- <div class="swiper-button-next"></div>
|
|
|
- </div>
|
|
|
|
|
|
<!-- 主要内容 -->
|
|
|
<div class="main-content">
|