This commit is contained in:
我是个攻城狮
2026-05-27 16:01:15 +08:00
parent dc43370953
commit c3f5f13bb3
953 changed files with 107635 additions and 11 deletions
+53
View File
@@ -0,0 +1,53 @@
<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>