国际化 375 768
This commit is contained in:
parent
22cad2927e
commit
ec85d91dd6
@ -80,7 +80,7 @@
|
||||
class="w-full flex justify-between px-[130px] pt-[102px] pb-[80px] items-center"
|
||||
@click="handleTabClick('investor')"
|
||||
>
|
||||
投资者关系
|
||||
{{ t("home.nav.investor") }}
|
||||
<img
|
||||
src="@/assets/image/home/375/icon-menu-right.png"
|
||||
class="w-[44px] h-[79px]"
|
||||
|
@ -80,7 +80,7 @@
|
||||
class="w-full flex justify-between px-[188px] pt-[50px] pb-[46px] items-center"
|
||||
@click="handleTabClick('investor')"
|
||||
>
|
||||
投资者关系
|
||||
{{ t("home.nav.investor") }}
|
||||
<img
|
||||
src="@/assets/image/home/768/icon-menu-right.png"
|
||||
class="w-[22px] h-[38px]"
|
||||
|
@ -402,11 +402,15 @@ export default {
|
||||
directors: {
|
||||
patrick: {
|
||||
name: '帕特里克·里瓦德',
|
||||
position: '董事会董事、美国财富保护公司合伙人兼首席财务官'
|
||||
position: '董事会董事、美国财富保护公司合伙人兼首席财务官',
|
||||
position1: '董事会董事',
|
||||
position2: '美国财富保护公司合伙人兼首席财务官'
|
||||
},
|
||||
andrew: {
|
||||
name: '安德鲁·帕帕尼科劳',
|
||||
position: '董事会董事、雷神公司财务经理'
|
||||
position: '董事会董事、雷神公司财务经理',
|
||||
position1: '董事会董事',
|
||||
position2: '雷神公司财务经理'
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -15,7 +15,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>投资者关系</div>
|
||||
<div>{{ t("investor.title") }}</div>
|
||||
</div>
|
||||
<div
|
||||
:ref="
|
||||
@ -25,7 +25,7 @@
|
||||
"
|
||||
class="text-[51px] text-[#8B59F7] w-[1075px] ml-[184px] mt-[50px]"
|
||||
>
|
||||
Minim(纳斯达克股票代码:MINM)财务状况
|
||||
{{ t("investor.subtitle") }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -43,7 +43,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>最新动态</div>
|
||||
<div>{{ t("investor.latest_news.title") }}</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full mb-[246px] flex flex-wrap justify-center">
|
||||
@ -97,7 +97,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>财务数据</div>
|
||||
<div>{{ t("investor.financial_data.title") }}</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full px-[158px] mb-[118px]">
|
||||
@ -118,42 +118,42 @@
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
利润报告
|
||||
{{ t("investor.financial_data.reports.profit_report") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
收益报告
|
||||
{{ t("investor.financial_data.reports.earnings_report") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
财报电话会议
|
||||
{{ t("investor.financial_data.reports.earnings_call") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
10-Q/10-K
|
||||
{{ t("investor.financial_data.reports.sec_filings") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
年度报告
|
||||
{{ t("investor.financial_data.reports.annual_report") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
年度会议
|
||||
{{ t("investor.financial_data.reports.annual_meeting") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
特别股东大会
|
||||
{{ t("investor.financial_data.reports.special_meeting") }}
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] my-[13px] ml-[13px] px-[51px] py-[72px] truncate"
|
||||
>
|
||||
委托书
|
||||
{{ t("investor.financial_data.reports.proxy_statement") }}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
@ -178,12 +178,18 @@
|
||||
: 'bg-[#C6ACFF]'
|
||||
"
|
||||
>
|
||||
<div v-if="!isAnimating">{{ state.activeYear }}年</div>
|
||||
<div v-if="!isAnimating">
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
<div v-else> </div>
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px] flex justify-between"
|
||||
> <div
|
||||
>
|
||||
<div
|
||||
:class="calcQLinkClass('Earnings Release', 'Q1')"
|
||||
@click="handleQClick('Earnings Release', 'Q1')"
|
||||
>
|
||||
@ -292,25 +298,53 @@
|
||||
Q4
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
<div
|
||||
class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
:class="calcYLinkClass('Annual Report')"
|
||||
@click="handleYClick('Annual Report')">
|
||||
<div>{{ state.activeYear }}年</div>
|
||||
@click="handleYClick('Annual Report')"
|
||||
>
|
||||
<div>
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
:class="calcYLinkClass('Annual Meeting')"
|
||||
@click="handleYClick('Annual Meeting')">
|
||||
<div>{{ state.activeYear }}年</div>
|
||||
@click="handleYClick('Annual Meeting')"
|
||||
>
|
||||
<div>
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
:class="calcYLinkClass('Special Shareholder Meeting')"
|
||||
@click="handleYClick('Special Shareholder Meeting')">
|
||||
<div>{{ state.activeYear }}年</div>
|
||||
@click="handleYClick('Special Shareholder Meeting')"
|
||||
>
|
||||
<div>
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
</div>
|
||||
<div
|
||||
class="bg-[#F8F9FF] ma-[13px] px-[51px] py-[72px]"
|
||||
:class="calcYLinkClass('Proxy Statement')"
|
||||
@click="handleYClick('Proxy Statement')">
|
||||
<div>{{ state.activeYear }}年</div>
|
||||
@click="handleYClick('Proxy Statement')"
|
||||
>
|
||||
<div>
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -325,7 +359,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
投资者沟通指南
|
||||
{{ t("investor.financial_data.investor_guide") }}
|
||||
<img
|
||||
class="w-[23px] h-[43px] ml-[87px]"
|
||||
src="@/assets/image/investor/375/icon-r-o.png"
|
||||
@ -346,7 +380,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>行情走势</div>
|
||||
<div>{{ t("investor.market_trends.title") }}</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
@ -357,7 +391,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
SEC文件是提交给美国证券交易委员会(SEC)的文件。上市公司和某些内部人士必须定期向美国证券交易委员会提交文件。这些文件可以通过美国证券交易委员会的在线数据库获得。
|
||||
{{ t("investor.market_trends.sec_description1") }}
|
||||
</div>
|
||||
<div
|
||||
class="w-full px-[184px] mb-[118px] color-[#D1D1D1]"
|
||||
@ -367,7 +401,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
通过在下面进行选择,您将离开Minim网站。Minim对您可以通过此网站访问的任何其他网站不作任何陈述。当您访问非Minim网站时,即使是可能包含Minim徽标的网站,请理解它独立于Minim,Minim无法控制该网站上的内容。此外,链接到非Minim网站并不意味着Minim认可或接受对该网站的内容或使用的任何责任。
|
||||
{{ t("investor.market_trends.sec_description2") }}
|
||||
</div>
|
||||
<div
|
||||
class="px-[184px] mb-[287px] flex flex-start w-full"
|
||||
@ -385,7 +419,7 @@
|
||||
)
|
||||
"
|
||||
>
|
||||
查看所有SEC文件
|
||||
{{ t("investor.market_trends.view_all_sec") }}
|
||||
<img
|
||||
class="w-[47px] h-[87px] ml-[87px]"
|
||||
src="@/assets/image/investor/375/icon-r-o.png"
|
||||
@ -422,7 +456,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>董事会</div>
|
||||
<div>{{ t("investor.board_of_directors.title") }}</div>
|
||||
</div>
|
||||
<div class="w-full flex flex-wrap mt-[140px] mb-[389px] px-[102px]">
|
||||
<div
|
||||
@ -434,15 +468,19 @@
|
||||
"
|
||||
>
|
||||
<div class="text-[92px] text-[#fff] font-semibold truncate">
|
||||
帕特里克·里瓦德
|
||||
{{ t("investor.board_of_directors.directors.patrick.name") }}
|
||||
</div>
|
||||
<div
|
||||
class="w-full text-[72px] text-[#EBEBEB] tracking-[4px] truncate"
|
||||
>
|
||||
董事会董事
|
||||
{{
|
||||
t("investor.board_of_directors.directors.patrick.position1")
|
||||
}}
|
||||
</div>
|
||||
<div class="w-full text-[72px] text-[#EBEBEB] truncate">
|
||||
美国财富保护公司合伙人兼首席财务官
|
||||
{{
|
||||
t("investor.board_of_directors.directors.patrick.position2")
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
@ -454,17 +492,21 @@
|
||||
"
|
||||
>
|
||||
<div class="text-[92px] text-[#10253E] font-semibold truncate">
|
||||
安德鲁·帕帕尼科劳
|
||||
{{ t("investor.board_of_directors.directors.andrew.name") }}
|
||||
</div>
|
||||
<div
|
||||
class="w-full text-[72px] text-[#455363] tracking-[4px] truncate"
|
||||
>
|
||||
董事会董事
|
||||
{{
|
||||
t("investor.board_of_directors.directors.andrew.position1")
|
||||
}}
|
||||
</div>
|
||||
<div
|
||||
class="w-full text-[72px] text-[#455363] tracking-[4px] truncate"
|
||||
>
|
||||
雷神公司财务经理
|
||||
{{
|
||||
t("investor.board_of_directors.directors.andrew.position2")
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -484,7 +526,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>治理、多样性和委员会章程</div>
|
||||
<div>{{ t("investor.governance.title") }}</div>
|
||||
</div>
|
||||
<div class="w-full flex flex-wrap mt-[159px] mb-[246px] px-[184px]">
|
||||
<div
|
||||
@ -555,26 +597,26 @@ import imageshow3 from "@/assets/image/investor/375/imageshow-3.png";
|
||||
const state = reactive({
|
||||
marqueeArr: [
|
||||
{
|
||||
title: "最新财务",
|
||||
subTitle: "2022年第四季度和2022年全年收益结果",
|
||||
date: "2023年3月29日",
|
||||
link: "收益公布",
|
||||
title: t("investor.latest_news.financial.title"),
|
||||
subTitle: t("investor.latest_news.financial.content"),
|
||||
date: t("investor.latest_news.financial.date"),
|
||||
link: t("investor.latest_news.financial.link"),
|
||||
imgUrl: imageshow1,
|
||||
linkUrl: "https://spaces.hightail.com/receive/RpIYgWf2p0",
|
||||
},
|
||||
{
|
||||
title: "最近的事件",
|
||||
subTitle: "Minim宣布与e2Companies达成合并协议",
|
||||
date: "2024年3月13日",
|
||||
link: "合并协议-新闻稿最终稿2024年12月3日",
|
||||
title: t("investor.latest_news.events.title"),
|
||||
subTitle: t("investor.latest_news.events.content"),
|
||||
date: t("investor.latest_news.events.date"),
|
||||
link: t("investor.latest_news.events.link"),
|
||||
imgUrl: imageshow2,
|
||||
linkUrl:
|
||||
"https://hello.minim.co/hubfs/Merger%20Agreement%20-%20Press%20Release%20Final%203-12-2024.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "股票报价",
|
||||
subTitle: "TradingView的MINM报价",
|
||||
link: "MINM报价",
|
||||
title: t("investor.latest_news.stock.title"),
|
||||
subTitle: t("investor.latest_news.stock.content"),
|
||||
link: t("investor.latest_news.stock.link"),
|
||||
imgUrl: imageshow3,
|
||||
linkUrl:
|
||||
"https://www.tradingview.com/symbols/NASDAQ-MINM/?utm_campaign=single-quote&utm_medium=widget_new&utm_source=ir.minim.com",
|
||||
@ -656,43 +698,43 @@ const state = reactive({
|
||||
},
|
||||
linkArr: [
|
||||
{
|
||||
title: "高级财务人员道德守则",
|
||||
title: t("investor.governance.documents.ethics_code"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Code-of-Ethics-for-Senior-Financial-Officers_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "冲突矿产声明",
|
||||
title: t("investor.governance.documents.conflict_minerals"),
|
||||
link: "https://hello.minim.co/hubfs/docs/MINM-Conflict-Mineral-Report-FY22.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "道德和商业行为准则",
|
||||
title: t("investor.governance.documents.business_conduct"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Code-of-Ethics-and-Business-Conduct_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "审计委员会章程",
|
||||
title: t("investor.governance.documents.audit_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Audit-Committe-Charter_Jan-2021.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "举报人政策",
|
||||
title: t("investor.governance.documents.whistleblower"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Whistleblower-Policy_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "薪酬委员会章程",
|
||||
title: t("investor.governance.documents.compensation_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Compensation-Committee-Charter_Oct-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "关联方交易政策",
|
||||
title: t("investor.governance.documents.related_party"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Related-Party-Transactions-Policy_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "提名和治理委员会章程",
|
||||
title: t("investor.governance.documents.nomination_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Nominating-and-Governance-Committee-Charter_%20Jan-2021.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "2022年多样性矩阵",
|
||||
title: t("investor.governance.documents.diversity_matrix_2022"),
|
||||
link: "https://hello.minim.co/hubfs/2022%20Diversity%20Matrix.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "2023年多样性矩阵",
|
||||
title: t("investor.governance.documents.diversity_matrix_2023"),
|
||||
link: "https://hello.minim.co/hubfs/2023%20Diversity%20Matrxi.pdf?hsLang=en",
|
||||
},
|
||||
],
|
||||
|
@ -15,7 +15,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>投资者关系</div>
|
||||
<div>{{ t("investor.title") }}</div>
|
||||
</div>
|
||||
<div
|
||||
:ref="
|
||||
@ -25,7 +25,7 @@
|
||||
"
|
||||
class="text-[35px] text-[#8B59F7] w-[735px] ml-[188px] mt-[50px]"
|
||||
>
|
||||
Minim(纳斯达克股票代码:MINM)财务状况
|
||||
{{ t("investor.subtitle") }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -43,7 +43,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>最新动态</div>
|
||||
<div>{{ t("investor.latest_news.title") }}</div>
|
||||
</div>
|
||||
<div
|
||||
class="mt-[140px] mb-[230px] carousel-container px-[80px] py-[40px] z-6"
|
||||
@ -97,7 +97,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>财务数据</div>
|
||||
<div>{{ t("investor.financial_data.title") }}</div>
|
||||
</div>
|
||||
|
||||
<div class="w-full px-[158px] mb-[57px]">
|
||||
@ -116,28 +116,28 @@
|
||||
class="bg-[#fff] my-[6px] ml-[6px] px-[25px] py-[30px] min-h-[124px]"
|
||||
></div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
利润报告
|
||||
{{ t("investor.financial_data.reports.profit_report") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
收益报告
|
||||
{{ t("investor.financial_data.reports.earnings_report") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
财报电话会议
|
||||
{{ t("investor.financial_data.reports.earnings_call") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
10-Q/10-K
|
||||
{{ t("investor.financial_data.reports.sec_filings") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
年度报告
|
||||
{{ t("investor.financial_data.reports.annual_report") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
年度会议
|
||||
{{ t("investor.financial_data.reports.annual_meeting") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
特别股东大会
|
||||
{{ t("investor.financial_data.reports.special_meeting") }}
|
||||
</div>
|
||||
<div class="bg-[#F8F9FF] my-[6px] ml-[6px] px-[25px] py-[30px]">
|
||||
委托书
|
||||
{{ t("investor.financial_data.reports.proxy_statement") }}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
@ -162,7 +162,12 @@
|
||||
: 'bg-[#C6ACFF]'
|
||||
"
|
||||
>
|
||||
<div v-if="!isAnimating">{{ state.activeYear }}年</div>
|
||||
<div v-if="!isAnimating">
|
||||
{{ state.activeYear
|
||||
}}{{
|
||||
t("investor.financial_data.years.year" + state.activeYear)
|
||||
}}
|
||||
</div>
|
||||
<div v-else> </div>
|
||||
</div>
|
||||
<div
|
||||
@ -318,7 +323,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
投资者沟通指南
|
||||
{{ t("investor.financial_data.investor_guide") }}
|
||||
<img
|
||||
class="w-[23px] h-[43px] ml-[50px]"
|
||||
src="@/assets/image/investor/768/icon-r-o.png"
|
||||
@ -339,7 +344,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>行情走势</div>
|
||||
<div>{{ t("investor.market_trends.title") }}</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
@ -350,7 +355,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
SEC文件是提交给美国证券交易委员会(SEC)的文件。上市公司和某些内部人士必须定期向美国证券交易委员会提交文件。这些文件可以通过美国证券交易委员会的在线数据库获得。
|
||||
{{ t("investor.market_trends.sec_description1") }}
|
||||
</div>
|
||||
<div
|
||||
class="w-full px-[188px] mb-[57px]"
|
||||
@ -360,7 +365,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
通过在下面进行选择,您将离开Minim网站。Minim对您可以通过此网站访问的任何其他网站不作任何陈述。当您访问非Minim网站时,即使是可能包含Minim徽标的网站,请理解它独立于Minim,Minim无法控制该网站上的内容。此外,链接到非Minim网站并不意味着Minim认可或接受对该网站的内容或使用的任何责任。
|
||||
{{ t("investor.market_trends.sec_description2") }}
|
||||
</div>
|
||||
<div
|
||||
class="px-[188px] mb-[175px] flex flex-start w-full"
|
||||
@ -378,7 +383,7 @@
|
||||
)
|
||||
"
|
||||
>
|
||||
查看所有SEC文件
|
||||
{{ t("investor.market_trends.view_all_sec") }}
|
||||
<img
|
||||
class="w-[23px] h-[43px] ml-[50px]"
|
||||
src="@/assets/image/investor/768/icon-r-o.png"
|
||||
@ -415,7 +420,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>董事会</div>
|
||||
<div>{{ t("investor.board_of_directors.title") }}</div>
|
||||
</div>
|
||||
<div
|
||||
class="w-full flex justify-between mt-[140px] mb-[230px] px-[188px]"
|
||||
@ -429,13 +434,21 @@
|
||||
"
|
||||
>
|
||||
<div class="text-[50px] text-[#fff] font-semibold">
|
||||
帕特里克·里瓦德
|
||||
{{ t("investor.board_of_directors.directors.patrick.name") }}
|
||||
</div>
|
||||
<div class="w-full text-[38px] text-[#EBEBEB] tracking-[4px]">
|
||||
董事会董事
|
||||
{{
|
||||
t(
|
||||
"investor.board_of_directors.directors.patrick.position1"
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
<div class="w-full text-[38px] text-[#EBEBEB] truncate">
|
||||
美国财富保护公司合伙人兼首席财务官
|
||||
{{
|
||||
t(
|
||||
"investor.board_of_directors.directors.patrick.position2"
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
@ -447,13 +460,21 @@
|
||||
"
|
||||
>
|
||||
<div class="text-[50px] text-[#10253E] font-semibold">
|
||||
安德鲁·帕帕尼科劳
|
||||
{{ t("investor.board_of_directors.directors.andrew.name") }}
|
||||
</div>
|
||||
<div class="w-full text-[38px] text-[#455363] tracking-[4px]">
|
||||
董事会董事
|
||||
{{
|
||||
t(
|
||||
"investor.board_of_directors.directors.andrew.position1"
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
<div class="w-full text-[38px] text-[#455363] tracking-[4px]">
|
||||
雷神公司财务经理
|
||||
{{
|
||||
t(
|
||||
"investor.board_of_directors.directors.andrew.position2"
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -473,7 +494,7 @@
|
||||
}
|
||||
"
|
||||
>
|
||||
<div>治理、多样性和委员会章程</div>
|
||||
<div>{{ t("investor.governance.title") }}</div>
|
||||
</div>
|
||||
<div class="w-full flex flex-wrap mt-[105px] mb-[230px] px-[188px]">
|
||||
<div
|
||||
@ -544,26 +565,26 @@ import imageshow3 from "@/assets/image/investor/768/imageshow-3.png";
|
||||
const state = reactive({
|
||||
marqueeArr: [
|
||||
{
|
||||
title: "最新财务",
|
||||
subTitle: "2022年第四季度和2022年全年收益结果",
|
||||
date: "2023年3月29日",
|
||||
link: "收益公布",
|
||||
title: t("investor.latest_news.financial.title"),
|
||||
subTitle: t("investor.latest_news.financial.content"),
|
||||
date: t("investor.latest_news.financial.date"),
|
||||
link: t("investor.latest_news.financial.link"),
|
||||
imgUrl: imageshow1,
|
||||
linkUrl: "https://spaces.hightail.com/receive/RpIYgWf2p0",
|
||||
},
|
||||
{
|
||||
title: "最近的事件",
|
||||
subTitle: "Minim宣布与e2Companies达成合并协议",
|
||||
date: "2024年3月13日",
|
||||
link: "合并协议-新闻稿最终稿2024年12月3日",
|
||||
title: t("investor.latest_news.events.title"),
|
||||
subTitle: t("investor.latest_news.events.content"),
|
||||
date: t("investor.latest_news.events.date"),
|
||||
link: t("investor.latest_news.events.link"),
|
||||
imgUrl: imageshow2,
|
||||
linkUrl:
|
||||
"https://hello.minim.co/hubfs/Merger%20Agreement%20-%20Press%20Release%20Final%203-12-2024.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "股票报价",
|
||||
subTitle: "TradingView的MINM报价",
|
||||
link: "MINM报价",
|
||||
title: t("investor.latest_news.stock.title"),
|
||||
subTitle: t("investor.latest_news.stock.content"),
|
||||
link: t("investor.latest_news.stock.link"),
|
||||
imgUrl: imageshow3,
|
||||
linkUrl:
|
||||
"https://www.tradingview.com/symbols/NASDAQ-MINM/?utm_campaign=single-quote&utm_medium=widget_new&utm_source=ir.minim.com",
|
||||
@ -644,43 +665,43 @@ const state = reactive({
|
||||
},
|
||||
linkArr: [
|
||||
{
|
||||
title: "高级财务人员道德守则",
|
||||
title: t("investor.governance.documents.ethics_code"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Code-of-Ethics-for-Senior-Financial-Officers_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "冲突矿产声明",
|
||||
title: t("investor.governance.documents.conflict_minerals"),
|
||||
link: "https://hello.minim.co/hubfs/docs/MINM-Conflict-Mineral-Report-FY22.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "道德和商业行为准则",
|
||||
title: t("investor.governance.documents.business_conduct"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Code-of-Ethics-and-Business-Conduct_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "审计委员会章程",
|
||||
title: t("investor.governance.documents.audit_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Audit-Committe-Charter_Jan-2021.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "举报人政策",
|
||||
title: t("investor.governance.documents.whistleblower"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Whistleblower-Policy_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "薪酬委员会章程",
|
||||
title: t("investor.governance.documents.compensation_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Compensation-Committee-Charter_Oct-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "关联方交易政策",
|
||||
title: t("investor.governance.documents.related_party"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Related-Party-Transactions-Policy_Jan-2022.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "提名和治理委员会章程",
|
||||
title: t("investor.governance.documents.nomination_committee"),
|
||||
link: "https://hello.minim.com/hubfs/docs/MINM-Nominating-and-Governance-Committee-Charter_%20Jan-2021.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "2022年多样性矩阵",
|
||||
title: t("investor.governance.documents.diversity_matrix_2022"),
|
||||
link: "https://hello.minim.co/hubfs/2022%20Diversity%20Matrix.pdf?hsLang=en",
|
||||
},
|
||||
{
|
||||
title: "2023年多样性矩阵",
|
||||
title: t("investor.governance.documents.diversity_matrix_2023"),
|
||||
link: "https://hello.minim.co/hubfs/2023%20Diversity%20Matrxi.pdf?hsLang=en",
|
||||
},
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user