54 lines
968 B
Vue
54 lines
968 B
Vue
<template>
|
|
<Layout :index="3" :banner="0" :imgs="'../static/img/page/ch1.jpg'" :titles="'我要出海'" :title_content="'我要出海'">
|
|
<view class="content-fx2" >
|
|
<image class="content-fx3" @tap="goPath('/apply')" src="../static/img/page/fx3.png"></image>
|
|
</view>
|
|
<Kefu></Kefu>
|
|
</Layout>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import Layout from './part/layout.vue';
|
|
import Kefu from './part/kefu.vue';
|
|
export default {
|
|
components:{
|
|
Layout,
|
|
Kefu
|
|
},
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
created() {
|
|
// this.getZhishu();
|
|
},
|
|
beforeDestroy() {
|
|
},
|
|
methods:{
|
|
tob(){
|
|
window.scrollTo(0, document.body.scrollHeight);
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.content-fx2{
|
|
width: 100%;
|
|
height: 878px;
|
|
background-image: url('../static/img/page/ch2.jpg');
|
|
background-size: cover;
|
|
position:relative;
|
|
}
|
|
.content-fx3{
|
|
width: 196px;
|
|
height: 51px;
|
|
bottom: 100px;
|
|
left: 862px;
|
|
position: absolute;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|