修改业务领域模块及联系我们界面

This commit is contained in:
wangchengming 2024-11-14 15:51:56 +08:00
parent 2c953b596c
commit 28362ac4fb
12 changed files with 147 additions and 8 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -150,7 +150,7 @@ export default {
children: [
{ title: '简介', path: '/fshg.cc/about#screen1' },
{ title: '使命', path: '/fshg.cc/about#screen3' },
{ title: '景', path: '/fshg.cc/about#screen4' },
{ title: '景', path: '/fshg.cc/about#screen4' },
{ title: '价值观', path: '/fshg.cc/about#screen5' },
],
},
@ -197,7 +197,7 @@ export default {
title: '联系我们',
children: [
{ title: '热线电话:', value: '400-001-6725', src: '/static/img/foot/icon-phone.png' },
{ title: '公司网址:', value: 'WWW.FSHG.CC', src: '/static/img/foot/icon-website.png' },
{ title: '公司网址:', value: 'www.Fshg.cc', src: '/static/img/foot/icon-website.png' },
{ title: '总部地址:', value: '海南省三亚市天涯区育春路7巷9号', src: '/static/img/foot/icon-address.png' },
],
},

View File

@ -126,11 +126,8 @@ export default {
{ title: '招募信息', path: '/recruit/socialRecruit' },
],
},
{ title: '联系我们', path: '/fshg.cc/ContactUs' },
{
title: '联系我们',
path: '/',
hash: 'myfooter',
}, {
title: '登录',
path: '/',
},

View File

@ -3,8 +3,8 @@ import axios from 'axios';
// 创建 axios 实例
const request = axios.create({
// baseURL: process.env.VUE_APP_API_BASE_URL,
baseURL: process.env.VUE_APP_API_TARGET_URL,
baseURL: process.env.VUE_APP_API_BASE_URL,
// baseURL: process.env.VUE_APP_API_TARGET_URL,
timeout: 10000,
});
request.interceptors.request.use(

View File

@ -138,6 +138,11 @@ const routes = [
component: (resolve) =>
require(['../views/About/CompanyIntroduction/Index.vue'], resolve),
},
{
path: '/fshg.cc/ContactUs',
component: (resolve) =>
require(['../views/About/ContactUs/Index.vue'], resolve),
},
{
path: '/about/socialResponsibility',
component: (resolve) =>

View File

@ -0,0 +1,137 @@
<template>
<div class="part-building">
<div class="screen2">
<div class="wrapper1130">
<div
v-for="(item, index) in contacts"
:key="index"
>
<div class="title">
{{ item.title }}
</div>
<div>
<div
v-for="link in item.children"
:key="link.title"
style="margin-bottom: 20rem;"
>
<p
:title="link.title"
style="white-space: nowrap;color: #000000;font-size: 18rem;display: inline-block;"
>
<img
:src="link.src"
style="width: 18rem;height: 18rem;"
>
<span style="padding-left: 12rem">{{ link.title }}</span>
<span>{{ link.value }}</span>
</p>
</div>
</div>
</div>
</div>
</div>
<FootBar theme="dark"></FootBar>
</div>
</template>
<script>
import { mapState } from 'vuex';
import FootBar from '@/components/FootBar.vue';
export default {
components: {
FootBar,
},
data () {
return {
screen2: {
offsets: [300],
offsetLevel: -1,
title: '',
contentCn: ``,
},
contacts: [
{
title: '联系我们',
children: [
{ title: '服务热线:', value: '+86.400-001-6725', src: '/static/img/contactUs/phone.png' },
{ title: '公司网址:', value: 'www.Fshg.cc', src: '/static/img/contactUs/website.png' },
{ title: '公司邮箱:', value: 'Info@Fshg.cc', src: '/static/img/contactUs/email.png' },
{ title: '公众号:', value: 'FutureStarHolding', src: '/static/img/contactUs/publicAccount.png' },
{ title: '服务时间:', value: '周一至周五AM 09:00-12:00 PM 01:00-06:00', src: '/static/img/contactUs/serviceTime.png' },
{ title: '公司地址:', value: '海南省三亚市天涯区育春路七巷九号', src: '/static/img/contactUs/address.png' },
{ title: '邮编:', value: '572022', src: '/static/img/contactUs/postcode.png' },
{ title: '北京地址:', value: '北京市朝阳区霄云路36号国航大厦3/7楼', src: '/static/img/contactUs/address.png' },
{ title: '邮编:', value: '100027', src: '/static/img/contactUs/postcode.png' },
],
},
],
};
},
computed: {
...mapState({
scrollTop: state => state.scroll.scrollTop,
webScale: state => state.web.scale,
}),
},
watch: {
scrollTop (val) {
console.log('score', val, this.webScale);
const v = val / this.webScale;
if (v < 50) {
this.$event.$emit('nav-theme', 'light', {
bgColor: '#ffffff00',
shadow: false,
});
} else {
this.$event.$emit('nav-theme', 'light');
}
const i2 = this.screen2.offsetLevel + 1;
console.log('i2', i2);
if (v >= this.screen2.offsets[i2]) {
this.screen2.offsetLevel = i2;
}
},
},
created () {
this.$event.$emit('nav-theme', 'light', {
bgColor: '#ffffff00',
shadow: false,
});
},
methods: { },
};
</script>
<style scoped>
.part-building {
width: 100%;
}
.screen2 {
padding: 200rem 0;
box-sizing: border-box;
background: #FFFFFF;
}
.screen2 .title {
font-family: MicrosoftYaHei;
font-weight: 400;
font-size: 36rem;
color: #000000;
margin-bottom: 70rem;
white-space: pre-line;
line-height: 72rem;
}
.screen2 .list-wrapper .content-cn {
width: 1160rem;
font-family: MicrosoftYaHeiLight;
font-weight: 300;
font-size: 18rem;
color: #000000;
line-height: 36rem;
letter-spacing:2.8rem;
text-align: justify;
white-space: pre-wrap;
}
</style>