Compare commits

..

No commits in common. "43ded395426df15faba8cd96ee56eef4dcc70d91" and "c2ce7254978f0bb8aad3e6a06f81be7709352681" have entirely different histories.

16 changed files with 34 additions and 58 deletions

View File

@ -3,9 +3,9 @@
<div class="custom-footer">
<div class="custom-footer-box">
<div class="footer-links">
<span @click="handleLink('privacyPolicy')">{{ $t("footer.privacy_policy") }}</span>
<span @click="handleLink('termsOfUse')">{{ $t("footer.terms_of_use") }}</span>
<span @click="handleLink('siteMap')">{{ $t("footer.site_map") }}</span>
<span @click="handleLink('privacyPolicy')">Privacy Policy</span>
<span @click="handleLink('termsOfUse')">Terms of use</span>
<span @click="handleLink('siteMap')">Site Map</span>
</div>
<span>&copy; 2025 FiEEHKLimited. All Rights Reserved.</span>
</div>

View File

@ -3,9 +3,9 @@
<div class="custom-footer">
<div class="custom-footer-box">
<div class="footer-links">
<span @click="handleLink('privacyPolicy')">{{ $t("footer.privacy_policy") }}</span>
<span @click="handleLink('termsOfUse')">{{ $t("footer.terms_of_use") }}</span>
<span @click="handleLink('siteMap')">{{ $t("footer.site_map") }}</span>
<span @click="handleLink('privacyPolicy')">Privacy Policy</span>
<span @click="handleLink('termsOfUse')">Terms of use</span>
<span @click="handleLink('siteMap')">Site Map</span>
</div>
<span>&copy; 2025 FiEEHKLimited. All Rights Reserved.</span>
</div>

View File

@ -3,9 +3,9 @@
<div class="custom-footer">
<div class="footer-links-box">
<div class="footer-links">
<span @click="handleLink('privacyPolicy')">{{ $t("footer.privacy_policy") }}</span>
<span @click="handleLink('termsOfUse')">{{ $t("footer.terms_of_use") }}</span>
<span @click="handleLink('siteMap')">{{ $t("footer.site_map") }}</span>
<span @click="handleLink('privacyPolicy')">Privacy Policy</span>
<span @click="handleLink('termsOfUse')">Terms of use</span>
<span @click="handleLink('siteMap')">Site Map</span>
</div>
</div>
<div class="footer-copyright">

View File

@ -2,9 +2,9 @@
<!-- 通用页脚 -->
<div class="custom-footer">
<div class="footer-links">
<span @click="handleLink('privacyPolicy')">{{ $t("footer.privacy_policy") }}</span>
<span @click="handleLink('termsOfUse')">{{ $t("footer.terms_of_use") }}</span>
<span @click="handleLink('siteMap')">{{ $t("footer.site_map") }}</span>
<span @click="handleLink('privacyPolicy')">Privacy Policy</span>
<span @click="handleLink('termsOfUse')">Terms of use</span>
<span @click="handleLink('siteMap')">Site Map</span>
</div>
<div>&copy; 2025 FiEEHKLimited. All Rights Reserved.</div>
</div>

View File

@ -1,9 +1,4 @@
export default {
footer: {
site_map: "Site Mapqweqwe",
privacy_policy: "Privacy Policy",
terms_of_use:"Terms of use"
},
language: {
zh: "Simplified Chinese",
zhTW: "Traditional Chinese",
@ -264,8 +259,8 @@ export default {
week_range: "52-Week Range",
days_range: "Day's Range",
market_cap: "Market Cap",
dollar: "USD",
million: "Million",
dollar: 'USD',
million: 'Million',
},
historic_stock: {
title: "Historical Data",

View File

@ -1,9 +1,4 @@
export default {
footer: {
site_map: "サイトマップ",
privacy_policy: "プライバシーポリシー",
terms_of_use: "利用規約",
},
language: {
zh: "簡体中国語",
zhTW: "繁体中国語",

View File

@ -1,9 +1,4 @@
export default {
footer: {
site_map: "網站地圖",
privacy_policy: "隱私政策",
terms_of_use:"使用條款"
},
language: {
zh: "簡體中文",
zhTW: "繁體中文",

View File

@ -1,9 +1,4 @@
export default {
footer: {
site_map: "网站地图",
privacy_policy: "隐私政策",
terms_of_use: "使用条款"
},
language: {
zh: "简体中文",
zhTW: "繁體中文",

View File

@ -141,11 +141,10 @@ const leadershipTeam = computed(() => [
]);
const getInitials = (name) => {
// return name
// .split(" ")
// .map((n) => n[0])
// .join("");
return name?.slice(0, 2) || "";
return name
.split(" ")
.map((n) => n[0])
.join("");
};
</script>

View File

@ -142,11 +142,10 @@ const leadershipTeam = computed(() => [
]);
const getInitials = (name) => {
// return name
// .split(" ")
// .map((n) => n[0])
// .join("");
return name?.slice(0, 2) || "";
return name
.split(" ")
.map((n) => n[0])
.join("");
};
</script>

View File

@ -140,11 +140,10 @@ const leadershipTeam = computed(() => [
]);
const getInitials = (name) => {
// return name
// .split(" ")
// .map((n) => n[0])
// .join("");
return name?.slice(0, 2) || "";
return name
.split(" ")
.map((n) => n[0])
.join("");
};
</script>

View File

@ -140,11 +140,10 @@ const leadershipTeam = computed(() => [
]);
const getInitials = (name) => {
// return name
// .split(" ")
// .map((n) => n[0])
// .join("");
return name?.slice(0, 2) || "";
return name
.split(" ")
.map((n) => n[0])
.join("");
};
</script>

View File

@ -54,7 +54,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById("my-richText");
myRichText.innerHTML = res?.data?.data?.content || "";
myRichText.innerHTML = res.data.data.content;
}
}
});

View File

@ -55,7 +55,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById("my-richText");
myRichText.innerHTML = res?.data?.data?.content || "";
myRichText.innerHTML = res.data.data.content;
}
}
});

View File

@ -41,7 +41,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById('my-richText')
myRichText.innerHTML = res?.data?.data?.content || "";
myRichText.innerHTML = res.data.data.content
}
}
})

View File

@ -43,7 +43,7 @@ const getPressReleasesInfo = () => {
if (res.status === 200) {
if (res.data.status === 0) {
const myRichText = document.getElementById('my-richText')
myRichText.innerHTML = res?.data?.data?.content || "";
myRichText.innerHTML = res.data.data.content
}
}
})