|
@@ -56,46 +56,47 @@
|
|
|
|
|
|
<section class="one">
|
|
|
<div class="videoContainer">
|
|
|
- <video id="back_video" :style="fixStyle" class="video fillWidth" muted autoplay loop playsinline preload="metadata" crossorigin="anoymous">
|
|
|
- <source :src="background" type="video/mp4" />
|
|
|
+ <video id="back_video" :style="fixStyle" class="video fillWidth" muted autoplay loop playsinline preload="metadata" crossorigin="anoymous" v-if="pageData.type1=='video'">
|
|
|
+ <source :src="pageData.url1" type="video/mp4" />
|
|
|
</video>
|
|
|
-
|
|
|
+ <el-image :src="pageData.url1" class="video fillWidth" fit="cover" v-if="pageData.type1=='image'"></el-image>
|
|
|
</div>
|
|
|
<div class="subTitle">
|
|
|
- <h2 v-html="pageData.subTitle"></h2>
|
|
|
+ <h2 v-html="pageData.subtitle1"></h2>
|
|
|
</div>
|
|
|
<div class="title">
|
|
|
<div v-show="scroll_top == 0">
|
|
|
<h1 :style="show_white?'color: #fff':''">{{pageData.title}}</h1>
|
|
|
<div class="line" :style="show_white?'background: rgba(255,255,255,.5)':''"></div>
|
|
|
<div class="hflex jbetween" v-show="show_white">
|
|
|
- <div class="text point">{{pageData.date}}</div>
|
|
|
+ <div class="text point">{{pageData.home_time}}</div>
|
|
|
<div class="hflex point" @click="scorll_down(800)">
|
|
|
<img class="down" src="@/assets/images/common/fv-arrow-down.svg" alt="" />
|
|
|
<div class="text">向下滑动</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="content" v-html="pageData.content"></div>
|
|
|
+ <div class="content" v-html="pageData.subtitle2"></div>
|
|
|
|
|
|
</div>
|
|
|
- <div class="icon_down vflex acenter jbetween" v-show="scroll_top > 200 && scroll_top < 1500" @click="scorll_down2(-1)">
|
|
|
+ <div class="icon_down vflex acenter jbetween point" v-show="scroll_top > 200 && scroll_top < 1500" @click="scorll_down2(-1)">
|
|
|
<img src="@/assets/images/common/icon-down-1.png" alt="" />
|
|
|
<img src="@/assets/images/common/icon-down-2.png" alt="" />
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
- <div v-for="(item,index) in pageData.list" :key="index" class="two">
|
|
|
+ <div v-for="(item,index) in pageList" :key="index" class="two">
|
|
|
<div class="video_bg" :id="'video' + index">
|
|
|
- <video :src="item.background" muted autoplay loop playsinline preload="metadata" crossorigin="anymous"></video>
|
|
|
+ <video :src="item.url" muted autoplay loop playsinline preload="metadata" crossorigin="anymous" v-if="item.type2=='video'"></video>
|
|
|
+ <el-image :src="item.url" fit="cover" class="img" v-if="item.type2=='image'"></el-image>
|
|
|
<div class="content hflex jbetween">
|
|
|
<div class="content_left">
|
|
|
- <div class="name">{{ item.name }}</div>
|
|
|
- <div class="wenan" v-html="item.text"></div>
|
|
|
+ <div class="name">{{ item.title }}</div>
|
|
|
+ <div class="wenan" v-html="item.content"></div>
|
|
|
</div>
|
|
|
<div class="content_right vflex acenter jend">
|
|
|
<div class="vflex acenter">
|
|
|
- <div v-for="(items,indexs) in pageData.list.length" :key="indexs">
|
|
|
+ <div v-for="(items,indexs) in pageList.length" :key="indexs">
|
|
|
<div class="circle point" :class="index == indexs?'circle_active':''" @click="jump(indexs)"></div>
|
|
|
</div>
|
|
|
<div class="icon_down2 point vflex acenter jbetween" @click="scorll_down2(index + 1)">
|
|
@@ -105,7 +106,7 @@
|
|
|
</div>
|
|
|
<div class="right_index">
|
|
|
<span class="indexs">{{ index < 10 ? '0' + (index + 1) : index + 1 }}</span>
|
|
|
- <span>/{{ pageData.list.length < 10 ? '0' + pageData.list.length : pageData.list.length }}</span>
|
|
|
+ <span>/{{ pageList.length < 10 ? '0' + pageList.length : pageList.length }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -114,21 +115,32 @@
|
|
|
</div>
|
|
|
<div class="three">
|
|
|
<div class="video_bg">
|
|
|
- <video id="videos" :src="pageData.background" muted autoplay loop playsinline preload="metadata" crossorigin="anymous"></video>
|
|
|
+ <video id="videos" :src="pageData.url2" muted autoplay loop playsinline preload="metadata" crossorigin="anymous" v-if="pageData.type2 == 'video'"></video>
|
|
|
+ <el-image id="videos" class="videos_img" :src="pageData.url2" fit="cover" v-if="pageData.type2 == 'image'"></el-image>
|
|
|
</div>
|
|
|
- <div class="three_text" v-html="pageData.text"></div>
|
|
|
+ <div class="three_text" v-html="pageData.subtitle3"></div>
|
|
|
</div>
|
|
|
- <Footer></Footer>
|
|
|
+ <div class="three" style="margin-top: 0;">
|
|
|
+ <div class="video_bg">
|
|
|
+ <video id="videos2" :src="pageData.url3" muted autoplay loop playsinline preload="metadata" crossorigin="anymous" v-if="pageData.type3 == 'video'"></video>
|
|
|
+ <el-image class="videos_img" :src="pageData.url3" fit="cover" v-if="pageData.type3 == 'image'"></el-image>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <Footer :footer="footer"></Footer>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { getSlider } from '@/utils/common'
|
|
|
import Footer from '@/components/footer.vue'
|
|
|
+//页面引入swiper
|
|
|
+import 'swiper/dist/css/swiper.css'
|
|
|
+import { swiper, swiperSlide } from 'vue-awesome-swiper'
|
|
|
var that = ''
|
|
|
export default {
|
|
|
name: 'index',
|
|
|
components: {
|
|
|
- Footer
|
|
|
+ Footer,
|
|
|
+ swiper,
|
|
|
+ swiperSlide
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -136,79 +148,88 @@ export default {
|
|
|
over: false,
|
|
|
show_white: false,
|
|
|
fixStyle: {},
|
|
|
- pageData: {
|
|
|
- title: '绿巍仿真植物有限公司',
|
|
|
- subTitle: '<p>加密仿真草坪 </p><br><p>加密仿真草坪环保易用 </p>',
|
|
|
- date: '2023.01.01',
|
|
|
- content: `<p>注塑仿真草坪和编织仿真草坪</p><br><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`,
|
|
|
- background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
|
|
|
- list: [
|
|
|
- {
|
|
|
- background: require('@/assets/images/common/snsdyvideodownload.mp4'),
|
|
|
- name: '加密仿真草坪 ',
|
|
|
- text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
|
|
|
- },
|
|
|
- {
|
|
|
- background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
|
|
|
- name: '加密仿真草坪 ',
|
|
|
- text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
|
|
|
- },
|
|
|
- {
|
|
|
- background: require('@/assets/images/common/snsdyvideodownload.mp4'),
|
|
|
- name: '加密仿真草坪 ',
|
|
|
- text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
|
|
|
- },
|
|
|
- {
|
|
|
- background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
|
|
|
- name: '加密仿真草坪 ',
|
|
|
- text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
|
|
|
- },
|
|
|
- {
|
|
|
- background: require('@/assets/images/common/snsdyvideodownload.mp4'),
|
|
|
- name: '加密仿真草坪 ',
|
|
|
- text: `<p>防火阻燃,为生活增添一份色彩</p></br><p>注塑仿真草坪和编织仿真草坪 </p><p>注塑仿真草坪采用注塑工艺 </p><p>编织草坪以仿草叶状的合成纤维。</p>`
|
|
|
- }
|
|
|
- ],
|
|
|
- text: `<p>加密仿真草坪</p><p>防火阻燃,为生活增添一份色彩</p><p>注塑仿真草坪和编织仿真草坪</p><p>注塑仿真草坪采用注塑工艺</p><p>编织草坪以仿草叶状的合成纤维</p>`
|
|
|
- },
|
|
|
- background: require('@/assets/images/common/3085c90d70a1733d1bd67ee7f9f5a3e6.mp4'),
|
|
|
+ pageData: {},
|
|
|
+ pageList: [],
|
|
|
scroll_top: 0,
|
|
|
windowWidth: 0,
|
|
|
windowHeight: 0,
|
|
|
- index: -1
|
|
|
+ index: -1,
|
|
|
+ footer: {}
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
that = this
|
|
|
- that.getData()
|
|
|
+ // that.getData()
|
|
|
},
|
|
|
mounted() {
|
|
|
this.getVideoStyle()
|
|
|
+ this.getConfig()
|
|
|
+ this.getList()
|
|
|
window.addEventListener('scroll', this.handleScroll) // 监听页面滚动
|
|
|
},
|
|
|
methods: {
|
|
|
- getData() {
|
|
|
+ //获取首页接口信息
|
|
|
+ getConfig() {
|
|
|
that = this
|
|
|
- console.log(this.show_white);
|
|
|
+ this.$http.getConfig().then((res) => {
|
|
|
+ console.log('基础配置',res)
|
|
|
+ if (res.data.code == 1) {
|
|
|
+ that.pageData = res.data.data
|
|
|
+ var temp = that.pageData.url1.substr(that.pageData.url1.length - 3,3)
|
|
|
+ var type = ''
|
|
|
+ if(temp == 'jpg' || temp == 'png' || temp == 'gif') {
|
|
|
+ type = 'image'
|
|
|
+ } else if(temp == 'mp4' || temp == 'avi') {
|
|
|
+ type = 'video'
|
|
|
+ }
|
|
|
+ that.$set(that.pageData,'type1',type)
|
|
|
+ var temp2 = that.pageData.url2.substr(that.pageData.url2.length - 3,3)
|
|
|
+ var type2 = ''
|
|
|
+ if(temp2 == 'jpg' || temp2 == 'png' || temp2 == 'gif') {
|
|
|
+ type2 = 'image'
|
|
|
+ } else if(temp2 == 'mp4' || temp2 == 'avi') {
|
|
|
+ type2 = 'video'
|
|
|
+ }
|
|
|
+ that.$set(that.pageData,'type2',type2)
|
|
|
+ var temp3 = that.pageData.url3.substr(that.pageData.url3.length - 3,3)
|
|
|
+ var type3 = ''
|
|
|
+ if(temp3 == 'jpg' || temp3 == 'png' || temp3 == 'gif') {
|
|
|
+ type3 = 'image'
|
|
|
+ } else if(temp3 == 'mp4' || temp3 == 'avi') {
|
|
|
+ type3 = 'video'
|
|
|
+ }
|
|
|
+ that.$set(that.pageData,'type3',type3)
|
|
|
+ that.footer = {
|
|
|
+ company: that.pageData.company,
|
|
|
+ phone: that.pageData.phone,
|
|
|
+ address: that.pageData.address,
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
that.background = that.pageData.background
|
|
|
setTimeout(() => {
|
|
|
this.show_white = true
|
|
|
}, 1000);
|
|
|
|
|
|
},
|
|
|
- async fetchData() {
|
|
|
- const data = {
|
|
|
- level: 1,
|
|
|
- hot: 1,
|
|
|
- name: ''
|
|
|
- }
|
|
|
- try {
|
|
|
- getSlider(data).then((res) => {
|
|
|
- console.log(res)
|
|
|
- })
|
|
|
- } catch(error) {
|
|
|
-
|
|
|
- }
|
|
|
+ // 获取首页列表接口
|
|
|
+ getList() {
|
|
|
+ that.$http.getIndexList().then((res) => {
|
|
|
+ console.log('首页列表',res);
|
|
|
+ if(res.data.code == 1) {
|
|
|
+ that.pageList = res.data.data.list
|
|
|
+ for(var i=0;i<that.pageList.length;i++) {
|
|
|
+ var temp = that.pageList[i].url.substr(that.pageList[i].url.length - 3,3)
|
|
|
+ var type = ''
|
|
|
+ if(temp == 'jpg' || temp == 'png' || temp == 'gif') {
|
|
|
+ type = 'image'
|
|
|
+ } else if(temp == 'mp4' || temp == 'avi') {
|
|
|
+ type = 'video'
|
|
|
+ }
|
|
|
+ that.$set(that.pageList[i],'type2',type)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
//监听屏幕大小实时给播放器设置宽高
|
|
|
getVideoStyle() {
|
|
@@ -241,6 +262,7 @@ export default {
|
|
|
}
|
|
|
window.onresize()
|
|
|
},
|
|
|
+ // 显示/隐藏菜单
|
|
|
toshow() {
|
|
|
if(this.show) {
|
|
|
this.$refs.floating_menu.style.display = 'none';
|
|
@@ -251,12 +273,15 @@ export default {
|
|
|
}
|
|
|
|
|
|
},
|
|
|
+ // 鼠标移入
|
|
|
mouseOver() {
|
|
|
this.over = true
|
|
|
},
|
|
|
+ // 鼠标离开
|
|
|
mouseLeave() {
|
|
|
this.over = false
|
|
|
},
|
|
|
+ // 点击进入菜单详情
|
|
|
toDetail(index) {
|
|
|
if(index == '1') {
|
|
|
that.$router.push('/product')
|
|
@@ -270,6 +295,7 @@ export default {
|
|
|
that.$router.push('/contact')
|
|
|
}
|
|
|
},
|
|
|
+ // 监听页面滑动
|
|
|
handleScroll() {
|
|
|
that = this
|
|
|
|
|
@@ -277,11 +303,13 @@ export default {
|
|
|
const clientHeight = document.documentElement.clientHeight;
|
|
|
|
|
|
},
|
|
|
+ // 点击向下滑动
|
|
|
scorll_down(value) {
|
|
|
console.log(value)
|
|
|
document.documentElement.scrollTop = this.scroll_top + value
|
|
|
this.scroll_top = document.documentElement.scrollTop
|
|
|
},
|
|
|
+ // 点击向下切换屏幕
|
|
|
scorll_down2(index) {
|
|
|
console.log(that.index)
|
|
|
that.index = index
|
|
@@ -300,13 +328,15 @@ export default {
|
|
|
behavior: 'smooth'
|
|
|
})
|
|
|
},
|
|
|
+ // 点击直接跳转相应屏幕
|
|
|
jump(index) {
|
|
|
that.index = index
|
|
|
document.querySelector('#video' + that.index).scrollIntoView({
|
|
|
block: 'start',
|
|
|
behavior: 'smooth'
|
|
|
})
|
|
|
- }
|
|
|
+ },
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
</script>
|