fix email-alerts
This commit is contained in:
parent
8d21afd3b6
commit
488deb2aba
@ -339,6 +339,9 @@ async function handleSubmit(e) {
|
|||||||
.value {
|
.value {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #455363;
|
color: #455363;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fade-in {
|
@keyframes fade-in {
|
||||||
|
|||||||
@ -334,6 +334,9 @@ async function handleSubmit(e) {
|
|||||||
.value {
|
.value {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #455363;
|
color: #455363;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fade-in {
|
@keyframes fade-in {
|
||||||
|
|||||||
@ -87,31 +87,43 @@ async function handleSubmit(e) {
|
|||||||
<div class="font-semibold success-card-label">
|
<div class="font-semibold success-card-label">
|
||||||
{{ t("email_alerts.submitted_data.first_name") }}
|
{{ t("email_alerts.submitted_data.first_name") }}
|
||||||
</div>
|
</div>
|
||||||
{{ form.firstName || t("email_alerts.submitted_data.not_filled") }}
|
<div class="value" :title="form.firstName || ''">
|
||||||
|
{{
|
||||||
|
form.firstName || t("email_alerts.submitted_data.not_filled")
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="success-card-item">
|
<div class="success-card-item">
|
||||||
<div class="font-semibold success-card-label">
|
<div class="font-semibold success-card-label">
|
||||||
{{ t("email_alerts.submitted_data.last_name") }}
|
{{ t("email_alerts.submitted_data.last_name") }}
|
||||||
</div>
|
</div>
|
||||||
{{ form.lastName || t("email_alerts.submitted_data.not_filled") }}
|
<div class="value" :title="form.lastName || ''">
|
||||||
|
{{ form.lastName || t("email_alerts.submitted_data.not_filled") }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="success-card-item">
|
<div class="success-card-item">
|
||||||
<div class="font-semibold success-card-label">
|
<div class="font-semibold success-card-label">
|
||||||
{{ t("email_alerts.submitted_data.email") }}
|
{{ t("email_alerts.submitted_data.email") }}
|
||||||
</div>
|
</div>
|
||||||
{{ form.email || t("email_alerts.submitted_data.not_filled") }}
|
<div class="value" :title="form.email || ''">
|
||||||
|
{{ form.email || t("email_alerts.submitted_data.not_filled") }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="success-card-item">
|
<div class="success-card-item">
|
||||||
<div class="font-semibold success-card-label">
|
<div class="font-semibold success-card-label">
|
||||||
{{ t("email_alerts.submitted_data.company") }}
|
{{ t("email_alerts.submitted_data.company") }}
|
||||||
</div>
|
</div>
|
||||||
{{ form.company || t("email_alerts.submitted_data.not_filled") }}
|
<div class="value" :title="form.company || ''">
|
||||||
|
{{ form.company || t("email_alerts.submitted_data.not_filled") }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="success-card-item">
|
<div class="success-card-item">
|
||||||
<div class="font-semibold success-card-label">
|
<div class="font-semibold success-card-label">
|
||||||
{{ t("email_alerts.submitted_data.phone") }}
|
{{ t("email_alerts.submitted_data.phone") }}
|
||||||
</div>
|
</div>
|
||||||
{{ form.phone || t("email_alerts.submitted_data.not_filled") }}
|
<div class="value" :title="form.phone || ''">
|
||||||
|
{{ form.phone || t("email_alerts.submitted_data.not_filled") }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="submitted-bg"></div>
|
<div class="submitted-bg"></div>
|
||||||
@ -278,4 +290,10 @@ async function handleSubmit(e) {
|
|||||||
.success-card-label {
|
.success-card-label {
|
||||||
width: 92 * 5.12px;
|
width: 92 * 5.12px;
|
||||||
}
|
}
|
||||||
|
.value {
|
||||||
|
width: 160 * 5.12px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@ -13,7 +13,7 @@ const form = ref({
|
|||||||
company: "",
|
company: "",
|
||||||
phone: "",
|
phone: "",
|
||||||
});
|
});
|
||||||
const submitted = ref(true);
|
const submitted = ref(false);
|
||||||
|
|
||||||
async function handleSubmit(e) {
|
async function handleSubmit(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
@ -335,6 +335,9 @@ async function handleSubmit(e) {
|
|||||||
.value {
|
.value {
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #455363;
|
color: #455363;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes fade-in {
|
@keyframes fade-in {
|
||||||
|
|||||||
@ -31,17 +31,17 @@
|
|||||||
<div class="file-content">
|
<div class="file-content">
|
||||||
<div class="file-info">
|
<div class="file-info">
|
||||||
<div class="vertical-line"></div>
|
<div class="vertical-line"></div>
|
||||||
<p class="file-title">{{ item.title }}</p>
|
<span class="file-title">{{ item.title }}</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="file-description">{{ item.description }}</p>
|
<span class="file-description">{{ item.description }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="download-section">
|
<div class="download-section">
|
||||||
<p
|
<span
|
||||||
class="download-text"
|
class="download-text"
|
||||||
@click="downloadPdf(item.url, item.attachmentName)"
|
@click="downloadPdf(item.url, item.attachmentName)"
|
||||||
>
|
>
|
||||||
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
|
{{ t("financialinformation.quarterlyreports.pdfDownload") }}
|
||||||
</p>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="separator-line"></div>
|
<div class="separator-line"></div>
|
||||||
@ -510,13 +510,16 @@ const handleClickOutside = (event) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.file-title {
|
.file-title {
|
||||||
font-family: "PingFang SC", sans-serif;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 1.375em;
|
|
||||||
letter-spacing: 3%;
|
|
||||||
color: #000000;
|
color: #000000;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
font-feature-settings: "liga" off, "clig" off;
|
||||||
|
/* 正文按钮 */
|
||||||
|
font-family: "PingFang SC";
|
||||||
|
font-size: 16px;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 500;
|
||||||
|
line-height: 22px; /* 137.5% */
|
||||||
|
letter-spacing: 0.48px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.file-description {
|
.file-description {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user