官网
This commit is contained in:
parent
682614ed29
commit
670431e89f
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@ logs
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
.vscode
|
||||
|
@ -39,7 +39,7 @@ export default defineNuxtConfig({
|
||||
server: {
|
||||
proxy: {
|
||||
'/api': {
|
||||
target: "http://naweigetetest2.hschool.com.cn/",
|
||||
target: "https://www.navigatortrades.com/",
|
||||
changeOrigin: true,
|
||||
rewrite: (path) => path.replace(/^\/api/, ''),
|
||||
}
|
||||
|
@ -431,10 +431,10 @@ const getNewsList = () => {
|
||||
console.dir(err)
|
||||
})
|
||||
}
|
||||
const top_one=ref({});
|
||||
const top_two=ref({});
|
||||
const top_three=ref({});
|
||||
const top_four=ref({});
|
||||
const top_one = ref({});
|
||||
const top_two = ref({});
|
||||
const top_three = ref({});
|
||||
const top_four = ref({});
|
||||
const topOneList = () => {
|
||||
$api.get("/api/sys_config?name=top_one")
|
||||
.then((res: any) => {
|
||||
@ -640,10 +640,15 @@ const scrollToTop = () => {
|
||||
.box2ybs3 {
|
||||
height: 180px;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
.t4::after {
|
||||
content: '';
|
||||
width: 120px;
|
||||
height: 20px;
|
||||
background: #A3C8FF;
|
||||
display: block;
|
||||
margin-top: -13px;
|
||||
}
|
||||
.box19y {
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
@ -33,7 +33,7 @@
|
||||
<div class="flex flex-col items-center animated fadeInUp">
|
||||
<img class="w-[120px] h-[120px] md:w-[150px] md:h-[150px] object-cover mb-4" src="/images/group53.png">
|
||||
<div class="oneBox1Bg1imgt">
|
||||
<h3 class="text-xl md:text-2xl font-medium text-[#333]">{{ locale=='zh'?info.about_desc:info.en_about_desc }}</h3>
|
||||
<h3 class="text-xl md:text-2xl font-medium text-[#333]">{{ $t('about_a3') }}</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -125,12 +125,12 @@ const getInfo=()=>{
|
||||
|
||||
.aboutTit h2::after {
|
||||
content: '';
|
||||
margin-top: -20px;
|
||||
margin-top: -15px;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
@media (min-width: 768px) {
|
||||
margin-top: -30px;
|
||||
width: 598px;
|
||||
margin-top: -25px;
|
||||
width: 450px;
|
||||
height: 34px;
|
||||
}
|
||||
background: #A8CBFF;
|
||||
|
@ -121,13 +121,13 @@ const getList = () => {
|
||||
width: 180px;
|
||||
height: 20px;
|
||||
@media (min-width: 768px) {
|
||||
width: 300px;
|
||||
width: 250px;
|
||||
height: 28px;
|
||||
margin-top: -30px;
|
||||
margin-top: -15px;
|
||||
}
|
||||
background: #A8CBFF;
|
||||
display: block;
|
||||
margin-top: -20px;
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
.clientBox1 h3 {
|
||||
@ -144,10 +144,10 @@ const getList = () => {
|
||||
|
||||
.clientBg1imgt h3::after {
|
||||
content: '';
|
||||
width: 150px;
|
||||
width: 100%;
|
||||
height: 16px;
|
||||
@media (min-width: 768px) {
|
||||
margin-top: -20px;
|
||||
margin-top: -10px;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
margin-left: -4px;
|
||||
|
@ -115,6 +115,9 @@ const submitForm = () => {
|
||||
}else{
|
||||
alert(t('contact_error'))
|
||||
}
|
||||
formData.name = '';
|
||||
formData.mobile = '';
|
||||
formData.content = '';
|
||||
})
|
||||
.catch((err) => {
|
||||
console.dir(err)
|
||||
@ -199,7 +202,7 @@ const shareToX = () => {
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
.contactInput{border: 0px solid;border-bottom:1px solid #A8CBFF;font-size: 24px;color: #A8CBFF;height: 50px;}
|
||||
.contactInput{border: 0px solid;border-bottom:1px solid #A8CBFF;font-size: 24px;color: #000;height: 50px;}
|
||||
.contactInput::placeholder {color: #A8CBFF;}
|
||||
.contactInput:focus {outline: none;}
|
||||
@media (max-width: 768px) {
|
||||
@ -208,7 +211,7 @@ const shareToX = () => {
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
#myTextarea {padding: 10px;border-radius: 10px;margin-top: 32px;border: 1px solid #A8CBFF;font-weight: 400;font-size: 22px;color: #A8CBFF;line-height: 22px;resize: none; /* 禁止用户调整文本域大小 */}
|
||||
#myTextarea {padding: 10px;border-radius: 10px;margin-top: 32px;border: 1px solid #A8CBFF;font-weight: 400;font-size: 22px;color: #000;line-height: 22px;resize: none; /* 禁止用户调整文本域大小 */}
|
||||
#myTextarea::placeholder {color: #A8CBFF;}
|
||||
#myTextarea:focus {outline: none;}
|
||||
@media (max-width: 768px) {
|
||||
|
@ -233,9 +233,10 @@ const getCurrentLanguage = () => {
|
||||
width: 120px;
|
||||
height: 20px;
|
||||
@media (min-width: 768px) {
|
||||
width: 200px;
|
||||
width: 100%;
|
||||
height: 28px;
|
||||
margin-top: -30px;
|
||||
margin: 0 auto;
|
||||
margin-top: -15px;
|
||||
}
|
||||
background: #A8CBFF;
|
||||
display: block;
|
||||
|
Loading…
x
Reference in New Issue
Block a user