|
@@ -1,76 +1,32 @@
|
|
|
<template>
|
|
|
- <section id="hero">
|
|
|
+ <section id="home">
|
|
|
<v-parallax dark src="@/assets/img/bgHero.jpg" height="750">
|
|
|
<v-row align="center" justify="center">
|
|
|
<v-col cols="10">
|
|
|
<v-row align="center" justify="center">
|
|
|
<v-col cols="12" md="6" xl="8">
|
|
|
- <h1 class="display-2 font-weight-bold mb-4">Vuetify.js</h1>
|
|
|
+ <h1 class="display-2 font-weight-bold mb-4">{{ homeData.title }}</h1>
|
|
|
<h1 class="font-weight-light">
|
|
|
- Lorem ipsum dolor sit amet consectetur <br />
|
|
|
- adipisicing elit. Maiores porro voluptatibus <br />
|
|
|
- delectus nam optio harum!
|
|
|
+ {{ homeData.content }}
|
|
|
</h1>
|
|
|
<v-btn
|
|
|
- rounded
|
|
|
- outlined
|
|
|
- large
|
|
|
- dark
|
|
|
- @click="$vuetify.goTo('#features')"
|
|
|
- class="mt-5"
|
|
|
+ rounded
|
|
|
+ outlined
|
|
|
+ large
|
|
|
+ dark
|
|
|
+ @click="$vuetify.goTo('#features')"
|
|
|
+ class="mt-5"
|
|
|
>
|
|
|
Saiba mais
|
|
|
<v-icon class="ml-2">mdi-arrow-down</v-icon>
|
|
|
</v-btn>
|
|
|
- <div class="video d-flex align-center py-4">
|
|
|
- <a @click.stop="dialog = true" class="playBut">
|
|
|
- <svg
|
|
|
- version="1.1"
|
|
|
- xmlns="http://www.w3.org/2000/svg"
|
|
|
- xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
|
- xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
|
|
|
- x="0px"
|
|
|
- y="0px"
|
|
|
- width="60px"
|
|
|
- height="60px"
|
|
|
- viewBox="0 0 213.7 213.7"
|
|
|
- enable-background="new 0 0 213.7 213.7"
|
|
|
- xml:space="preserve"
|
|
|
- >
|
|
|
- <polygon
|
|
|
- class="triangle"
|
|
|
- id="XMLID_18_"
|
|
|
- fill="none"
|
|
|
- stroke-width="7"
|
|
|
- stroke-linecap="round"
|
|
|
- stroke-linejoin="round"
|
|
|
- stroke-miterlimit="10"
|
|
|
- points="73.5,62.5 148.5,105.8 73.5,149.1 "
|
|
|
- />
|
|
|
-
|
|
|
- <circle
|
|
|
- class="circle"
|
|
|
- id="XMLID_17_"
|
|
|
- fill="none"
|
|
|
- stroke-width="7"
|
|
|
- stroke-linecap="round"
|
|
|
- stroke-linejoin="round"
|
|
|
- stroke-miterlimit="10"
|
|
|
- cx="106.8"
|
|
|
- cy="106.8"
|
|
|
- r="103.3"
|
|
|
- />
|
|
|
- </svg>
|
|
|
- </a>
|
|
|
- <p class="subheading ml-2 mb-0">Assista o vídeo</p>
|
|
|
- </div>
|
|
|
</v-col>
|
|
|
- <v-col cols="12" md="6" xl="4" class="hidden-sm-and-down"> </v-col>
|
|
|
+ <v-col cols="12" md="6" xl="4" class="hidden-sm-and-down"></v-col>
|
|
|
</v-row>
|
|
|
</v-col>
|
|
|
</v-row>
|
|
|
<div class="svg-border-waves text-white">
|
|
|
- <v-img src="@/assets/img/borderWaves.svg" />
|
|
|
+ <v-img src="@/assets/img/borderWaves.svg"/>
|
|
|
</div>
|
|
|
</v-parallax>
|
|
|
<v-container fluid id="features" class="mt-2">
|
|
@@ -95,28 +51,28 @@
|
|
|
</h1>
|
|
|
</v-col> -->
|
|
|
<v-col
|
|
|
- cols="12"
|
|
|
- sm="4"
|
|
|
- class="text-center"
|
|
|
- v-for="(feature, i) in features"
|
|
|
- :key="i"
|
|
|
+ cols="12"
|
|
|
+ sm="4"
|
|
|
+ class="text-center"
|
|
|
+ v-for="(feature, i) in productsData"
|
|
|
+ :key="i"
|
|
|
>
|
|
|
<v-hover v-slot:default="{ hover }">
|
|
|
<v-card
|
|
|
- class="card"
|
|
|
- shaped
|
|
|
- :elevation="hover ? 10 : 4"
|
|
|
- :class="{ up: hover }"
|
|
|
+ class="card"
|
|
|
+ shaped
|
|
|
+ :elevation="hover ? 10 : 4"
|
|
|
+ :class="{ up: hover }"
|
|
|
>
|
|
|
<v-img
|
|
|
- :src="feature.img"
|
|
|
- max-width="100px"
|
|
|
- class="d-block ml-auto mr-auto"
|
|
|
- :class="{ 'zoom-efect': hover }"
|
|
|
+ :src="getImageUrl(i)"
|
|
|
+ max-width="100px"
|
|
|
+ class="d-block ml-auto mr-auto"
|
|
|
+ :class="{ 'zoom-efect': hover }"
|
|
|
></v-img>
|
|
|
- <h1 class="font-weight-regular">{{ feature.title }}</h1>
|
|
|
- <h4 class="font-weight-regular subtitle-1">
|
|
|
- {{ feature.text }}
|
|
|
+ <h1 class="font-weight-regular">{{ feature.name }}</h1>
|
|
|
+ <h4 class="font-weight-regular subtitle-1 text-container">
|
|
|
+ {{ feature.description }}
|
|
|
</h4>
|
|
|
</v-card>
|
|
|
</v-hover>
|
|
@@ -128,19 +84,21 @@
|
|
|
<v-dialog v-model="dialog" max-width="640px">
|
|
|
<v-card>
|
|
|
<youtube
|
|
|
- :video-id="videoId"
|
|
|
- @ready="ready"
|
|
|
- @playing="playing"
|
|
|
+ :video-id="videoId"
|
|
|
+ @ready="ready"
|
|
|
+ @playing="playing"
|
|
|
></youtube>
|
|
|
</v-card>
|
|
|
</v-dialog>
|
|
|
<div class="svg-border-waves">
|
|
|
- <img src="~@/assets/img/wave2.svg" />
|
|
|
+ <img src="~@/assets/img/wave2.svg"/>
|
|
|
</div>
|
|
|
</section>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import axios from 'axios';
|
|
|
+
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -178,6 +136,14 @@ export default {
|
|
|
text: "Lorem ipsum dolor sit amet consectetur adipisicing elit.",
|
|
|
},
|
|
|
],
|
|
|
+ homeData: {},
|
|
|
+ userWebsiteId: "",
|
|
|
+ productsData: [],
|
|
|
+ images: [
|
|
|
+ require("@/assets/img/icon1.png"),
|
|
|
+ require("@/assets/img/icon2.png"),
|
|
|
+ require("@/assets/img/icon3.png"),
|
|
|
+ ]
|
|
|
};
|
|
|
},
|
|
|
watch: {
|
|
@@ -187,6 +153,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
+ created() {
|
|
|
+ this.getWebsiteData();
|
|
|
+ },
|
|
|
methods: {
|
|
|
ready(event) {
|
|
|
this.player = event.target;
|
|
@@ -207,6 +176,55 @@ export default {
|
|
|
pause() {
|
|
|
this.player.pauseVideo();
|
|
|
},
|
|
|
+ getImageUrl(index) {
|
|
|
+ // 使用 index 对 3 取余数,循环分配图片
|
|
|
+ return this.images[index % this.images.length];
|
|
|
+ },
|
|
|
+ getWebsiteData() {
|
|
|
+ const websiteCode = this.extractSubstring(window.location.pathname);
|
|
|
+ let userWebsiteId = "";
|
|
|
+ axios.get("/api/website/template/getWebsiteByWebsiteCode", {
|
|
|
+ params: {
|
|
|
+ websiteCode: websiteCode,
|
|
|
+ }
|
|
|
+ }).then(response => {
|
|
|
+ if (response.data.code === 200) {
|
|
|
+ userWebsiteId = response.data.data.id;
|
|
|
+ this.getHomeTitleAndContent(userWebsiteId)
|
|
|
+ this.getProductsTitleAndContent(userWebsiteId)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getHomeTitleAndContent(userWebsiteId) {
|
|
|
+ axios.get("/api/website/template/home", {
|
|
|
+ params: {
|
|
|
+ userWebsiteId: userWebsiteId,
|
|
|
+ },
|
|
|
+ }).then(response => {
|
|
|
+ this.homeData = response.data.data;
|
|
|
+ })
|
|
|
+ },
|
|
|
+ getProductsTitleAndContent(userWebsiteId) {
|
|
|
+ axios.get("/api/website/template/products", {
|
|
|
+ params: {
|
|
|
+ userWebsiteId: userWebsiteId,
|
|
|
+ },
|
|
|
+ }).then(response => {
|
|
|
+ this.productsData = response.data.data;
|
|
|
+ })
|
|
|
+ },
|
|
|
+ extractSubstring(str) {
|
|
|
+ const startIndex = str.indexOf('/');
|
|
|
+ if (startIndex !== -1) {
|
|
|
+ const endIndex = str.indexOf('/', startIndex + 1);
|
|
|
+ if (endIndex !== -1) {
|
|
|
+ return str.substring(startIndex + 1, endIndex - 1);
|
|
|
+ } else {
|
|
|
+ return str.substring(startIndex + 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return ''; // 如果没有找到匹配,返回空字符串
|
|
|
+ }
|
|
|
},
|
|
|
};
|
|
|
</script>
|
|
@@ -284,6 +302,7 @@ export default {
|
|
|
#hero {
|
|
|
z-index: 0;
|
|
|
}
|
|
|
+
|
|
|
.svg-border-waves img {
|
|
|
position: absolute;
|
|
|
bottom: 0;
|
|
@@ -316,6 +335,13 @@ export default {
|
|
|
transform: translateY(-20px);
|
|
|
transition: 0.5s ease-out;
|
|
|
}
|
|
|
+.text-container {
|
|
|
+ display: -webkit-box;
|
|
|
+ -webkit-line-clamp: 3; /* 显示三行 */
|
|
|
+ -webkit-box-orient: vertical;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+}
|
|
|
</style>
|
|
|
|
|
|
<style>
|