Commit b2523049 authored by lixy's avatar lixy

立即预定

parent 025fddd1
This diff is collapsed.
<template>
<a
class="detail-footer-btn"
href="https://mgmt.dfangche.com/h5/d.html">
立即预定
</a>
</template>
<script>
export default {
data() {
return {}
}
}
</script>
<style lang="scss">
@import "../assets/styles/mixin";
.detail-footer-btn{
background: #1bbb9f;
position: fixed;
width: 100%;
bottom: 0;
z-index: 9999;
padding: 19px;
color: #fff;
text-align: center;
font-size: 16px;
}
</style>
...@@ -96,6 +96,7 @@ ...@@ -96,6 +96,7 @@
</div> </div>
</div> </div>
</div> </div>
<detail-footer-btn/>
<go-top/> <go-top/>
</div> </div>
</template> </template>
...@@ -105,12 +106,14 @@ ...@@ -105,12 +106,14 @@
import Head from "~/components/head"; import Head from "~/components/head";
import DetailBanner from '~/components/detailBanner' import DetailBanner from '~/components/detailBanner'
import GoTop from "~/components/goTop"; import GoTop from "~/components/goTop";
import DetailFooterBtn from "~/components/detailFooterBtn";
export default { export default {
components: { components: {
Head, Head,
DetailBanner, DetailBanner,
GoTop GoTop,
DetailFooterBtn
}, },
data() { data() {
return { return {
......
...@@ -98,6 +98,7 @@ ...@@ -98,6 +98,7 @@
</div> </div>
</div> </div>
</div> </div>
<detail-footer-btn/>
<go-top/> <go-top/>
</div> </div>
</template> </template>
...@@ -107,12 +108,14 @@ ...@@ -107,12 +108,14 @@
import Head from "~/components/head"; import Head from "~/components/head";
import DetailBanner from '~/components/detailBanner' import DetailBanner from '~/components/detailBanner'
import GoTop from "~/components/goTop"; import GoTop from "~/components/goTop";
import DetailFooterBtn from "~/components/detailFooterBtn";
export default { export default {
components: { components: {
Head, Head,
DetailBanner, DetailBanner,
GoTop GoTop,
DetailFooterBtn
}, },
data() { data() {
return { return {
......
...@@ -158,6 +158,7 @@ ...@@ -158,6 +158,7 @@
</div> </div>
</div> </div>
</div> </div>
<detail-footer-btn/>
<go-top/> <go-top/>
</div> </div>
</template> </template>
...@@ -167,12 +168,14 @@ ...@@ -167,12 +168,14 @@
import Head from "~/components/head"; import Head from "~/components/head";
import DetailBanner from '~/components/detailBanner' import DetailBanner from '~/components/detailBanner'
import GoTop from "~/components/goTop"; import GoTop from "~/components/goTop";
import DetailFooterBtn from "~/components/detailFooterBtn";
export default { export default {
components: { components: {
Head, Head,
DetailBanner, DetailBanner,
GoTop GoTop,
DetailFooterBtn
}, },
data() { data() {
return { return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment