From c44a1bb1c147d62084495a8d70d380852c231c0c Mon Sep 17 00:00:00 2001 From: Phoenix <64720302+Concur-max@users.noreply.github.com> Date: Mon, 26 May 2025 10:35:11 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84=E6=8A=95=E8=B5=84=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E5=99=A8=E5=92=8C=E8=81=94=E7=B3=BB=E4=BA=BA=E8=A7=86?= =?UTF-8?q?=E5=9B=BE=EF=BC=8C=E6=B7=BB=E5=8A=A0=E6=8A=95=E8=B5=84=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E3=80=81=E9=87=91=E9=A2=9D=E3=80=81=E5=88=86=E7=BA=A2?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=92=8C=E6=8A=95=E8=B5=84=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E7=9A=84=E8=BE=93=E5=85=A5=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=B9=B6?= =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=A0=B7=E5=BC=8F=E4=BB=A5=E6=8F=90=E5=8D=87?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E4=BD=93=E9=AA=8C=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/calculator/size1440/index.vue | 67 ++++++++++++++++---- src/views/calculator/size768/index.vue | 67 ++++++++++++++++---- src/views/contacts/size1440/index.vue | 39 +++++++++--- src/views/contacts/size768/index.vue | 41 ++++++++---- src/views/email-alerts/size1440/index.vue | 76 ++++++++++++++++++++--- src/views/email-alerts/size768/index.vue | 71 ++++++++++++++++++--- src/views/stock-quote/size1440/index.vue | 54 +++++++++++++--- src/views/stock-quote/size768/index.vue | 64 ++++++++++++++++--- 8 files changed, 401 insertions(+), 78 deletions(-) diff --git a/src/views/calculator/size1440/index.vue b/src/views/calculator/size1440/index.vue index 427f3d2..a275e08 100644 --- a/src/views/calculator/size1440/index.vue +++ b/src/views/calculator/size1440/index.vue @@ -1,22 +1,63 @@ - - 1440 - - - - - + + + + + + Investment Type + + Amount invested (in dollars) + Number of shares purchased + + + + + Amount to Calculate + + + Dividends reinvested + Dividends not reinvested + + + + + Investment Date + + + + + + Submit + + + + - diff --git a/src/views/calculator/size768/index.vue b/src/views/calculator/size768/index.vue index e7c4364..b035adc 100644 --- a/src/views/calculator/size768/index.vue +++ b/src/views/calculator/size768/index.vue @@ -1,22 +1,63 @@ - - 768 - - - - - + + + + + + Investment Type + + Amount invested (in dollars) + Number of shares purchased + + + + + Amount to Calculate + + + Dividends reinvested + Dividends not reinvested + + + + + Investment Date + + + + + + Submit + + + + - diff --git a/src/views/contacts/size1440/index.vue b/src/views/contacts/size1440/index.vue index 427f3d2..a843c5e 100644 --- a/src/views/contacts/size1440/index.vue +++ b/src/views/contacts/size1440/index.vue @@ -2,21 +2,44 @@ import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui"; import { onUnmounted, ref, watch, onMounted, computed } from "vue"; +function copyEmail() { + navigator.clipboard.writeText('fiee@dlkadvisory.com'); +} - - 1440 - - + + + Investor Contacts + FiEE Inc. + Investor Relations + + Email: + fiee@dlkadvisory.com + + - diff --git a/src/views/contacts/size768/index.vue b/src/views/contacts/size768/index.vue index e7c4364..bd9f2d5 100644 --- a/src/views/contacts/size768/index.vue +++ b/src/views/contacts/size768/index.vue @@ -1,22 +1,41 @@ - - 768 - - - + + + Investor Contacts + FiEE Inc. + Investor Relations + + Email: + fiee@dlkadvisory.com + + - diff --git a/src/views/email-alerts/size1440/index.vue b/src/views/email-alerts/size1440/index.vue index 427f3d2..46b9e4a 100644 --- a/src/views/email-alerts/size1440/index.vue +++ b/src/views/email-alerts/size1440/index.vue @@ -1,22 +1,78 @@ - - 1440 - - + + + + + + + E-Mail Alerts + * Required Fields + + + * First Name + + + + * Last Name + + + + * Email + + + + * Company + + + + Phone + + + + Submit + + + + + + + Submitted successfully! + The information you submitted is as follows: + + First Name:{{ form.firstName }} + Last Name:{{ form.lastName }} + Email:{{ form.email }} + Company:{{ form.company }} + Phone:{{ form.phone || 'Not filled in' }} + Alert Type:{{ form.alertType === 'all' ? 'All Alerts' : 'Customize Alerts' }} + + + + - diff --git a/src/views/email-alerts/size768/index.vue b/src/views/email-alerts/size768/index.vue index e7c4364..17522fb 100644 --- a/src/views/email-alerts/size768/index.vue +++ b/src/views/email-alerts/size768/index.vue @@ -2,21 +2,78 @@ import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui"; import { onUnmounted, ref, watch, onMounted, computed } from "vue"; +const form = ref({ + firstName: '', + lastName: '', + email: '', + company: '', + phone: '', + alertType: 'all', +}); +const submitted = ref(false); + +function handleSubmit(e) { + e.preventDefault(); + submitted.value = true; +} - - 768 - + - + + + + E-Mail Alerts + * Required Fields + + + * First Name + + + + * Last Name + + + + * Email + + + + * Company + + + + Phone + + + + Submit + + + + + + + Submitted successfully! + The information you submitted is as follows: + + First Name:{{ form.firstName }} + Last Name:{{ form.lastName }} + Email:{{ form.email }} + Company:{{ form.company }} + Phone:{{ form.phone || '(Not filled)' }} + Alert Type:{{ form.alertType === 'all' ? 'All Alerts' : 'Customize Alerts' }} + + + + + - diff --git a/src/views/stock-quote/size1440/index.vue b/src/views/stock-quote/size1440/index.vue index 427f3d2..5a675dd 100644 --- a/src/views/stock-quote/size1440/index.vue +++ b/src/views/stock-quote/size1440/index.vue @@ -1,22 +1,62 @@ - - 1440 - - + + + + ${{ stockQuote.change?.[0].slice(0,4) }} + NASDAQ: MINM + {{ formatted }} + + + + + Open + {{ stockQuote.Open }} + + + Change + {{ stockQuote.change?.join('') }} + + + Day's Range + {{ stockQuote.DaysRange }} + + + 52-Week Range + {{ stockQuote.Week52Range }} + + + Volume + {{ stockQuote.Volume }} + + + Market Cap + {{ stockQuote.MarketCap }} + + - diff --git a/src/views/stock-quote/size768/index.vue b/src/views/stock-quote/size768/index.vue index e7c4364..5a3e91e 100644 --- a/src/views/stock-quote/size768/index.vue +++ b/src/views/stock-quote/size768/index.vue @@ -1,22 +1,68 @@ - - 768 - + - + + + + ${{ stockQuote.change?.[0].slice(0,4) }} + NASDAQ: MINM + {{ formatted }} + + + + + Open + {{ stockQuote.Open }} + + + Change + {{ stockQuote.change?.join('') }} + + + Day's Range + {{ stockQuote.DaysRange }} + + + 52-Week Range + {{ stockQuote.Week52Range }} + + + Volume + {{ stockQuote.Volume }} + + + Market Cap + {{ stockQuote.MarketCap }} + + + -
* Required Fields