371 lines
8.0 KiB
Vue
371 lines
8.0 KiB
Vue
<template>
|
|
<div class="committees-page">
|
|
<!-- 标题区 -->
|
|
<div class="title mb-[50px] text-center">
|
|
<h1 style="font-size: 40px; margin-top: 60px">Committee Composition</h1>
|
|
</div>
|
|
|
|
<!-- 委员会表格 -->
|
|
<div class="container">
|
|
<div class="committees-table">
|
|
<!-- 表头 - 委员会名称 -->
|
|
<div class="table-header">
|
|
<div class="director-cell"></div>
|
|
<div class="committee-cell">
|
|
<h3>Audit Committee</h3>
|
|
</div>
|
|
<div class="committee-cell">
|
|
<h3>Compensation Committee</h3>
|
|
</div>
|
|
<div class="committee-cell">
|
|
<h3>Nominating and Corporate Governance Committee</h3>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 表格内容 - 每位董事 -->
|
|
<div
|
|
class="table-row"
|
|
v-for="(director, index) in otherDirectors"
|
|
:key="index"
|
|
>
|
|
<!-- 董事姓名 -->
|
|
<div class="director-cell">
|
|
<div class="director-info">
|
|
<div class="avatar"></div>
|
|
<div>
|
|
<router-link
|
|
:to="'/boarddirectors'"
|
|
style="font-size: 18px"
|
|
class="director-link"
|
|
>
|
|
{{ director.name }}
|
|
</router-link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 委员会职位 -->
|
|
<div class="committee-cell">
|
|
<div class="role-badges">
|
|
<template v-if="getCommitteeRole(director.name, 'Audit')">
|
|
<div
|
|
class="role-badge"
|
|
:class="{
|
|
[getCommitteeRole(
|
|
director.name,
|
|
'Audit'
|
|
)?.toLowerCase()]: true,
|
|
chair: getCommitteeRole(director.name, 'Audit') === 'Chair',
|
|
}"
|
|
>
|
|
{{ getCommitteeRole(director.name, "Audit") }}
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="committee-cell">
|
|
<div class="role-badges">
|
|
<template v-if="getCommitteeRole(director.name, 'Compensation')">
|
|
<div
|
|
class="role-badge"
|
|
:class="{
|
|
[getCommitteeRole(
|
|
director.name,
|
|
'Compensation'
|
|
)?.toLowerCase()]: true,
|
|
chair:
|
|
getCommitteeRole(director.name, 'Compensation') ===
|
|
'Chair',
|
|
}"
|
|
>
|
|
{{ getCommitteeRole(director.name, "Compensation") }}
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="committee-cell">
|
|
<div class="role-badges">
|
|
<template v-if="getCommitteeRole(director.name, 'Governance')">
|
|
<div
|
|
class="role-badge"
|
|
:class="{
|
|
[getCommitteeRole(
|
|
director.name,
|
|
'Governance'
|
|
)?.toLowerCase()]: true,
|
|
chair:
|
|
getCommitteeRole(director.name, 'Governance') === 'Chair',
|
|
}"
|
|
>
|
|
{{ getCommitteeRole(director.name, "Governance") }}
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const otherDirectors = [
|
|
// {
|
|
// name: "Cao Yu",
|
|
// title: "Chief Financial Officer, Secretary, Treasurer and Director",
|
|
// },
|
|
// { name: "David Lazar", title: "Director" },
|
|
{ name: "Hu Bin", title: "Director" },
|
|
{ name: "David Natan", title: "Director" },
|
|
{ name: "Chan Oi Fat", title: "Director" },
|
|
];
|
|
|
|
// Updated committee roles according to requirements
|
|
const committeeRoles = {
|
|
"Cao Yu": {},
|
|
"David Lazar": {},
|
|
"Hu Bin": {
|
|
Audit: "Member",
|
|
Compensation: "Member",
|
|
Governance: "Chair",
|
|
},
|
|
"David Natan": {
|
|
Audit: "Chair",
|
|
Compensation: "Member",
|
|
Governance: "Member",
|
|
},
|
|
"Chan Oi Fat": {
|
|
Audit: "Member",
|
|
Compensation: "Chair",
|
|
Governance: "Member",
|
|
},
|
|
};
|
|
|
|
const getCommitteeRole = (name, committee) => {
|
|
return committeeRoles[name]?.[committee] || null;
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
/* 紫色主题变量 */
|
|
.role-badge.chair {
|
|
color: orange;
|
|
}
|
|
:root {
|
|
--primary: #895bff;
|
|
--primary-light: #a07cff;
|
|
--primary-dark: #6a11cb;
|
|
--primary-transparent: rgba(137, 91, 255, 0.1);
|
|
}
|
|
|
|
.committees-page {
|
|
background-image: url("@/assets/image/bg.png");
|
|
background-size: 100% 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
min-height: 100vh;
|
|
}
|
|
.title h1 {
|
|
position: relative;
|
|
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: -14px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 80px;
|
|
height: 3px;
|
|
background: #895bff;
|
|
border-radius: 3px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
&:hover::after {
|
|
width: 120px;
|
|
}
|
|
}
|
|
/* 标题区设计 */
|
|
.hero-section {
|
|
background: linear-gradient(
|
|
135deg,
|
|
var(--primary-light) 0%,
|
|
var(--primary) 100%
|
|
);
|
|
padding: 6rem 2rem;
|
|
text-align: center;
|
|
color: #895bff;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 2.8rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero-section p {
|
|
font-size: 1.2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 2rem;
|
|
}
|
|
|
|
/* 表格设计 */
|
|
.committees-table {
|
|
margin: 4rem 0;
|
|
background: white;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 10px 30px rgba(137, 91, 255, 0.08);
|
|
}
|
|
|
|
.table-header,
|
|
.table-row {
|
|
display: grid;
|
|
grid-template-columns: 1.5fr repeat(3, 1fr);
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.table-header {
|
|
background: #f9f6ff;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
}
|
|
|
|
.committee-cell {
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
border-right: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.committee-cell:last-child {
|
|
border-right: none;
|
|
}
|
|
|
|
.committee-cell h3 {
|
|
color: var(--primary-dark);
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.director-cell {
|
|
padding: 1.5rem;
|
|
border-right: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.director-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.2rem;
|
|
}
|
|
|
|
.director-info h4 {
|
|
font-size: 1.1rem;
|
|
color: #333;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
|
|
.director-title {
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
}
|
|
|
|
/* 职位徽章设计 */
|
|
.role-badges {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.role-badge {
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 20px;
|
|
font-size: 0.85rem;
|
|
font-weight: 500;
|
|
position: relative;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-width: 80px;
|
|
}
|
|
|
|
.badge-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-left: 0.5rem;
|
|
background: currentColor;
|
|
mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 7"/></svg>')
|
|
no-repeat center;
|
|
}
|
|
|
|
/* 悬停效果 */
|
|
.table-row {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.table-row:hover {
|
|
background: #fdfcff;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 5px 15px rgba(137, 91, 255, 0.05);
|
|
}
|
|
|
|
/* 响应式设计 */
|
|
@media (max-width: 1024px) {
|
|
.committees-table {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.table-header,
|
|
.table-row {
|
|
grid-template-columns: 250px repeat(3, 200px);
|
|
width: max-content;
|
|
min-width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero-section {
|
|
padding: 4rem 1rem;
|
|
}
|
|
|
|
.hero-section h1 {
|
|
font-size: 2.2rem;
|
|
}
|
|
|
|
.director-info {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.director-cell {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.committee-cell {
|
|
padding: 1rem 0.5rem;
|
|
}
|
|
}
|
|
.director-link {
|
|
color: #895bff;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.director-link:hover {
|
|
color: var(--primary);
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|