This commit is contained in:
那些花儿
2025-09-25 17:00:19 +08:00
parent 4ef59d727a
commit 56902a6fc6
12 changed files with 413 additions and 35 deletions
@@ -0,0 +1,64 @@
<!--#
layout("/layouts/v4/baseLayout.html"){
#-->
<!-- 引入Swiper CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<style>
.section-banner {
position: relative;
overflow: hidden;
}
.section-banner .banner-img {
width: 100%;
height: 100%;
}
.section-banner .banner-img img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
<div class="v4-container" id="v4-home-app">
<!-- 首页banner -->
<div class="section-banner">
<div class="banner-img">
<img src="${config.AppHomeImg!}" alt=""/>
</div>
</div>
<act/>
</div>
<!-- 引入Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script>
<!--#include("act.js"){}#-->
new Vue({
el: '#v4-home-app',
data: {
},
components: {
'act': act
},
mounted() {
},
methods: {
}
})
</script>
<!--#
}
#-->