|
@ -6,7 +6,7 @@ |
|
|
<div :class="activeNum === 3 ? 'nav-box-active' : ''" @click="changeIndex(3)"><a href="#mao4">合作伙伴</a></div> |
|
|
<div :class="activeNum === 3 ? 'nav-box-active' : ''" @click="changeIndex(3)"><a href="#mao4">合作伙伴</a></div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<a name="mao1"> |
|
|
<a name="mao1" id="mao1"> |
|
|
<div class="banner-box"> |
|
|
<div class="banner-box"> |
|
|
<a-carousel :autoplay-speed="time" autoplay> |
|
|
<a-carousel :autoplay-speed="time" autoplay> |
|
|
<div class="img-box"> |
|
|
<div class="img-box"> |
|
@ -63,9 +63,9 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- 创新服务 --> |
|
|
<!-- 创新服务 --> |
|
|
<a name="mao3"> |
|
|
<a name="mao3" id="mao3"> |
|
|
<div class="service-box bg-gray text-center"> |
|
|
<div class="service-box bg-gray text-center"> |
|
|
<div class="title w-1500"><img src="~assets/about/title4.jpg" /></div> |
|
|
<div class="title w-1500"><img src="~assets/about/title4.png" /></div> |
|
|
<div class="service-flow"> |
|
|
<div class="service-flow"> |
|
|
<div class="flow-path" style="padding: 15px 9%"> |
|
|
<div class="flow-path" style="padding: 15px 9%"> |
|
|
<div class="flow-title" style="top: 30%">服务流程</div> |
|
|
<div class="flow-title" style="top: 30%">服务流程</div> |
|
@ -110,7 +110,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</a> |
|
|
</a> |
|
|
|
|
|
|
|
|
<a name="mao4"> |
|
|
<a name="mao4" id="mao4"> |
|
|
<div class="partner-box text-center"> |
|
|
<div class="partner-box text-center"> |
|
|
<div class="title w-1500"> |
|
|
<div class="title w-1500"> |
|
|
<img src="~assets/about/title2.jpg" /> |
|
|
<img src="~assets/about/title2.jpg" /> |
|
@ -140,7 +140,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</a> |
|
|
</a> |
|
|
|
|
|
|
|
|
<div class="bg-gray" style="height: 200px"></div> |
|
|
<div class="bg-gray" style="height: 100px"></div> |
|
|
|
|
|
|
|
|
<a-modal :footer="null" v-model="showModelIntro"> |
|
|
<a-modal :footer="null" v-model="showModelIntro"> |
|
|
<p class="mt-3">{{ modelIntro }}</p> |
|
|
<p class="mt-3">{{ modelIntro }}</p> |
|
@ -275,6 +275,14 @@ export default { |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
watch:{ |
|
|
|
|
|
$route(to){ |
|
|
|
|
|
if(to.hash){ |
|
|
|
|
|
this.setJump(to.hash) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
computed: { |
|
|
computed: { |
|
|
...mapState('home', ['partners']), |
|
|
...mapState('home', ['partners']), |
|
|
...mapState('user', ['picCode']), |
|
|
...mapState('user', ['picCode']), |
|
@ -325,12 +333,41 @@ export default { |
|
|
}); |
|
|
}); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
mounted() { |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
if(this.$route.hash){ |
|
|
|
|
|
this.setJump(this.$route.hash) |
|
|
|
|
|
} |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
methods: { |
|
|
methods: { |
|
|
// ...mapMutations('home', ['setServiceArr']), |
|
|
// ...mapMutations('home', ['setServiceArr']), |
|
|
...mapMutations('home', ['setPartners']), |
|
|
...mapMutations('home', ['setPartners']), |
|
|
...mapActions('user', ['sendCode', 'sendPicCode']), |
|
|
...mapActions('user', ['sendCode', 'sendPicCode']), |
|
|
...mapActions('home', ['getFrontSearchCompany', 'getUserSer']), |
|
|
...mapActions('home', ['getFrontSearchCompany', 'getUserSer']), |
|
|
|
|
|
|
|
|
|
|
|
setJump(hash){ |
|
|
|
|
|
if(hash === '#mao1'){ |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.changeIndex(0) |
|
|
|
|
|
document.getElementById('mao1').scrollIntoView(true) |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
if(hash === '#mao3'){ |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.changeIndex(2) |
|
|
|
|
|
document.getElementById('mao3').scrollIntoView(true) |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
if(hash === '#mao4'){ |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.changeIndex(3) |
|
|
|
|
|
document.getElementById('mao4').scrollIntoView(true) |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
// 改变单当前页数 |
|
|
// 改变单当前页数 |
|
|
onShowSizeChange(current, size) { |
|
|
onShowSizeChange(current, size) { |
|
|
this.current = current; |
|
|
this.current = current; |
|
@ -513,8 +550,9 @@ a { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.w-1500 { |
|
|
.w-1500 { |
|
|
display: inline-block; |
|
|
// display: inline-block; |
|
|
width: 1500px; |
|
|
// width: 1500px; |
|
|
|
|
|
width: 82%; |
|
|
margin: 0 auto; |
|
|
margin: 0 auto; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -586,8 +624,8 @@ a { |
|
|
justify-content: space-between; |
|
|
justify-content: space-between; |
|
|
|
|
|
|
|
|
> div { |
|
|
> div { |
|
|
padding: 80px 60px 0; |
|
|
padding: 50px 60px 0; |
|
|
width: 700px; |
|
|
width: 45%; |
|
|
height: 400px; |
|
|
height: 400px; |
|
|
background-color: rgba(19, 172, 196, 0.8); |
|
|
background-color: rgba(19, 172, 196, 0.8); |
|
|
text-align: left; |
|
|
text-align: left; |
|
|